/* =================================================================
   ITNT · Advertorial-Landingpage v2 — „Wenn KI, dann richtig"
   90-Tage-AI-Adoptionsplan (we-love-ki.de Root)
   Design: Dark Editorial Luxury — dramatischer Hero mit
   PDF-Visual, Dropcap-Artikel, nummerierte Problemfelder,
   dunkle Konvertierungs-Sektion mit Glow.
   ================================================================= */

:root {
  /* Basis */
  --black:        #0B0B0B;
  --black-soft:   #141414;
  --ink:          #171717;
  --white:        #FFFFFF;
  --paper:        #FBFAF7;
  --tint:         #F4F1EA;
  --line:         #E7E3DA;
  --line-dark:    rgba(255, 255, 255, 0.10);
  --muted:        #6A6A6A;
  --muted-dark:   rgba(255, 255, 255, 0.62);

  /* Gold (ITNT) */
  --gold-deep:    #976502;
  --gold:         #C48402;
  --gold-bright:  #FFAD08;
  --gold-glow:    #FFCA2B;
  --grad-gold:    linear-gradient(120deg, #976502 0%, #C48402 38%, #FFAD08 74%, #FFCA2B 100%);

  /* Maße */
  --container:    1220px;
  --radius:       20px;
  --radius-sm:    12px;
  --radius-pill:  999px;
  --shadow:       0 24px 60px -28px rgba(0, 0, 0, 0.45);
  --shadow-gold:  0 18px 50px -18px rgba(196, 132, 2, 0.55);

  /* Fonts */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: -0.025em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

.hl-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--black); padding: 10px 18px;
  border-radius: var(--radius-sm); font-weight: 700; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }

::selection { background: rgba(255, 173, 8, 0.3); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-gold {
  background: var(--grad-gold); color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 24px 60px -16px rgba(255, 173, 8, 0.6); }
.btn-lg { padding: 17px 36px; font-size: 1.0625rem; }

.btn-arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-ghost { color: var(--gold-glow); border-color: rgba(255, 173, 8, 0.4); }
.btn-ghost:hover { border-color: var(--gold-glow); background: rgba(255, 173, 8, 0.06); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 11, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 30px; height: 32px; flex: none; }
.brand-lockup { display: inline-flex; align-items: center; gap: 9px; color: var(--white); }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.04em; }
.brand-desc { display: inline-flex; flex-direction: column; font-size: 0.5625rem; letter-spacing: 0.34em; font-weight: 600; color: var(--muted-dark); line-height: 1.5; }

.header-cta { padding: 10px 22px; font-size: 0.9375rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--black); color: var(--white);
  padding-block: clamp(72px, 10vw, 130px) clamp(64px, 9vw, 110px);
}

.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.hero-glow-gold {
  top: -340px; left: -180px; width: 820px; height: 820px;
  background: radial-gradient(circle, #FFAD08, transparent 62%);
  opacity: 0.22;
  animation: glowFloat 11s ease-in-out infinite alternate;
}
.hero-glow-gold-2 {
  bottom: -420px; right: -240px; width: 760px; height: 760px;
  background: radial-gradient(circle, #FFCA2B, transparent 62%);
  opacity: 0.13;
  animation: glowFloat 13s ease-in-out -4s infinite alternate-reverse;
}
@keyframes glowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(50px, 34px, 0) scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
}

/* feine Linien-Textur */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}

.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}

.hero-inner { max-width: 720px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 26px;
}
.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--grad-gold); flex: none;
  box-shadow: 0 0 12px rgba(255, 173, 8, 0.8);
}

.hero h1 {
  font-size: clamp(3rem, 7.2vw, 5.4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.02;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--muted-dark); max-width: 600px;
}
.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  margin-top: clamp(34px, 4.5vw, 50px);
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; font-weight: 600; color: var(--muted-dark);
}
.trust-row li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-gold); flex: none;
  box-shadow: 0 0 8px rgba(255, 173, 8, 0.7);
}

