/* ══════════════════════════════════════════════════════════
   Service Detail Pages — Premium Styles
   ══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.svc-pg-hero {
    padding: 180px 0 100px;
    background: var(--bg);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.svc-pg-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.svc-pg-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.svc-pg-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.svc-pg-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}
.svc-pg-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.svc-pg-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
}
@media (max-width: 768px) {
    .svc-pg-hero { padding: 140px 0 80px; }
    .svc-pg-hero h1 { font-size: clamp(32px, 8vw, 40px); }
}

/* ── Service Page Problem Scroll ───────────────────────── */
.svc-pg-problem-scroll {
    position: relative;
    height: 250vh;
    background: var(--bg);
}
.svc-pg-problem-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    overflow: hidden;
}
.svc-pg-problem-blocks { max-width: 700px; }
.svc-pg-problem-block { margin-bottom: 36px; }
.svc-pg-problem-block:last-child { margin-bottom: 0; }
.svc-pg-problem-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    margin: 0;
}
/* Words highlighted by JS — reuse .pw / .pw.lit from styles.css */

@media (max-width: 768px) {
    .svc-pg-problem-scroll { height: 300vh; }
    .svc-pg-problem-sticky { padding: 0 6vw; }
}

/* ── Shared Section Styles ────────────────────────────── */
.svc-pg-section {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.svc-pg-dark { background: var(--bg); }

.svc-pg-section h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.svc-pg-section p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 640px;
}
.svc-pg-section p + p { margin-top: 1rem; }

/* Narrow centered text block */
.svc-pg-narrow {
    max-width: 700px;
}

/* ── Split Layout (What It Is) ────────────────────────── */
.svc-pg-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}
.svc-pg-stats-col {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.svc-pg-stat {
    background: var(--surface);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
}
.svc-pg-stat::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-pg-stat:hover { background: var(--surface-hi); }
.svc-pg-stat:hover::after { transform: scaleX(1); }

.svc-pg-stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.svc-pg-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
/* Stat number scramble animation */
.svc-stat-anim {
    position: relative;
}
.svc-stat-anim.animating {
    color: var(--gold);
    transition: color 0.4s ease;
}
.svc-stat-anim.done {
    color: var(--text-primary);
    transition: color 0.6s ease 0.2s;
}

@media (max-width: 768px) {
    .svc-pg-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Deliverables — Scroll-Driven Split Screen ────────── */
.del-scroll {
    position: relative;
    height: 420vh;
    background: var(--bg);
}
.del-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.del-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.del-left { position: relative; }
.del-big-num {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-faint);
    margin-bottom: 16px;
    transition: color 0.4s ease;
}
.del-big-num.del-num-gold { color: var(--gold); }
.del-big-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
    min-height: 1.2em;
}
.del-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}
.del-progress-track {
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    overflow: hidden;
}
.del-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.del-progress-count {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.del-right { position: relative; min-height: 120px; }
.del-panel {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.del-panel.del-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.del-panel p {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
    max-width: 460px;
}

@media (max-width: 768px) {
    .del-scroll { height: 350vh; }
    .del-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }
    .del-big-num { font-size: 72px; }
}

/* ── Audience Chips ──────────────────────────────────── */
.svc-aud-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 3rem;
    justify-content: center;
}
.svc-aud-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}
.svc-aud-chip:hover {
    border-color: var(--gold-border);
    background: rgba(201, 168, 76, 0.04);
}
.svc-aud-chip i {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}
.svc-aud-chip span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .svc-aud-flow { justify-content: flex-start; }
    .svc-aud-chip { padding: 10px 18px; }
    .svc-aud-chip span { font-size: 13px; }
}

/* ── Pricing — 3-column with gold hero ────────────────── */
.svc-pg-pricing {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 0;
    margin-top: 3rem;
    align-items: start;
}

.svc-pg-price-col {
    padding: 36px 28px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.svc-pg-price-other {
    background: var(--surface);
    border: 1px solid var(--border);
}

.svc-pg-price-hero {
    background: linear-gradient(165deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 100%);
    border: 1px solid var(--gold-border);
    position: relative;
    z-index: 2;
    transform: scaleY(1.03);
    transform-origin: top center;
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08), 0 0 0 1px var(--gold-border);
}

