/* ===========================================================
   AF-BYTES GMBH — DESIGN SYSTEM
   Dark-first, MSP/Cybersecurity aesthetic.
   Pure CSS, no external dependencies.
=========================================================== */

/* -----------------------------------------------------------
   1. FONTS
   Place the following local .woff2 files here:
     /assets/fonts/spacegrotesk-500.woff2  (Display, Medium)
     /assets/fonts/spacegrotesk-700.woff2  (Display, Bold)
     /assets/fonts/inter-400.woff2         (Body, Regular)
     /assets/fonts/inter-500.woff2         (Body, Medium)
     /assets/fonts/inter-600.woff2         (Body, Semibold)
     /assets/fonts/jetbrainsmono-500.woff2 (Utility/labels)
   Until the files are supplied, a matched system-font stack is
   used as a visual stand-in so the site renders correctly.
----------------------------------------------------------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/spacegrotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/spacegrotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrainsmono-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

/* -----------------------------------------------------------
   2. DESIGN TOKENS
----------------------------------------------------------- */
:root {
  /* Colors — helles, professionelles Grundgerüst mit Navy/Cool-Gray/Steel-Blue-Palette */
  --c-bg: #fbfcfd;
  --c-bg-alt: #f3f5f7;
  --c-surface: #ffffff;
  --c-surface-2: #f6f8fa;
  --c-border: #e2e6eb;
  --c-border-soft: #edf0f3;

  --c-text: #0f172a;          /* Navy Blue — primäre Textfarbe */
  --c-text-muted: #475569;    /* aus Cool Gray vertieft, für gute Lesbarkeit */
  --c-text-faint: #94a3b8;    /* Cool Gray — sekundäre/zurückhaltende Textfarbe */

  --c-accent: #0284c7;        /* Steel Blue — Akzentfarbe */
  --c-accent-2: #075985;      /* vertieftes Steel Blue für Verläufe */
  --c-accent-3: #0ea5e9;      /* helleres Steel Blue für Status-Punkte */
  --c-accent-rgb: 2, 132, 199;

  --grad-brand: linear-gradient(135deg, #0284c7 0%, #075985 100%);
  --grad-radial: radial-gradient(circle at 30% 0%, rgba(2,132,199,0.05), transparent 65%);

  /* Typography */
  --font-display: "Space Grotesk", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Radius / shadow — flach und dezent, kein Glow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(20,25,35,0.04), 0 8px 20px -12px rgba(20,25,35,0.08);

  --max-width: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dunkles Farbschema (optional über Theme-Toggle) — ebenfalls dezent, ohne Glow */
[data-theme="dark"] {
  --c-bg: #0f172a;
  --c-bg-alt: #0b1220;
  --c-surface: #1e293b;
  --c-surface-2: #172033;
  --c-border: #334155;
  --c-border-soft: #253044;
  --c-text: #f1f5f9;
  --c-text-muted: #94a3b8;
  --c-text-faint: #64748b;
  --grad-radial: radial-gradient(circle at 30% 0%, rgba(2,132,199,0.10), transparent 65%);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.02) inset, 0 12px 28px -18px rgba(0,0,0,0.5);
}

/* -----------------------------------------------------------
   3. RESET
----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
:focus-visible {
  outline: 2px solid var(--c-accent-3);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -----------------------------------------------------------
   4. LAYOUT PRIMITIVES
----------------------------------------------------------- */
.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.section { padding-block: var(--sp-9); position: relative; }
.section--tight { padding-block: var(--sp-7); }
.section-head { max-width: 640px; margin-bottom: var(--sp-7); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent-3);
}
h2.h-section { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
p.lead { color: var(--c-text-muted); font-size: 1.05rem; max-width: 60ch; margin-top: var(--sp-3); }

.grad-bg {
  position: absolute; inset: 0;
  background: var(--grad-radial);
  pointer-events: none;
  z-index: 0;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,25,35,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,25,35,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .grid-lines { background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); }

/* -----------------------------------------------------------
   5. HEADER / NAV
----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--c-border-soft);
  isolation: isolate;
}
/* backdrop-filter bewusst auf ein Pseudoelement ausgelagert statt direkt auf
   .site-header: filter/backdrop-filter auf .site-header selbst würde einen
   eigenen Containing Block für position:fixed-Nachkommen (z. B. .nav-links im
   mobilen Menü) erzeugen. Das führte dazu, dass sich das Menü nicht mehr am
   Viewport, sondern an der nur 76px hohen Header-Box orientierte -> falsche
   Höhe, Hintergrund erschien nur bei "Start" sichtbar (Überlappung mit dem
   Header selbst), bei den übrigen Punkten transparent. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in srgb, var(--c-bg) 78%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad-brand);
  display: grid; place-items: center;
}
.brand-mark svg { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); }
.nav-links a {
  font-size: 0.92rem; color: var(--c-text-muted);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--c-text); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--grad-brand); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: var(--sp-4); }
.theme-toggle {
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  border: 1px solid var(--c-border); display: grid; place-items: center;
  transition: border-color 0.2s;
}
.theme-toggle:hover { border-color: var(--c-accent); }
.theme-toggle svg { width: 16px; height: 16px; }
.icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: block; }

.nav-burger { display: none; width: 40px; height: 40px; place-items: center; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--c-text);
  position: relative; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 76px 0 0 0; background: var(--c-bg); flex-direction: column; justify-content: flex-start; padding: var(--sp-7) var(--sp-5); gap: var(--sp-6); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); border-top: 1px solid var(--c-border-soft); }
  .nav-links a { font-size: 1.1rem; }
  .nav-links a[aria-current="page"]::after { display: none; }
  body.nav-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-burger { display: grid; }
  body.nav-open .nav-burger span { background: transparent; }
  body.nav-open .nav-burger span::before { transform: rotate(45deg) translate(4px,4px); }
  body.nav-open .nav-burger span::after { transform: rotate(-45deg) translate(4px,-4px); }
}

/* -----------------------------------------------------------
   6. BUTTONS
----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 1px 2px rgba(20,25,35,0.12);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(20,25,35,0.16); }
.btn-ghost {
  border: 1px solid var(--c-border); color: var(--c-text);
  background: var(--c-surface);
}
.btn-ghost:hover { border-color: var(--c-accent); background: rgba(var(--c-accent-rgb),0.06); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn svg { width: 16px; height: 16px; }

/* -----------------------------------------------------------
   7. HERO
----------------------------------------------------------- */
.hero { padding-top: var(--sp-9); padding-bottom: var(--sp-9); position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: 1.15rem; margin-top: var(--sp-5); }
.hero-ctas { display: flex; gap: var(--sp-4); margin-top: var(--sp-7); flex-wrap: wrap; }
.hero-canvas { position: absolute; top: 0; right: -8%; width: 60%; height: 100%; z-index: 0; opacity: 0.5; }
@media (max-width: 900px) { .hero-canvas { display: none; } }

/* Trust bar */
.trust-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-9);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--c-border-soft);
}
.trust-item { }
.trust-item .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }
.trust-item .num .unit { font-size: 1rem; color: var(--c-accent); }
.trust-item .lbl { color: var(--c-text-faint); font-size: 0.85rem; margin-top: var(--sp-1); }