/* ---------- PDF-Visual ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; }

.pdf-card {
  position: relative; z-index: 2;
  width: min(340px, 100%);
  background: linear-gradient(160deg, #1C1C1C 0%, #101010 100%);
  border: 1px solid rgba(255, 173, 8, 0.28);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  transform: rotate(3deg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8), 0 0 60px -20px rgba(255, 173, 8, 0.25);
  transition: transform 0.5s var(--ease);
}
.hero-visual:hover .pdf-card { transform: rotate(1deg) translateY(-6px); }

.pdf-shadow-card {
  position: absolute; z-index: 1; top: 18px;
  width: min(340px, 100%); height: 100%;
  border: 1px solid rgba(255, 173, 8, 0.12);
  border-radius: var(--radius);
  transform: rotate(6deg);
}

.pdf-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-gold);
  border-radius: var(--radius) var(--radius) 0 0;
}

.pdf-card-top {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 26px;
}
.pdf-mark { width: 20px; height: 22px; }

.pdf-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.9rem; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 24px;
}
.pdf-title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.pdf-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.pdf-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; font-weight: 600; color: var(--muted-dark);
}
.pdf-feats li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-gold); flex: none;
}

.pdf-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-dark); padding-top: 16px;
}
.pdf-badge {
  font-family: var(--font-display); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.08em; color: var(--black);
  background: var(--grad-gold); border-radius: var(--radius-pill);
  padding: 5px 14px;
}
.pdf-pages { font-size: 0.8125rem; color: var(--muted-dark); font-weight: 600; }

/* ---------- Artikel ---------- */
.article { background: var(--white); padding-block: clamp(64px, 9vw, 110px); }
.article-inner { max-width: 760px; }

.article-section { margin-bottom: clamp(48px, 7vw, 76px); }
.article-section:last-child { margin-bottom: 0; }
.article-section p + p { margin-top: 20px; }

.article-lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500; color: var(--ink); line-height: 1.65;
}

.dropcap {
  float: left;
  font-family: var(--font-display); font-weight: 800;
  font-size: 4.6rem; line-height: 0.8;
  padding: 6px 14px 0 0;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.section-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::after {
  content: ""; height: 1px; flex: 1; max-width: 60px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.article-section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-bottom: 24px;
}

.article-quote {
  position: relative;
  margin: clamp(40px, 6vw, 60px) 0;
  padding: clamp(34px, 5vw, 52px) clamp(28px, 4.5vw, 48px);
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.article-quote::after {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, #FFAD08, transparent 70%);
  filter: blur(60px); opacity: 0.22; pointer-events: none;
}
.article-quote p {
  position: relative;
  padding-left: clamp(46px, 6vw, 72px);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem); line-height: 1.3;
  color: var(--white); letter-spacing: -0.01em;
}
.quote-mark {
  position: absolute; top: 6px; left: 22px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 6rem; line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; opacity: 0.9;
}

/* Problemfelder — nummeriert */
.issue-list { display: flex; flex-direction: column; gap: 16px; margin: 30px 0 26px; }
.issue-list li {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.issue-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 132, 2, 0.4);
  box-shadow: 0 16px 40px -20px rgba(151, 101, 2, 0.25);
}
.issue-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; line-height: 1; flex: none; margin-top: 2px;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.issue-list b {
  display: block;
  color: var(--ink); font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; margin-bottom: 6px;
}
.issue-list div { font-size: 0.975rem; color: var(--muted); line-height: 1.65; }

.article-note {
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600; color: var(--ink);
}

