/* Dentist.leadgenbud - style.css
   Clean / clinical / precision aesthetic.
   Palette: deep navy, teal, optic-white, gold accent.
   Type: Space Grotesk (display) + Inter (body) + JetBrains Mono (data).
   Motion: scan-line, dot-pulse, bar grow, section-reveal.
*/

/* ============== TOKENS ============== */
:root {
    --c-navy: #0a2540;
    --c-navy-2: #0e3258;
    --c-navy-3: #143f6b;
    --c-teal: #14b8a6;
    --c-teal-2: #0d9488;
    --c-teal-3: #0f766e;
    --c-ink: #061629;
    --c-paper: #f7fafc;
    --c-paper-2: #ffffff;
    --c-paper-3: #eef2f7;
    --c-line: #d9e2ec;
    --c-line-2: #cbd5e1;
    --c-mute: #64748b;
    --c-mute-2: #94a3b8;
    --c-gold: #d4a44a;
    --c-gold-2: #b48a36;
    --c-red: #c0392b;

    --radius-s: 6px;
    --radius-m: 10px;
    --radius-l: 14px;
    --radius-xl: 22px;

    --shadow-1: 0 1px 2px rgba(10, 37, 64, 0.06);
    --shadow-2: 0 4px 12px rgba(10, 37, 64, 0.08);
    --shadow-3: 0 12px 36px rgba(10, 37, 64, 0.12);
    --shadow-card: 0 24px 60px -20px rgba(10, 37, 64, 0.22);

    --font-display: 'Nunito', 'Nunito Sans', system-ui, sans-serif;
    --font-body: 'Nunito', 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--c-paper);
    color: var(--c-navy);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--c-navy);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.18;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; color: #1f2d3d; }

a { color: var(--c-teal-2); text-decoration: none; }
a:hover { color: var(--c-teal-3); }

img, svg { max-width: 100%; }

::selection { background: var(--c-teal); color: white; }

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: var(--c-teal-2);
    font-weight: 600;
    margin: 0 0 0.8em;
    font-family: var(--font-mono);
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85em 1.6em;
    border-radius: var(--radius-m);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.18s var(--ease);
    text-align: center;
    line-height: 1.2;
    font-family: var(--font-body);
}
.btn-lg { padding: 1em 2em; font-size: 1rem; }

.btn-primary {
    background: var(--c-navy);
    color: white;
    border-color: var(--c-navy);
}
.btn-primary:hover {
    background: var(--c-navy-2);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(10, 37, 64, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--c-navy);
    border-color: var(--c-line-2);
}
.btn-ghost:hover {
    border-color: var(--c-navy);
    background: var(--c-paper-3);
    color: var(--c-navy);
}

/* ============== HEADER ============== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 250, 252, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    transition: background 0.2s var(--ease);
}
.site-header.is-stuck {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 0 var(--c-line);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-navy);
    font-family: var(--font-display);
}
.brand-mark { color: var(--c-navy); display: inline-flex; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-line-1 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-line-1 .dot { color: var(--c-teal); font-weight: 700; }
.brand-line-2 { font-size: 0.62rem; color: var(--c-mute); letter-spacing: 0.18em; font-family: var(--font-mono); }
.brand-logo { display: block; height: auto; max-height: 56px; }

.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 0.92rem;
}
.site-nav a {
    color: var(--c-navy);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.18s var(--ease);
}
.site-nav a:hover { color: var(--c-teal-2); }
.site-nav a.nav-cta {
    background: var(--c-navy);
    color: white;
    padding: 0.55em 1.1em;
    border-radius: var(--radius-m);
    font-weight: 600;
    font-size: 0.88rem;
}
.site-nav a.nav-cta:hover {
    background: var(--c-navy-2);
    color: white;
}
.header-rule {
    height: 1px;
    background: var(--c-line);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--c-navy);
    border-radius: 2px;
    transition: all 0.18s var(--ease);
}

/* ============== HERO ============== */
.hero {
    position: relative;
    padding: 70px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 80% 0%, rgba(20, 184, 166, 0.06), transparent 60%),
        radial-gradient(ellipse 80% 50% at 10% 100%, rgba(10, 37, 64, 0.04), transparent 60%),
        var(--c-paper);
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 80%);
    pointer-events: none;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--c-line);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--c-navy-2);
    margin: 0 0 22px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--c-teal);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.5);
}

.hero-title {
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    line-height: 1.06;
    font-weight: 600;
    margin: 0 0 22px;
}
.title-accent {
    background: linear-gradient(135deg, var(--c-teal-2), var(--c-gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lede {
    font-size: 1.08rem;
    color: #334155;
    max-width: 56ch;
    line-height: 1.65;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 0.88rem;
    color: var(--c-mute);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 6px; }
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--c-teal);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Hero card (dashboard preview) */
.hero-card {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}
.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--c-navy);
    color: white;
}
.hero-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(20, 184, 166, 0.18);
    color: #5eead4;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}
