/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tomorrow', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #dbbc8c;
    letter-spacing: -0.5px;
}

.nav-logo-img {
    height: 37.5px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #f8f9fa;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #dbbc8c;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: #dbbc8c;
    color: #1f2937;
}

.btn-primary:hover {
    background-color: #c4a877;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #f8f9fa;
    border: 2px solid #dbbc8c;
}

.btn-secondary:hover {
    background-color: rgba(219, 188, 140, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(31, 41, 55, 0.85), rgba(31, 41, 55, 0.85)),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #f8f9fa;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: rgba(248, 249, 250, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #f8f9fa;
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

.service-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-content {
    text-align: left;
}

.service-content h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.service-content ul {
    list-style: none;
    margin-top: 2rem;
}

.service-content li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dbbc8c;
    font-weight: bold;
}

/* Calculator Section */
.calculator {
    padding: 8rem 0;
    background: white;
}

.calculator h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-inputs {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.05);
}

.input-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.input-group {
    flex: 1;
    max-width: 300px;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
    font-size: 1rem;
}

input[type="number"], input[type="range"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(31, 41, 55, 0.1);
    border-radius: 0.75rem;
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

input[type="number"]:focus, input[type="range"]:focus {
    outline: none;
    border-color: #dbbc8c;
}

.savings-highlight {
    text-align: center;
    padding: 1.5rem;
    background: #1f2937;
    border-radius: 1rem;
    color: #f8f9fa;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.savings-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #dbbc8c;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dbbc8c;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.human-side, .ai-side {
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.1);
    transition: transform 0.3s ease;
}

.human-side:hover, .ai-side:hover {
    transform: translateY(-5px);
}

.human-side h3, .ai-side h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

.cost-display {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.cost-display:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #dbbc8c;
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cost-period {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.human-side p, .ai-side p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 500;
}

.human-side ul, .ai-side ul {
    list-style: none;
    margin-top: 1.5rem;
}

.human-side li, .ai-side li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    color: #1f2937;
}

.human-side li:before, .ai-side li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dbbc8c;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
        align-items: stretch;
    }

    .input-group {
        max-width: 100%;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .human-side, .ai-side {
        padding: 2rem;
    }

    .savings-amount {
        font-size: 2.5rem;
    }
}

/* Quote Form */
.quote {
    padding: 8rem 0;
    background: #f8f9fa;
}

.quote h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

#quoteForm {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(31, 41, 55, 0.1);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #dbbc8c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 2rem;
    }
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.partners h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.1);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-member-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
}

.team-member-info {
    padding: 2rem;
}

.team-member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.team-member-info .title {
    display: block;
    font-size: 1.1rem;
    color: #dbbc8c;
    margin-bottom: 1rem;
}

.team-member-info .bio {
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .partner-logo {
        padding: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member-image {
        height: 350px;
    }
}