/* ============================================================
   TRUSTCOMPLY — AI Compliance Solutions
   Shared design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Figtree:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand */
  --navy-900: #0a1f44;
  --navy-800: #0e2a55;
  --navy-700: #143b72;
  --navy-600: #1c4d8f;
  --blue-600: #1e5ad6;
  --blue-500: #2e6be6;
  --cyan-600: #0f8fb0;
  --cyan-500: #15a6c9;
  --cyan-400: #25bcdc;

  /* Neutrals (cool) */
  --ink: #0e1a2b;
  --slate-700: #2f3e54;
  --slate-600: #4a5a70;
  --slate-500: #6a7a90;
  --slate-400: #93a1b4;
  --line: #e4eaf1;
  --line-soft: #eef3f8;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-softer: #fafcfe;

  --grad-brand: linear-gradient(92deg, var(--blue-600) 0%, var(--cyan-500) 100%);
  --grad-navy: linear-gradient(160deg, #0c2a57 0%, #0a1f44 60%, #081834 100%);

  --shadow-sm: 0 1px 2px rgba(14, 26, 43, .06), 0 1px 3px rgba(14, 26, 43, .04);
  --shadow-md: 0 8px 24px -10px rgba(14, 42, 85, .18);
  --shadow-lg: 0 30px 60px -22px rgba(10, 31, 68, .34);
  --shadow-xl: 0 44px 90px -30px rgba(10, 31, 68, .42);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0 0 1em; color: var(--slate-600); text-wrap: pretty; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--cyan-500);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.section { padding: 104px 0; }
.section.tight { padding: 76px 0; }
.section.soft { background: var(--bg-soft); }
.section.navy {
  background: var(--grad-navy);
  color: #cdd9ec;
}
.section.navy h1, .section.navy h2, .section.navy h3, .section.navy h4 { color: #fff; }
.section.navy .eyebrow { color: var(--cyan-400); }
.section.navy .eyebrow::before { background: var(--cyan-400); }
.section.navy p { color: #a9bbd6; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 18px;
}
.section-head .lead { font-size: 19px; color: var(--slate-600); }
.section.navy .section-head .lead { color: #a9bbd6; }

.lead { font-size: 19px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(30, 90, 214, .6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(30, 90, 214, .7); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 17px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--blue-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -16px rgba(10, 31, 68, .5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img.brand-mark { height: 40px; width: auto; }
.brand .wordmark {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand .wordmark .t { color: var(--navy-800); }
.brand .wordmark .c { color: var(--cyan-500); }
.brand .wordmark small {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: .26em;
  color: var(--slate-400);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block;
  padding: 9px 15px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--slate-700);
  border-radius: 9px;
  transition: all .18s var(--ease);
}
.nav-links a:hover { color: var(--navy-900); background: var(--bg-soft); }
.nav-links a.active { color: var(--blue-600); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(37, 188, 220, .16), transparent 60%),
    radial-gradient(760px 520px at 8% 4%, rgba(30, 90, 214, .12), transparent 55%),
    var(--bg-softer);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero h1 .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { font-size: 20px; color: var(--slate-600); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 26px; display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--slate-500);
}
.hero-note svg { width: 18px; height: 18px; color: var(--cyan-600); flex: none; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px 7px 9px;
  font-size: 13.5px; font-weight: 600; color: var(--navy-700);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(21,166,201,.18); }

/* ---------------- Dashboard mock ---------------- */
.mock {
  position: relative;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mock-top {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-bottom: 1px solid var(--line-soft);
  background: var(--bg-softer);
}
.mock-top .dots { display: flex; gap: 6px; }
.mock-top .dots i { width: 10px; height: 10px; border-radius: 50%; background: #d6deea; }
.mock-top .url {
  margin-left: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px;
  color: var(--slate-400); background: #fff; border: 1px solid var(--line);
  padding: 4px 12px; border-radius: 999px;
}
.mock-body { padding: 20px; display: grid; gap: 14px; }
.mock-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; }
.mock-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px; background: #fff;
}
.mock-card .ck-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--slate-400); margin-bottom: 10px; display: block;
}
.score-ring {
  display: flex; align-items: center; gap: 14px;
}
.ring {
  position: relative;
  width: 72px; height: 72px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--cyan-500) 0 92%, #e7eef6 92% 100%);
  display: grid; place-items: center;
}
.ring::after { content: ""; width: 56px; height: 56px; border-radius: 50%; background: #fff; }
.ring .val {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; color: var(--navy-900);
}
.score-meta b { font-family: 'Sora', sans-serif; font-size: 15px; color: var(--navy-900); }
.score-meta span { font-size: 12.5px; color: var(--slate-500); display: block; }

.bars { display: flex; align-items: flex-end; gap: 8px; height: 66px; margin-top: 4px; }
.bars i { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, var(--blue-500), var(--cyan-500)); opacity: .85; }

/* mock metric tiles */
.mtiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mtile { border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; background: var(--bg-softer); }
.mtile .mt-num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--navy-900); line-height: 1; }
.mtile .mt-lab { font-size: 11.5px; color: var(--slate-500); margin-top: 6px; line-height: 1.3; }