.hero-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-card-body { padding: 20px 22px; }
.hero-stat { margin-bottom: 20px; }
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-label {
    font-size: 0.74rem;
    color: var(--c-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: var(--font-mono);
    margin-bottom: 6px;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-navy);
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-variant-numeric: tabular-nums;
}
.hero-stat-trend {
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-mono);
    padding: 2px 8px;
    border-radius: 4px;
}
.hero-stat-trend.up { background: rgba(20, 184, 166, 0.12); color: var(--c-teal-3); }
.hero-stat-meta {
    font-size: 0.78rem;
    color: var(--c-mute);
    margin-top: 4px;
    font-family: var(--font-mono);
}
.hero-stat-bar {
    display: flex;
    gap: 4px;
    margin-top: 10px;
    height: 32px;
    align-items: flex-end;
}
.hero-stat-bar .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--c-teal), var(--c-teal-2));
    border-radius: 2px 2px 0 0;
    width: 0;
    transition: width 1.2s var(--ease-out);
}
.hero-card-foot {
    padding: 10px 20px;
    border-top: 1px solid var(--c-line);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.hero-card-caption {
    font-size: 0.74rem;
    color: var(--c-mute);
    font-family: var(--font-mono);
}
.scan-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--c-teal);
    box-shadow: 0 0 12px 2px var(--c-teal);
}

/* ============== TRUST STRIP ============== */
.trust-strip {
    padding: 22px 0;
    background: var(--c-navy);
    color: white;
}
.trust-strip-label {
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-family: var(--font-mono);
    margin: 0 0 8px;
}
.trust-strip-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 36px;
    font-size: 0.9rem;
    color: #cbd5e1;
}
.trust-strip-items strong { color: white; font-weight: 600; }

/* ============== SECTION BASICS ============== */
.section { padding: 90px 0; }
.section-head {
    max-width: 720px;
    margin: 0 0 50px;
}
.section-head .eyebrow { color: var(--c-teal-2); }
.section-lede {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 60ch;
}

/* ============== APPROACH ============== */
.section-approach { background: var(--c-paper-2); }
.approach-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.approach-card {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-l);
    padding: 26px 22px;
    position: relative;
    transition: all 0.2s var(--ease);
}
.approach-card:hover {
    border-color: var(--c-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-3);
}
.approach-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--c-teal-2);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.approach-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.approach-card p { font-size: 0.92rem; color: #475569; margin: 0; }

/* ============== SERVICES ============== */
.section-services { background: var(--c-paper); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-card {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-l);
    padding: 28px 24px;
    transition: all 0.2s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
    border-color: var(--c-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-m);
    background: rgba(20, 184, 166, 0.1);
    color: var(--c-teal-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.94rem; color: #475569; }
.service-bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    border-top: 1px solid var(--c-line);
    padding-top: 16px;
}
.service-bullets li {
    font-size: 0.86rem;
    color: #334155;
    padding: 4px 0 4px 18px;
    position: relative;
    font-family: var(--font-mono);
}
.service-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--c-teal);
    font-weight: 600;
}
.service-card-cta {
    background: var(--c-navy);
    color: white;
    border-color: var(--c-navy);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}
.service-card-cta h3 { color: white; }
.service-card-cta p { color: #cbd5e1; }
.service-card-cta .btn-primary {
    background: var(--c-teal);
    border-color: var(--c-teal);
    align-self: flex-start;
}
.service-card-cta .btn-primary:hover {
    background: var(--c-teal-2);
    border-color: var(--c-teal-2);
}
.service-card-cta::before { background: var(--c-gold); transform: scaleX(1); }

/* ============== RESULTS ============== */
.section-results { background: var(--c-navy); color: white; }
.section-results h2, .section-results h3 { color: white; }
.section-results .eyebrow { color: var(--c-teal); }
.section-results .section-lede { color: #cbd5e1; }
.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.result-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-l);
    padding: 28px 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.2s var(--ease);
}
.result-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(20, 184, 166, 0.5);
}
.result-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--c-teal);
    background: rgba(20, 184, 166, 0.12);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.result-head h3 { color: white; font-size: 1.15rem; line-height: 1.3; margin-bottom: 10px; }
