/* ============================================================
   veryai.de – Landing Page Stylesheet
   Design: "Kanzlei-Papier" – warmes Cream + Charcoal + Gosign-Orange
   (Alternative zu Navy, siehe styles-navy.css)
   Logo: Original-Gosign-Blume + Wortmarke (logo.svg, Vektor)
   Keine externen Fonts/Tracker – DSGVO-freundlich by design
   ============================================================ */

:root {
  /* Farben: warmes Papier + Charcoal + Orange */
  --stone-950: #17140F;
  --stone-900: #211D19;
  --stone-800: #26211C;
  --stone-700: #3A332C;
  --ink: #211D19;
  --slate: #57534B;
  --slate-light: #6E675F;
  --line: #E7DFD3;
  --bg: #FAF8F5;
  --bg-alt: #F3EEE7;
  --accent: #EB7001;
  --accent-dark: #A94E00;
  --accent-soft: #FDF0E4;
  --gold: #C9A96A;

  /* Typo */
  --font: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(33, 29, 25, .05), 0 2px 8px rgba(33, 29, 25, .04);
  --shadow-md: 0 4px 12px rgba(33, 29, 25, .07), 0 12px 32px rgba(33, 29, 25, .07);
  --shadow-lg: 0 8px 24px rgba(23, 20, 15, .14), 0 24px 64px rgba(23, 20, 15, .18);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3 { line-height: 1.18; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.12rem; }
p { color: var(--slate); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* Skip-Link (Barrierefreiheit) */
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--accent); color: var(--stone-950);
  font-weight: 700; font-size: .95rem;
  padding: 11px 20px; border-radius: 10px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: 820px; }

.text-accent { color: var(--accent-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px;
  font: inherit; font-weight: 600; font-size: .95rem;
  border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent); color: var(--stone-950);
  box-shadow: 0 4px 14px rgba(235, 112, 1, .3);
}
.btn--primary:hover { background: #D66A00; box-shadow: 0 6px 20px rgba(235, 112, 1, .4); }
.btn--ghost { color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-alt); }
.btn--outline { color: var(--ink); border-color: var(--line); background: #fff; }
.btn--outline:hover { border-color: var(--ink); }
.btn--lg { padding: 14px 28px; font-size: 1.02rem; border-radius: 12px; }
.btn--block { width: 100%; }

.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid rgba(235, 112, 1, .45); outline-offset: 2px;
}