/* mock progress bars */
.prog-list { display: grid; gap: 13px; }
.prog-row .pr-top { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 6px; color: var(--slate-500); }
.prog-row .pr-top b { color: var(--navy-900); font-weight: 600; }
.prog-track { height: 7px; border-radius: 99px; background: #e9eff6; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue-500), var(--cyan-500)); }

/* mock badge + lock tile */
.badge { display: inline-flex; align-items: center; gap: 5px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 99px; font-weight: 500; }
.badge svg { width: 11px; height: 11px; }
.badge.ok { background: rgba(21,166,201,.13); color: var(--cyan-600); }
.badge.warn { background: rgba(232,160,40,.16); color: #c5840f; }
.sec-tile { display: flex; align-items: center; gap: 13px; }
.sec-tile .sec-ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, rgba(30,90,214,.12), rgba(21,166,201,.14)); color: var(--blue-600); }
.sec-tile .sec-ic svg { width: 23px; height: 23px; }

.feed { display: grid; gap: 9px; }
.feed-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 10px; background: var(--bg-soft);
  font-size: 13px;
}
.feed-item .ic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.feed-item .ic svg { width: 14px; height: 14px; }
.feed-item.ok .ic { background: rgba(21,166,201,.14); color: var(--cyan-600); }
.feed-item.warn .ic { background: rgba(232,160,40,.16); color: #c5840f; }
.feed-item.info .ic { background: rgba(30,90,214,.12); color: var(--blue-600); }
.feed-item b { color: var(--navy-900); font-weight: 600; }
.feed-item time { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: var(--slate-400); }

.float-tag {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-md); padding: 11px 14px;
  display: flex; align-items: center; gap: 11px; font-size: 13px;
}
.float-tag .tg-ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; flex: none; }
.float-tag .tg-ic svg { width: 16px; height: 16px; }
.float-tag b { display: block; font-family: 'Sora', sans-serif; color: var(--navy-900); font-size: 15px; line-height: 1.1; }
.float-tag span { font-size: 11.5px; color: var(--slate-500); }
.float-tag.tl { top: -22px; left: -26px; }
.float-tag.br { bottom: -22px; right: -22px; }

/* ---------------- Logos / trust strip ---------------- */
.trust-strip { padding: 38px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-strip .label { text-align: center; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 22px; }
.std-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 12px; }
.std-chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  font-weight: 600; font-size: 14.5px; color: var(--slate-700); background: #fff;
}
.std-chip svg { width: 16px; height: 16px; color: var(--cyan-600); }

