/* ===========================================================
   Dijital Kurul 2.0 — corporate redesign stylesheet
   =========================================================== */
:root {
  --font-display: 'Libre Franklin', system-ui, sans-serif;
  --font-body: 'Libre Franklin', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --accent: #2f6bd6;

  --bg: oklch(0.986 0.004 255);
  --surface: #ffffff;
  --surface-2: oklch(0.975 0.006 258);
  --ink: oklch(0.23 0.035 262);
  --ink-2: oklch(0.43 0.02 262);
  --ink-3: oklch(0.56 0.016 262);
  --line: oklch(0.912 0.008 262);
  --line-2: oklch(0.945 0.006 262);

  --navy: oklch(0.255 0.05 262);
  --navy-2: oklch(0.205 0.045 262);
  --on-navy: oklch(0.96 0.01 262);
  --on-navy-2: oklch(0.74 0.02 262);

  --shadow-sm: 0 1px 2px oklch(0.2 0.04 262 / .05), 0 1px 3px oklch(0.2 0.04 262 / .05);
  --shadow-md: 0 4px 14px oklch(0.2 0.04 262 / .07), 0 1px 4px oklch(0.2 0.04 262 / .05);
  --shadow-lg: 0 24px 60px oklch(0.2 0.05 262 / .14), 0 6px 18px oklch(0.2 0.05 262 / .08);

  --r: 14px;   --r-sm: 9px;   --r-btn: 9px;   --r-pill: 999px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);
}
:root[data-corner="sharp"] { --r: 3px; --r-sm: 2px; --r-btn: 3px; }

:root[data-theme="dark"] {
  --bg: oklch(0.175 0.022 262);
  --surface: oklch(0.215 0.026 262);
  --surface-2: oklch(0.245 0.028 262);
  --ink: oklch(0.95 0.012 262);
  --ink-2: oklch(0.76 0.018 262);
  --ink-3: oklch(0.6 0.016 262);
  --line: oklch(0.31 0.02 262);
  --line-2: oklch(0.28 0.018 262);
  --navy: oklch(0.13 0.02 262);
  --navy-2: oklch(0.105 0.018 262);
  --on-navy: oklch(0.95 0.012 262);
  --on-navy-2: oklch(0.7 0.02 262);
  --shadow-md: 0 4px 14px #0006;
  --shadow-lg: 0 24px 60px #0008, 0 6px 18px #0006;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.6; letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.08; letter-spacing: -0.022em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }
.ic { display: inline-flex; }

/* shared section bits */
.sec__title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--ink); text-wrap: balance; }
.sec__title--light { color: var(--on-navy); }
.sec__lead { margin-top: 16px; font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2); max-width: 52ch; text-wrap: pretty; }
.sec__lead--light { color: var(--on-navy-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow__slash { opacity: .55; }
.eyebrow--light { color: color-mix(in oklch, var(--accent) 70%, white); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--r-btn); cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 14.5px; }
.btn--md { padding: 12px 22px; font-size: 15.5px; }
.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 1px 2px #0001; }
.btn--primary:hover { background: color-mix(in oklch, var(--accent) 88%, black); transform: translateY(-1px); box-shadow: 0 8px 20px color-mix(in oklch, var(--accent) 35%, transparent); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: color-mix(in oklch, var(--ink) 7%, transparent); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.chip {
  font-family: var(--font-mono); font-size: 12.5px; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: var(--r-pill); color: var(--ink-2);
  background: var(--surface);
}

/* ===================== HEADER ===================== */
.hdr { position: sticky; top: 0; z-index: 50; transition: background .25s, box-shadow .25s, border-color .25s; border-bottom: 1px solid transparent; }
.hdr--scrolled { background: color-mix(in oklch, var(--bg) 82%, transparent); backdrop-filter: blur(14px) saturate(1.4); border-bottom-color: var(--line); }
.hdr__inner { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad); display: flex; align-items: center; gap: 28px; }
.hdr__nav { display: flex; gap: 28px; margin-left: 8px; }
.hdr__nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.hdr__nav a:hover { color: var(--ink); }
.hdr__cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.hdr__login { font-size: 15px; font-weight: 600; color: var(--ink); }
.hdr__login:hover { color: var(--accent); }
.hdr__burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; margin-left: auto; }
.hdr__mobile { display: none; flex-direction: column; gap: 4px; padding: 8px var(--pad) 22px; background: var(--surface); border-bottom: 1px solid var(--line); }
.hdr__mobile a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line-2); }

/* brand */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; border-radius: 8px; background: var(--navy); display: grid; place-items: center; box-shadow: inset 0 0 0 1px #fff2; }
:root[data-corner="sharp"] .brand__mark { border-radius: 3px; }
.brand__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 30%, transparent); }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: 0.02em; color: var(--ink); }
.brand__sep { color: var(--accent); margin: 0 1px; }