.svc-pg-price-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
    align-self: flex-start;
}

.svc-pg-price-head {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.svc-pg-price-other .svc-pg-price-head { color: var(--text-muted); }
.svc-pg-price-hero .svc-pg-price-head { color: var(--gold); }

.svc-pg-price-amount {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1;
}

.svc-pg-price-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}
.svc-pg-price-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}
.svc-pg-price-col ul li:last-child { border-bottom: none; }
.svc-pg-price-col ul li i {
    color: var(--gold);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}
.svc-pg-price-hero ul li { border-bottom-color: rgba(201, 168, 76, 0.1); }
.svc-pg-price-hero ul li { color: var(--text-primary); }

/* Pricing buttons */
.svc-pg-price-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.svc-pg-price-gold {
    background: var(--gold);
    color: var(--bg);
}
.svc-pg-price-gold:hover { opacity: 0.88; }
.svc-pg-price-outline {
    border: 1px solid var(--border-hi);
    color: var(--text-primary);
    background: transparent;
}
.svc-pg-price-outline:hover {
    border-color: var(--gold-border);
    background: rgba(201, 168, 76, 0.04);
}

/* Pricing hero gold border glow on reveal */
@media (prefers-reduced-motion: no-preference) {
    .svc-pg-price-hero {
        border-color: transparent;
        box-shadow: none;
        transition: border-color 0.6s ease 0.3s, box-shadow 0.8s ease 0.4s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, background 0.6s ease 0.3s;
    }
    .svc-pg-price-hero.visible {
        border-color: var(--gold-border);
        box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08), 0 0 0 1px var(--gold-border);
    }
}

@media (max-width: 768px) {
    .svc-pg-pricing { grid-template-columns: 1fr; gap: 16px; }
    .svc-pg-price-hero { order: -1; transform: none; }
    .svc-pg-price-col { padding: 28px 24px; }
}


/* ══════════════════════════════════════════════════════════
   Services Hub — Horizontal Scroll Showcase (.svh-*)
   ══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.svh-hero {
    padding: 180px 0 100px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.svh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.svh-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 64px;
    align-items: end;
}
.svh-hero-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.svh-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.svh-hero-sub {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.6;
    font-weight: 400;
}
.svh-hero-facts {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.svh-fact {
    background: var(--surface);
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
}
.svh-fact::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.svh-fact:hover { background: var(--surface-hi); }
.svh-fact:hover::after { transform: scaleX(1); }
.svh-fact-val {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}
.svh-fact-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .svh-hero { padding: 140px 0 80px; }
    .svh-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Horizontal Scroll Showcase ──────────────────────── */
#svh-scroll {
    position: relative;
    height: 400vh;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.svh-scroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.svh-scroll-header {
    flex-shrink: 0;
    padding: 80px 32px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.svh-scroll-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.svh-scroll-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
}
.svh-scroll-counter {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.svh-scroll-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.svh-scroll-rail {
    display: flex;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0 clamp(24px, 4vw, 64px);
    will-change: transform;
}
.svh-panel {
    width: clamp(300px, 28vw, 380px);
    flex-shrink: 0;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.svh-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.svh-panel:hover {
    background: var(--surface-hi);
    border-color: var(--border-hi);
}
.svh-panel:hover::after { transform: scaleX(1); }
.svh-panel-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 24px;
}
.svh-panel h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.svh-panel p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    flex-grow: 1;
}
.svh-panel-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.svh-panel-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.svh-panel-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.svh-panel-link:hover { color: var(--text-primary); }
.svh-panel-link i {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.svh-panel:hover .svh-panel-link i { transform: translateX(4px); }

/* Progress bar */
.svh-scroll-progress {
    flex-shrink: 0;
    padding: 24px clamp(24px, 4vw, 64px) 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.svh-scroll-progress-track {
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    overflow: hidden;
}
.svh-scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.15s ease-out;
}

/* Mobile: vertical stack */
@media (max-width: 768px) {
    #svh-scroll {
        height: auto;
    }
    .svh-scroll-sticky {
        position: relative;
        height: auto;
        padding: 80px 0;
    }
    .svh-scroll-header {
        padding: 0 24px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .svh-scroll-counter { display: none; }
    .svh-scroll-track {
        overflow: visible;
        position: relative;
    }
    .svh-scroll-rail {
        position: relative;
        flex-direction: column;
        gap: 16px;
        padding: 0 24px;
        height: auto;
        transform: none !important;
    }
    .svh-panel {
        width: 100%;
        height: auto;
        padding: 36px 28px;
    }
    .svh-scroll-progress { display: none; }
}

/* ── Retainers ───────────────────────────────────────── */
.svh-retainers {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.svh-retainers-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.svh-retainers-header {
    margin-bottom: 48px;
}
.svh-retainers-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.svh-retainers-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 768px) {
    .svh-retainers { padding: 80px 0; }
    .svh-retainers-inner { padding: 0 24px; }
}


/* ══════════════════════════════════════════════════════════
   Legacy Service Page Styles (other pages still use these)
   ══════════════════════════════════════════════════════════ */

/* Service Detail Page Layout */
.service-hero {
    padding: 180px 0 100px;
    background: var(--bg);
    text-align: center;
    position: relative;
}
.service-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .service-hero { padding: 140px 0 80px; }
    .service-hero h1 { font-size: 2.2rem; }
}