/* ---------------- Stat band ---------------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 6px 4px; }
.stat .num {
  font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(34px, 4vw, 48px); line-height: 1;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section.navy .stat .num { background: linear-gradient(92deg, #4f9bff, #41d3f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .cap { margin-top: 12px; font-size: 14.5px; color: var(--slate-600); }
.section.navy .stat .cap { color: #a9bbd6; }
.stat .src { display: block; margin-top: 7px; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: var(--slate-400); letter-spacing: .04em; }

/* ---------------- Feature cards ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ind-grid .card { padding: 24px 22px; }
.ind-grid .card .ic-box { width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px; }
.ind-grid .card .ic-box svg { width: 21px; height: 21px; }
.ind-grid .card h3 { font-size: 18px; }
.ind-grid .card p { font-size: 14.5px; }
@media (max-width: 1080px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ind-grid { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4e0ee; }
.card .ic-box {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(30,90,214,.12), rgba(21,166,201,.14));
  color: var(--blue-600); margin-bottom: 20px;
}
.card .ic-box svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15.5px; margin-bottom: 0; }
.card .feat-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.card .feat-list li { display: flex; gap: 9px; font-size: 14.5px; color: var(--slate-600); }
.card .feat-list svg { width: 17px; height: 17px; color: var(--cyan-600); flex: none; margin-top: 2px; }

.card.dark { background: var(--grad-navy); border-color: rgba(255,255,255,.08); color: #b9c9e0; }
.card.dark h3 { color: #fff; }
.card.dark p { color: #a9bbd6; }
.card.dark .ic-box { background: rgba(255,255,255,.1); color: var(--cyan-400); }

/* numbered / process */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .n {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px;
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--blue-600); border: 1px solid var(--line);
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: 16px; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.feat-check { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.feat-check li { display: flex; gap: 12px; align-items: flex-start; }
.feat-check .ck {
  width: 24px; height: 24px; border-radius: 7px; flex: none; display: grid; place-items: center;
  background: rgba(21,166,201,.13); color: var(--cyan-600); margin-top: 1px;
}
.feat-check .ck svg { width: 14px; height: 14px; }
.feat-check b { color: var(--navy-900); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; }
.feat-check span { display: block; color: var(--slate-600); font-size: 15px; }

/* media placeholder (for real screenshots later) */
.placeholder {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background-color: var(--bg-soft);
  background-image: repeating-linear-gradient(135deg, rgba(30,90,214,.05) 0 12px, transparent 12px 24px);
  min-height: 320px;
  display: grid; place-items: center; text-align: center; padding: 30px;
}
.placeholder .ph-inner { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--slate-500); letter-spacing: .04em; }
.placeholder .ph-inner svg { width: 30px; height: 30px; color: var(--slate-400); margin-bottom: 10px; }

