/* ============================================================
   PARA LEGAL — dark security-SaaS landing
   Type: Space Grotesk (UI/display) + IBM Plex Mono (data)
   ============================================================ */

:root {
  /* surfaces — deep cool charcoal */
  --bg:        #f7f4ed;
  --bg-1:      #efe9dd;
  --panel:     #fffdf8;
  --panel-2:   #f3eee3;
  --line:      rgba(60,48,24,0.12);
  --line-2:    rgba(60,48,24,0.20);

  /* text */
  --tx:        #221d14;
  --tx-2:      #5f5848;
  --tx-3:      #948c7b;

  /* accents */
  --acc:       #9c6d1a;   /* verify green */
  --acc-dim:   rgba(156,109,26,0.13);
  --warn:      #8a6a2a;   /* deadlines */
  --warn-dim:  rgba(138,106,42,0.13);
  --info:      #2f6aa8;   /* live / data */
  --info-dim:  rgba(47,106,168,0.12);

  --r-sm: 6px;
  --r:    11px;
  --r-lg: 18px;
  --maxw: 1180px;

  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* background grid + glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  top: -30%;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(156,109,26,0.10) 0%, transparent 62%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

/* ---------- shared atoms ---------- */
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 10px var(--acc);
}

.section { padding: 84px 0; position: relative; z-index: 1; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 16px 0 14px;
}
.section-head p { color: var(--tx-2); font-size: 17px; max-width: 540px; }

.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-primary {
  background: var(--acc);
  color: #fff;
  font-weight: 600;
}
.btn-primary:hover { box-shadow: 0 0 0 3px var(--acc-dim); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--tx);
}
.btn-ghost:hover { border-color: var(--tx-2); background: rgba(60,48,24,0.05); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247,244,237,0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: -0.01em; font-size: 17px; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(150deg, var(--acc), #8a6a34);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 0 18px rgba(156,109,26,0.30);
}
.brand small { color: var(--tx-3); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--tx-2); transition: color .15s; }
.nav-links a:hover { color: var(--tx); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 860px){ .nav-links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 52px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.05fr; gap: 48px; align-items: start; }
.hero-copy { position: sticky; top: 96px; }
.hero-copy h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 22px 0 22px;
}
.hero-copy h1 .hl { color: var(--acc); }
.hero-copy .sub { font-size: 16.5px; color: var(--tx-2); max-width: 480px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin: 28px 0 22px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--tx-3); font-size: 13px; font-family: var(--mono); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--acc); }

@media (max-width: 940px){
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { position: static; top: auto; }
}

/* ---- hero demo: chat + case panel ---- */
.demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(60,48,24,0.15), inset 0 1px 0 rgba(255,255,255,0.7);
}
.demo-bar {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}
.demo-bar .dots { display: flex; gap: 6px; }
.demo-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); display: block; }
.demo-live { font-family: var(--mono); font-size: 11px; color: var(--info); display: inline-flex; align-items: center; gap: 7px; letter-spacing: .08em; }
.demo-live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--info); box-shadow: 0 0 0 0 var(--info); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(47,106,168,.5);} 70%{ box-shadow: 0 0 0 7px rgba(47,106,168,0);} 100%{ box-shadow:0 0 0 0 rgba(47,106,168,0);} }

/* chat column */
.chat {
  padding: 14px 14px 16px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-1), var(--panel));
  height: 440px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 9px;
  justify-content: flex-start;
}
.chat-src { font-family: var(--mono); font-size: 10.5px; color: var(--tx-3); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; display:flex; align-items:center; gap:6px; }
.chat-src b { color: var(--tx-2); font-weight: 500; }
.msg {
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.42;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.msg.show { opacity: 1; transform: none; }
.msg.user { align-self: flex-start; background: var(--panel-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg.para { align-self: flex-end; background: var(--acc-dim); border: 1px solid rgba(156,109,26,.30); color: var(--tx); border-bottom-right-radius: 4px; }
.msg .att { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; color: var(--info); margin-top: 4px; }
.msg .att svg { width: 13px; height: 13px; }
.typing { align-self: flex-end; display: inline-flex; gap: 4px; padding: 11px 14px; background: var(--acc-dim); border-radius: 13px; border-bottom-right-radius: 4px; opacity: 0; transition: opacity .25s; }
.typing.show { opacity: 1; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); animation: blink 1.2s infinite; }
.typing i:nth-child(2){ animation-delay: .2s; } .typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100%{ opacity:.25; } 30%{ opacity:1; } }

/* case column */
.case { padding: 14px; display: flex; flex-direction: column; gap: 9px; height: 440px; overflow-y: auto; scrollbar-width: none; }
.case::-webkit-scrollbar { display: none; }
.case-title { display: flex; align-items: center; justify-content: space-between; position: sticky; top: -14px; background: var(--panel); padding: 14px 0 8px; margin: -14px 0 0; z-index: 3; }
.case-title h4 { font-size: 12px; font-family: var(--mono); color: var(--tx-2); letter-spacing: .06em; font-weight: 500; white-space: nowrap; }
.case-id { font-family: var(--mono); font-size: 11px; color: var(--tx-3); white-space: nowrap; }
.field {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-1);
  padding: 8px 11px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .45s ease, transform .45s ease, border-color .3s;
}
.field.show { opacity: 1; transform: none; }
.field.flash { border-color: rgba(156,109,26,.55); box-shadow: 0 0 0 3px var(--acc-dim); }
.field .lbl { font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 3px; }
.field .val { font-size: 12.5px; color: var(--tx); line-height: 1.4; }
.field .val .tag { color: var(--acc); font-weight: 500; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  padding: 3px 8px; border-radius: 100px;
}
.chip.warn { background: var(--warn-dim); color: var(--warn); border: 1px solid rgba(138,106,42,.35); }
.chip.gold { background: var(--info-dim); color: var(--info); border: 1px solid rgba(47,106,168,.32); border-radius: var(--r-sm); line-height: 1.55; padding: 6px 10px; }
.chip.ok   { background: var(--acc-dim);  color: var(--acc);  border: 1px solid rgba(156,109,26,.35); }
.field .val .ref  { color: var(--info); font-weight: 600; }
.field .val .cite { font-family: var(--mono); font-size: 10.5px; color: var(--tx-3); }
.field .val br + .ref { display: inline-block; margin-top: 6px; }
.case-foot { margin-top: auto; }

