/* ==========================================================================
   weinert-IT – Stylesheet
   Flach, kantig, viel Linie statt Schatten. Akzent: Orange (nur sparsam), Mono für Beschriftungen.
   ========================================================================== */

@font-face { font-family: "Inter"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/inter-regular.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/inter-medium.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/inter-semibold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/inter-bold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 800; font-style: normal; font-display: swap; src: url("../fonts/inter-extrabold.woff2") format("woff2"); }

:root {
  --navy-950: #070f1f;
  --navy-900: #0b1730;
  --navy-800: #12234a;
  --blue-500: #3b82f6;
  --blue-600: #1f56d6;
  --orange-400: #ff9a4d;
  --orange-500: #ff7a1a;
  --orange-700: #b34a00;            /* Orange für kleine Schrift auf hellem Grund (Kontrast) */

  --bg: #f3f2ee;
  --surface: #ffffff;
  --text: #0b1730;
  --muted: #565e70;
  --line: #d8d5cb;
  --ok: #22c55e;

  --radius: 6px;
  --radius-sm: 4px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  --container: 1160px;
  --header-h: 72px;                /* Header beim Scrollen (sichtbare Höhe) */
  --header-h-top: 96px;            /* Header ganz oben auf der Seite */
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -.025em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--orange-500); color: var(--navy-950); padding: .6rem 1rem; border-radius: 4px; font-weight: 600;
}
.skip-link:focus { left: 8px; text-decoration: none; }

.icon { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon--sm { width: 1.1rem; height: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: var(--radius); border: 1.5px solid transparent;
  font: inherit; font-weight: 600; font-size: 1rem; line-height: 1.2; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--orange-500); color: var(--navy-950); }