/* ---------------- Monogram portrait ---------------- */
.monogram {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--grad-navy); display: grid; place-items: center; padding: 40px 28px;
}
.monogram::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(440px 300px at 72% 8%, rgba(37,188,220,.26), transparent 60%),
              radial-gradient(380px 320px at 8% 100%, rgba(30,90,214,.34), transparent 62%);
}
.monogram .mono-inner { position: relative; text-align: center; }
.monogram .mono-circle {
  width: 156px; height: 156px; border-radius: 50%; margin: 0 auto;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.monogram .mono-letters {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 58px; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(92deg, #ffffff, #8fd4ec); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.monogram .mono-name { margin-top: 22px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 20px; color: #fff; }
.monogram .mono-role { margin-top: 7px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #9fc0e0; }
.monogram .mono-contact { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #bcd0ea; }
.monogram .mono-contact svg { width: 15px; height: 15px; color: var(--cyan-400); }

/* ---------------- Map embed ---------------- */
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------------- Article covers ---------------- */
.cover { position: relative; min-height: 188px; display: grid; place-items: center; overflow: hidden; }
.cover.lg { min-height: 340px; }
.cover .cover-ic { position: relative; color: rgba(255,255,255,.95); }
.cover .cover-ic svg { width: 48px; height: 48px; }
.cover.lg .cover-ic svg { width: 64px; height: 64px; }
.cover::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 16px, transparent 16px 32px); }
.cover.c1 { background: linear-gradient(140deg, #0e2a55, #1e5ad6); }
.cover.c2 { background: linear-gradient(140deg, #117a96, #25bcdc); }
.cover.c3 { background: linear-gradient(140deg, #0a1f44, #15a6c9); }
.cover.c4 { background: linear-gradient(140deg, #1e3f86, #20b8d4); }

/* contact methods row */
.contact-methods { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cm {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 10px 18px 10px 12px; font-weight: 600; font-size: 15px; color: var(--navy-800);
  box-shadow: var(--shadow-sm); transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.cm:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.cm .cm-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(30,90,214,.12), rgba(21,166,201,.14)); color: var(--blue-600); flex: none; }
.cm .cm-ic svg { width: 16px; height: 16px; }
.section.navy .cm { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #e3edf8; }
.section.navy .cm:hover { border-color: var(--cyan-400); color: #fff; }
.section.navy .cm .cm-ic { background: rgba(255,255,255,.1); color: var(--cyan-400); }

/* WhatsApp */
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 22px -10px rgba(37,211,102,.6); }
.btn-wa:hover { background: #1fbe5b; color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37,211,102,.7); }
.btn-wa svg { width: 19px; height: 19px; }
.wa-link { display: inline-flex; align-items: center; gap: 7px; }
.wa-link svg { width: 15px; height: 15px; flex: none; color: #25d366; }
.cm .cm-ic.wa { background: rgba(37,211,102,.16); color: #1aa251; }
.section.navy .cm .cm-ic.wa { background: rgba(37,211,102,.2); color: #4ee584; }

/* ---------------- CTA band ---------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  background: var(--grad-navy); border-radius: var(--r-xl); padding: 64px 56px;
  position: relative; overflow: hidden; text-align: center;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 320px at 80% 0%, rgba(37,188,220,.22), transparent 60%),
              radial-gradient(520px 300px at 12% 100%, rgba(30,90,214,.28), transparent 60%);
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.cta-card p { color: #b9c9e0; font-size: 19px; max-width: 600px; margin: 0 auto 30px; }
.cta-card .hero-cta { justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--grad-navy); color: #9fb2cd; padding: 72px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand .wordmark .t { color: #fff; }
.footer-brand .brand .wordmark .c { color: var(--cyan-400); }
.footer-brand .brand .wordmark small { color: #6f86a8; }
.footer-brand p { color: #8ba0c0; font-size: 15px; margin: 20px 0 0; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: 'Sora', sans-serif; font-size: 13px; letter-spacing: .04em; margin-bottom: 18px; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: #9fb2cd; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #7f93b4;
}
.footer-bottom .disc { max-width: 760px; font-size: 12.5px; line-height: 1.5; color: #6f86a8; }

/* ---------------- Page hero (interior) ---------------- */
.page-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(700px 360px at 88% -20%, rgba(37,188,220,.12), transparent 60%),
    var(--bg-softer);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .crumb { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; }
.page-hero .lead { font-size: 20px; max-width: 660px; }

/* misc */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan-600); background: rgba(21,166,201,.1); border-radius: 999px; padding: 6px 13px;
  font-weight: 500;
}
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------------- Form fields ---------------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 13.5px; font-weight: 600; color: var(--navy-800); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-softer);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 90, 214, .1);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero .lead { max-width: none; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 76px 0; }
  .contact-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mock-row { grid-template-columns: 1fr; }
  .float-tag { display: none; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .form-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 860px) {
  .feature-split { grid-template-columns: 1fr !important; }
  .feature-split > div:first-child { padding: 36px !important; }
}

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  padding: 24px 28px; flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 4px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px; color: var(--navy-800); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }
