/* ecleads.de — Minimal theme (v2) */

:root {
    --ink: #0a0a0a;
    --ink-2: #262626;
    --text: #171717;
    --muted: #737373;
    --muted-2: #a3a3a3;
    --line: #e5e5e5;
    --line-strong: #d4d4d4;
    --bg: #ffffff;
    --bg-tint: #fafafa;
    --bg-tint-2: #f5f5f5;
    --accent: #1a56db;
    --accent-soft: #eff4ff;
    --highlight: #fef3c7;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.14);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background: #ffffff;
    overflow-x: hidden;
}
body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-x: hidden;
}
.doc p.muted { word-break: break-all; overflow-wrap: anywhere; }
img, svg, video { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--ink-2); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.03em;
}
p { line-height: 1.6; }
ul { padding: 0; list-style: none; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; top: -60px; left: 16px; background: var(--ink); color: #fff;
    padding: 10px 14px; border-radius: 8px; z-index: 1000;
}
.skip-link:focus { top: 16px; color: #fff; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.muted { color: var(--muted); }
.hl {
    background: linear-gradient(180deg, transparent 62%, var(--highlight) 62%, var(--highlight) 92%, transparent 92%);
    padding: 0 4px;
    font-family: var(--font-display);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding-top: max(10px, env(safe-area-inset-top));
    transition: background .25s ease, border-color .25s ease;
}
/* Transparent header on pages with hero video (until scrolled) */
.has-hero-video .site-header {
    background: transparent;
    border-bottom-color: transparent;
}
.has-hero-video .brand,
.has-hero-video .brand-name,
.has-hero-video .site-nav > a:not(.btn) { color: #fff; }
.has-hero-video .brand-mark { background: #fff; color: var(--ink); }
.has-hero-video .site-nav .btn-primary {
    background: #fff;
    color: var(--ink);
    border-color: transparent;
}
.has-hero-video .site-nav .btn-primary:hover { background: #f4f4f5; }
.has-hero-video .nav-toggle {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
}
.has-hero-video .nav-toggle span { background: #fff; }
/* Scrolled state: revert to solid */
.has-hero-video.scrolled .site-header {
    background: #ffffff;
    border-bottom-color: var(--line);
}
.has-hero-video.scrolled .brand,
.has-hero-video.scrolled .brand-name,
.has-hero-video.scrolled .site-nav > a:not(.btn) { color: var(--ink); }
.has-hero-video.scrolled .brand-mark { background: var(--ink); color: #fff; }
.has-hero-video.scrolled .site-nav .btn-primary { background: var(--ink); color: #fff; }
.has-hero-video.scrolled .nav-toggle {
    border-color: var(--line);
    background: transparent;
}
.has-hero-video.scrolled .nav-toggle span { background: var(--ink); }
/* When mobile nav opens over the video, force solid style */
.has-hero-video.nav-open .site-header {
    background: #ffffff;
    border-bottom-color: var(--line);
}
.has-hero-video.nav-open .brand,
.has-hero-video.nav-open .brand-name { color: var(--ink); }
.has-hero-video.nav-open .brand-mark { background: var(--ink); color: #fff; }
.has-hero-video.nav-open .nav-toggle span { background: var(--ink); }
.has-hero-video.nav-open .nav-toggle { border-color: var(--line); background: transparent; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    gap: 12px;
}
@media (max-width: 900px) {
    .header-inner { padding: 22px 20px; }
}
/* Mobile menu overlay is white — ensure links are dark, even on has-hero-video pages */
body.nav-open .site-nav > a:not(.btn),
body.nav-open .site-nav > a:not(.btn):hover,
.has-hero-video.nav-open .site-nav > a:not(.btn) { color: var(--ink) !important; }
body.nav-open .site-nav > a:not(.btn)::after,
.has-hero-video.nav-open .site-nav > a:not(.btn)::after { color: var(--muted-2); }
.has-hero-video.nav-open .site-nav .btn-primary { background: var(--ink); color: #fff; }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: color .25s ease;
}
.brand:hover { color: var(--ink); }
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 1px;
    transition: background .25s ease, color .25s ease;
}
.brand-name { color: inherit; transition: color .25s ease; }
.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
    border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }
.site-nav > a:not(.btn) {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}
.site-nav > a:not(.btn):hover { color: var(--ink); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
    white-space: nowrap;
    font-family: var(--font-sans);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); background: #fff; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-tint); color: var(--ink); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 14px 40px; font-size: 15.5px; }

/* Hero — full viewport height with centered content (header overlays transparently) */
.hero {
    min-height: calc(100dvh + 82px); /* compensate for negative margin so hero fills full viewport */
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    margin-top: -82px; /* pull hero up under transparent header */
}
.hero .container { max-width: 1100px; width: 100%; position: relative; z-index: 2; }
.hero-content { max-width: 780px; }

/* Hero with background video */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0a1220;
}
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.72) 0%, rgba(10,20,40,0.55) 50%, rgba(20,49,94,0.55) 100%);
}
.hero.has-video { color: #fff; }
.hero.has-video .hero-title,
.hero.has-video .hero-title .hl { color: #fff; }
.hero.has-video .hero-title .hl { background: transparent; padding: 0; }
.hero.has-video .hero-sub { color: rgba(255,255,255,0.85); }
.hero.has-video .hero-eyebrow {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hero.has-video .hero-fineprint { color: rgba(255,255,255,0.75); }
.hero.has-video .hero-fineprint span[aria-hidden] { color: rgba(255,255,255,0.35); }
.hero.has-video .btn-primary { background: #fff; color: var(--ink); }
.hero.has-video .btn-primary:hover { background: #f4f4f5; color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
    .hero-video video { display: none; }
}

@media (max-width: 900px) {
    .hero {
        min-height: calc(100dvh + 86px);
        margin-top: -86px;
        padding: 100px 0 40px;
    }
    .hero-cta { gap: 12px; }
    .hero-cta .btn { flex: 0 1 auto; }
}
@media (max-width: 520px) {
    .hero { padding: 96px 0 32px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
}
.hero-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-tint);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 500;
    border-radius: 999px;
    margin-bottom: 18px;
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    font-size: clamp(1.6rem, 3.8vw, 3rem);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 30ch;
}
.hero-sub {
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-fineprint {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
}
.hero-fineprint span[aria-hidden] { color: var(--muted-2); flex-shrink: 0; }
@media (max-width: 520px) {
    .hero-fineprint { font-size: 11px; gap: 6px; }
}
@media (max-width: 360px) {
    .hero-fineprint { font-size: 10px; gap: 5px; }
}

/* Trust-Bar */
.trust-bar {
    padding: 24px 0 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-tint);
    margin-bottom: 24px;
}
.trust-bar ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 22px 0 4px;
}
.trust-bar li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
    line-height: 1.4;
}
.trust-bar strong {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
    letter-spacing: -0.02em;
}
.trust-bar span { color: var(--muted); }
/* (duplicate hero rules removed — canonical block is above) */

/* Sections */
.section {
    padding: 96px 0;
}
.section-tint { background: var(--bg-tint); }
.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: left;
}
.section-head .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
}
.section-head .lead {
    color: var(--muted);
    font-size: 17px;
    max-width: 58ch;
}

/* Audience section */
.audience-section { padding: 88px 0; }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.audience-item {
    padding: 28px 26px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}
.audience-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--muted-2);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.audience-item h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.audience-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* Pricing */
.pricing-section { padding-top: 72px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.plan {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.plan:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
}
.plan-featured {
    background: var(--ink);
    border-color: var(--ink);
    color: #e5e5e5;
    box-shadow: var(--shadow-lg);
}
.plan-featured:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
}
.plan-featured .plan-name,
.plan-featured .plan-price .price-value,
.plan-featured .plan-price .price-currency { color: #fff; }
.plan-featured .plan-tag,
.plan-featured .plan-features li,
.plan-featured .plan-note,
.plan-featured .plan-price .price-suffix { color: rgba(255,255,255,0.72); }
.plan-featured .plan-features li::before {
    background: rgba(255,255,255,0.14);
    color: #fff;
}
.plan-quiet { background: var(--bg-tint); border-color: var(--line); }
.plan-quiet:hover { background: var(--bg-tint-2); }
.plan-badge {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    background: #fef08a;
    color: #422006;
    padding: 5px 14px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.plan-head { margin-bottom: 18px; }
.plan-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--ink);
    letter-spacing: -0.025em;
}
.plan-tag { color: var(--muted); font-size: 15px; line-height: 1.4; }
.plan-price {
    padding: 4px 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.plan-featured .plan-price { border-bottom-color: rgba(255,255,255,0.14); }
.price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.price-value {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.045em;
    line-height: 1;
    font-feature-settings: 'tnum' 1;
}
.price-currency {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    margin-left: 2px;
    letter-spacing: -0.03em;
}
.price-suffix {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}
.plan-features {
    flex-grow: 1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.plan-features li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--text);
}
.plan-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 3px;
    width: 18px; height: 18px;
    background: var(--bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px 12px no-repeat;
    border-radius: 999px;
    flex-shrink: 0;
}
.plan-note {
    text-align: center;
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 12px;
    line-height: 1.4;
}
.plan-featured .btn-primary {
    background: #fff;
    color: var(--ink);
}
.plan-featured .btn-primary:hover { background: #f4f4f5; color: var(--ink); }

.pricing-note {
    margin-top: 40px;
    text-align: center;
    color: var(--muted);
    font-size: 13.5px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.steps li {
    padding-top: 6px;
}
.step-num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.05em;
    opacity: 0.15;
}
.steps h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}
.steps p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* FAQ */
.faq {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
    transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 16.5px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    width: 12px; height: 12px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform .2s ease;
    flex-shrink: 0;
    margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq details p {
    margin-top: 14px;
    color: var(--text);
    line-height: 1.6;
    font-size: 15.5px;
}
.faq details em { font-style: italic; color: var(--ink); }
.faq details strong { color: var(--ink); font-weight: 700; }

/* Footer */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 44px 0 calc(40px + env(safe-area-inset-bottom));
    font-size: 14px;
    color: var(--muted);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-nav a { color: var(--text); font-weight: 500; font-size: 14px; }
.footer-nav a:hover { color: var(--ink); }
.footer-legal {
    width: 100%;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted-2);
}