/* -----------------------------------------------------------
   8. BENTO GRID
----------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.bento-card {
  grid-column: span 2;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.bento-card:hover { transform: translateY(-2px); border-color: rgba(var(--c-accent-rgb),0.35); box-shadow: 0 4px 16px -8px rgba(20,25,35,0.14); }
.bento-card--wide { grid-column: span 4; }
.bento-card--tall { grid-row: span 2; }
.card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: rgba(var(--c-accent-rgb),0.08);
  border: 1px solid rgba(var(--c-accent-rgb),0.18);
  display: grid; place-items: center; margin-bottom: var(--sp-5);
}
.card-icon svg { width: 22px; height: 22px; color: var(--c-accent); }
.bento-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.bento-card p { color: var(--c-text-muted); font-size: 0.94rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--sp-4); font-size: 0.85rem; color: var(--c-accent); font-weight: 600; }
.card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.bento-card:hover .card-link svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card { grid-column: span 2 !important; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   9. BENEFIT CARDS
----------------------------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.benefit-card {
  background: linear-gradient(180deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}
.benefit-card .card-icon { margin-bottom: var(--sp-4); width: 40px; height: 40px; }
.benefit-card h4 { font-size: 1rem; margin-bottom: var(--sp-2); }
.benefit-card p { color: var(--c-text-muted); font-size: 0.88rem; }
@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   10. PROCESS STEPPER
----------------------------------------------------------- */
.stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); position: relative; }
.stepper::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border) 10%, var(--c-border) 90%, transparent);
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-bg); border: 1px solid var(--c-border);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.step h4 { font-size: 1rem; margin-bottom: var(--sp-2); }
.step p { color: var(--c-text-muted); font-size: 0.88rem; }
@media (max-width: 860px) {
  .stepper { grid-template-columns: 1fr; gap: var(--sp-6); }
  .stepper::before { display: none; }
}

