﻿

:root {
    --navy: #0a2a4a;
    --blue: #063b67;
    --orange: #e8760a;
    --text: #4b5563;
    --text-light: #6b7280;
    --border: #e0e7ef;
}

/* Hero */
.hero {
    background: linear-gradient(135deg,var(--navy) 0%,#0d3d6b 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(232,118,10,0.15) 0%,transparent 70%);
        border-radius: 50%;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232,118,10,0.2);
    border: 1px solid rgba(232,118,10,0.4);
    border-radius: 24px;
    color: #fbbf24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Inter',serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #d06a09;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,118,10,0.3);
    }

.btn-secondary {
    padding: 16px 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.2);
        border-color: #fff;
    }

/* Stats Bar */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: 'Inter',serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Inter',serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h3 {
    font-family: 'Inter',serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.overview-image {
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: 0 8px 32px rgba(6,59,103,0.12);
}

/* Services Grid */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

    .service-card:hover {
        box-shadow: 0 12px 32px rgba(6,59,103,0.15);
        transform: translateY(-6px);
    }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.icon-blue {
    background: #dbeafe;
}

.icon-green {
    background: #d1fae5;
}

.icon-yellow {
    background: #fef3c7;
}

.icon-purple {
    background: #f3e8ff;
}

.icon-pink {
    background: #fce7f3;
}

.icon-cyan {
    background: #e0f2fe;
}

.service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--blue);
}

    .process-section .section-header {
        margin-bottom: 64px;
    }

    .process-section .section-eyebrow {
        color: #fbbf24;
    }

    .process-section .section-title {
        color: #fff;
    }

    .process-section .section-subtitle {
        color: rgba(255,255,255,0.7);
    }

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

    .process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 80px;
        width: 2px;
        height: calc(100% - 60px);
        background: linear-gradient(180deg,rgba(251,191,36,0.5),rgba(251,191,36,0.1));
    }

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(251,191,36,0.15);
    border: 3px solid #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter',serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
}

.step-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 32px;
}

    .step-content h4 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

    .step-content p {
        font-size: 14px;
        color: rgba(255,255,255,0.75);
        line-height: 1.7;
    }

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #f9fafb;
    border: 1px solid #e5eaf1;
    border-radius: 14px;
    transition: 0.3s;
}

    .benefit-card:hover {
        background: #fff;
        box-shadow: 0 8px 24px rgba(6,59,103,0.08);
        transform: translateX(4px);
    }

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg,var(--navy),#0d3d6b);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        bottom: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(251,191,36,0.15),transparent);
        border-radius: 50%;
    }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-family: 'Inter',serif;
        font-size: 2.6rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 17px;
        color: rgba(255,255,255,0.8);
        line-height: 1.7;
        margin-bottom: 36px;
    }


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 52px;
}

.faq-title {
    font-family: 'Inter',serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1.5px solid #e5eaf1;
    overflow: hidden;
}

    .faq-item:first-child {
        border-top: 1.5px solid #e5eaf1;
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

    .faq-question:hover {
        color: var(--orange);
    }

.faq-question-text {
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    padding: 0 0 24px 0;
}


/* Responsive */
@media(max-width:1024px) {
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 32px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }

        .stat-item:nth-child(2n) {
            border-right: none;
        }

        .stat-item:nth-last-child(-n+2) {
            border-bottom: none;
        }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

@media(max-width:768px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

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

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

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
