/* ── GTM PAGE – LIGHT THEME ── */

/* Hero */
.gtm-hero {
    padding: 140px 0 72px;
    text-align: center;
    background: linear-gradient(165deg, var(--g50), #fff 60%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.gtm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26, 122, 60, 0.08), transparent);
    pointer-events: none;
}

.gtm-hero-content {
    max-width: 780px;
    margin: 0 auto 52px;
}

.gtm-hero-content .badge {
    margin-bottom: 20px;
}

.badge-live {
    display: flex;
    align-items: center;
    gap: 7px;
}

.blink-dot2 {
    width: 7px;
    height: 7px;
    background: var(--g600);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.gtm-hero-content h1 {
    font-family: var(--fh);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--tp);
}

.gtm-hero-content p {
    font-size: 1.08rem;
    color: var(--ts);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.gtm-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.gtm-metric-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.gmc-val {
    font-family: var(--fh);
    font-size: 2rem;
    font-weight: 800;
    color: var(--g700);
    line-height: 1;
}

.gtm-metric-card sup {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--g700);
}

.gmc-lbl {
    display: block;
    font-size: .74rem;
    color: var(--tm);
    margin-top: 5px;
    line-height: 1.4;
}

/* Proof section */
.proof-section {
    background: #fff;
    padding: 96px 0;
}

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

.proof-content p {
    font-size: .96rem;
    color: var(--ts);
    line-height: 1.78;
    margin-bottom: 16px;
}

.proof-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.pr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--ts);
    padding: 10px 14px;
    background: var(--g50);
    border: 1px solid rgba(26, 122, 60, 0.12);
    border-radius: var(--r-sm);
}

.pr-item i {
    color: var(--g600);
    flex-shrink: 0;
}

.pr-item strong {
    color: var(--g800);
}

/* How it works */
.how-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.how-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 122, 60, 0.06), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.how-step {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
}

.how-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--borderh);
}

.hs-num {
    font-family: var(--fh);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(26, 122, 60, 0.1);
    line-height: 1;
    margin-bottom: 6px;
}

.hs-icon {
    width: 44px;
    height: 44px;
    background: var(--g100);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--g700);
    margin-bottom: 14px;
    border: 1px solid rgba(26, 122, 60, 0.12);
}

.how-step h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--tp);
    margin-bottom: 8px;
}

.how-step p {
    font-size: .84rem;
    color: var(--ts);
    line-height: 1.65;
    margin-bottom: 14px;
}

.hs-tag {
    font-size: .72rem;
    color: var(--g700);
    font-weight: 600;
    background: var(--g100);
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
}

/* Deliverables */
.deliverables-section {
    background: #fff;
    padding: 96px 0;
}

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

.del-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
}

.del-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--borderh);
}

.del-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--tp);
    margin-bottom: 8px;
}

.del-card p {
    font-size: .84rem;
    color: var(--ts);
    line-height: 1.65;
}

/* Industries */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ind-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 24px;
    text-align: center;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
}

.ind-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--borderh);
}

.ind-card i {
    font-size: 1.6rem;
    color: var(--g600);
    margin-bottom: 12px;
    display: block;
}

.ind-card h3 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--tp);
    margin-bottom: 7px;
}

.ind-card p {
    font-size: .82rem;
    color: var(--ts);
    line-height: 1.6;
}

@media(max-width:1024px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

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

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

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

@media(max-width:600px) {
    .gtm-hero-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .how-steps,
    .del-grid,
    .ind-grid {
        grid-template-columns: 1fr;
    }
}