/* Videos section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.video-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.video-frame {
    position: relative;
    background: #000;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}
.video-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 4px;
}
.video-card figcaption strong {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    font-size: 17px;
    letter-spacing: -0.02em;
}
.video-card figcaption span {
    color: var(--muted);
    font-size: 14px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}
.review p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.55;
    flex-grow: 1;
}
.review footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.review footer strong {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    font-size: 15px;
    letter-spacing: -0.02em;
}
.review footer span {
    color: var(--muted);
    font-size: 13.5px;
}

/* Final CTA with background image */
.section-final-cta {
    position: relative;
    padding: 120px 0;
    background-color: #1E3A5F;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0.72) 0%, rgba(10, 20, 40, 0.85) 100%);
    z-index: -1;
}
.section-final-cta .container {
    position: relative;
    z-index: 1;
}
.section-final-cta .cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.section-final-cta h2 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    letter-spacing: -0.035em;
    margin-bottom: 16px;
    line-height: 1.1;
    text-wrap: balance;
}
.section-final-cta .lead {
    color: rgba(255,255,255,0.78);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    margin-bottom: 34px;
    max-width: 55ch;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.section-final-cta .btn-primary { background: #fff; color: var(--ink); }
.section-final-cta .btn-primary:hover { background: #f4f4f5; color: var(--ink); }
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

/* Pages qty picker */
.plan-pages-form { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.plan-pages-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.plan-quiet .plan-pages-label { color: var(--ink); }
.plan-pages-controls {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
    align-self: flex-start;
}
.plan-pages-controls input {
    width: 60px;
    text-align: center;
    border: 0;
    padding: 10px 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    background: #fff;
    -moz-appearance: textfield;
    outline: none;
}
.plan-pages-controls input::-webkit-outer-spin-button,
.plan-pages-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.plan-pages-controls .pp-btn {
    width: 36px; height: 40px;
    background: transparent;
    border: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    font-weight: 600;
    transition: background .15s ease;
}
.plan-pages-controls .pp-btn:hover { background: var(--bg-tint); }

/* Start form (Step 1) */
.start-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.start-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--muted);
    font-size: 14px;
    letter-spacing: -0.01em;
}
.start-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--bg-tint-2);
    color: var(--muted);
    font-size: 13px;
}
.start-step.is-active { color: var(--ink); }
.start-step.is-active span { background: var(--ink); color: #fff; }
.start-step-sep {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--line-strong);
}
.start-form {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.start-row, .start-grid-2 label,
.start-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.start-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.start-form input,
.start-form textarea {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}
.start-form input:focus,
.start-form textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.start-form textarea { resize: vertical; min-height: 84px; }
.start-form .req { color: var(--muted); font-weight: 400; }
.start-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 20px 0;
    color: #7f1d1d;
    font-size: 14.5px;
}
.start-errors p { margin: 2px 0; }
.start-footer { margin-top: 8px; }
.start-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13.5px;
}
@media (max-width: 520px) {
    .start-grid-2 { grid-template-columns: 1fr; }
    .start-footer .btn { width: 100%; justify-content: center; }
}