/* ---------- Eyebrow / Labels ---------- */
.eyebrow, .eyebrow--light {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-dark);
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(180, 83, 9, .22);
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow--ondark {
  color: #FDBA74;
  background: rgba(235, 112, 1, .12);
  border-color: rgba(235, 112, 1, .35);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--accent-dark); margin-top: 18px;
}
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER (hell)
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 245, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: inline-flex; align-items: center; }
.logo__img { display: block; width: auto; }
.logo__img[height="34"] { height: 34px; }
.logo--footer .logo__img { height: 30px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a {
  font-size: .94rem; font-weight: 500; color: var(--slate);
  transition: color .15s ease;
}
.nav > a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

.nav-toggle { display: none; }
.nav-burger { display: none; }

/* ============================================================
   HERO (Papier, warm)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(235, 112, 1, .1), transparent 60%),
    radial-gradient(820px 500px at -5% 0%, rgba(201, 169, 106, .16), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--ink);
  padding: clamp(64px, 9vw, 120px) 0 clamp(72px, 9vw, 130px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33, 29, 25, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 29, 25, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.hero h1 { color: var(--ink); margin-bottom: 22px; }
.hero__lead { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--slate); max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.hero__proof li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 500; color: var(--slate);
}
.hero__proof svg { color: var(--accent-dark); flex-shrink: 0; }

/* ---------- Chat-Mockup ---------- */
.hero__visual { position: relative; }
.chatmock {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(33, 29, 25, .05);
  overflow: hidden;
  transform: rotate(.5deg);
  color: var(--ink);
}
.chatmock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.chatmock__dot { width: 11px; height: 11px; border-radius: 50%; background: #D5DCE6; }
.chatmock__dot:nth-child(1) { background: #F26D6D; }
.chatmock__dot:nth-child(2) { background: #F0BC4F; }
.chatmock__dot:nth-child(3) { background: #4FC97E; }
.chatmock__title { margin-left: 8px; font-size: .82rem; font-weight: 600; color: var(--slate); }
.chatmock__secure {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 600; color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 4px 9px; border-radius: 100px;
}
.chatmock__body {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 18px;
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(235, 112, 1, .05), transparent 70%),
    #fff;
}
.msg { max-width: 88%; font-size: .88rem; line-height: 1.55; }
.msg p { color: inherit; }
.msg--user {
  align-self: flex-end;
  background: var(--stone-800); color: #fff;
  padding: 12px 15px; border-radius: 14px 14px 4px 14px;
}
.msg--user p { color: rgba(255, 255, 255, .92); }
.msg--notice {
  align-self: stretch; max-width: 100%;
  display: flex; gap: 9px; align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid rgba(180, 83, 9, .22);
  color: #8A4A0F;
  padding: 10px 13px; border-radius: 10px;
  font-size: .78rem; line-height: 1.5;
}
.msg--notice svg { flex-shrink: 0; margin-top: 1px; }
.msg--ai {
  align-self: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 13px 15px; border-radius: 4px 14px 14px 14px;
  color: var(--ink);
}
.msg--ai ul { padding-left: 18px; list-style: disc; margin: 7px 0; color: var(--slate); }
.msg--ai li { margin: 3px 0; }
.msg--ai strong { color: var(--ink); }
.msg__hint { margin-top: 8px; font-size: .82rem; color: var(--accent-dark); font-weight: 500; }

mark.pii {
  background: rgba(201, 169, 106, .3);
  color: #F5E8CE;
  border-bottom: 1.5px dashed var(--gold);
  border-radius: 3px; padding: 0 4px;
}
.chatmock__input {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 18px 18px; padding: 12px 15px;
  border: 1.5px solid var(--line); border-radius: 12px;
  color: var(--slate-light); font-size: .87rem;
}
.chatmock__input svg {
  color: var(--stone-950); background: var(--accent);
  padding: 5px; width: 26px; height: 26px; border-radius: 8px;
}

/* ============================================================
   TRUST BAR (Papier)
   ============================================================ */
.trustbar { background: var(--bg-alt); padding: 30px 0 34px; border-top: 1px solid var(--line); }
.trustbar__label {
  text-align: center; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate-light); margin-bottom: 18px;
}
.trustbar__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px;
}
.trustbar__list li {
  font-size: .92rem; font-weight: 600; color: var(--slate);
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* ============================================================
   SECTIONS (allgemein)
   ============================================================ */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: linear-gradient(180deg, var(--stone-950), var(--stone-900)); color: #fff; }
.section--dark h2 { color: #fff; }
.section--dark p { color: rgba(255, 255, 255, .7); }

.section__head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 64px); text-align: center; }
.section__head h2 { margin-bottom: 14px; }
.section__lead { font-size: 1.06rem; }
.section__sub { max-width: 560px; margin: 0 auto; font-size: .96rem; }

/* ---------- Split (2 Spalten) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px); align-items: start;
}
.split__text h2 { margin-bottom: 18px; }
.split__text p + p { margin-top: 12px; }
.split--dark { align-items: center; }

/* ---------- Verarbeitungskette ---------- */
.chain {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 30px;
}
.chain__node {
  font-size: .84rem; font-weight: 600;
  padding: 9px 15px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 100px;
}
.chain__node:last-child { border-color: rgba(235, 112, 1, .5); color: #FDBA74; }
.chain__arrow { color: rgba(255, 255, 255, .4); }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(235, 112, 1, .4); }
.feature__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 12px;
  margin-bottom: 18px;
}
.feature h3 { margin-bottom: 9px; }
.feature p { font-size: .94rem; }
.feature em { font-style: normal; font-weight: 600; color: var(--ink); }

/* ============================================================
   CHECKLISTE (Sicherheit, dunkel)
   ============================================================ */
.checklist { display: flex; flex-direction: column; gap: 20px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist svg { flex-shrink: 0; margin-top: 3px; }
.checklist div { font-size: .95rem; color: rgba(255, 255, 255, .68); line-height: 1.55; }
.checklist strong { color: #fff; font-size: 1rem; }

/* ============================================================
   SCHRITTE
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  font-size: 1.15rem; font-weight: 800;
  color: #fff; background: var(--stone-900);
  border-radius: 12px;
  margin-bottom: 18px;
}
.step:nth-child(2) .step__num { background: var(--stone-700); }
.step:nth-child(3) .step__num { background: var(--accent); color: var(--stone-950); }
.step h3 { margin-bottom: 9px; }
.step p { font-size: .94rem; }

/* ============================================================
   PREISE
   ============================================================ */
.plans {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; align-items: stretch;
}
.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 28px rgba(235, 112, 1, .16);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: .74rem; font-weight: 700; white-space: nowrap;
  color: var(--stone-950); background: var(--accent);
  padding: 5px 14px; border-radius: 100px;
  box-shadow: 0 4px 10px rgba(235, 112, 1, .35);
}
.plan h3 { font-size: 1.05rem; }
.plan__for { font-size: .84rem; color: var(--slate-light); margin: 3px 0 18px; }
.plan__price { font-size: .92rem; color: var(--slate); margin-bottom: 2px; }
.plan__price span { font-size: 2.05rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.plan__price--custom span { font-size: 1.6rem; }
.plan__seats {
  font-size: .82rem; font-weight: 600; color: var(--accent-dark);
  margin-bottom: 20px;
}
.plan ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; flex-grow: 1; }
.plan li {
  position: relative; padding-left: 24px;
  font-size: .88rem; color: var(--slate);
}
.plan li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 15px; height: 15px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='%23B45309' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}
.plan--enterprise { background: var(--stone-900); border-color: var(--stone-700); }
.plan--enterprise h3, .plan--enterprise .plan__price span { color: #fff; }
.plan--enterprise .plan__for { color: rgba(255, 255, 255, .5); }
.plan--enterprise li { color: rgba(255, 255, 255, .72); }
.plan--enterprise .plan__seats { color: #FDBA74; }
.plan--enterprise .btn--outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.plan--enterprise .btn--outline:hover { border-color: #fff; }

.plans__note { text-align: center; margin-top: 28px; font-size: .92rem; color: var(--slate-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq[open] { border-color: rgba(235, 112, 1, .45); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  font-weight: 600; font-size: 1.01rem;
  cursor: pointer; list-style: none;
  transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2357534B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: rotate(180deg); }
.faq summary:hover { color: var(--accent-dark); }
.faq__body { padding: 0 22px 20px; }
.faq__body p { font-size: .95rem; max-width: 62ch; }
.faq__body a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; }

/* ============================================================
   FINAL CTA (Charcoal)
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(235, 112, 1, .18), transparent 65%),
    linear-gradient(180deg, var(--stone-950), var(--stone-900));
  color: #fff;
  padding: clamp(72px, 9vw, 110px) 0;
}
.cta__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255, 255, 255, .72); font-size: 1.05rem; }
.cta__form {
  display: flex; gap: 12px; justify-content: center;
  margin: 32px 0 16px;
}
.cta__form input {
  flex: 1; max-width: 340px;
  padding: 14px 18px;
  font: inherit; font-size: .98rem; color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  transition: border-color .15s ease, background .15s ease;
}
.cta__form input::placeholder { color: rgba(255, 255, 255, .62); }
.cta__form input:focus { border-color: var(--accent); background: rgba(255, 255, 255, .1); outline: none; }
.cta__fine { font-size: .85rem; color: rgba(255, 255, 255, .62); }

/* ============================================================
   FOOTER (Charcoal)
   ============================================================ */
.footer { background: var(--stone-950); color: rgba(255, 255, 255, .65); border-top: 1px solid rgba(255, 255, 255, .07); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px; padding-bottom: 48px;
}
.footer__brand p { font-size: .9rem; color: rgba(255, 255, 255, .5); margin-top: 16px; }
.footer__brand .logo { margin-bottom: 2px; }
.footer__ch a, .footer__col a:hover { color: #fff; }
.footer__ch a { text-decoration: underline; text-underline-offset: 3px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255, 255, 255, .85); margin-bottom: 6px;
}
.footer__col a { font-size: .92rem; color: rgba(255, 255, 255, .55); transition: color .15s ease; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 24px; padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .84rem; color: rgba(255, 255, 255, .55);
}
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badges span {
  font-size: .74rem; font-weight: 600;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px;
  color: rgba(255, 255, 255, .55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }

  /* Mobile Navigation (Checkbox-Hack, ohne JS) */
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 9px;
    cursor: pointer; border-radius: 8px;
  }
  .nav-burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 22px;
    display: none;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav > a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__actions { flex-direction: column; align-items: stretch; margin: 16px 0 0; }
  .nav__actions .btn { width: 100%; }

  .split, .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .cta__form { flex-direction: column; align-items: stretch; }
  .cta__form input { max-width: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .chatmock { transform: none; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
