/* WingmanWP 2026: design system, extracted verbatim from the 2026-09-25 v2 mockup. */

:root {
  --ink: #050505;
  --body-text: #2b2f33;
  --muted: #62686f;
  --blue: #0a4b93;
  --blue-deep: #062f5c;
  --blue-soft: #eaf1fb;
  --navy: #071b32;
  --navy-2: #0c2846;
  --paper: #ffffff;
  --mist: #eef2f7;
  --mist-2: #e2e8f1;
  --line: #d9dfe6;
  --on-navy: #eef3fa;
  --on-navy-muted: #9db2c9;
  --good: #1c7a4b;
  --amber: #d97708;
  --amber-hover: #b95f06;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #f3f5f7;
    --body-text: #dbe2e9;
    --muted: #97a2ac;
    --paper: #0b1420;
    --mist: #0f1c2c;
    --mist-2: #142334;
    --line: #22344a;
    --blue-soft: #10233a;
    --navy: #050f1c;
    --navy-2: #0a1a2c;
    --on-navy: #eef3fa;
    --on-navy-muted: #8fa2b8;
  }
}
:root[data-theme="dark"] {
  --ink: #f3f5f7;
  --body-text: #dbe2e9;
  --muted: #97a2ac;
  --paper: #0b1420;
  --mist: #0f1c2c;
  --mist-2: #142334;
  --line: #22344a;
  --blue-soft: #10233a;
  --navy: #050f1c;
  --navy-2: #0a1a2c;
  --on-navy: #eef3fa;
  --on-navy-muted: #8fa2b8;
}

* { box-sizing: border-box; }
html {
  scroll-padding-top: calc(84px + env(safe-area-inset-top, 0px));
}
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body-text);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap, .wrap-narrow { padding: 0 20px; } }

/* ---------- nav ---------- */
header.site {
  position: sticky;
  top: 0;
  top: env(safe-area-inset-top, 0px);
  z-index: 40;
  border-bottom: 1px solid var(--line);
}
/* Frosted background lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed .mobile-panel and collapse the panel. */
header.site::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; background: none; border: none; padding: 0; }
.brand img { height: 34px; width: auto; }
.brand-tagline {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  padding-left: 12px; border-left: 1px solid var(--line); margin-left: 2px;
}
@media (max-width: 700px) { .brand-tagline { display: none; } }
nav.links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; color: var(--body-text); align-items: center; }
nav.links a { text-decoration: none; opacity: .78; transition: opacity .15s ease; padding-bottom: 4px; border-bottom: 2px solid transparent; }
nav.links a:hover { opacity: 1; }
nav.links a[aria-current="page"] { opacity: 1; color: var(--blue); border-bottom-color: var(--blue); font-weight: 700; }