.result-context { font-size: 0.88rem; color: #cbd5e1; margin-bottom: 20px; }
.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin: 0 0 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.result-stats > div { display: flex; flex-direction: column; gap: 4px; }
.result-stats dt {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.result-stats dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    font-variant-numeric: tabular-nums;
}
.result-cadence {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    font-family: var(--font-mono);
}

/* ============== PROCESS ============== */
.section-process { background: var(--c-paper-2); }
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-line-2) 10%, var(--c-line-2) 90%, transparent);
    z-index: 0;
}
.timeline-item {
    position: relative;
    z-index: 1;
    padding: 0 8px;
}
.timeline-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--c-teal);
    color: var(--c-teal-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
}
.timeline-marker::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--c-teal);
    opacity: 0;
    transition: opacity 0.2s var(--ease);
}
.timeline-content h3 { font-size: 1rem; margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: #475569; margin: 0; }

/* ============== TESTIMONIAL ============== */
.section-testimonial { background: var(--c-paper); padding: 70px 0; }
.testimonial-card {
    margin: 0;
    background: white;
    border: 1px solid var(--c-line);
    border-left: 4px solid var(--c-gold);
    border-radius: var(--radius-l);
    padding: 40px 44px;
    box-shadow: var(--shadow-2);
    max-width: 880px;
    margin: 0 auto;
}
.testimonial-card blockquote {
    margin: 0 0 22px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--c-navy);
    font-weight: 500;
    letter-spacing: -0.005em;
}
.testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
}
.t-name { font-weight: 600; color: var(--c-navy); }
.t-role { color: var(--c-mute); font-family: var(--font-mono); font-size: 0.82rem; }

/* ============== FAQ ============== */
.section-faq { background: var(--c-paper-2); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: all 0.18s var(--ease);
}
.faq-item[open] {
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.08);
}
.faq-item summary {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--c-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--c-teal-2);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.18s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    padding: 0 22px 20px;
    margin: 0;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.65;
}

/* ============== CONTACT ============== */
.section-contact { background: var(--c-paper); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.contact-meta {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}
.contact-meta strong { color: var(--c-navy); font-weight: 600; }
.contact-meta a { color: var(--c-teal-2); }

.contact-form {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-l);
    padding: 32px;
    box-shadow: var(--shadow-2);
}
.honeypot { display: none; }
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 6px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-line-2);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--c-navy);
    background: var(--c-paper);
    transition: all 0.18s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}
.form-row textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-feedback {
    margin: 14px 0 0;
    font-size: 0.88rem;
    color: var(--c-mute);
    min-height: 1.2em;
}
.form-feedback.is-error { color: var(--c-red); }

/* ============== FOOTER CTA BAND ============== */
.footer-cta-band {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 50%, rgba(20, 184, 166, 0.15), transparent 60%),
        var(--c-navy);
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--c-teal);
    font-family: var(--font-mono);
    margin: 0 0 12px;
    font-weight: 600;
}
.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    line-height: 1.18;
    margin-bottom: 14px;
}
.cta-lede { color: #cbd5e1; font-size: 1rem; margin: 0; }
.cta-grid-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}
.cta-grid-actions .btn { width: 100%; }
.cta-grid-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}
.cta-grid-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border-color: white;
}
.cta-grid-actions .btn-primary {
    background: var(--c-teal);
    border-color: var(--c-teal);
}
.cta-grid-actions .btn-primary:hover {
    background: var(--c-teal-2);
    border-color: var(--c-teal-2);
}

/* ============== FOOTER ============== */
.site-footer {
    background: #061629;
    color: #cbd5e1;
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h3 {
    color: white;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    font-family: var(--font-mono);
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col a { color: #cbd5e1; font-size: 0.92rem; }
.footer-col a:hover { color: white; }
.footer-tagline { font-size: 0.9rem; color: #94a3b8; margin: 14px 0 18px; }
.brand-footer .brand-line-1 { color: white; font-size: 1rem; }
.brand-footer .brand-mark { color: white; }
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: var(--font-mono);
}
.footer-contact a { color: #cbd5e1; }

.footer-newsletter-lede { font-size: 0.85rem; color: #94a3b8; margin-bottom: 12px; }
.newsletter-form {
    display: flex;
    gap: 6px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-m);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--c-teal);
}
.newsletter-form button {
    padding: 10px 18px;
    background: var(--c-teal);
    color: white;
    border: 0;
    border-radius: var(--radius-m);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.18s var(--ease);
    font-family: var(--font-body);
}
.newsletter-form button:hover { background: var(--c-teal-2); }
.newsletter-feedback {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--c-teal);
    min-height: 1em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.82rem;
    color: #64748b;
    font-family: var(--font-mono);
}
.footer-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.footer-meta a { color: #94a3b8; }
.footer-meta a:hover { color: white; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .result-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .timeline::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-grid { grid-template-columns: 1fr; gap: 24px; }
    .section { padding: 70px 0; }
}

@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 18px 24px 24px;
        gap: 14px;
        border-bottom: 1px solid var(--c-line);
        box-shadow: var(--shadow-2);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { font-size: 1rem; padding: 8px 0; }
    .site-nav a.nav-cta { text-align: center; margin-top: 8px; }
    .approach-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .result-stats { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
    .section { padding: 56px 0; }
    .hero { padding: 50px 0 60px; }
    .testimonial-card { padding: 28px 24px; }
    .testimonial-card blockquote { font-size: 1.05rem; }
}

/* ============== PAGE HERO (contact, thanks) ============== */
.page-hero {
    padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
    background: var(--c-paper-3);
    border-bottom: 1px solid var(--c-line);
}
.page-hero .eyebrow { color: var(--c-teal-3); }
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--c-navy);
    max-width: 18ch;
    margin: 0 0 18px;
}
.page-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    color: var(--c-mute);
    max-width: 60ch;
    margin: 0;
}

/* ============== FOOTER CONTACT CTA ============== */
.footer-contact-cta {
    display: inline-block;
    margin-top: 14px;
    color: var(--c-teal-3);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease);
}
.footer-contact-cta:hover { border-bottom-color: var(--c-teal-3); }

/* ============== PRICING ============== */
.section-pricing {
    background: var(--c-paper-3);
    padding: clamp(72px, 9vw, 112px) 0;
    position: relative;
}

.section-pricing::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 120px);
    height: 2px;
    background: var(--c-teal);
    border-radius: 2px;
}

.pricing-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.pricing-head .section-lede { margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.4vw, 28px);
    max-width: 1020px;
    margin: 0 auto;
}

.pricing-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
}

.pricing-card {
    position: relative;
    background: var(--c-paper-2);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-l);
    padding: clamp(28px, 3.5vw, 40px);
    box-shadow: var(--shadow-2);
    transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-3);
    border-color: var(--c-teal);
}

.pricing-card--featured {
    background: var(--c-navy);
    border-color: var(--c-navy);
    color: #e2e8f0;
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.pricing-card--featured::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 220px; height: 220px;
    background: radial-gradient(circle at 100% 0%, rgba(20, 184, 166, 0.15), transparent 60%);
    pointer-events: none;
}

.pricing-card--featured:hover {
    transform: translateY(-10px);
    border-color: var(--c-gold);
}

.pricing-flag {
    position: absolute;
    top: -13px;
    right: clamp(20px, 2.5vw, 32px);
    background: var(--c-gold);
    color: var(--c-navy);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pricing-tier { margin-bottom: 18px; }

.pricing-kicker {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-teal-2);
    margin-bottom: 8px;
}

.pricing-card--featured .pricing-kicker { color: var(--c-gold); }

.pricing-name {
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    font-weight: 600;
    margin: 0;
    color: var(--c-navy);
    letter-spacing: -0.01em;
}

.pricing-card--featured .pricing-name { color: #ffffff; }

.pricing-pitch {
    color: var(--c-mute);
    line-height: 1.6;
    margin: 0 0 28px;
    font-size: 0.95rem;
}

.pricing-card--featured .pricing-pitch { color: #cbd5e1; }

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
    color: inherit;
}

.pricing-currency {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--c-teal-2);
    align-self: flex-start;
    margin-top: 0.5em;
}

.pricing-card--featured .pricing-currency { color: var(--c-gold); }

.pricing-value {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--c-navy);
}

.pricing-card--featured .pricing-value { color: #ffffff; }

.pricing-period {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--c-mute-2);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-card--featured .pricing-period { color: #94a3b8; }

.pricing-fine {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--c-mute-2);
    margin: 0 0 28px;
    letter-spacing: 0.01em;
}

.pricing-card--featured .pricing-fine { color: #94a3b8; }

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.pricing-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-top: 1px solid var(--c-line);
    font-size: 0.92rem;
    line-height: 1.5;
    color: #1f2d3d;
}

.pricing-card--featured .pricing-list li {
    border-color: rgba(148, 163, 184, 0.15);
    color: #e2e8f0;
}

.pricing-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--c-teal);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
    line-height: 1.4;
}

.pricing-card--featured .pricing-list li::before { color: var(--c-gold); }

.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-card--featured .pricing-cta {
    background: var(--c-teal);
    color: #ffffff;
    border-color: var(--c-teal);
}

.pricing-card--featured .pricing-cta:hover {
    background: var(--c-gold);
    color: var(--c-navy);
    border-color: var(--c-gold);
}

.pricing-foot {
    text-align: center;
    max-width: 720px;
    margin: clamp(36px, 4.5vw, 48px) auto 0;
    color: var(--c-mute);
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-3px); }
}
