/* =================================================================
   Probuddy Etik Hat — alt2  (MODERN SAAS / MINIMAL — Stripe/Linear)
   Light, airy, technical. White-dominant, hairline dividers,
   navy as a crisp accent. All tokens in :root.
   ================================================================= */

:root {
  /* Brand — navy */
  --navy: #2B3F86;
  --navy-dark: #1E2C61;
  --navy-tint: #EAEDF8;
  --navy-ink: #16203F;

  /* One tasteful accent for SaaS direction — bright cyan-blue */
  --accent: #4C6FFF;
  --accent-soft: #EEF2FF;

  /* Neutrals — near-white airy surfaces */
  --bg: #FFFFFF;
  --bg-soft: #FBFCFE;
  --bg-mesh: #F7F9FC;
  --surface: #FFFFFF;
  --ink: #16203F;
  --ink-2: #3A4567;
  --muted: #6A7390;
  --muted-2: #8A91A8;

  /* Hairlines & borders */
  --hairline: #E9ECF4;
  --hairline-strong: #DEE2EE;

  /* Soft diffuse shadows */
  --shadow-sm: 0 1px 2px rgba(22, 32, 63, .04), 0 1px 1px rgba(22, 32, 63, .03);
  --shadow-md: 0 6px 24px rgba(22, 32, 63, .07), 0 2px 6px rgba(22, 32, 63, .04);
  --shadow-lg: 0 18px 48px rgba(22, 32, 63, .10), 0 6px 16px rgba(22, 32, 63, .05);

  /* Radii — soft modern rounding */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Type */
  --font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Layout */
  --container: 1120px;
  --container-narrow: 760px;
  --header-h: 68px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .28s;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* very faint dotted texture — minimal & tasteful */
  background-image: radial-gradient(rgba(43, 63, 134, .035) 1px, transparent 1px);
  background-size: 26px 26px;
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 var(--sp-4);
  font-weight: 700;
  letter-spacing: -.01em;
}