/* Service Content Sections */
.service-section {
    padding: 80px 0;
}
.service-section:nth-child(even) { background: var(--surface); }
.service-section:nth-child(odd) { background: var(--bg); }
.service-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: white;
}
.service-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

/* What You Get Checklist */
.deliverables-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.deliverables-list li i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .deliverables-list { grid-template-columns: 1fr; }
}

/* Who It's For */
.audience-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.audience-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}
.audience-list li i { color: var(--gold); }

/* Pricing Tiers */
.pricing-section { padding: 100px 0; background: var(--surface); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: background 0.25s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { background: var(--surface-hi); }
.pricing-card.featured {
    border-color: var(--gold-border);
    background: rgba(201, 168, 76, 0.05);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-tier { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: white; margin-bottom: 1.5rem; }
.pricing-amount span { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }
.pricing-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
.pricing-cta.primary { background: var(--gold); color: #000; }
.pricing-cta.primary:hover { opacity: 0.88; }
.pricing-cta.outline { border: 1px solid var(--border-hi); color: white; background: transparent; }
.pricing-cta.outline:hover { border-color: var(--gold-border); background: rgba(201, 168, 76, 0.04); }
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* Monthly Retainers */
.retainers-section { padding: 100px 0; background: var(--bg); }
.retainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.retainer-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: background 0.25s ease;
}
.retainer-card:hover { background: var(--surface-hi); }
.retainer-card h3 { color: white; font-size: 1.3rem; margin-bottom: 0.5rem; }
.retainer-price { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 1rem; }
.retainer-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.retainer-card ul { list-style: none; padding: 0; }
.retainer-card ul li { color: var(--text-muted); font-size: 0.95rem; padding: 0.5rem 0; display: flex; align-items: center; gap: 0.8rem; }
.retainer-card ul li i { color: var(--gold); }
@media (max-width: 768px) {
    .retainer-grid { grid-template-columns: 1fr; }
}

/* Services Overview Grid (index page) */
.services-overview { padding: 120px 0; background: var(--bg); }
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
@media (max-width: 1024px) {
    .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-overview-grid { grid-template-columns: 1fr; }
}

/* Pipelines List */
.pipelines-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.pipelines-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.pipelines-list li i { color: var(--gold); font-size: 0.9rem; }

/* Use Cases List */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.use-case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}
.use-case-card h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; }
.use-case-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 768px) {
    .use-cases-grid { grid-template-columns: 1fr; }
}

/* Data Sources List */
.data-sources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.data-source-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    padding: 0.8rem 1rem;
    background: var(--surface);
    border-radius: 10px;
    font-size: 0.95rem;
}
.data-source-item i { color: var(--gold); }

/* Strategy Session Formats */
.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.format-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: background 0.25s ease;
}
.format-card:hover { background: var(--surface-hi); }
.format-card h3 { color: white; font-size: 1.2rem; margin-bottom: 0.5rem; }
.format-card .format-price { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 1rem; }
.format-card .format-price span { font-size: 0.9rem; color: var(--text-muted); }
.format-card p { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 768px) {
    .format-grid { grid-template-columns: 1fr; }
}