/* Static content pages: dark hero + white body */
.doc-hero {
    background: var(--ink);
    color: #fff;
    padding: 88px 0 64px;
}
.doc-hero .container { max-width: 780px; }
.doc-hero .doc-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
.doc-hero h1 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
}
.doc {
    padding: 56px 0 96px;
}
.doc .container { max-width: 720px; }
.doc h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 40px 0 12px;
    letter-spacing: -0.025em;
}
.doc h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 26px 0 8px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.doc p, .doc li {
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}
.doc p { margin-bottom: 12px; }
.doc ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 12px;
}
.doc ul li { margin-bottom: 4px; }
.doc .updated {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 40px;
}
.doc address {
    font-style: normal;
    background: var(--bg-tint);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 12px 0 20px;
    border: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid,
    .steps,
    .audience-grid,
    .videos-grid,
    .reviews-grid { grid-template-columns: 1fr; }
    .section-final-cta { padding: 72px 0; }
    .videos-grid { max-width: 100%; gap: 20px; grid-template-columns: 1fr; }
    .trust-bar ul { grid-template-columns: repeat(2, 1fr); }
    .plan-featured { transform: none; }
    .section { padding: 72px 0; }
    .hero { padding: 56px 0 32px; }
    .nav-toggle { display: flex; position: relative; z-index: 101; }
    .site-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 100;
        flex-direction: column;
        padding: 88px 24px 40px;
        overflow-y: auto;
        gap: 0;
        align-items: stretch;
    }
    .site-nav.open { display: flex; }
    .site-nav > a:not(.btn) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.4rem;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        letter-spacing: -0.02em;
    }
    .site-nav > a:not(.btn)::after {
        content: '→';
        color: var(--muted-2);
        font-weight: 400;
        font-family: var(--font-sans);
        font-size: 1.3rem;
    }
    .site-nav > a.btn {
        margin-top: 28px;
        padding: 18px 24px;
        border-radius: 12px;
        text-align: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
    }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-legal { text-align: left; }
}

@media (max-width: 520px) {
    .container { padding: 0 20px; }
    .hero-cta .btn { flex: 1; min-width: 0; }
    .plan { padding: 28px 24px 26px; }
    .hero-title { letter-spacing: -0.04em; }
}