.nav-item-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; }
.dropdown-trigger .chev { width: 13px; height: 13px; transition: transform .15s ease; }
.nav-item-dropdown:hover .dropdown-trigger .chev,
.nav-item-dropdown:focus-within .dropdown-trigger .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.1); padding: 8px; min-width: 230px;
  opacity: 0; visibility: hidden; transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px; font-size: 14px; font-weight: 500;
  color: var(--body-text); text-decoration: none; opacity: 1; border-bottom: none;
}
.nav-dropdown-menu a:hover { background: var(--mist); color: var(--blue); }
.mobile-sub { padding-left: 20px !important; font-size: 15px !important; opacity: .8; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  padding: 11px 20px; border-radius: 3px; font-weight: 600; font-size: 14.5px;
  text-decoration: none; white-space: nowrap; border: none; cursor: pointer;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--amber-hover); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 3px;
  width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.mobile-panel {
  display: none; position: fixed; inset: env(safe-area-inset-top,0px) 0 0 0; top: 84px;
  background: var(--paper); z-index: 39; padding: 20px 24px; border-top: 1px solid var(--line);
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block; padding: 16px 4px; font-size: 18px; font-weight: 600; text-decoration: none;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-panel a[aria-current="page"] { color: var(--blue); }
@media (max-width: 900px) {
  nav.links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- shared section shells ---------- */
section { padding: 68px 0; }
@media (max-width: 640px) { section { padding: 44px 0; } }
.section-head { max-width: 640px; margin-bottom: 38px; }
.kicker-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(111,168,232,0.14); color: #6fa8e8;
  padding: 7px 15px 7px 12px; border-radius: 20px;
  font-weight: 700; font-size: 13.5px; margin: 0 0 16px;
}
.kicker-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- colorful icon system ---------- */
.icon-tile { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-tile svg { width: 23px; height: 23px; }
.icon-tile.c-blue   { background: rgba(10,75,147,0.09);  color: #0a4b93; }
.icon-tile.c-teal   { background: rgba(13,148,136,0.11); color: #0d9488; }
.icon-tile.c-purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.icon-tile.c-orange { background: rgba(217,119,6,0.11);  color: #d97706; }
.icon-tile.c-pink   { background: rgba(190,24,93,0.09);  color: #be185d; }
.icon-tile.c-green  { background: rgba(21,128,61,0.10);  color: #15803d; }

.icon-badge.c-blue   { background: rgba(111,168,232,0.16); color: #6fa8e8; }
.icon-badge.c-teal   { background: rgba(45,212,191,0.16);  color: #2dd4bf; }
.icon-badge.c-purple { background: rgba(167,139,250,0.16); color: #a78bfa; }
.icon-badge.c-orange { background: rgba(251,191,36,0.16);  color: #fbbf24; }
.icon-badge.c-pink   { background: rgba(244,114,182,0.16); color: #f472b6; }
.icon-badge.c-green  { background: rgba(74,222,128,0.16);  color: #4ade80; }

/* ---------- scroll reveal + motion ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in .r-item { opacity: 1; transform: translateY(0); }
.r-item { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.r-item:nth-child(1) { transition-delay: .02s; }
.r-item:nth-child(2) { transition-delay: .08s; }
.r-item:nth-child(3) { transition-delay: .14s; }
.r-item:nth-child(4) { transition-delay: .2s; }
.r-item:nth-child(5) { transition-delay: .26s; }
.r-item:nth-child(6) { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .r-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { color: var(--blue); font-weight: 700; font-size: 14.5px; margin: 0 0 10px; }
.section-head h2 { font-weight: 300; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; color: var(--ink); margin: 0 0 14px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); font-size: 16.5px; line-height: 1.6; margin: 0; }

.band-mist { background: var(--mist); }
.band-navy { background: var(--navy); color: var(--on-navy); }
.band-navy .section-head h2 { color: var(--on-navy); }
.band-navy .section-head p { color: var(--on-navy-muted); }
.band-navy .kicker { color: #6fa8e8; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px; border-radius: 3px; font-weight: 600; font-size: 15.5px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

.page { display: block; }
.page[hidden] { display: none; }

/* ================= HOME ================= */
.hero { position: relative; overflow: hidden; padding: 84px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 48px 0 40px; } }
.eyebrow { color: var(--blue); font-weight: 700; font-size: 15px; margin: 0 0 18px; }
h1.hero-head { font-weight: 300; font-size: clamp(38px, 5.4vw, 62px); line-height: 1.06; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 24px; max-width: 15ch; }
h1.hero-head b { font-weight: 800; color: var(--blue); }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 46ch; margin: 0 0 34px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.trust-row { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 8px; }
.trust-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; max-width: 240px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(15,23,42,0.08); }
.trust-item .icon-tile { width: 34px; height: 34px; border-radius: 8px; margin-bottom: 0; flex-shrink: 0; }
.trust-item .icon-tile svg { width: 17px; height: 17px; }
.trust-item strong { display: block; color: var(--ink); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.trust-item span.d { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes dashMove { to { stroke-dashoffset: -40; } }
.hero-copy > * { animation: heroFadeUp .7s ease both; }
.hero-copy .eyebrow { animation-delay: 0s; }
.hero-copy .hero-head { animation-delay: .08s; }
.hero-copy .hero-sub { animation-delay: .16s; }
.hero-copy .cta-row { animation-delay: .24s; }
.hero-copy .trust-row { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { animation: none !important; }
  .float-a, .float-b, .float-c { animation: none !important; }
}
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; overflow: visible; }
.float-a { animation: floatY 5s ease-in-out infinite; transform-origin: center; }
.float-b { animation: floatY2 6s ease-in-out infinite; transform-origin: center; }
.float-c { animation: floatY 5.6s ease-in-out infinite .4s; transform-origin: center; }

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .teaser-grid { grid-template-columns: 1fr; } }
.teaser-card {
  background: var(--paper); border-radius: 12px; padding: 28px 26px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 10px 26px rgba(15,23,42,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(15,23,42,0.07), 0 18px 34px rgba(15,23,42,0.09); }
.teaser-card h3 { font-size: 17.5px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.teaser-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.section-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 34px; font-weight: 700; color: var(--blue); text-decoration: none; font-size: 15px; }

.pillar-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 52px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) { .pillar-strip { grid-template-columns: 1fr; } }
.pillar-chip { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.pillar-chip .icon-badge {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(111,168,232,0.14); display: flex; align-items: center; justify-content: center;
}
.pillar-chip .icon-badge svg { width: 20px; height: 20px; color: #6fa8e8; }
.pillar-chip h4 { font-size: 15.5px; font-weight: 700; color: var(--on-navy); margin: 4px 0 6px; }
.pillar-chip p { font-size: 13.5px; color: var(--on-navy-muted); line-height: 1.55; margin: 0; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { border: 1px solid var(--line); border-radius: 4px; padding: 30px 28px; background: var(--paper); }
.case-card .tag { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.case-card .stat { font-size: 30px; font-weight: 300; color: var(--ink); margin: 0 0 10px; }
.case-card .stat b { font-weight: 800; color: var(--blue); }
.case-card p.body { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.case-card a.link { font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: none; }

.testimonial {
  max-width: 760px; margin: 0 auto; text-align: left;
  background: var(--mist); border-radius: 10px; padding: 40px 44px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 12px 30px rgba(15,23,42,0.06);
  position: relative;
}
@media (max-width: 640px) { .testimonial { padding: 30px 26px; } }
.testimonial .quote-mark { width: 34px; height: 26px; color: var(--blue); opacity: .55; margin-bottom: 14px; }
.testimonial .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial .stars svg { width: 15px; height: 15px; color: #e2a63b; }
.testimonial p.quote { font-size: clamp(19px, 2.4vw, 23px); font-weight: 400; line-height: 1.5; color: var(--ink); margin: 0 0 26px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial .who-text { font-size: 14px; color: var(--muted); line-height: 1.4; }
.testimonial .who-text strong { display: block; color: var(--ink); font-size: 14.5px; }

.cta-band {
  position: relative; overflow: hidden; color: #fff; padding: 64px 0; text-align: left;
  background: linear-gradient(135deg, #0d5bb0 0%, var(--blue) 45%, var(--blue-deep) 100%);
}
.cta-band::before {
  content: ""; position: absolute; right: -6%; top: -70%; width: 50%; height: 280%;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.08) 0 10px, transparent 10px 26px);
  transform: skewX(-10deg); pointer-events: none;
}
.cta-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.cta-orb.o1 { width: 140px; height: 140px; right: 8%; top: -40px; animation: floatY 7s ease-in-out infinite; }
.cta-orb.o2 { width: 70px; height: 70px; right: 26%; bottom: -20px; animation: floatY2 6s ease-in-out infinite; }
.cta-orb.o3 { width: 38px; height: 38px; right: 4%; bottom: 30%; background: rgba(255,255,255,0.14); animation: floatY 5s ease-in-out infinite .3s; }
@media (max-width: 760px) { .cta-orb { display: none; } }
.cta-band-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band-inner > div:last-child { display: flex; flex-direction: column; align-items: center; }
.cta-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.cta-icon svg { width: 26px; height: 26px; color: #fff; }
.cta-band h2 { font-weight: 300; font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; max-width: 20ch; letter-spacing: -0.01em; }
.cta-band .cta-sub { font-size: 15px; color: rgba(255,255,255,0.78); margin: 0; max-width: 40ch; }
.cta-band .btn-primary {
  background: #fff; color: var(--blue-deep);
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.cta-band .btn-primary:hover { background: #eaf1fb; animation-play-state: paused; }
.cta-note { display: block; margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.7); text-align: center; }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.35); } 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }
@media (prefers-reduced-motion: reduce) {
  .cta-orb { animation: none !important; }
  .cta-band .btn-primary { animation: none !important; }
}

/* ================= SERVICES PAGE ================= */
.page-hero { padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero .kicker { color: var(--blue); font-weight: 700; font-size: 14.5px; margin: 0 0 14px; }
.page-hero h1 { font-weight: 300; font-size: clamp(32px, 4.6vw, 50px); line-height: 1.1; color: var(--ink); margin: 0 0 18px; max-width: 18ch; letter-spacing: -0.01em; }
.page-hero p { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 56ch; margin: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--paper); border-radius: 12px; padding: 28px 26px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 10px 26px rgba(15,23,42,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(15,23,42,0.07), 0 18px 34px rgba(15,23,42,0.09); }
.service-card h3 { font-size: 17.5px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.service-card.cta-tile {
  cursor: pointer; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, rgba(10,75,147,0.06), rgba(10,75,147,0.015));
  border: 1.5px dashed rgba(10,75,147,0.32); box-shadow: none;
}
.service-card.cta-tile:hover { box-shadow: 0 10px 26px rgba(10,75,147,0.1); border-color: rgba(10,75,147,0.5); }
.service-card.cta-tile h3 { color: var(--blue); }
.service-card.cta-tile .icon-tile { background: var(--blue); }
.service-card.cta-tile .icon-tile svg { color: #fff; }

.cap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 52px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 760px) { .cap-list { grid-template-columns: 1fr; } }
.cap-item { display: flex; gap: 18px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.cap-item .icon-badge {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(111,168,232,0.14); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.cap-item .icon-badge svg { width: 22px; height: 22px; color: #6fa8e8; }
.cap-item .tag-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.cap-item .tag-row .kicker-sm { font-size: 12.5px; font-weight: 700; color: #6fa8e8; }
.cap-item h3 { font-size: 17.5px; font-weight: 700; color: var(--on-navy); margin: 0 0 8px; }
.cap-item p { font-size: 14px; color: var(--on-navy-muted); line-height: 1.6; margin: 0; }
.cap-item .compliance-note { margin-top: 14px; padding: 12px 14px; background: rgba(111,168,232,0.1); border-left: 2px solid #6fa8e8; font-size: 13.5px; color: var(--on-navy); border-radius: 2px; }

/* ================= ABOUT PAGE ================= */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }
.story-grid h2 { font-weight: 300; font-size: clamp(26px, 3.2vw, 36px); color: var(--ink); margin: 0 0 20px; letter-spacing: -0.01em; }
.story-grid p { font-size: 16px; line-height: 1.7; color: var(--body-text); margin: 0 0 18px; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.value-item {
  background: var(--paper); border-radius: 12px; padding: 26px 24px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 10px 24px rgba(15,23,42,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-item:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(15,23,42,0.07), 0 16px 30px rgba(15,23,42,0.08); }
.value-item h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.value-item p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }

.compliance-block {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
  background: var(--navy); color: var(--on-navy); border-radius: 6px; padding: 48px;
}
@media (max-width: 860px) { .compliance-block { grid-template-columns: 1fr; padding: 34px 26px; } }
.compliance-block .kicker { color: #6fa8e8; font-weight: 700; font-size: 14px; margin: 0 0 12px; }
.compliance-block h2 { font-weight: 300; font-size: clamp(24px, 3vw, 32px); margin: 0 0 16px; color: var(--on-navy); letter-spacing: -0.01em; }
.compliance-block p.lead { font-size: 15.5px; color: var(--on-navy-muted); line-height: 1.65; margin: 0; }
.compliance-checks { display: flex; flex-direction: column; gap: 18px; }
.compliance-checks .item { display: flex; gap: 14px; align-items: flex-start; }
.compliance-checks .dot { width: 8px; height: 8px; border-radius: 50%; background: #6fa8e8; margin-top: 8px; flex-shrink: 0; }
.compliance-checks h4 { font-size: 15.5px; font-weight: 700; color: var(--on-navy); margin: 0 0 4px; }
.compliance-checks p { font-size: 14px; color: var(--on-navy-muted); line-height: 1.55; margin: 0; }

/* ---------- privacy page: tier cards ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px;
  position: relative; display: flex; flex-direction: column;
}
.tier-card.featured { border-color: #0a4b93; border-width: 2px; box-shadow: 0 10px 32px rgba(10,75,147,0.14); }
@media (min-width: 901px) { .tier-card.featured { transform: translateY(-8px); } }
.tier-card .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #0a4b93; color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px;
  border-radius: 20px; white-space: nowrap;
}
.tier-card .tier-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tier-card .tier-icon svg { width: 26px; height: 26px; }
.tier-card.c-teal .tier-icon   { background: rgba(13,148,136,0.11);  color: #0d9488; }
.tier-card.c-orange .tier-icon { background: rgba(217,119,6,0.11);   color: #d97706; }
.tier-card.c-blue .tier-icon   { background: rgba(10,75,147,0.09);   color: #0a4b93; }
.tier-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.tier-card .best-for { font-size: 13px; font-weight: 700; margin: 0 0 14px; }
.tier-card.c-teal .best-for   { color: #0d9488; }
.tier-card.c-orange .best-for { color: #d97706; }
.tier-card.c-blue .best-for   { color: #0a4b93; }
.tier-card .desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 20px; }
.tier-card .tier-features {
  list-style: none; margin: auto 0 0; padding: 16px 0 0; display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line);
}
.tier-card .tier-features li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--body-text); }
.tier-card .tier-features li svg { width: 16px; height: 16px; color: #15803d; flex-shrink: 0; margin-top: 2px; }

/* ---------- privacy page: EU vs US split ---------- */
.vs-split { display: grid; grid-template-columns: 1fr 1fr; position: relative; border-radius: 16px; overflow: hidden; }
@media (max-width: 760px) { .vs-split { grid-template-columns: 1fr; } .vs-divider { top: 0; left: 50%; transform: translate(-50%, -50%); } }
.vs-panel { padding: 44px 38px; position: relative; }
.vs-panel.eu { background: linear-gradient(135deg, #0d5bb0, #062f5c); }
.vs-panel.us { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.vs-panel .flag-icon { width: 46px; height: 46px; border-radius: 11px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vs-panel .flag-icon svg { width: 23px; height: 23px; color: #fff; }
.vs-panel h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; color: #fff; }
.vs-panel p { font-size: 14.5px; line-height: 1.65; margin: 0; color: rgba(255,255,255,0.85); }
.vs-divider {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18); z-index: 2;
}

/* ---------- privacy page: 4-step process ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-row { grid-template-columns: 1fr; } }
.process-step { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 26px 24px; }
.process-step .n {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 50%; font-weight: 800; font-size: 13.5px; margin-bottom: 16px;
}
.process-step:nth-child(1) .n { background: rgba(10,75,147,0.1);  color: #0a4b93; }
.process-step:nth-child(2) .n { background: rgba(217,119,6,0.1); color: #d97706; }
.process-step:nth-child(3) .n { background: rgba(124,58,237,0.1); color: #7c3aed; }
.process-step:nth-child(4) .n { background: rgba(21,128,61,0.1); color: #15803d; }
.process-step h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { border: 1px solid var(--line); border-radius: 4px; padding: 26px 22px; }
.team-card .avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px; font-size: 15px; }
.team-card .avatar.c-blue   { background: rgba(10,75,147,0.1);  color: #0a4b93; }
.team-card .avatar.c-purple { background: rgba(124,58,237,0.1); color: #7c3aed; }
.team-card .avatar.c-green  { background: rgba(21,128,61,0.1);  color: #15803d; }
.team-card .avatar.c-orange { background: rgba(217,119,6,0.1);  color: #d97706; }
.team-card h4 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin: 0 0 3px; }
.team-card p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ================= CASE STUDIES PAGE ================= */
.cs-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.cs-filter button {
  font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--muted);
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 9px 18px; cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.cs-filter button:hover { color: var(--blue); border-color: var(--blue); }
.cs-filter button.active { color: #fff; border-color: var(--blue); background: var(--blue); }

.cs-full {
  border: 1px solid var(--line); border-radius: 12px; padding: 40px 44px; margin-bottom: 28px; background: var(--paper);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 12px 28px rgba(15,23,42,0.05);
  transition: opacity .25s ease, transform .25s ease;
}
.cs-full.hide { display: none; }
@media (max-width: 640px) { .cs-full { padding: 28px 22px; } }
.cs-cat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cs-cat-icon svg { width: 21px; height: 21px; }
.cs-cat-icon.c-blue   { background: rgba(10,75,147,0.09);  color: #0a4b93; }
.cs-cat-icon.c-orange { background: rgba(217,119,6,0.11);  color: #d97706; }
.cs-cat-icon.c-purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.cs-full-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 26px; }
.cs-full-head .tag { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.cs-full-head h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; color: var(--ink); margin: 0; max-width: 34ch; }
.cs-full-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat-pill { border-radius: 10px; padding: 12px 18px; min-width: 130px; }
.stat-pill .n { font-size: 22px; font-weight: 800; }
.stat-pill .l { font-size: 12px; margin-top: 2px; }
.stat-pill.c-blue   { background: rgba(10,75,147,0.08); }  .stat-pill.c-blue .n   { color: #0a4b93; } .stat-pill.c-blue .l   { color: #0a4b93; opacity: .75; }
.stat-pill.c-orange { background: rgba(217,119,6,0.09); }  .stat-pill.c-orange .n { color: #d97706; } .stat-pill.c-orange .l { color: #d97706; opacity: .8; }
.stat-pill.c-purple { background: rgba(124,58,237,0.08); } .stat-pill.c-purple .n { color: #7c3aed; } .stat-pill.c-purple .l { color: #7c3aed; opacity: .8; }

.cs-timeline { position: relative; }
.cs-step { position: relative; padding-left: 56px; padding-bottom: 26px; }
.cs-step:last-child { padding-bottom: 0; }
.cs-step::before {
  content: ""; position: absolute; left: 18px; top: 38px; bottom: -4px; width: 2px; background: var(--line);
}
.cs-step:last-child::before { display: none; }
.cs-step .node {
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cs-step .node svg { width: 18px; height: 18px; }
.cs-step .node.c-red    { background: rgba(220,38,38,0.09);  color: #dc2626; }
.cs-step .node.c-purple { background: rgba(124,58,237,0.09); color: #7c3aed; }
.cs-step .node.c-blue   { background: rgba(10,75,147,0.09);  color: #0a4b93; }
.cs-step .node.c-green  { background: rgba(21,128,61,0.09);  color: #15803d; }
.cs-step .node.c-teal   { background: rgba(13,148,136,0.10); color: #0d9488; }
.cs-step h5 { font-size: 13px; font-weight: 700; color: var(--ink); margin: 6px 0 6px; }
.cs-step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; max-width: 62ch; }

/* ================= CONTACT PAGE ================= */
.contact-hero { position: relative; overflow: hidden; padding: 72px 0; color: #fff; background: linear-gradient(135deg, #0d5bb0 0%, var(--blue) 45%, var(--blue-deep) 100%); }
.contact-hero .wrap { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .contact-hero .wrap { grid-template-columns: 1fr; gap: 24px; } .contact-hero { padding: 52px 0; } }
.contact-hero h1 { font-weight: 300; font-size: clamp(30px, 4.2vw, 46px); margin: 14px 0 16px; color: #fff; max-width: 17ch; letter-spacing: -0.01em; }
.contact-hero p.lead { font-size: 16.5px; color: rgba(255,255,255,0.82); max-width: 48ch; margin: 0; line-height: 1.6; }
.contact-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.contact-orb.o1 { width: 160px; height: 160px; left: -40px; top: -50px; animation: floatY 7s ease-in-out infinite; }
.contact-orb.o2 { width: 90px; height: 90px; right: 6%; bottom: -30px; animation: floatY2 6s ease-in-out infinite; }
.contact-orb.o3 { width: 44px; height: 44px; left: 20%; bottom: 20%; background: rgba(255,255,255,0.14); animation: floatY 5s ease-in-out infinite .3s; }
@media (max-width: 760px) { .contact-orb, .contact-illustration { display: none; } }
.contact-illustration svg { width: 100%; height: auto; overflow: visible; }
.dash-fly { animation: dashMove 1.4s linear infinite; }
@media (prefers-reduced-motion: reduce) { .dash-fly, .contact-orb { animation: none !important; } }

.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-card { background: var(--paper); border-radius: 14px; padding: 36px; border-top: 4px solid var(--blue); box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 16px 36px rgba(15,23,42,0.07); }
@media (max-width: 560px) { .contact-card { padding: 26px 22px; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 3px; padding: 13px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--paper);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 130px; }
/* iOS Safari zooms the page on focus when a field's text is under 16px. */
@media (max-width: 900px) { .field input, .field textarea, .field select { font-size: 16px; } }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
.form-success { display: none; padding: 20px 22px; background: var(--blue-soft); border-left: 3px solid var(--blue); border-radius: 3px; font-size: 15px; color: var(--ink); }
.form-success.show { display: block; }
#contact-form.hide { display: none; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.trust-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; padding: 8px 14px; border-radius: 20px; }
.trust-badges span svg { width: 14px; height: 14px; }
.trust-badges .c-blue   { background: rgba(10,75,147,0.08);  color: #0a4b93; }
.trust-badges .c-orange { background: rgba(217,119,6,0.09);  color: #d97706; }
.trust-badges .c-purple { background: rgba(124,58,237,0.08); color: #7c3aed; }

.info-card { border: 1px solid var(--line); border-radius: 10px; padding: 30px; box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 10px 24px rgba(15,23,42,0.04); }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .icon-tile { margin-bottom: 0; flex-shrink: 0; width: 40px; height: 40px; }
.info-row .icon-tile svg { width: 20px; height: 20px; }
.info-row h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.info-row p { font-size: 14px; color: var(--muted); margin: 0; }
.info-row a { color: var(--blue); text-decoration: none; font-weight: 600; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; text-align: left; padding: 20px 2px;
  font-size: 16px; font-weight: 700; color: var(--ink); cursor: pointer; font-family: inherit;
}
.faq-q:hover { color: var(--blue); }
.faq-q .plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}
.faq-q .plus::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq-q .plus::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-item.open .plus::after { opacity: 0; transform: rotate(90deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; padding: 0 2px 20px; max-width: 62ch; }

/* ---------- footer ---------- */
footer { background: var(--navy); color: var(--on-navy-muted); padding: 64px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid #16324f; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
.foot-brand img { height: 40px; margin-bottom: 16px; }
.foot-brand p { font-size: 14px; line-height: 1.6; max-width: 30ch; color: var(--on-navy-muted); }
.foot-col h4 { font-size: 13.5px; font-weight: 700; color: var(--on-navy); margin: 0 0 16px; }
.foot-col a { display: block; font-size: 14px; color: var(--on-navy-muted); text-decoration: none; margin-bottom: 11px; cursor: pointer; }
.foot-col a:hover { color: var(--on-navy); }
@media (max-width: 600px) { .foot-col a { padding: 7px 0; margin-bottom: 2px; } }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 10px; }

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