﻿
:root {
    --navy: #0a2a4a;
    --blue: #063b67;
    --teal: #1a7a8a;
    --orange: #e8760a;
    --gold: #f59e0b;
    --text: #4b5563;
    --text-light: #6b7280;
    --border: #e0e7ef;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}


/* Hero */
.hero {
    background: linear-gradient(135deg,#0a2a4a 0%,#063b67 40%,#1a7a8a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -250px;
        right: -250px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle,rgba(232,118,10,0.15),transparent);
        border-radius: 50%;
        animation: pulse 8s ease-in-out infinite;
    }

@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,rgba(26,122,138,0.15),transparent);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(251,191,36,0.15);
    border: 1.5px solid rgba(251,191,36,0.4);
    border-radius: 30px;
    color: #fbbf24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display',serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 26px;
}

    .hero-title .highlight {
        background: linear-gradient(135deg,#fbbf24,#f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    padding: 18px 44px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(232,118,10,0.3);
}

    .btn-primary-hero:hover {
        background: #d06a09;
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(232,118,10,0.4);
    }

.btn-secondary-hero {
    padding: 16px 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

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

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

    .hero-stat-card:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-4px);
    }

.hero-stat-number {
    font-family: 'Playfair Display',serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.5;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg,#f9fafb,#fff);
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}

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

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.stat-number {
    font-family: 'Playfair Display',serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

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

/* What is GTM */
.gtm-intro {
    padding: 100px 0;
    background: #fff;
}

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

.section-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232,118,10,0.1);
    border-radius: 20px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-family: 'Playfair Display',serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-description {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
}

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

.gtm-text p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 20px;
}

.gtm-visual {
    background: linear-gradient(135deg,#1a5276,#063b67);
    border-radius: 24px;
    padding: 50px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(6,59,103,0.2);
    position: relative;
    overflow: hidden;
}

    .gtm-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

/* Process */
.process-section {
    padding: 100px 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

    .process-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

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

    .process-section .section-eyebrow {
        background: rgba(251,191,36,0.15);
        color: #fbbf24;
    }

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

    .process-section .section-description {
        color: rgba(255,255,255,0.8);
    }

.process-steps {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 32px;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(90deg,rgba(251,191,36,0.2),rgba(232,118,10,0.5),rgba(251,191,36,0.2));
        z-index: 0;
    }

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg,rgba(26,122,138,0.2),rgba(6,59,103,0.4));
    border: 3px solid rgba(251,191,36,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    transition: 0.4s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.process-step:hover .step-circle {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.1);
}

.step-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Services */
.services-section {
    padding: 100px 0;
    background: #f9fafb;
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,var(--teal),var(--orange));
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.3s;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(6,59,103,0.12);
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
}

.service-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 14px;
}

.service-description {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.service-card:hover .service-link {
    gap: 12px;
}

/* Why Choose */
.why-section {
    padding: 100px 0;
    background: #fff;
}

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

.why-text h2 {
    font-family: 'Playfair Display',serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 24px;
    line-height: 1.25;
}

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

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

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

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

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

.why-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

.why-feature-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

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

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

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

    .cta-content h2 {
        font-family: 'Playfair Display',serif;
        font-size: 3rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 18px;
        color: rgba(255,255,255,0.85);
        line-height: 1.75;
        margin-bottom: 40px;
    }

/* Responsive */
@media(max-width:1024px) {
    .hero-grid, .gtm-content, .why-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(3,1fr);
    }

        .process-steps::before {
            display: none;
        }

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

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

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

    .section-title {
        font-size: 2.2rem;
    }

    .process-steps, .services-grid, .why-features, .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

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