/* ===================== HERO ===================== */
.hero { overflow: hidden; padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero__grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px; opacity: .4;
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 65%);
}
.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  padding: 7px 14px; border-radius: var(--r-pill); color: var(--accent);
  background: color-mix(in oklch, var(--accent) 12%, var(--surface)); border: 1px solid color-mix(in oklch, var(--accent) 24%, transparent); margin-bottom: 24px; white-space: nowrap; }
.hero__title { font-size: clamp(38px, 5.6vw, 68px); font-weight: 800; }
.hero__hl { color: var(--accent); }
.hero__sub { margin-top: 22px; font-size: clamp(16px, 1.5vw, 19.5px); color: var(--ink-2); max-width: 50ch; text-wrap: pretty; }
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__assure { margin-top: 28px; display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; color: var(--ink-3); }
.hero__assure span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.hero__assure .ic { color: var(--accent); }

.hero__visual { position: relative; }
.hero__shotwrap { position: relative; }
.hero__float { position: absolute; display: flex; align-items: center; gap: 11px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 16px; box-shadow: var(--shadow-lg); }
.hero__float .ic { color: var(--accent); }
.hero__float > div { line-height: 1.15; }
.hero__float b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink); line-height: 1; white-space: nowrap; }
.hero__float span { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.hero__float--1 { left: -22px; top: 22%; animation: floaty 6s ease-in-out infinite; }
.hero__float--2 { right: -16px; bottom: 16%; animation: floaty 6s ease-in-out infinite 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero__float { animation: none; } }

.hero--centered .hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.hero--centered .hero__sub { margin-inline: auto; }
.hero--centered .hero__actions, .hero--centered .hero__assure { justify-content: center; }
.hero--centered .hero__visual { width: 100%; max-width: 920px; margin-top: 18px; }
.hero--centered .hero__float--1 { left: 4%; }
.hero--centered .hero__float--2 { right: 4%; }

/* ===================== SHOT FRAME ===================== */
.shot { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.shot--hero { box-shadow: var(--shadow-lg); }
.shot__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); flex: none; }
.shot__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.shot__url { margin-left: 12px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); }
.shot__body { position: relative; flex: 1; min-height: 0; background: var(--surface-2); }
.shot__body img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.shot__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background-image: repeating-linear-gradient(45deg, var(--line-2) 0 11px, transparent 11px 22px); }
.shot__phmock { width: 56%; max-width: 320px; aspect-ratio: 5 / 2; border-radius: var(--r-sm);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    repeating-linear-gradient(180deg, transparent 0 18px, var(--line-2) 18px 19px) padding-box;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.shot__phmock::before { content: ""; position: absolute; left: 14px; right: 14px; top: 12px; height: 8px; border-radius: 4px;
  background: color-mix(in oklch, var(--accent) 35%, var(--line)); }
.shot__phlabel { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--ink-2);
  background: var(--surface); padding: 7px 13px; border-radius: var(--r-pill); border: 1px solid var(--line); }
.shot__phlabel .ic { color: var(--accent); }

/* ===================== TRUST BAR ===================== */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust__inner { max-width: var(--maxw); margin: 0 auto; padding: 36px var(--pad); display: grid; gap: 22px; }
.trust__lead { text-align: center; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.trust__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 6px; }
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 44px); color: var(--ink); letter-spacing: -0.03em; }
.stat__label { margin-top: 4px; font-size: 14px; color: var(--ink-3); }

/* ===================== AI SECTION ===================== */
.ai { padding: clamp(64px, 9vw, 120px) 0; }
.ai__inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); display: grid;
  grid-template-columns: 1fr 1.02fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.ai__list { list-style: none; margin: 30px 0; padding: 0; display: grid; gap: 16px; }
.ai__list li { display: flex; gap: 13px; align-items: flex-start; }
.ai__check { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--accent); margin-top: 1px; }
.ai__list b { display: block; font-size: 16px; color: var(--ink); }
.ai__list span { font-size: 15px; color: var(--ink-2); }
.ai__visual { position: relative; }
.ai__models { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.ai__modelcount { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .08em; }
.ai__chips { display: flex; flex-wrap: wrap; gap: 9px; }

/* ===================== FEATURES ===================== */
.feat { padding: clamp(48px, 7vw, 96px) 0; }
.feat__head { max-width: var(--maxw); margin: 0 auto 48px; padding-inline: var(--pad); }
.feat__grid { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px 0;
  display: flex; flex-direction: column; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in oklch, var(--accent) 30%, var(--line)); }
