/* =========================================================================
   DSGVO GPT Agentur — style.css (einzige CSS-Datei)
   Design: "Trust & Authority" (per ui-ux-pro-max Skill)
   Dark Navy + Trust-Blau (Marke) + Protected-Green (Verifiziert/CTA), mobile-first, BEM
   ========================================================================= */

/* -------------------------------------------------------------------------
   Fonts (DSGVO: lokal eingebettet, niemals Google-CDN).
   Skill-Empfehlung: Satoshi (Headings) + General Sans (Body), self-hostbar
   von Fontshare (DSGVO-konform, kein CDN). woff2 nach assets/fonts/ legen.
   Ohne Dateien greift der System-/Inter-Fallback automatisch.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-medium.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-medium.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------------------
   Design Tokens (Dark, Trust & Authority)
   ------------------------------------------------------------------------- */
:root {
  /* Skill-exakte Tokens (ui-ux-pro-max, Style "Trust & Authority") */
  --trust: #1e40af;        /* --trust-color */
  --blue: #3b82f6;
  --blue-deep: #2563eb;
  --blue-bright: #60a5fa;
  --sky: #38bdf8;
  --security: #059669;     /* --security-green */
  --green: #10b981;
  --green-deep: #059669;
  --green-bright: #34d399;
  --gold: #f59e0b;         /* --metric-highlight (Kennzahlen, Zertifikate) */
  --gold-bright: #fbbf24;
  --red: #f43f5e;

  --color-primary: var(--blue);
  --color-accent: var(--green);

  --bg: #0a0f1e;
  --bg-2: #0f172a;          /* Skill background */
  --surface: #141d33;
  --surface-2: #1a2540;
  --surface-3: #243352;
  --slate: #334155;         /* Skill secondary */
  --surface-glass: rgba(20, 29, 51, 0.62);

  --border: rgba(255, 255, 255, 0.08);   /* Skill border */
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(59, 130, 246, 0.45);
  --badge-h: 48px;          /* --badge-height */

  --text: #eef2fb;
  --text-soft: #a9b4cc;
  --text-mute: #6b7794;

  --gradient: linear-gradient(120deg, #3b82f6 0%, #10b981 100%);
  --gradient-soft: linear-gradient(120deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.14) 100%);
  --gradient-text: linear-gradient(120deg, #60a5fa 0%, #34d399 100%);
  --gradient-gold: linear-gradient(120deg, #fbbf24 0%, #f59e0b 100%);

  --font-head: "Satoshi", "General Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-base: "General Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);   /* Skill: subtle shadows for depth */
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.48);
  --glow-blue: 0 8px 24px rgba(30, 64, 175, 0.25);
  --glow-green: 0 8px 24px rgba(5, 150, 105, 0.22);

  --header-h: 70px;
  --container: 1200px;

  --transition: 220ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--bg-2);
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(60% 50% at 85% -5%, rgba(34, 197, 94, 0.1), transparent 60%),
    radial-gradient(60% 55% at 0% 0%, rgba(59, 130, 246, 0.16), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
svg,
picture,
canvas {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--blue-bright);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

p {
  text-wrap: pretty;
}

strong {
  font-weight: 600;
  color: var(--text);
}

::selection {
  background: var(--blue);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--blue-deep);
  border-radius: 999px;
  border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

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

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 1200;
  background: var(--blue);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus {
  top: 0.75rem;
  color: #fff;
}

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  position: relative;
  padding-block: 3.5rem;
}
.section--soft {
  background: linear-gradient(180deg, var(--bg-2), transparent 40%);
}
.section--soft-2 {
  background: var(--bg-2);
}
.section--ink {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(59, 130, 246, 0.16), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--border);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}
.section__head--wide {
  max-width: 880px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
}

.section__lead {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-bright);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn svg {
  width: 1.1em;
  height: 1.1em;
}