.btn--primary:hover { background: var(--orange-400); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .32); background: transparent; }
.btn--ghost:hover { border-color: #fff; }
.btn--sm { padding: .6rem 1.1rem; font-size: .95rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  /* Box bleibt immer --header-h-top hoch (kein Layout-Sprung); beim Scrollen bleibt nur der untere Teil sichtbar */
  position: sticky; top: calc(var(--header-h) - var(--header-h-top)); z-index: 100; height: var(--header-h-top);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-header .container {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: padding-top .25s ease;
}
.site-header.is-scrolled .container { padding-top: calc(var(--header-h-top) - var(--header-h)); }

.brand { display: inline-flex; align-items: center; color: #fff; transition: font-size .25s ease; }
.brand:hover { text-decoration: none; }
.brand img { height: 52px; width: auto; transition: height .25s ease; }
.site-header.is-scrolled .brand img, .site-footer .brand img { height: 38px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) { color: rgba(255, 255, 255, .78); font-weight: 500; font-size: .98rem; }
.nav a:not(.btn):hover { color: #fff; text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; padding: .5rem; cursor: pointer; border-radius: 4px; }

/* ---------- Hero ---------- */
.hero { color: #fff; background: var(--navy-950); padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4.5rem, 9vw, 7rem); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .62);
}
.eyebrow i { width: 9px; height: 9px; background: var(--orange-500); }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 800; line-height: 1.02; letter-spacing: -.035em; margin: 1.4rem 0 1.5rem; }
.hero h1 em { font-style: normal; color: var(--orange-500); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(255, 255, 255, .74); max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__points { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .75); font-size: .95rem; }
.hero__points li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__points .icon { color: var(--orange-500); }
.hero--tool { padding: clamp(3rem, 7vw, 5rem) 0; }
.hero--tool .container { max-width: 640px; }

/* Passwort-Generator */
.pwgen { max-width: 640px; margin: 0 auto 3.5rem; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--orange-500); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.pwgen__output { display: flex; gap: .8rem; margin-bottom: .6rem; }
.pwgen__field { flex: 1; min-width: 0; font-family: var(--mono); font-size: 1.15rem; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); }
.pwgen__hint { min-height: 1.4em; color: var(--ok); font-size: .9rem; margin-bottom: 1.2rem; }
.pwgen__options { display: grid; gap: .7rem; margin-bottom: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.pwgen__options .field { margin-bottom: .3rem; }
.pwgen__options .check { margin: 0; }
.pwgen__info { max-width: 640px; margin: 0 auto; }
.pwgen__info h2 { font-size: 1.4rem; margin-bottom: .8rem; }
.pwgen__info p { color: var(--muted); margin-bottom: 1.1rem; }
.pwgen__info code { background: var(--bg); border: 1px solid var(--line); border-radius: 4px; padding: .1em .4em; font-size: .92em; }

/* Status-Karte im Hero */
.status { position: relative; }
.status__card { background: var(--navy-900); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); padding: 1.1rem 1.4rem 1.3rem; }
.status__bar { display: flex; align-items: center; margin-bottom: .6rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.status__bar span { display: none; }
.status__bar small { font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: rgba(255, 255, 255, .55); }
.status__row { display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.status__row:first-of-type { border-top: 0; }
.status__row .ico { width: 38px; height: 38px; border-radius: var(--radius-sm); display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .16); color: #8db8ff; }
.status__row strong { display: block; font-size: .98rem; font-weight: 600; }
.status__row span.sub { font-size: .82rem; color: rgba(255, 255, 255, .55); }
.pill { margin-left: auto; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: #6ee79a; white-space: nowrap; }
.pill::before { content: "■ "; font-size: .8em; }

.status__chip {
  position: absolute; left: -1.6rem; bottom: -3rem; display: flex; align-items: center; gap: .7rem;
  background: var(--orange-500); color: var(--navy-950); padding: .8rem 1.1rem; border-radius: var(--radius);
}
.status__chip .ico { display: grid; place-items: center; }
.status__chip strong { display: block; font-size: .95rem; line-height: 1.2; }
.status__chip span { font-size: .8rem; color: rgba(7, 15, 31, .75); }

/* ---------- Sections ---------- */
main { counter-reset: sec; flex: 1 0 auto; display: flex; flex-direction: column; }
.site-header, .site-footer { flex-shrink: 0; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section__head { max-width: 42rem; margin-bottom: 2.6rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: block; font-family: var(--mono); font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-700); margin-bottom: 1rem;
}
.kicker::before { counter-increment: sec; content: counter(sec, decimal-leading-zero) " / "; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em; }
.section__head p { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; }

/* Tabs */
.tabs { display: flex; gap: 1.8rem; border-bottom: 1px solid var(--line); }
.tab {
  display: inline-flex; align-items: center; gap: .55rem; border: 0; border-bottom: 3px solid transparent; margin-bottom: -1px;
  background: none; font: inherit; font-weight: 600; font-size: 1rem; color: var(--muted); padding: .8rem .1rem; cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.tab:hover { color: var(--text); }
.tab[aria-selected="true"] { color: var(--text); border-bottom-color: var(--orange-500); }
.tab-panel[hidden] { display: none; }

/* Leistungen als Liste */
.cards { counter-reset: item; }
.card {
  counter-increment: item; display: grid; grid-template-columns: 4rem minmax(0, 1fr) minmax(0, 1.4fr); gap: 1.5rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.card::before { content: counter(item, decimal-leading-zero); font-family: var(--mono); font-size: .85rem; color: var(--muted); }
.card .ico { display: none; }
.card h3 { font-size: 1.25rem; font-weight: 700; }
.card p { color: var(--muted); font-size: 1rem; }

/* Software-Band */
.dev { background: var(--navy-900); color: #fff; }
.dev__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.dev .kicker { color: var(--orange-400); }
.dev p.lead { color: rgba(255, 255, 255, .74); margin: 1.1rem 0 1.6rem; }
.ticks { margin-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; padding: .8rem 0; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .9); }
.ticks .icon { color: var(--orange-500); margin-top: .2rem; }

.code { background: var(--navy-950); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); overflow: hidden; font-family: var(--mono); font-size: .9rem; line-height: 1.75; }
.code__bar { padding: .8rem 1.3rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.code__bar span { display: none; }
.code__bar small { color: rgba(255, 255, 255, .5); font-size: .78rem; letter-spacing: .04em; }
.code pre { margin: 0; padding: 1.3rem 1.4rem; overflow-x: auto; color: #c9d6f0; }
.c-k { color: #ff9a4d; } .c-f { color: #7db2ff; } .c-s { color: #8ee0a8; } .c-c { color: #66749a; }

/* Ablauf */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: step; border-top: 2px solid var(--text); }
.step { padding: 1.5rem 1.5rem 0 0; }
.step + .step { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-family: var(--mono); font-size: .85rem; color: var(--orange-700); margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: 1rem; }

/* Über mich */
.about { background: var(--surface); border-block: 1px solid var(--line); }
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.portrait {
  aspect-ratio: 1; max-width: 420px; border-radius: var(--radius); position: relative; display: grid; place-items: center; color: #fff; overflow: hidden;
  background: var(--navy-900);
}
.portrait::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--orange-500); }
.portrait span { font-size: 5.5rem; font-weight: 800; letter-spacing: -.04em; }
.portrait small { position: absolute; bottom: 1.4rem; left: 1.2rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .06em; opacity: .65; }
.portrait__badge {
  position: absolute; right: 1rem; bottom: 1.6rem; background: var(--orange-500); color: var(--navy-950);
  padding: .7rem 1rem; border-radius: var(--radius-sm); text-align: center; line-height: 1.15;
}
.portrait__badge strong { display: block; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.portrait__badge span { display: block; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.about p { color: var(--muted); margin-top: 1.1rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.2rem; }
.value { padding-top: .9rem; border-top: 2px solid var(--text); }
.value strong { display: block; margin-bottom: .25rem; }
.value span { font-size: .95rem; color: var(--muted); line-height: 1.5; display: block; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: 1rem;
}
.testimonial__stars { color: var(--orange-500); font-size: 1.05rem; letter-spacing: .1em; }
.testimonial blockquote { margin: 0; font-size: 1.05rem; line-height: 1.6; color: var(--text); flex: 1; }
.testimonial figcaption { font-size: .92rem; color: var(--muted); }
.testimonial figcaption strong { color: var(--text); }
.testimonial__source { display: block; font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

/* Kontakt */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { margin-top: 2rem; border-bottom: 1px solid var(--line); }
.contact-list li { display: flex; gap: 1rem; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-list .ico { width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center; border: 1px solid var(--line); color: var(--blue-600); background: var(--surface); }
.contact-list a, .contact-list span.val { color: var(--text); font-weight: 600; }
.contact-list small { display: block; color: var(--muted); font-weight: 400; font-size: .85rem; }

.form { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--orange-500); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text); background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .8rem 1rem; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--text); background: #fff; box-shadow: 0 0 0 3px rgba(255, 122, 26, .35); }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin: .4rem 0 1.3rem; }
.check input { width: 1.15rem; height: 1.15rem; margin-top: .25rem; accent-color: var(--orange-500); flex: none; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form__msg { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: .95rem; display: none; }
.form__msg.is-ok { display: block; background: #e8f9ee; color: #146c34; }
.form__msg.is-err { display: block; background: #fdeceb; color: #a12419; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .7); padding: 3.5rem 0 2rem; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__grid--minimal { grid-template-columns: 1fr auto; align-items: start; }
.site-footer h4 { color: #fff; font-family: var(--mono); font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer li + li { margin-top: .55rem; }
.site-footer a { color: rgba(255, 255, 255, .7); }
.site-footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; font-size: .88rem; }
.site-footer .brand { margin-bottom: 1rem; }
.footer__badge { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem; font-size: .85rem; color: rgba(255, 255, 255, .55); }
.footer__badge .icon { color: var(--orange-500); }

/* Platzhalter-Modus */
.coming-soon { background: var(--navy-950); color: #fff; padding: clamp(5rem, 14vw, 9rem) 0; text-align: center; min-height: 60vh; flex: 1 0 auto; display: flex; align-items: center; }
.coming-soon .container { max-width: 560px; margin-inline: auto; }
.coming-soon img { margin: 0 auto 1.6rem; }
.coming-soon .eyebrow { justify-content: center; }
.coming-soon h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; margin: 1.2rem 0 1.2rem; }
.coming-soon p { color: rgba(255, 255, 255, .74); font-size: 1.1rem; }
.coming-soon__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .14); list-style: none; }
.coming-soon__contact li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.coming-soon__contact .icon { color: var(--orange-500); }
.coming-soon__contact a { color: #fff; }

/* 404 */
.error-page { background: var(--navy-950); color: #fff; padding: clamp(5rem, 14vw, 9rem) 0; text-align: center; min-height: 50vh; flex: 1 0 auto; display: flex; align-items: center; }
.error-page .container { max-width: 640px; margin-inline: auto; }
.error-page .eyebrow { justify-content: center; }
.error-page h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; margin: 1.2rem 0 1.2rem; }
.error-page p { color: rgba(255, 255, 255, .74); font-size: 1.1rem; max-width: 32rem; margin-inline: auto; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2rem; }

/* Rechtstexte */
.legal { padding: 4rem 0 5rem; background: var(--surface); }
.legal .container { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: #39415a; margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.notice { background: #fff6ec; border: 1px solid #ffd9b5; color: #8a4a08; border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 2rem; font-size: .95rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .dev__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .status { max-width: 520px; }
  .status__chip { left: auto; right: 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .step, .step + .step { padding: 1.4rem 1.5rem 1.6rem 0; border-left: 0; border-top: 2px solid var(--text); }
  .step:nth-child(even) { padding-left: 1.5rem; }
  .portrait { max-width: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: var(--header-h-top); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-950); padding: .5rem 1.25rem 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1);
    transform: translateY(-8px); opacity: 0; pointer-events: none; visibility: hidden; transition: all .2s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; }
  .nav a:not(.btn) { padding: .95rem .2rem; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 1.05rem; }
  .nav .btn { margin-top: 1rem; }
  .card { grid-template-columns: 3rem minmax(0, 1fr); gap: .3rem 1rem; }
  .card h3, .card p { grid-column: 2; }
}

@media (max-width: 620px) {
  .values, .form__row, .testimonials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(even) { padding-left: 0; }
  .tabs { gap: 1.2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .status__chip { position: static; margin-top: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