.fcard__icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 12%, var(--surface-2)); color: var(--accent); margin-bottom: 18px; }
.fcard__title { font-size: 21px; font-weight: 700; color: var(--ink); }
.fcard__desc { margin-top: 12px; font-size: 15px; color: var(--ink-2); }
.fcard__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--accent); }
.fcard__link:hover { gap: 11px; }
.fcard__shot { margin-top: 26px; margin-inline: -28px -28px; margin-bottom: -1px; }
.fcard__shot .shot { border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; box-shadow: none; }

/* ===================== PLATFORM ROWS ===================== */
.plat { padding: clamp(48px, 7vw, 96px) 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plat__head { max-width: var(--maxw); margin: 0 auto 56px; padding-inline: var(--pad); }
.plat__rows { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); display: flex; flex-direction: column; gap: clamp(48px, 7vw, 88px); }
.prow { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.prow--rev .prow__copy { order: 2; }
.prow__icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 12%, var(--bg)); color: var(--accent); margin-bottom: 18px; }
.prow__title { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; color: var(--ink); }
.prow__desc { margin-top: 14px; font-size: 16px; color: var(--ink-2); max-width: 46ch; }

/* ===================== CAPABILITIES ===================== */
.caps { padding: clamp(56px, 8vw, 110px) 0; }
.caps__head { max-width: var(--maxw); margin: 0 auto 48px; padding-inline: var(--pad); text-align: center; }
.caps__head .eyebrow { justify-content: center; }
.caps__head .sec__lead { margin-inline: auto; }
.caps__grid { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cap { padding: 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color .2s, background .2s; }
.cap:hover { border-color: color-mix(in oklch, var(--accent) 28%, var(--line)); background: color-mix(in oklch, var(--accent) 4%, var(--surface)); }
.cap__icon { width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 12%, var(--surface-2)); color: var(--accent); margin-bottom: 16px; }
.cap__title { font-size: 18px; font-weight: 700; color: var(--ink); }
.cap__desc { margin-top: 9px; font-size: 14.5px; color: var(--ink-2); }

/* ===================== SOLUTIONS (inverted) ===================== */
.sol { background: var(--navy); padding: clamp(56px, 8vw, 110px) 0; }
.sol__head { max-width: var(--maxw); margin: 0 auto 44px; padding-inline: var(--pad); }
.sol__grid { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.solcard { display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: var(--r);
  background: color-mix(in oklch, var(--on-navy) 6%, transparent); border: 1px solid color-mix(in oklch, var(--on-navy) 12%, transparent);
  transition: background .2s, transform .2s, border-color .2s; position: relative; min-height: 168px; }
.solcard:hover { background: color-mix(in oklch, var(--on-navy) 11%, transparent); transform: translateY(-3px); border-color: color-mix(in oklch, var(--accent) 50%, transparent); }
.solcard__icon { width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 26%, transparent); color: color-mix(in oklch, var(--accent) 60%, white); }
.solcard__body h3 { font-size: 16.5px; font-weight: 700; color: var(--on-navy); }
.solcard__body p { margin-top: 6px; font-size: 13.5px; color: var(--on-navy-2); }
.solcard__arrow { color: var(--on-navy-2); position: absolute; top: 24px; right: 22px; transition: transform .2s, color .2s; }
.solcard:hover .solcard__arrow { color: var(--on-navy); transform: translate(3px,-3px); }

/* ===================== TRUST / GUVEN ===================== */
.guv { padding: clamp(56px, 8vw, 110px) 0; }
.guv__inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.guv__head { max-width: 640px; }
.guv__certs { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.cert { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface); font-weight: 700; font-size: 15px; color: var(--ink); }
.cert .ic { color: var(--accent); }
.guv__metrics { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 36px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.metric__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.6vw, 32px); color: var(--accent); letter-spacing: -0.02em; }
.metric__label { margin-top: 6px; font-size: 14px; color: var(--ink-2); }
.case { margin: 40px 0 0; padding: 36px; border-radius: var(--r); background: var(--navy); color: var(--on-navy); }
.case blockquote { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 2.2vw, 27px); line-height: 1.4; letter-spacing: -0.015em; text-wrap: pretty; }
.case figcaption { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.case__avatar { width: 46px; height: 46px; border-radius: 50%; background: color-mix(in oklch, var(--accent) 40%, var(--navy)); border: 1px solid color-mix(in oklch, var(--on-navy) 20%, transparent); flex: none; }
.case figcaption b { display: block; font-family: var(--font-body); font-size: 15px; color: var(--on-navy); }
.case figcaption span span { font-size: 13.5px; color: var(--on-navy-2); }

/* ===================== FAQ ===================== */
.faq { padding: clamp(48px, 7vw, 96px) 0; background: var(--surface); border-top: 1px solid var(--line); }
.faq__inner { max-width: 880px; margin: 0 auto; padding-inline: var(--pad); }
.faq__head { text-align: center; margin-bottom: 40px; }
.faq__head .eyebrow { justify-content: center; }
.faq__list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; padding: 24px 0; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 1.8vw, 19px); color: var(--ink); }
.qa__icon { flex: none; color: var(--accent); transition: transform .25s; }
.qa--open .qa__icon { transform: rotate(45deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.qa--open .qa__a { grid-template-rows: 1fr; }
.qa__a > p { overflow: hidden; margin: 0; color: var(--ink-2); font-size: 16px; }
.qa--open .qa__a > p { padding-bottom: 24px; }

/* ===================== CTA (inverted) ===================== */
.cta { background: var(--navy-2); padding: clamp(56px, 8vw, 104px) 0; }
.cta__inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.cta__title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: var(--on-navy); text-wrap: balance; }
.cta__sub { margin-top: 18px; font-size: 18px; color: var(--on-navy-2); max-width: 46ch; }
.cta__actions { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--on-navy); }
.cta__phone .ic { color: color-mix(in oklch, var(--accent) 60%, white); }
.cta__phone:hover { color: color-mix(in oklch, var(--accent) 55%, white); }
.cta__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cta__list li { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--r-sm);
  background: color-mix(in oklch, var(--on-navy) 6%, transparent); border: 1px solid color-mix(in oklch, var(--on-navy) 11%, transparent); }