@media (max-width: 560px){
  .demo { grid-template-columns: 1fr; }
  .chat { border-right: none; border-bottom: 1px solid var(--line); height: auto; min-height: 0; max-height: 340px; }
  .case { height: auto; min-height: 0; }
}

/* ---------- global mobile ---------- */
@media (max-width: 680px){
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 32px; }
  .hero { padding: 36px 0 52px; }
  .hero-copy h1 { font-size: clamp(30px, 8vw, 40px); margin: 16px 0 16px; }
  .hero-copy .sub { font-size: 15.5px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .cta { padding: 70px 0; }
  .cta-card { padding: 36px 22px; }
  .foot-cols { gap: 32px; }
  .bigstat .n { font-size: 26px; }
}

/* ============================================================
   PLATFORMS strip
   ============================================================ */
.platforms { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.platforms .lead { text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 26px; }
.plat-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.plat {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--panel); color: var(--tx-2); font-size: 14px; font-weight: 500;
  transition: border-color .2s, color .2s, transform .2s;
}
.plat:hover { border-color: var(--line-2); color: var(--tx); transform: translateY(-2px); }
.plat svg { width: 18px; height: 18px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel); padding: 24px 22px;
  position: relative; overflow: hidden;
}
.step::before {
  content: attr(data-n);
  position: absolute; top: -14px; right: 4px;
  font-family: var(--mono); font-size: 76px; font-weight: 500;
  color: rgba(60,48,24,0.06); line-height: 1;
}
.step .ico { width: 38px; height: 38px; border-radius: 9px; background: var(--acc-dim); border:1px solid rgba(156,109,26,.30); display: grid; place-items: center; margin-bottom: 18px; }
.step .ico svg { width: 19px; height: 19px; stroke: var(--acc); }
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--tx-2); line-height: 1.5; }
.step .arrow { position: absolute; top: 50%; right: -10px; color: var(--line-2); z-index: 2; }
@media (max-width: 920px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }

/* ============================================================
   REAL-TIME
   ============================================================ */
