/* ============================================================
   Startklar für die Assistenzarztzeit — COMIC / POP-ART edition
   A landing page that reads like a comic book about your first
   year as a doctor. Self-contained, no dependency on style.css.
   Self-hosted fonts only, no external requests.
   ============================================================ */

/* ---------- Comic display faces (self-hosted, OFL) ---------- */
@font-face {
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/bangers-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Archivo Black';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/archivo-black-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }  /* root lift: scales all rem-based sizes up ~6% */
body {
    margin: 0;
    background-color: var(--paper);
    background-image: radial-gradient(var(--dot) 1.1px, transparent 1.3px);
    background-size: 22px 22px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

:root {
    /* Comic paper + ink */
    --paper: #FBF3DE;
    --paper-card: #FFFDF6;
    --ink: #141414;
    --dot: rgba(20,20,20,0.09);

    /* Poster primaries — each mapped to an emotional register */
    --red:    #FF3B3B;   /* urgency, night shift, the heavy one */
    --blue:   #2EA9DF;   /* dialogue, calm, communication */
    --yellow: #FFCE2E;   /* energy, the bright start */
    --pink:   #FF5FA2;   /* career, visibility */
    --green:  #37BE6B;   /* money, contract, law */
    --purple: #9B6DFF;   /* the mind behind the coat */

    --font-display: 'Bangers', 'Impact', sans-serif;
    --font-caption: 'Archivo Black', 'Arial Black', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --container: 1180px;
    --section-y: clamp(52px, 8vw, 96px);

    /* The signature comic "sticker" shadow */
    --pop: 6px 6px 0 var(--ink);
    --pop-sm: 4px 4px 0 var(--ink);
    --pop-lg: 9px 9px 0 var(--ink);
    --bd: 3px solid var(--ink);
    --bd-thick: 4px solid var(--ink);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: var(--section-y) 0; position: relative; }

/* ---------- Reusable comic devices ---------- */
.halftone { position: relative; }
.halftone::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(rgba(20,20,20,0.16) 22%, transparent 23%);
    background-size: 13px 13px;
    mix-blend-mode: multiply; opacity: 0.5;
}
.halftone > * { position: relative; z-index: 1; }

/* Kicker = a comic caption-box sticker */
.kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-caption); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
    background: var(--ink); color: var(--paper); padding: 7px 14px;
    border-radius: 2px; transform: rotate(-1.4deg);
    box-shadow: var(--pop-sm);
}
.kicker--red   { background: var(--red);   color: #fff; }
.kicker--blue  { background: var(--blue);  color: #fff; }
.kicker--yellow{ background: var(--yellow);color: var(--ink); }
.kicker--pink  { background: var(--pink);  color: var(--ink); }
.kicker--green { background: var(--green); color: #fff; }
.kicker--purple{ background: var(--purple);color: #fff; }

/* ---------- Type scale ---------- */
h1, .h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(3.4rem, 7.4vw, 6rem); line-height: 0.92; letter-spacing: 0.01em;
    text-transform: uppercase; -webkit-text-stroke: 0.6px var(--ink);
}
h2, .h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 3.9rem); line-height: 0.98; letter-spacing: 0.01em;
    text-transform: uppercase;
}
h3 { font-family: var(--font-caption); font-weight: 400; font-size: 1.16rem; line-height: 1.25; }
.lede { font-size: clamp(1.18rem, 1.7vw, 1.42rem); line-height: 1.5; max-width: 660px; font-weight: 500; }

/* Highlighter marker behind a word */
.mark {
    background: linear-gradient(104deg, transparent 0.5%, var(--yellow) 0.5%, var(--yellow) 99%, transparent 99.5%);
    box-shadow: 2px 2px 0 rgba(20,20,20,0.18);
    padding: 0 0.12em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.mark--pink { background: linear-gradient(104deg, transparent 0.5%, var(--pink) 0.5%, var(--pink) 99%, transparent 99.5%); }
.mark--blue { background: linear-gradient(104deg, transparent 0.5%, var(--blue) 0.5%, var(--blue) 99%, transparent 99.5%); color: #fff; }

.section-head { max-width: 760px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-head h2 { margin: 0; }
.section-head p { font-size: 1.2rem; font-weight: 500; max-width: 600px; line-height: 1.5; }

/* ---------- Reveal on scroll ---------- */
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.2,.8,.2,1); }
.animate-in.visible { opacity: 1; transform: none; }

/* ---------- Buttons (comic stickers) ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-caption); font-size: 1.02rem; letter-spacing: 0.01em;
    padding: 15px 28px; border: var(--bd); border-radius: 4px; background: var(--paper-card); color: var(--ink);
    box-shadow: var(--pop); transition: transform 0.09s ease, box-shadow 0.09s ease; text-transform: uppercase;
}
.btn:hover { transform: translate(2px,2px); box-shadow: var(--pop-sm); }
.btn:active { transform: translate(6px,6px); box-shadow: 0 0 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn--pow { background: var(--red); color: #fff; }
.btn--go  { background: var(--yellow); color: var(--ink); }
.btn--ghost { background: var(--paper-card); }
.btn--lg { padding: 18px 34px; font-size: 1.16rem; box-shadow: var(--pop-lg); }
.btn--sm { padding: 10px 18px; font-size: 0.86rem; box-shadow: var(--pop-sm); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: var(--pop-sm); }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: var(--paper); font-family: var(--font-caption); font-size: 0.8rem; letter-spacing: 0.02em; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 22px; flex-wrap: wrap; text-align: center; }
.topbar-sep { color: var(--yellow); }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 40; background: var(--paper); border-bottom: var(--bd); }
.navbar.scrolled { box-shadow: 0 4px 0 rgba(20,20,20,0.12); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 22px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.02em; }
.logo-mark { width: 36px; height: 36px; border-radius: 8px; background: var(--red); color: #fff; border: var(--bd); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; box-shadow: var(--pop-sm); transform: rotate(-4deg); }
.nav-menu { display: flex; gap: 26px; }
.nav-link { font-family: var(--font-caption); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.02em; padding-bottom: 2px; border-bottom: 3px solid transparent; transition: border-color 0.15s ease; }
.nav-link:hover { border-color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-whatsapp { width: 40px; height: 40px; border-radius: 8px; background: var(--green); color: #fff; border: var(--bd); display: flex; align-items: center; justify-content: center; box-shadow: var(--pop-sm); transition: transform 0.09s ease, box-shadow 0.09s ease; }
.nav-whatsapp:hover { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: var(--yellow); border: var(--bd); border-radius: 6px; padding: 9px; box-shadow: var(--pop-sm); }
.mobile-toggle span { width: 22px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }

.mobile-menu { position: fixed; inset: 0; z-index: 60; background: var(--paper); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.22s ease; }
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 40px; width: 100%; max-width: 340px; }
.mobile-link { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.02em; text-transform: uppercase; }
.mobile-cta { margin-top: 10px; }

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
}

/* ---------- Hero (the comic cover) ---------- */
.hero { padding: clamp(34px, 5vw, 60px) 0 clamp(44px, 6vw, 76px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(30px, 4.5vw, 56px); align-items: center; }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.hero-content h1 { margin-bottom: 2px; font-size: clamp(2.9rem, 5vw, 4.7rem); }
.hero-content h1 span.mark { display: inline-block; transform: rotate(-1deg); }

/* fact chips */
.hero-facts { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-fact { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-caption); font-size: 0.9rem; text-transform: uppercase; background: var(--paper-card); border: 3px solid var(--ink); border-radius: 5px; padding: 9px 14px; box-shadow: var(--pop-sm); }
.hero-fact svg { color: var(--green); flex-shrink: 0; }

/* price + CTA block */
.hero-buy { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.hero-price { display: flex; align-items: baseline; gap: 10px; }
.hero-price__now { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.85; color: var(--red); }
.hero-price__meta { display: flex; flex-direction: column; }
.hero-price__was { font-family: var(--font-caption); font-size: 0.86rem; text-decoration: line-through; color: rgba(20,20,20,0.5); }
.hero-price__tag { font-family: var(--font-caption); font-size: 0.78rem; text-transform: uppercase; background: var(--yellow); border: 2.5px solid var(--ink); padding: 2px 8px; box-shadow: 2px 2px 0 var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-usp { font-size: 1.02rem; max-width: 580px; font-weight: 500; line-height: 1.5; }
.hero-usp strong { font-weight: 800; }

/* Hero comic strip panel */
.strip { background: var(--paper-card); border: var(--bd-thick); border-radius: 8px; box-shadow: var(--pop-lg); padding: 22px; transform: rotate(1.2deg); }
.strip__caption { font-family: var(--font-caption); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.35; background: var(--yellow); border: 3px solid var(--ink); display: inline-block; padding: 8px 13px; margin-bottom: 18px; box-shadow: var(--pop-sm); }
.bubble { position: relative; border: 3px solid var(--ink); border-radius: 18px; padding: 14px 17px; font-weight: 700; font-size: 1.06rem; line-height: 1.35; margin-bottom: 22px; max-width: 94%; }
.bubble::after { content: ""; position: absolute; bottom: -14px; width: 22px; height: 16px; background: inherit; border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.bubble--panic { background: var(--red); color: #fff; margin-right: auto; }
.bubble--panic::after { left: 30px; transform: skewX(-18deg); border-radius: 0 0 3px 0; }
.bubble--calm { background: var(--blue); color: #fff; margin-left: auto; }
.bubble--calm::after { right: 30px; transform: skewX(18deg); border-radius: 0 0 0 3px; }
.strip__ekg { width: 100%; height: 40px; margin: 6px 0 14px; }
.strip__ekg path { fill: none; stroke: var(--ink); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.strip__tag { font-family: var(--font-caption); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.02em; background: var(--ink); color: var(--paper); display: inline-block; padding: 7px 12px; border-radius: 2px; }
.strip__note { margin-top: 12px; font-size: 0.94rem; font-weight: 500; line-height: 1.45; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .strip { transform: rotate(0.6deg); max-width: 480px; }
}
@media (max-width: 420px) {
    .hero-buy { gap: 14px; }
    .hero-price__now { font-size: 2.9rem; }
}

/* ---------- Credentials strip (authority stamp) ---------- */
.proof-bar { background: var(--ink); color: var(--paper); border-top: var(--bd); border-bottom: var(--bd); }
.proof-inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 52px); padding: 22px; flex-wrap: wrap; text-align: center; }
.proof-block { display: flex; flex-direction: column; gap: 3px; }
.proof-label { font-family: var(--font-caption); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--yellow); }
.proof-value { font-weight: 700; font-size: 1.02rem; }
.proof-links { text-align: center; padding: 14px 22px 0; font-size: 0.9rem; font-weight: 600; }
.proof-links a { color: var(--blue); border-bottom: 2px solid var(--blue); }

/* ---------- Pull quote (giant speech bubble) ---------- */
.pull-quote { max-width: 800px; margin: 0 auto; }
.pull-bubble { position: relative; background: var(--yellow); border: var(--bd-thick); border-radius: 26px; padding: clamp(26px, 4vw, 44px); box-shadow: var(--pop-lg); }
.pull-bubble::after { content: ""; position: absolute; bottom: -26px; left: 64px; width: 40px; height: 30px; background: var(--yellow); border-right: 4px solid var(--ink); border-bottom: 4px solid var(--ink); transform: skewX(-20deg); border-radius: 0 0 6px 0; }
.pull-bubble blockquote { margin: 0; font-family: var(--font-caption); font-weight: 400; font-size: clamp(1.5rem, 3.1vw, 2.3rem); line-height: 1.26; }
.pull-bubble cite { display: block; margin-top: 16px; font-style: normal; font-family: var(--font-caption); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Für wen (checklist stickers) ---------- */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 20px; }
.check-card { display: flex; gap: 14px; align-items: flex-start; background: var(--paper-card); border: var(--bd); border-radius: 8px; padding: 22px; box-shadow: var(--pop); }
.check-card:nth-child(1) { transform: rotate(-1deg); }
.check-card:nth-child(3) { transform: rotate(1deg); }
.check-badge { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; border: 3px solid var(--ink); background: var(--green); display: flex; align-items: center; justify-content: center; }
.check-card p { font-weight: 600; font-size: 1.06rem; line-height: 1.45; }

/* ---------- Comic panel grid (the 6 blocks) ---------- */
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.panel { --pc: var(--yellow); --pc-text: var(--ink);
    background: var(--paper-card); border: var(--bd-thick); border-radius: 8px; box-shadow: var(--pop);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.panel:hover { transform: translate(-2px,-2px); box-shadow: var(--pop-lg); }
.panel__band { background: var(--pc); color: var(--pc-text); border-bottom: var(--bd-thick); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.panel__no { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; letter-spacing: 0.03em; }
.panel__icon { width: 36px; height: 36px; }
.panel__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; }
.panel__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.panel h3 { font-size: 1.28rem; }
.panel__body p { font-weight: 500; font-size: 1.04rem; line-height: 1.5; }
.panel--red    { --pc: var(--red);    --pc-text: #fff; }
.panel--blue   { --pc: var(--blue);   --pc-text: #fff; }
.panel--yellow { --pc: var(--yellow); --pc-text: var(--ink); }
.panel--green  { --pc: var(--green);  --pc-text: #fff; }
.panel--pink   { --pc: var(--pink);   --pc-text: var(--ink); }
.panel--purple { --pc: var(--purple); --pc-text: #fff; }
@media (max-width: 940px) { .panel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .panel-grid { grid-template-columns: 1fr; } }

/* ---------- Agenda (shooting script) ---------- */
.day-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.day-tab { font-family: var(--font-caption); font-size: 0.96rem; text-transform: uppercase; padding: 14px 24px; border: var(--bd); border-radius: 6px 6px 0 0; background: var(--paper-card); box-shadow: var(--pop-sm); transition: transform 0.09s ease, box-shadow 0.09s ease; }
.day-tab:hover { transform: translate(1px,1px); }
.day-tab.active { background: var(--blue); color: #fff; }
.agenda-panel { display: none; background: var(--paper-card); border: var(--bd-thick); border-radius: 8px; box-shadow: var(--pop); padding: 8px 22px; }
.agenda-panel.active { display: block; }
.agenda-block { margin: 22px 0 8px; padding: 12px 17px; border: 3px solid var(--ink); border-radius: 5px; background: var(--yellow); font-family: var(--font-caption); font-size: 0.94rem; text-transform: uppercase; letter-spacing: 0.01em; box-shadow: var(--pop-sm); }
.agenda-row { display: grid; grid-template-columns: 124px 1fr auto; gap: 16px; align-items: start; padding: 14px 4px; border-bottom: 2px dashed rgba(20,20,20,0.22); }
.agenda-row:last-child { border-bottom: none; }
.agenda-time { font-family: var(--font-caption); font-size: 0.9rem; font-variant-numeric: tabular-nums; color: var(--red); white-space: nowrap; }
.agenda-topic { font-weight: 600; font-size: 1.04rem; line-height: 1.4; }
.agenda-role { font-size: 0.88rem; font-weight: 600; color: rgba(20,20,20,0.5); text-align: right; white-space: nowrap; }
.agenda-row.is-break { opacity: 0.65; }
.agenda-row.is-break .agenda-topic { font-style: italic; font-weight: 500; }
.agenda-row.is-break .agenda-time { color: rgba(20,20,20,0.45); }
@media (max-width: 640px) {
    .agenda-row { grid-template-columns: 92px 1fr; }
    .agenda-role { grid-column: 2 / 3; text-align: left; font-style: italic; }
}

/* ---------- Referierende ---------- */
.lead-card { display: flex; gap: 22px; align-items: center; background: var(--paper-card); border: var(--bd-thick); border-radius: 10px; padding: 24px; box-shadow: var(--pop); margin-bottom: 26px; flex-wrap: wrap; }
.lead-avatar { width: 76px; height: 76px; flex-shrink: 0; border-radius: 12px; background: var(--pink); border: var(--bd); box-shadow: var(--pop-sm); display: flex; align-items: center; justify-content: center; transform: rotate(-3deg); }
.lead-avatar span { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.lead-card h3 { font-size: 1.36rem; margin-bottom: 5px; }
.lead-card p { font-weight: 500; font-size: 1.02rem; }
.lead-card a { color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); }
.roles-label { font-family: var(--font-caption); font-size: 0.9rem; text-transform: uppercase; margin: 0 0 12px; }
.role-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.role-chip { display: flex; align-items: center; gap: 11px; background: var(--paper-card); border: 2.5px solid var(--ink); border-radius: 6px; padding: 13px 15px; font-weight: 600; font-size: 0.96rem; box-shadow: var(--pop-sm); }
.role-chip .dot-icon { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; border: 2.5px solid var(--ink); background: var(--yellow); display: flex; align-items: center; justify-content: center; }
.role-chip .dot-icon svg { width: 16px; height: 16px; color: var(--ink); }
.roles-note { margin-top: 20px; font-size: 0.94rem; font-weight: 500; font-style: italic; color: rgba(20,20,20,0.62); }

/* ---------- Pricing ---------- */
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.price-head { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.burst { position: relative; width: 160px; height: 160px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--red); border: var(--bd); text-align: center; clip-path: polygon(50% 0%, 61% 12%, 77% 7%, 78% 24%, 95% 26%, 86% 40%, 100% 50%, 86% 60%, 95% 74%, 78% 76%, 77% 93%, 61% 88%, 50% 100%, 39% 88%, 23% 93%, 22% 76%, 5% 74%, 14% 60%, 0% 50%, 14% 40%, 5% 26%, 22% 24%, 23% 7%, 39% 12%); animation: burstwob 4s ease-in-out infinite; }
.burst__was { font-family: var(--font-caption); font-size: 0.62rem; text-decoration: line-through; opacity: 0.85; }
.burst__now { font-family: var(--font-display); font-size: 2.7rem; line-height: 0.9; margin-top: 2px; }
.burst__save { font-family: var(--font-caption); font-size: 0.6rem; margin-top: 3px; text-transform: uppercase; }
@keyframes burstwob { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(-1deg) scale(1.03); } }
.price-headline h2 { margin-bottom: 8px; }
.price-headline p { font-weight: 500; font-size: 1.06rem; }
.steps { display: flex; flex-direction: column; gap: 15px; margin: 8px 0 22px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-num { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; border: 3px solid var(--ink); background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-size: 1.35rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--pop-sm); }
.step strong { display: block; font-family: var(--font-caption); font-weight: 400; font-size: 1.04rem; }
.step span { font-weight: 500; font-size: 0.94rem; color: rgba(20,20,20,0.62); }
.contact-mini { display: flex; align-items: center; gap: 14px; background: var(--paper-card); border: 2.5px solid var(--ink); border-radius: 8px; padding: 15px 17px; box-shadow: var(--pop-sm); }
.contact-mini .dot-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; border: 2.5px solid var(--ink); background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; }
.contact-mini strong { display: block; font-family: var(--font-caption); font-weight: 400; font-size: 0.94rem; }
.contact-mini a { color: var(--blue); font-weight: 700; font-size: 0.94rem; border-bottom: 2px solid var(--blue); }

.form-card { background: var(--paper-card); border: var(--bd-thick); border-radius: 10px; padding: 30px; box-shadow: var(--pop-lg); }
.form-eyebrow { font-family: var(--font-caption); font-size: 0.86rem; text-transform: uppercase; background: var(--yellow); border: 2.5px solid var(--ink); display: inline-block; padding: 6px 12px; box-shadow: var(--pop-sm); margin-bottom: 20px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-family: var(--font-caption); font-size: 0.86rem; text-transform: uppercase; margin-bottom: 7px; }
.field input[type="text"], .field input[type="email"] {
    width: 100%; padding: 14px 16px; border: 3px solid var(--ink); border-radius: 6px; background: #fff; color: var(--ink);
    font: inherit; font-size: 1.04rem; font-weight: 500; transition: box-shadow 0.12s ease;
}
.field input::placeholder { color: rgba(20,20,20,0.4); }
.field input:focus { outline: none; box-shadow: var(--pop-sm); }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; font-weight: 500; line-height: 1.5; margin-bottom: 20px; }
.consent input { margin-top: 2px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--red); }
.consent a { color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); }
.form-note { text-align: center; font-size: 0.86rem; font-weight: 500; color: rgba(20,20,20,0.6); margin-top: 14px; line-height: 1.5; }
.form-trust { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 16px; font-size: 0.84rem; font-weight: 600; }
@media (max-width: 900px) { .pricing-layout { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--paper-card); border: var(--bd); border-radius: 8px; box-shadow: var(--pop-sm); overflow: hidden; }
.faq-item.active { box-shadow: var(--pop); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; background: none; border: none; color: var(--ink); font-family: var(--font-caption); font-size: 1.08rem; text-align: left; }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.active .faq-question { background: var(--yellow); border-bottom: 3px solid var(--ink); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.active .faq-answer { max-height: 360px; }
.faq-answer p { padding: 17px 22px 21px; font-weight: 500; font-size: 1.02rem; line-height: 1.6; }
.faq-answer a { color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-panel { background: var(--red); border: var(--bd-thick); border-radius: 12px; box-shadow: var(--pop-lg); padding: clamp(34px, 5vw, 56px) 24px; max-width: 860px; margin: 0 auto; }
.final-panel h2 { color: #fff; margin-bottom: 12px; }
.final-panel p { color: #fff; font-weight: 500; font-size: 1.18rem; max-width: 560px; margin: 0 auto 24px; }
.share-nudge { margin-top: 26px; padding-top: 24px; border-top: 3px dashed rgba(255,255,255,0.5); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.share-nudge p { font-size: 1rem; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); border-top: var(--bd); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer .nav-logo { color: var(--paper); }
.footer-desc { color: rgba(251,243,222,0.7); font-size: 0.94rem; margin-top: 12px; line-height: 1.6; max-width: 290px; }
.footer-col h4 { font-family: var(--font-caption); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--yellow); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(251,243,222,0.82); font-size: 0.96rem; font-weight: 500; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 2px solid rgba(251,243,222,0.2); flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(251,243,222,0.62); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(251,243,222,0.62); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Scroll to top ---------- */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; border-radius: 8px; background: var(--yellow); color: var(--ink); border: var(--bd); box-shadow: var(--pop-sm); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.09s ease; z-index: 30; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 35; padding: 12px 16px; background: var(--paper); border-top: var(--bd); transform: translateY(120%); transition: transform 0.3s ease; display: none; }
.sticky-cta.visible { transform: translateY(0); }
@media (max-width: 760px) { .sticky-cta { display: block; } }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; padding: 16px 22px; background: var(--paper); border-top: var(--bd); transform: translateY(120%); transition: transform 0.3s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.85rem; font-weight: 500; max-width: 640px; }
.cookie-inner a { color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-in { opacity: 1; transform: none; transition: none; }
    .burst { animation: none; }
    * { transition-duration: 0.01ms !important; }
}