/* Primär = CTA: Protected-Green (Conversion-Akzent laut Skill) */
.btn--primary {
  background: var(--green);
  color: #04210f;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}
.btn--primary:hover {
  color: #04210f;
  background: var(--green-bright);
  box-shadow: 0 14px 40px rgba(34, 197, 94, 0.4), var(--glow-green);
}

.btn--light {
  background: #eef3fb;
  color: #0b1222;
}
.btn--light:hover {
  color: #0b1222;
  background: #fff;
  box-shadow: var(--glow-blue);
}

/* Sekundär = Trust-Blau, gefüllt */
.btn--secondary {
  background: var(--blue);
  color: #051226;
  font-weight: 700;
  border-color: transparent;
}
.btn--secondary:hover {
  background: var(--blue-bright);
  color: #051226;
  box-shadow: var(--glow-blue);
}

.btn--ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn--block {
  width: 100%;
}

/* -------------------------------------------------------------------------
   Header / Navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 12, 24, 0.6);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 12, 24, 0.85);
}

.nav {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__brand:hover {
  color: var(--text);
}
.nav__brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}
.nav__brand span b {
  font-weight: 700;
}

.nav__links {
  display: none;
}

.nav__cta {
  display: none;
}

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 14, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1100;
}
.nav__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: 82vw;
  max-width: 340px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1101;
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 300ms ease-out;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.nav__menu.is-open {
  transform: translateX(0);
}
.nav__menu a:not(.btn) {
  display: block;
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__menu a:not(.btn):hover {
  color: var(--sky);
}
.nav__menu .btn {
  margin-top: 1.25rem;
}
.nav__menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text);
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(45% 45% at 18% 30%, rgba(59, 130, 246, 0.25), transparent 70%),
    radial-gradient(40% 40% at 85% 65%, rgba(34, 197, 94, 0.18), transparent 70%);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.25) 0%, rgba(7, 12, 24, 0.72) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2.5rem;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
}

.hero__title {
  font-size: clamp(1.8rem, 7vw, 4.9rem);
  line-height: 1.08;
  text-wrap: balance;
}
.hero__title .text-gradient {
  display: inline;
}

.hero__lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 600px;
  margin-inline: auto;
}

.hero__actions {
  margin-top: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.hero__actions .btn {
  width: 100%;
  max-width: 340px;
}

.hero__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-mute);
  text-align: center;
}

.hero__stats {
  margin-top: 2.75rem;
  padding-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.hero__stat {
  text-align: center;
}
.hero__stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 9vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  animation: metric-pulse 3.4s ease-in-out infinite;
}
.hero__stat .count {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat .count__unit {
  color: var(--gold);
}
@keyframes metric-pulse {
  0%, 100% { text-shadow: 0 0 0 rgba(245, 158, 11, 0); }
  50% { text-shadow: 0 0 18px rgba(245, 158, 11, 0.32); }
}
.hero__stat .hero__stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Hero Chat-Visual (animiertes Tippen) */
.hero__visual {
  display: none;
}
.chat {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-inline: auto 0;
  background: var(--surface-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.chat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
.chat__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
}
.chat__shield {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #04210f;
}
.chat__shield svg {
  width: 19px;
  height: 19px;
}
.chat__badge-eu {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-bright);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.7rem;
}
.chat__body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.chat__body::-webkit-scrollbar {
  display: none;
}
.chat__msg {
  max-width: 88%;
  padding: 0.85rem 1.1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  border-radius: 16px;
}
.chat__msg--user {
  align-self: flex-end;
  background: var(--surface-3);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.chat__msg--bot {
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #eef2fb;
  border-bottom-left-radius: 4px;
}
.chat__caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: var(--green-bright);
  vertical-align: -0.15em;
  animation: blink-caret 1s steps(1) infinite;
}
@keyframes blink-caret {
  50% { opacity: 0; }
}
.chat__typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  padding: 0.9rem 1.1rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 16px;
}
.chat__typing span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chat__typing span:nth-child(2) { animation-delay: 0.18s; }
.chat__typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* -------------------------------------------------------------------------
   Trust strip
   ------------------------------------------------------------------------- */
.trust {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.1rem;
}
.trust__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  max-width: 820px;
  margin-inline: auto;
}
.trust__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--badge-h);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), border-color var(--transition),
    box-shadow var(--transition), color var(--transition);
}
.trust__pill:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.trust__pill svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--gold);
}
@media (min-width: 640px) {
  .trust__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust__items {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* -------------------------------------------------------------------------
   Cards / grids
   ------------------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow), var(--glow-blue);
}
.card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  color: #93c5fd;
  margin-bottom: 1rem;
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.card__text {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.problem .card__icon {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
  color: #fb7185;
}

/* -------------------------------------------------------------------------
   Feature rows
   ------------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.feature + .feature {
  margin-top: 3rem;
}
.feature__media {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 70% at 30% 20%, rgba(59, 130, 246, 0.18), transparent 70%),
    var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__title {
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  margin-bottom: 0.75rem;
}
.feature__text {
  color: var(--text-soft);
}
.feature__list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.6rem;
}
.feature__list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text);
  font-size: 0.97rem;
}
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center / 0.95rem no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center / 0.95rem no-repeat;
}

.panel {
  width: 100%;
  background: var(--surface-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 1rem;
  font-size: 0.85rem;
}
.panel__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--text);
}
.panel__row + .panel__row {
  margin-top: 0.45rem;
}
.panel__row--user {
  background: var(--surface-3);
}
.panel__row--bot {
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.panel__avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #04210f;
  font-size: 0.68rem;
  font-weight: 700;
}
.panel__avatar--user {
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

/* -------------------------------------------------------------------------
   Agents library
   ------------------------------------------------------------------------- */
.agent-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.agent-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-bright);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