.rt-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.rt-copy h2 { font-size: clamp(26px,3vw,36px); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; margin: 14px 0 16px; }
.rt-copy p { color: var(--tx-2); font-size: 16.5px; margin-bottom: 22px; }
.rt-list { display: flex; flex-direction: column; gap: 13px; }
.rt-list li { list-style: none; display: flex; gap: 12px; font-size: 15px; color: var(--tx); }
.rt-list li svg { width: 18px; height: 18px; stroke: var(--acc); flex: none; margin-top: 2px; }
.feed {
  border: 1px solid var(--line-2); border-radius: var(--r-lg); background: var(--panel);
  padding: 14px; box-shadow: 0 24px 60px -30px rgba(60,48,24,0.15);
}
.feed-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px 14px; border-bottom: 1px solid var(--line); }
.feed-head h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--tx-2); font-weight: 500; }
.feed-stream { display: flex; flex-direction: column; height: 340px; overflow: hidden; }
.fev { display: flex; gap: 12px; padding: 12px 8px; border-bottom: 1px solid var(--line); align-items: flex-start; height: 85px; flex: none; box-sizing: border-box; }
.fev:last-child { border-bottom: none; }
.fev .d { width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex: none; }
.fev.g .d { background: var(--acc); box-shadow: 0 0 8px var(--acc); }
.fev.b .d { background: var(--info); box-shadow: 0 0 8px var(--info); }
.fev.a .d { background: var(--warn); box-shadow: 0 0 8px var(--warn); }
.fev .body { flex: 1; }
.fev .t { font-size: 13.5px; color: var(--tx); }
.fev .t b { font-weight: 600; }
.fev .meta { font-family: var(--mono); font-size: 10.5px; color: var(--tx-3); margin-top: 3px; letter-spacing: .04em; }
@media (max-width: 880px){ .rt-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   ACCURACY
   ============================================================ */
.acc-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.acc-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.bigstat { border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); padding: 18px 20px; flex: 1; min-width: 140px; }
.bigstat .n { font-family: var(--mono); font-size: 32px; font-weight: 600; letter-spacing: -.02em; color: var(--acc); }
.bigstat .l { font-size: 12.5px; color: var(--tx-2); margin-top: 4px; }
.bars { display: flex; flex-direction: column; gap: 16px; }
.bar { }
.bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.bar-top .name { font-size: 14.5px; color: var(--tx); }
.bar-top .name small { color: var(--tx-3); font-family: var(--mono); font-size: 11px; margin-left: 8px; }
.bar-top .pct { font-family: var(--mono); font-size: 14px; color: var(--acc); font-weight: 500; }
.track { height: 7px; border-radius: 100px; background: var(--panel-2); overflow: hidden; border: 1px solid var(--line); }
.fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #8a6a34, var(--acc)); width: 0; transition: width 1.2s cubic-bezier(.2,.8,.2,1); }
.acc-note { font-family: var(--mono); font-size: 11.5px; color: var(--tx-3); margin-top: 22px; line-height: 1.6; }
@media (max-width: 880px){ .acc-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   OUTPUTS
   ============================================================ */
.out-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.out {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--panel);
  padding: 22px; transition: border-color .2s, transform .2s, background .2s;
}
.out:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--panel-2); }
.out .badge { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--info); margin-bottom: 14px; display: inline-block; }
.out h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
.out p { font-size: 13.5px; color: var(--tx-2); line-height: 1.5; }
.out .doclines { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.out .doclines i { display: block; height: 6px; border-radius: 3px; background: var(--line); }
.out .doclines i:nth-child(1){ width: 100%; } .out .doclines i:nth-child(2){ width: 82%; } .out .doclines i:nth-child(3){ width: 60%; background: var(--acc-dim); }
@media (max-width: 880px){ .out-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .out-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECURITY
   ============================================================ */
.security { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sec {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.sec .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--panel-2); border: 1px solid var(--line-2); display: grid; place-items: center; }
.sec .ico svg { width: 20px; height: 20px; stroke: var(--acc); }
.sec h3 { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.sec p { font-size: 13.5px; color: var(--tx-2); line-height: 1.5; }
.sec-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; justify-content: center; }
.sec-badges .b { font-family: var(--mono); font-size: 12px; color: var(--tx-2); border: 1px solid var(--line-2); padding: 8px 14px; border-radius: 100px; display: inline-flex; gap: 8px; align-items: center; }
.sec-badges .b::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
@media (max-width: 880px){ .sec-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 110px 0; text-align: center; }
.cta-card {
  max-width: 720px; margin: 0 auto;
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--bg-1));
  padding: 56px 48px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px; background: radial-gradient(circle, rgba(156,109,26,.12), transparent 65%); pointer-events: none;
}
.cta-card h2 { font-size: clamp(28px,3.4vw,40px); font-weight: 600; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 14px; position: relative; }
.cta-card p { color: var(--tx-2); font-size: 16.5px; margin-bottom: 30px; position: relative; }
.req-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin: 0 auto; position: relative; text-align: left; }
.req-form .row { display: flex; gap: 12px; }
.req-form input, .req-form select {
  width: 100%; padding: 13px 15px; font-family: var(--sans); font-size: 14.5px;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  color: var(--tx); outline: none; transition: border-color .15s, box-shadow .15s;
}
.req-form input::placeholder { color: var(--tx-3); }
.req-form input:focus, .req-form select:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-dim); }
.req-form select { color: var(--tx-2); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%239aa1ad' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.req-form .btn-primary { width: 100%; justify-content: center; padding: 14px; margin-top: 4px; }
.req-note { font-family: var(--mono); font-size: 11px; color: var(--tx-3); text-align: center; margin-top: 4px; }
.req-success {
  display: none; flex-direction: column; align-items: center; gap: 14px; padding: 20px 0;
}
.req-success.show { display: flex; }
.req-success .ck { width: 54px; height: 54px; border-radius: 50%; background: var(--acc-dim); border: 1px solid rgba(156,109,26,.45); display: grid; place-items: center; }
.req-success .ck svg { width: 26px; height: 26px; stroke: var(--acc); }
.req-success h3 { font-size: 20px; font-weight: 600; }
.req-success p { color: var(--tx-2); font-size: 14.5px; margin: 0; }
@media (max-width: 480px){ .req-form .row { flex-direction: column; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line); padding: 40px 0 50px; position: relative; z-index: 1; }
.foot-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-brand { max-width: 320px; }
.foot-brand p { color: var(--tx-3); font-size: 13px; margin-top: 12px; line-height: 1.55; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--tx-2); margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--tx); }
.foot-legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-legal p { font-size: 12px; color: var(--tx-3); }
.disclaimer { font-family: var(--mono); font-size: 11.5px; color: var(--tx-3); line-height: 1.6; max-width: 620px; }