/* -----------------------------------------------------------
   11. CTA BAND
----------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: var(--sp-8);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
  position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--grad-radial); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h3 { font-size: 1.6rem; max-width: 460px; }
.cta-band p { color: var(--c-text-muted); margin-top: var(--sp-3); max-width: 420px; }
@media (max-width: 760px) { .cta-band { flex-direction: column; align-items: flex-start; } }

/* -----------------------------------------------------------
   12. FOOTER
----------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--c-border-soft); padding-block: var(--sp-8) var(--sp-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-7); }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-faint); margin-bottom: var(--sp-4); }
.footer-col a, .footer-col address { display: block; color: var(--c-text-muted); font-size: 0.92rem; margin-bottom: var(--sp-3); font-style: normal; transition: color 0.2s; }
.footer-col a:hover { color: var(--c-text); }
.footer-brand p { color: var(--c-text-muted); font-size: 0.9rem; margin-top: var(--sp-4); max-width: 30ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--c-border-soft); color: var(--c-text-faint); font-size: 0.82rem; flex-wrap: wrap; gap: var(--sp-3); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   13. GENERIC PAGE HEADER (sub-pages)
----------------------------------------------------------- */
.page-hero { padding-top: var(--sp-8); padding-bottom: var(--sp-7); position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 760px; }
.page-hero p.lead { margin-top: var(--sp-4); }
.breadcrumb { display: flex; gap: var(--sp-2); align-items: center; font-family: var(--font-mono); font-size: 0.78rem; color: var(--c-text-faint); margin-bottom: var(--sp-5); }
.breadcrumb a { color: var(--c-text-faint); }
.breadcrumb a:hover { color: var(--c-accent); }

/* -----------------------------------------------------------
   14. SERVICES LIST PAGE
----------------------------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
.service-card {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  padding: var(--sp-6); display: flex; gap: var(--sp-5);
}
.service-card .card-icon { flex-shrink: 0; margin-bottom: 0; }
.service-card h3 { font-size: 1.08rem; margin-bottom: var(--sp-2); }
.service-card p { color: var(--c-text-muted); font-size: 0.92rem; }
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } .service-card { flex-direction: column; } }

/* -----------------------------------------------------------
   15. STAT BLOCK (Warum-Seite)
----------------------------------------------------------- */
.stat-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.stat-card { text-align: center; padding: var(--sp-7) var(--sp-5); border: 1px solid var(--c-border); border-radius: var(--radius-md); background: var(--c-surface); }
.stat-card .stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .stat-lbl { color: var(--c-text-muted); font-size: 0.88rem; margin-top: var(--sp-2); }
.stat-source { font-size: 0.72rem; color: var(--c-text-faint); margin-top: var(--sp-2); }
@media (max-width: 760px) { .stat-block { grid-template-columns: 1fr; } }