/* -------------------------------------------------------------------------
   Comparison table
   ------------------------------------------------------------------------- */
.table-wrap {
  margin-top: 1.5rem;
}
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.table th,
.table td {
  padding: 0.85rem 0.8rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: var(--text-soft);
}
.table thead th {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--text);
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table th:first-child,
.table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.table .yes {
  color: var(--green-bright);
  font-weight: 700;
}
.table .no {
  color: #fb7185;
}

/* -------------------------------------------------------------------------
   Process steps
   ------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #04210f;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--glow-blue);
}
.step__meta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky);
  margin-bottom: 0.4rem;
}
.step__title {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.step__text {
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* -------------------------------------------------------------------------
   Security (ink)
   ------------------------------------------------------------------------- */
.compliance__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.compliance__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.compliance__item:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-blue);
}
.compliance__item .card__icon {
  background: var(--gradient-soft);
  color: var(--green-bright);
}
.compliance__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.compliance__item p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* -------------------------------------------------------------------------
   Use cases
   ------------------------------------------------------------------------- */
.usecase {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: transform var(--transition), border-color var(--transition);
}
.usecase:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}
.usecase__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.usecase__icon svg {
  width: 22px;
  height: 22px;
}
.usecase h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.usecase p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item:hover {
  border-color: var(--border-strong);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.3rem;
  font: inherit;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  position: relative;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--sky);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}
.faq__icon::before {
  width: 11px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 11px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}
.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}
.faq__a-inner {
  padding: 0 1.3rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 120% at 20% 0%, rgba(59, 130, 246, 0.45), transparent 60%),
    radial-gradient(60% 120% at 90% 100%, rgba(34, 197, 94, 0.4), transparent 60%),
    var(--surface-2);
  border: 1px solid var(--border-strong);
  color: #fff;
  padding: 2.5rem 1.6rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
}
.cta-band p {
  margin-top: 0.75rem;
  color: var(--text-soft);
  max-width: 580px;
  margin-inline: auto;
}
.cta-band__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.contact__info p {
  color: var(--text-soft);
}
.contact__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.contact__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact__list .usecase__icon {
  width: 40px;
  height: 40px;
}
.contact__list strong {
  display: block;
  font-size: 0.98rem;
}
.contact__list span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.field .req {
  color: var(--green-bright);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}
.consent input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.form__status {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form__status.is-visible {
  display: block;
}
.form__status--ok {
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.form__status--err {
  background: rgba(244, 63, 94, 0.14);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.contact__map {
  margin-top: 1.5rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
  background: var(--surface-2);
}
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(59, 130, 246, 0.18), transparent 70%),
    var(--surface-2);
}
.map-consent__text {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 360px;
}
.map-consent__link {
  font-size: 0.85rem;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  padding-block: 3rem 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.9rem;
}
.footer__brand img {
  width: 34px;
  height: 34px;
}
.footer__about {
  font-size: 0.94rem;
  max-width: 360px;
}
.footer__col h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.footer__col a,
.footer__col button {
  display: block;
  background: none;
  border: none;
  padding: 0.3rem 0;
  font: inherit;
  font-size: 0.94rem;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
}
.footer__col a:hover,
.footer__col button:hover {
  color: var(--sky);
}
.footer__bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  text-align: center;
}
.footer__bottom a {
  color: #fff;
  text-decoration: underline;
}
.footer__bottom--bare {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* -------------------------------------------------------------------------
   To-Top
   ------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #04210f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow), var(--glow-blue);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover {
  transform: translateY(-3px);
}
.to-top svg {
  width: 22px;
  height: 22px;
}

/* -------------------------------------------------------------------------
   Cookie banner
   ------------------------------------------------------------------------- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(3, 6, 14, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.cookie-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.cookie-banner {
  position: fixed;
  z-index: 1301;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: min(92vw, 460px);
  max-height: 90svh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.cookie-banner.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.cookie-banner__title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.cookie-banner__text {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}
.cookie-banner__options {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text);
}
.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}
.cookie-option--disabled {
  background: var(--bg-2);
  cursor: default;
}
.cookie-option__note {
  color: var(--text-mute);
  font-size: 0.82rem;
}
.cookie-option__box {
  display: none;
}
.cookie-banner__actions {
  display: grid;
  gap: 0.6rem;
}

/* -------------------------------------------------------------------------
   Reveal on scroll
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   Error pages
   ------------------------------------------------------------------------- */