/* Roadmap */
.roadmap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 30px 0;
}
.roadmap-item {
  background: linear-gradient(165deg, #181818 0%, var(--black) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 173, 8, 0.14);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.roadmap-item:hover { transform: translateY(-4px); border-color: rgba(255, 173, 8, 0.4); }
.roadmap-item::after {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, #FFAD08, transparent 70%);
  filter: blur(50px); opacity: 0.18; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.roadmap-item:hover::after { opacity: 0.32; }
.roadmap-when {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-glow);
  border: 1px solid rgba(255, 173, 8, 0.45); border-radius: var(--radius-pill);
  padding: 5px 13px; margin-bottom: 14px;
}
.roadmap-item b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 9px; letter-spacing: -0.01em;
}
.roadmap-item p { font-size: 0.9rem; color: var(--muted-dark); line-height: 1.6; }

/* ---------- Formular-Sektion (dunkel) ---------- */
.section-form {
  position: relative; overflow: hidden;
  background: var(--black);
  padding-block: clamp(72px, 10vw, 120px);
}

.form-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.form-glow-1 {
  top: -300px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, #FFAD08, transparent 62%); opacity: 0.16;
}
.form-glow-2 {
  bottom: -340px; left: -220px; width: 640px; height: 640px;
  background: radial-gradient(circle, #C48402, transparent 62%); opacity: 0.12;
}

.form-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}

.form-side { color: var(--white); padding-top: 12px; }

.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 16px;
}
.form-side h2 {
  font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.05;
}
.form-side-sub { margin-top: 20px; color: var(--muted-dark); font-size: 1.0625rem; max-width: 440px; }

.form-benefits { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.form-benefits li {
  display: flex; flex-direction: column; gap: 3px;
  padding: 18px 0 18px 26px;
  border-left: 2px solid rgba(255, 173, 8, 0.35);
  position: relative;
}
.form-benefits li::before {
  content: ""; position: absolute; left: -5px; top: 24px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 10px rgba(255, 173, 8, 0.8);
}
.form-benefits b { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--white); }
.form-benefits span { font-size: 0.9rem; color: var(--muted-dark); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 80px -30px rgba(255, 173, 8, 0.2);
  padding: clamp(28px, 4vw, 46px);
}

.lead-form { display: flex; flex-direction: column; gap: 20px; }

/* Felder */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; }
.req { color: var(--gold); }

.field input,
.field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 17px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236A6A6A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px; cursor: pointer;
}
.field select:invalid { color: var(--muted); }
.field input:hover, .field select:hover { border-color: #D6D0C2; }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 173, 8, 0.12);
}
.field input.invalid, .field select.invalid { border-color: #C0392B; }

/* Checkbox */
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.875rem; color: var(--muted); cursor: pointer; }
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold); cursor: pointer; flex: none; }
.check strong { color: var(--ink); }
.check a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.check a:hover { color: var(--gold); }
.check.invalid { color: #C0392B; }

.form-submit { width: 100%; }
.form-submit[disabled] { opacity: 0.6; cursor: wait; transform: none; }

.form-note { text-align: center; font-size: 0.8125rem; color: var(--muted); }

.form-msg { display: none; text-align: center; font-weight: 600; font-size: 0.9375rem; }
.form-msg.error { display: block; color: #C0392B; }

/* Erfolg */
.form-success { text-align: center; padding-block: 20px; }
.success-icon {
  width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--grad-gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: var(--muted); }
.success-next { margin-top: 24px; margin-bottom: 16px; font-weight: 700; color: var(--ink) !important; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black); color: var(--muted-dark);
  padding-block: 38px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { width: 26px; height: 28px; }
.footer-name { color: var(--white); font-weight: 700; font-size: 0.9375rem; }
.footer-addr { font-size: 0.8125rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.875rem; font-weight: 600; }
.footer-nav a { transition: opacity 0.2s var(--ease); opacity: 0.85; }
.footer-nav a:hover { opacity: 1; color: var(--white); }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--black);
  background: var(--grad-gold);
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  box-shadow: 0 16px 40px -12px rgba(196, 132, 2, 0.6);
}
.sticky-cta.visible { display: inline-flex; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; justify-content: flex-start; }
  .pdf-card, .pdf-shadow-card { width: min(300px, 88%); }
  .pdf-card { transform: rotate(2deg); }
  .form-grid { grid-template-columns: 1fr; }
  .form-side { padding-top: 0; }
}

@media (max-width: 760px) {
  .roadmap { grid-template-columns: 1fr; }
  .issue-list li { gap: 16px; padding: 20px; }
}

@media (max-width: 560px) {
  .brand-desc { display: none; }
  .header-cta { padding: 9px 16px; font-size: 0.875rem; }
  .hero-cta .btn { width: 100%; }
  .dropcap { font-size: 3.6rem; }
}