.content-block { max-width: 74ch; }
.content-block h2 { font-size: 1.5rem; margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--c-text-muted); margin-bottom: var(--sp-4); }
.content-block ul { margin: var(--sp-4) 0 var(--sp-4) 0; }
.content-block li { color: var(--c-text-muted); padding-left: var(--sp-5); position: relative; margin-bottom: var(--sp-2); }
.content-block li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }

/* -----------------------------------------------------------
   16. CONTACT PAGE
----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-7); align-items: start; }
.form-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: var(--sp-6); }
.field { margin-bottom: var(--sp-5); }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: var(--sp-2); }
.field input, .field textarea {
  width: 100%; background: var(--c-bg-alt); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem; color: var(--c-text);
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--c-accent); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.field-check { display: flex; align-items: flex-start; gap: var(--sp-3); }
.field-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--c-accent); flex-shrink: 0; }
.field-check label { font-size: 0.85rem; font-weight: 400; color: var(--c-text-muted); }
.field-check a { color: var(--c-accent); text-decoration: underline; }
.form-note { font-size: 0.78rem; color: var(--c-text-faint); margin-top: var(--sp-4); }
.form-status { margin-top: var(--sp-4); font-size: 0.9rem; padding: var(--sp-3) var(--sp-4); border-radius: var(--radius-sm); display: none; }
.form-status.is-success { display: block; background: rgba(53,224,192,0.1); border: 1px solid rgba(53,224,192,0.3); color: var(--c-accent-3); }
.form-status.is-error { display: block; background: rgba(255,90,90,0.08); border: 1px solid rgba(255,90,90,0.3); color: #ff8a8a; }

.contact-info-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: var(--sp-6); margin-bottom: var(--sp-5); }
.contact-info-card h3 { font-size: 1rem; margin-bottom: var(--sp-4); }
.contact-row { display: flex; gap: var(--sp-4); align-items: flex-start; margin-bottom: var(--sp-4); }
.contact-row .card-icon { width: 38px; height: 38px; margin-bottom: 0; flex-shrink: 0; }
.contact-row .card-icon svg { width: 18px; height: 18px; }
.contact-row a, .contact-row span { font-size: 0.94rem; color: var(--c-text-muted); }
.contact-row a:hover { color: var(--c-accent); }
.map-static {
  border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--c-surface);
}
.map-static svg { width: 100%; height: auto; display: block; }
.map-static-footer { padding: var(--sp-4) var(--sp-5); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.map-static-footer span { font-size: 0.82rem; color: var(--c-text-faint); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   17. LEGAL PAGES
----------------------------------------------------------- */
.legal-content h2 { font-size: 1.25rem; margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--c-text-muted); margin-bottom: var(--sp-3); font-size: 0.95rem; }
.legal-content li { padding-left: var(--sp-5); position: relative; }
.legal-content li::before { content: "–"; position: absolute; left: 0; color: var(--c-accent); }
.placeholder-note {
  display: block; margin: var(--sp-2) 0 var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(2,132,199,0.06); border: 1px dashed rgba(2,132,199,0.35);
  border-radius: var(--radius-sm); font-size: 0.82rem; color: #8fffb0;
  font-family: var(--font-mono);
}

/* -----------------------------------------------------------
   18. SCROLL REVEAL
----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------
   19. RESPONSIVE TWEAKS
----------------------------------------------------------- */
@media (max-width: 760px) {
  .section { padding-block: var(--sp-7); }
  h2.h-section { font-size: 1.6rem; }
  .cta-band { padding: var(--sp-6); }
}