.errorpage {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(55% 55% at 0% 10%, rgba(59, 130, 246, 0.18), transparent 60%);
}
.errorpage__code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 22vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.errorpage h1 {
  margin-top: 0.75rem;
  font-size: clamp(1.4rem, 6vw, 2rem);
}
.errorpage p {
  margin-top: 0.85rem;
  color: var(--text-soft);
  max-width: 460px;
  margin-inline: auto;
}
.errorpage__actions {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
}

/* Legal pages */
.legal {
  padding-top: calc(var(--header-h) + 2.5rem);
}
.legal__content {
  max-width: 820px;
  margin-inline: auto;
}
.legal__content h1 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.legal__content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.legal__content h3 {
  font-size: 1.08rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}
.legal__content p,
.legal__content li {
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}
.legal__content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal__content a {
  text-decoration: underline;
}
.legal__note {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  color: var(--text);
  font-size: 0.92rem;
}

/* -------------------------------------------------------------------------
   Responsive — ab sm
   ------------------------------------------------------------------------- */
@media (max-width: 479px) {
  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }
  .hero__lead {
    font-size: 0.97rem;
  }
  .hero__actions .btn {
    max-width: 100%;
  }
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature__title,
  .feature__text,
  .feature__list {
    text-align: center;
  }
  .feature__list li {
    padding-left: 0;
    list-style: none;
  }
  .feature__list li::before {
    display: none;
  }
  .contact__info p,
  .section__head:not(.section__head--center) .section__title,
  .section__head:not(.section__head--center) .section__lead,
  .section__head:not(.section__head--center) .eyebrow {
    text-align: center;
  }
  .section__head:not(.section__head--center) {
    text-align: center;
  }
  .table th,
  .table td {
    padding: 0.65rem 0.5rem;
    font-size: 0.82rem;
  }
  .cta-band {
    padding: 1.75rem 1.1rem;
  }
  .form {
    padding: 1.2rem;
  }
  .trust__items {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 480px) {
  .hero__actions,
  .errorpage__actions,
  .cta-band__actions {
    flex-direction: row;
    justify-content: center;
  }
  .hero__actions .btn {
    width: auto;
    max-width: none;
  }
  .cta-band__actions .btn,
  .errorpage__actions .btn {
    width: auto;
  }
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .section {
    padding-block: 4.5rem;
  }
  .hero__stats {
    gap: 1.5rem;
  }
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .compliance__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* -------------------------------------------------------------------------
   Responsive — ab md (768px, Tablet)
   ------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .hero__inner {
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 3.5rem;
  }

  .contact__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
  }

  .table th,
  .table td {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
}

/* -------------------------------------------------------------------------
   Responsive — ab lg
   ------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --header-h: 78px;
  }

  .nav__burger {
    display: none;
  }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
  .nav__links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-soft);
  }
  .nav__links a:hover {
    color: var(--sky);
  }
  .nav__cta {
    display: inline-flex;
  }
  .nav__menu,
  .nav__backdrop {
    display: none;
  }

  .section__head {
    text-align: left;
    margin-inline: 0;
  }
  .section__head--center {
    text-align: center;
    margin-inline: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .hero__content {
    text-align: center;
  }
  .hero__lead {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    margin-top: 3rem;
  }
  .hero__stat {
    text-align: center;
  }
  .hero__visual {
    display: flex;
    justify-content: flex-end;
  }
  .hero__visual .chat {
    transform: translateX(8rem);
    width: 480px;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .feature--reverse .feature__media {
    order: 2;
  }
  .feature__media {
    min-height: 320px;
  }

  .compliance__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__grid {
    gap: 2.5rem;
  }

  .cta-band {
    padding: 3.5rem 3rem;
  }

  .legal {
    padding-top: calc(var(--header-h) + 3.5rem);
  }
}

/* -------------------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------------------- */
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------------------------------------------------
   Print
   ------------------------------------------------------------------------- */
@media print {
  .site-header,
  .nav__menu,
  .nav__backdrop,
  .cookie-banner,
  .cookie-overlay,
  .to-top,
  .btn,
  .hero__canvas,
  .hero__glow,
  .hero__scrim,
  .hero__visual {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}