.cta__li-ic { flex: none; width: 38px; height: 38px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: color-mix(in oklch, var(--accent) 28%, transparent); color: color-mix(in oklch, var(--accent) 62%, white); }
.cta__list b { display: block; font-size: 15.5px; color: var(--on-navy); }
.cta__list span { font-size: 13.5px; color: var(--on-navy-2); }

/* ===================== FOOTER ===================== */
.ftr { background: var(--navy); color: var(--on-navy-2); }
.ftr__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 6vw, 72px) var(--pad); display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(36px, 5vw, 72px); }
.brand--ftr .brand__name, .ftr .brand__name { color: var(--on-navy); }
.brand--ftr .brand__mark { background: color-mix(in oklch, var(--on-navy) 12%, transparent); }
.ftr__brand > p { margin-top: 18px; max-width: 32ch; font-size: 15px; color: var(--on-navy-2); }
.ftr__contact { margin-top: 22px; display: grid; gap: 11px; font-size: 14.5px; }
.ftr__contact a, .ftr__contact span { display: inline-flex; align-items: center; gap: 10px; color: var(--on-navy-2); }
.ftr__contact a:hover { color: var(--on-navy); }
.ftr__contact .ic { color: color-mix(in oklch, var(--accent) 60%, white); }
.ftr__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ftr__col h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--on-navy); margin-bottom: 14px; }
.ftr__col a { display: block; padding: 6px 0; font-size: 14.5px; color: var(--on-navy-2); }
.ftr__col a:hover { color: var(--on-navy); }
.ftr__bottom { border-top: 1px solid color-mix(in oklch, var(--on-navy) 12%, transparent); }
.ftr__bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--on-navy-2); }
.ftr__badges { font-family: var(--font-mono); letter-spacing: .06em; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hdr__nav, .hdr__cta .hdr__login { display: none; }
  .hdr__burger { display: inline-flex; }
  .hdr__mobile { display: flex; }
  .hero__inner, .ai__inner, .prow, .cta__inner, .ftr__inner { grid-template-columns: 1fr; }
  .prow--rev .prow__copy { order: 0; }
  .hero__float--1 { left: 0; } .hero__float--2 { right: 0; }
  .feat__grid, .caps__grid { grid-template-columns: repeat(2, 1fr); }
  .sol__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__stats, .guv__metrics { grid-template-columns: repeat(2, 1fr); }
  .ftr__inner { gap: 40px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feat__grid, .caps__grid, .sol__grid, .ftr__cols { grid-template-columns: 1fr; }
  .hero__float { display: none; }
  .cta__actions { gap: 16px; }
}

/* ===================== DROPDOWN ===================== */
.nav-dropdown { position: relative; padding-bottom: 8px; margin-bottom: -8px; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
  opacity: .6;
}
.nav-dropdown:hover > a::after { transform: rotate(225deg) translateY(-2px); opacity: 1; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  padding-top: 16px;
  margin-top: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}
/* invisible bridge fills gap between trigger and menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 12px !important;
  border-radius: var(--r-sm);
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: var(--ink-2) !important;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: color-mix(in oklch, var(--accent) 8%, var(--bg)); color: var(--accent) !important; }
.dropdown-menu .dm-icon {
  width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
  background: color-mix(in oklch, var(--accent) 11%, var(--surface-2));
  color: var(--accent);
  display: grid; place-items: center;
}
.dropdown-menu .dm-sep {
  height: 1px; background: var(--line); margin: 6px 4px;
}