p { margin: 0 0 var(--sp-4); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--navy); }
img, svg { max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
  color: #fff;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 680px;
  margin-bottom: var(--sp-7);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section h2 {
  font-size: clamp(1.6rem, 1rem + 1.9vw, 2.15rem);
}
.section-head p {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover {
  background: #3A5BF0;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--hairline-strong);
}
.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn--link {
  padding: 0;
  background: none;
  color: var(--accent);
  font-weight: 600;
}
.btn--link:hover { color: var(--navy); gap: var(--sp-3); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 14px 24px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
}
.logo:hover { color: var(--ink); }
.logo__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  flex: none;
}
.logo__mark svg { width: 19px; height: 19px; }
.logo__text { line-height: 1.05; }
.logo__name { font-size: 1.05rem; letter-spacing: -.01em; }
.logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.main-nav a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.main-nav a:hover { background: var(--navy-tint); color: var(--navy); }
.main-nav a[aria-current="page"] { color: var(--navy); background: var(--navy-tint); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--hairline-strong);
  background: var(--surface);
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: var(--sp-9) var(--sp-8);
  overflow: hidden;
}
.hero::before {
  /* subtle gradient-mesh glow, minimal */
  content: "";
  position: absolute;
  inset: -20% 0 auto 0;
  height: 520px;
  background:
    radial-gradient(40% 60% at 18% 0%, rgba(76, 111, 255, .10), transparent 70%),
    radial-gradient(45% 70% at 88% 8%, rgba(43, 63, 134, .08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

.hero h1 {
  font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.4rem);
  letter-spacing: -.02em;
  margin-bottom: var(--sp-5);
}
.hero h1 .accent { color: var(--navy); }
.hero-lead {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin-bottom: var(--sp-6);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

/* Hero metrics — clean inline row with thin dividers */
.metrics {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.metric {
  flex: 1 1 180px;
  padding: var(--sp-5) var(--sp-5);
  border-left: 1px solid var(--hairline);
}
.metric:first-child { border-left: none; }
.metric__num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.metric__label {
  margin-top: 4px;
  font-size: .9rem;
  color: var(--muted);
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--hairline-strong);
}
.card h3 {
  font-size: 1.18rem;
  margin-bottom: var(--sp-3);
}
.card p { color: var(--muted); margin-bottom: var(--sp-4); }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.card-icon svg { width: 24px; height: 24px; }

.card__foot { margin-top: auto; }

/* feature card (6-up) — lighter */
.feature {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature .card-icon { margin-bottom: 0; flex: none; }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: .94rem; margin: 0; color: var(--muted); }

/* ---------- Steps (process) ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step__num {
  counter-increment: step;
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--sp-4);
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: var(--sp-2); }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Channels list (etik hat nedir) ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  background: var(--bg-soft);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
}
.chip svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- Single solution card ---------- */
.solution {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.solution h3 { font-size: 1.5rem; }
.solution p { color: var(--muted); font-size: 1.05rem; }
.solution__visual {
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(76,111,255,.10), transparent 70%),
    var(--bg-mesh);
  border: 1px solid var(--hairline);
  color: var(--navy);
}
.solution__visual svg { width: 96px; height: 96px; opacity: .9; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin-inline: auto; }
.cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-5);
}
.cta-band .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.cta-band .btn--light { background: #fff; color: var(--navy); }
.cta-band .btn--light:hover { background: var(--navy-tint); color: var(--navy-dark); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding-block: var(--sp-8) var(--sp-7);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto auto;
  width: 60%; height: 380px;
  background: radial-gradient(50% 70% at 80% 0%, rgba(76,111,255,.08), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.8rem);
  letter-spacing: -.02em;
  max-width: 760px;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 0;
}
.page-hero .sub-emph { color: var(--navy); font-weight: 600; }
.page-hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* ---------- About cards ---------- */
.about-grid { gap: var(--sp-5); }

/* ---------- Accordion (SSS) ---------- */
.accordion {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.acc-item { border-top: 1px solid var(--hairline); }
.acc-item:first-child { border-top: none; }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  transition: background var(--dur) var(--ease);
}
.acc-trigger:hover { background: var(--bg-soft); }
.acc-icon {
  flex: none;
  width: 22px; height: 22px;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-panel {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
}
.acc-panel.open { display: block; }
.acc-panel p { color: var(--muted); margin: 0; }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: var(--sp-5); }
.field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.field .req { color: var(--accent); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.field-error {
  display: none;
  color: #C0392B;
  font-size: .82rem;
  margin-top: 6px;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #C0392B;
  background: #FFF5F4;
}
.field input[aria-invalid="true"] + .field-error,
.field textarea[aria-invalid="true"] ~ .field-error { display: block; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border: 1px solid #BFE3CC;
  background: #F1FBF4;
  border-radius: var(--r-md);
  color: #1B5E33;
}
.form-success.show { display: flex; }
.form-success svg { width: 26px; height: 26px; flex: none; color: #2E9E54; }
.form-success strong { color: #1B5E33; display: block; margin-bottom: 2px; }

/* ---------- Info / notice boxes ---------- */
.notice {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--bg-soft);
}
.notice svg { width: 24px; height: 24px; flex: none; color: var(--accent); margin-top: 2px; }
.notice p { margin: 0; color: var(--ink-2); }
.notice--warn {
  border-color: #F1E0B8;
  background: #FFFBF0;
}
.notice--warn svg { color: #C58A1A; }

/* ---------- Contact channels ---------- */
.channel-list { display: grid; gap: var(--sp-4); }
.channel {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.channel:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.channel .card-icon { margin-bottom: 0; flex: none; width: 42px; height: 42px; }
.channel__label { font-size: .82rem; color: var(--muted); }
.channel__value { font-weight: 600; color: var(--ink); font-family: var(--font-head); }
.channel a { color: var(--ink); }
.channel a:hover { color: var(--accent); }

/* ---------- KVKK responsible card ---------- */
.kvkk-resp {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--navy-tint);
  padding: var(--sp-6);
}
.kvkk-resp h3 { font-size: 1.1rem; margin-bottom: var(--sp-3); }
.kvkk-resp dl { display: grid; gap: var(--sp-3); margin: 0; }
.kvkk-resp dt { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.kvkk-resp dd { margin: 2px 0 0; color: var(--ink); font-weight: 500; }

.kvkk-sections { display: grid; gap: var(--sp-5); }
.kvkk-block {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--navy);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
}
.kvkk-block h3 { font-size: 1.1rem; margin-bottom: var(--sp-2); }
.kvkk-block p { margin: 0; color: var(--muted); }

/* split layouts */
.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}
.split--form { grid-template-columns: 1.1fr .9fr; }

/* prose helper */
.prose p { color: var(--muted); }
.prose .strong-lead { font-size: 1.1rem; color: var(--ink-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  padding-block: var(--sp-8) var(--sp-5);
  margin-top: var(--sp-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--sp-7);
}
.footer-brand .logo { margin-bottom: var(--sp-4); }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: grid; gap: var(--sp-3); }
.footer-col a { color: var(--ink-2); font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--ink-2);
  font-size: .95rem;
}
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }
.colophon {
  margin-top: var(--sp-3);
  font-size: .8rem;
  color: var(--muted-2);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(140%);
  width: min(960px, calc(100% - 32px));
  z-index: 150;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  opacity: 0;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-banner.hide { display: none; }
.cookie-banner svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.cookie-banner p { margin: 0; font-size: .9rem; color: var(--ink-2); flex: 1 1 320px; }
.cookie-banner a { font-weight: 600; }
.cookie-banner .btn { flex: none; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* lists with checks */
.check-list { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.check-list li { display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--ink-2); }
.check-list svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .solution { grid-template-columns: 1fr; padding: var(--sp-6); }
  .solution__visual { order: -1; aspect-ratio: 16/7; }
  .split, .split--form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .main-nav,
  .header-actions { display: none; }

  .site-header.nav-open .container { position: relative; }
  .mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(255,255,255,.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 99;
    padding: var(--sp-6) var(--sp-5);
    overflow-y: auto;
    border-top: 1px solid var(--hairline);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav ul { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-5); }
  .mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--r-md);
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid var(--hairline);
  }
  .mobile-nav a:hover,
  .mobile-nav a[aria-current="page"] { background: var(--navy-tint); color: var(--navy); }
  .mobile-nav .mobile-actions { display: grid; gap: var(--sp-3); }

  .grid-4 { grid-template-columns: 1fr; }
  .metric { flex: 1 1 50%; border-top: 1px solid var(--hairline); }
  .metric:nth-child(-n+2) { border-top: none; }
  .metric:nth-child(odd) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding-block: var(--sp-8); }
  .hero { padding-block: var(--sp-8) var(--sp-7); }
}

@media (min-width: 761px) {
  .mobile-nav { display: none !important; }
}

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