/* ─── TOKENS ─── */
:root {
  --navy:       #0B1E38;
  --navy-light: #162D52;
  --blue:       #0095F5;
  --blue-lt:    #33AAFF;
  --blue-pale:  #E8F4FE;
  --white:      #FFFFFF;
  --surface:    #F7F9FC;
  --surface2:   #EEF3FA;
  --text:       #0B1E38;
  --muted:      #64748B;
  --border:     #DDE5EF;
  --r:          12px;
  --r-sm:       8px;
  --r-lg:       20px;
  --shadow-sm:  0 2px 8px rgba(11,30,56,.07);
  --shadow:     0 8px 32px rgba(11,30,56,.11);
  --shadow-lg:  0 24px 64px rgba(11,30,56,.15);
  --display:    'Plus Jakarta Sans', system-ui, sans-serif;
  --body:       'Inter', system-ui, sans-serif;
  --wrap:       1200px;
  --pad:        120px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 48px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── NAVBAR ─── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 0; transition: padding .3s, background .3s, box-shadow .3s;
}
.nav-wrap.scrolled {
  padding: 16px 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; gap: 40px;
  max-width: var(--wrap); margin: 0 auto; padding: 0 48px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.nav-logo-img {
  height: 26px; width: auto; display: block;
  /* on dark hero: invert so navy→white, keep blue */
  filter: brightness(0) saturate(100%) invert(1);
  transition: filter .3s;
}
.nav-wrap.scrolled .nav-logo-img { filter: none; }
.nav-logo-img--footer {
  height: 22px;
  /* footer is dark navy — make wordmark white */
  filter: brightness(0) saturate(100%) invert(1) !important;
}
.nav-logo-sub {
  font-size: 9px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55); line-height: 1;
  transition: color .3s; margin-left: 32px;
}
.nav-wrap.scrolled .nav-logo-sub { color: var(--muted); }

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px;
  color: rgba(255,255,255,.8); transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-wrap.scrolled .nav-links a { color: var(--muted); }
.nav-wrap.scrolled .nav-links a:hover { color: var(--navy); background: var(--surface); }

.nav-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lang-toggle { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  padding: 5px 9px; border-radius: 6px; color: rgba(255,255,255,.45);
  transition: color .2s, background .2s;
}
.lang-btn.active { color: var(--white); background: rgba(255,255,255,.12); }
.lang-btn:hover { color: var(--white); }
.nav-wrap.scrolled .lang-btn { color: rgba(11,30,56,.35); }
.nav-wrap.scrolled .lang-btn.active { color: var(--navy); background: var(--surface2); }
.nav-wrap.scrolled .lang-btn:hover { color: var(--navy); }
.lang-sep { font-size: 11px; color: rgba(255,255,255,.25); }
.nav-wrap.scrolled .lang-sep { color: var(--border); }
.nav-cta {
  font-size: 13px; font-weight: 700; padding: 11px 22px; border-radius: 8px;
  background: var(--blue); color: var(--white); transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,149,245,.35); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1610135206707-0f03e4800631?w=1920&q=85&fit=crop');
  background-size: cover; background-position: center 60%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,30,56,.97) 0%, rgba(11,30,56,.90) 42%, rgba(11,30,56,.62) 72%, rgba(11,30,56,.30) 100%);
}
/* Relianta-style diagonal line grid — subtle geometric texture over the dark overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 80L80 0' stroke='rgba(255,255,255,0.055)' stroke-width='1'/%3E%3C/svg%3E");
}
.hero-container { position: relative; z-index: 2; }
.hero-content { max-width: 820px; padding: 100px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 36px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--blue); flex-shrink: 0; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.035em; color: var(--white);
  margin-bottom: 28px; max-width: 740px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.68);
  line-height: 1.75; max-width: 580px; margin-bottom: 52px;
}
.hero-rule { width: 40px; height: 2px; background: var(--blue); margin-bottom: 32px; }
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 10px; font-size: 15px; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,149,245,.38); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.32); color: rgba(255,255,255,.85); }
.btn-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.hero-scroll {
  position: absolute; bottom: 48px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-track { width: 1.5px; height: 56px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }
.hero-scroll-label {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); writing-mode: vertical-rl;
}

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-inner {
  display: flex; align-items: center;
  width: max-content;
  animation: trust-scroll 30s linear infinite;
}
.trust-inner:hover { animation-play-state: paused; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 18px 44px; border-right: 1px solid var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.trust-item svg { width: 15px; height: 15px; stroke: var(--blue); flex-shrink: 0; }
.trust-item:hover { color: var(--navy); }

/* ─── SECTION BASICS ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.section-tag::before { content: ''; width: 22px; height: 1.5px; background: var(--blue); flex-shrink: 0; }
.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 20px;
}
.section-lead { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 640px; }

/* ─── ABOUT ─── */
.about { padding: var(--pad) 0; position: relative; overflow: hidden; }
/* Relianta-style concentric arc ornament — top-right corner */
.about::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0,149,245,.07);
  box-shadow: 0 0 0 60px rgba(0,149,245,.04), 0 0 0 120px rgba(0,149,245,.025);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-reg { display: flex; gap: 8px; margin: 28px 0 36px; flex-wrap: wrap; }
.tag {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  background: var(--blue-pale); color: var(--blue); border: 1px solid rgba(0,149,245,.2);
}
.about-purpose {
  margin-top: 40px; padding: 28px 32px;
  border-left: 3px solid var(--blue); background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
}
.about-purpose-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.about-purpose p { font-size: 15px; line-height: 1.7; color: var(--text); }
.about-visual { position: relative; }
.about-photo {
  width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.about-badge {
  position: absolute; bottom: 32px; left: -28px;
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow);
  padding: 22px 28px; min-width: 180px;
}
.about-badge-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.about-badge-val {
  font-family: var(--display); font-size: 15px; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.about-badge-val span { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }

/* ─── SERVICES ─── */
.services { padding: var(--pad) 0; background: var(--surface); position: relative; overflow: hidden; }
/* Relianta-style diagonal lines accent — bottom-left corner */
.services::before {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60L60 0M-15 15L15-15M45 75L75 45' stroke='rgba(0,149,245,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.services-header { margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 64px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg); padding: 48px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue);
}
.service-num {
  font-family: var(--display); font-size: 72px; font-weight: 900;
  color: var(--surface2); letter-spacing: -0.05em; line-height: 1; margin-bottom: 20px;
  user-select: none;
}
.service-icon {
  width: 54px; height: 54px; background: var(--blue-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.service-card > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); }
.feature-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* Who we serve */
.serve-heading {
  font-family: var(--display); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.client-card {
  background: var(--white); border-radius: var(--r); padding: 28px 20px;
  text-align: center; border: 1px solid var(--border);
}
.client-icon {
  width: 48px; height: 48px; background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.client-icon svg { width: 23px; height: 23px; stroke: var(--white); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.client-name { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.client-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }
.serve-note { margin-top: 24px; padding: 16px 20px; background: var(--surface2); border-radius: var(--r-sm); font-size: 13px; color: var(--muted); text-align: center; }

/* ─── PARTNERSHIPS ─── */
.partners { padding: var(--pad) 0; }
.partners-header { margin-bottom: 52px; }
.partner-featured {
  display: flex; align-items: flex-start; gap: 52px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 52px 56px; margin-bottom: 24px;
}
.partner-badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.partner-logo-block {
  width: 110px; height: 72px; background: var(--navy); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.partner-logo-block svg { width: 52px; height: 32px; }
.partner-content h3 {
  font-family: var(--display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.partner-content p { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.partner-warning {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #D97706; margin-top: 16px; line-height: 1.5;
}
.partner-warning svg { width: 14px; height: 14px; stroke: #D97706; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2; }
.partners-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 36px;
}
.partner-card h4 {
  font-family: var(--display); font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.partner-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── COMPLIANCE (dark) ─── */
.compliance {
  position: relative; padding: var(--pad) 0; overflow: hidden;
  background: #060f1e;
}
.compliance-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/cpl-bg.png');
  background-size: cover; background-position: center 30%;
}
.compliance-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,.82) 0%, rgba(6,15,30,.58) 50%, rgba(6,15,30,.78) 100%);
}
.compliance .container { position: relative; z-index: 1; }
.compliance .section-tag { color: var(--blue-lt); }
.compliance .section-tag::before { background: var(--blue-lt); }
.compliance .section-title { color: var(--white); }

/* Split header */
.cpl-header {
  display: grid; grid-template-columns: 1fr 400px; gap: 72px;
  align-items: center; margin-bottom: 80px;
}
.compliance-intro { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 560px; margin-bottom: 0; }
.cpl-header-right { }
.cpl-img-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.07);
}
.cpl-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpl-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,15,30,.88) 0%, rgba(6,15,30,.2) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 28px 32px;
}
.cpl-badge-label {
  display: block; font-family: var(--display); font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -.01em; line-height: 1.2;
}
.cpl-badge-sub {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-lt); margin-top: 5px;
}

/* Quote band */
.cpl-quote-wrap {
  position: relative; text-align: center;
  padding: 56px 48px; margin-bottom: 64px;
}
.cpl-quote-wrap::before, .cpl-quote-wrap::after {
  content: ''; position: absolute; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,149,245,.35), transparent);
}
.cpl-quote-wrap::before { top: 0; }
.cpl-quote-wrap::after { bottom: 0; }
.cpl-quote-deco {
  display: block; font-size: 128px; line-height: .7;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(0,149,245,.12); margin-bottom: 12px;
  user-select: none;
}
.compliance-quote {
  font-family: var(--display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: rgba(255,255,255,.9); font-style: italic; line-height: 1.5;
  max-width: 720px; margin: 0 auto; padding: 0; border: none;
}

/* Glassmorphic cards */
.compliance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px;
  isolation: isolate;
}
.comp-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-top: 2px solid rgba(0,149,245,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r); padding: 32px;
  /* Pre-promote to GPU layer to prevent backdrop-filter repaint artifacts */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.comp-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(0,149,245,.28) 0%, rgba(0,149,245,.08) 100%);
  border: 1px solid rgba(0,149,245,.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.comp-icon svg { width: 22px; height: 22px; stroke: var(--blue-lt); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.comp-item h4 { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.comp-item p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* Advisor redesign */
.compliance-advisor {
  display: grid; grid-template-columns: 220px 1fr auto auto; gap: 40px;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,149,245,.28);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ca-image-panel {
  position: relative; height: 100%; min-height: 200px; flex-shrink: 0;
}
.ca-image-panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.55) saturate(.7);
}
.ca-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(6,15,30,.9) 100%);
}
.ca-content { padding: 36px 0 36px 0; }
.ca-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 8px; }
.ca-name { font-family: var(--display); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 12px; }
.ca-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 480px; }
.ca-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue-lt); margin-top: 12px; }
.ca-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.ca-divider { width: 1px; height: 80px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.ca-badge-wrap { flex-shrink: 0; text-align: center; padding: 0 36px 0 0; }
.ca-badge-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(0,149,245,.2), rgba(0,149,245,.06));
  border: 1px solid rgba(0,149,245,.3);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.ca-badge-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }

/* ─── SECURITY ─── */
.security { padding: var(--pad) 0; background: var(--surface); }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.sec-card {
  background: var(--white); border-radius: var(--r); padding: 36px 28px;
  border: 1px solid var(--border); text-align: center;
}
.sec-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.sec-icon svg { width: 30px; height: 30px; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.sec-card h4 { font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.sec-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── GOVERNANCE ─── */
.governance { padding: var(--pad) 0; }
.governance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; margin-top: 56px; }
.gov-list { display: flex; flex-direction: column; gap: 18px; }
.gov-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px; border-radius: var(--r); border: 1px solid var(--border);
}
.gov-icon {
  width: 44px; height: 44px; background: var(--blue-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gov-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.gov-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.gov-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.group-box { background: var(--navy); border-radius: var(--r-lg); padding: 40px 52px; color: var(--white); display: flex; flex-direction: column; justify-content: flex-start; }
.group-box .section-tag { color: var(--blue-lt); margin-bottom: 20px; }
.group-box .section-tag::before { background: var(--blue-lt); }
.group-box h3 {
  font-family: var(--display); font-size: 30px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 18px; line-height: 1.2;
}
.group-box p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ─── FAQ ─── */
.faq { padding: var(--pad) 0; background: var(--surface); }
.faq-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.faq-header .section-tag { justify-content: center; }
.faq-header .section-tag::before { display: none; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden;
}
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 26px 32px; font-size: 16px; font-weight: 600;
  text-align: left; color: var(--text); transition: color .2s; cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.faq-btn:hover { color: var(--blue); }
.faq-item.open .faq-btn { color: var(--blue); }
.faq-chevron {
  width: 22px; height: 22px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; flex-shrink: 0;
  transition: transform .3s; display: block;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-body { height: 0; overflow: hidden; transition: height .3s ease; }
.faq-body-inner {
  padding: 0 32px 28px; font-size: 15px; color: var(--muted); line-height: 1.75;
  border-top: 1px solid var(--border); padding-top: 20px;
}

/* ─── WAITLIST BAND ─── */
.waitlist-band {
  background: var(--navy); padding: 72px 0;
}
.waitlist-inner {
  display: flex; align-items: center; gap: 64px;
  flex-wrap: wrap;
}
.waitlist-text { flex: 1; min-width: 260px; }
.waitlist-text h2 {
  font-family: var(--display); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 12px;
}
.waitlist-text p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.65; }
.waitlist-form-wrap { flex: 1; min-width: 300px; }
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.waitlist-fields { display: flex; gap: 12px; flex-wrap: wrap; }
.waitlist-fields input {
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 8px; padding: 13px 16px; font-size: 14px; color: var(--white);
  outline: none; transition: border-color .2s;
}
.waitlist-fields input::placeholder { color: rgba(255,255,255,.32); }
.waitlist-fields input:focus { border-color: var(--blue); }
.waitlist-btn {
  align-self: flex-start; background: var(--blue); color: var(--white);
  border: none; border-radius: 8px; padding: 13px 28px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .2s, opacity .2s;
}
.waitlist-btn:hover { background: var(--blue-lt); }
.waitlist-btn:disabled { opacity: .6; cursor: default; }
.waitlist-ok {
  font-size: 14px; color: #4ADE80; font-weight: 600; margin-top: 4px;
}

/* ─── CONTACT ─── */
.contact { padding: var(--pad) 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.contact-info { background: var(--navy); padding: 64px 52px; color: var(--white); display: flex; flex-direction: column; }
.contact-info .section-tag { color: var(--blue-lt); }
.contact-info .section-tag::before { background: var(--blue-lt); }
.contact-info h2 {
  font-family: var(--display); font-size: 34px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 16px; line-height: 1.15;
}
.contact-info > p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 44px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; margin-top: 2px; flex-shrink: 0; }
.cd-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 4px;
}
.cd-value { font-size: 14px; color: rgba(255,255,255,.8); }
.contact-disclaimer {
  font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.65;
  margin-top: auto; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.form-wrap { padding: 64px 52px; }
.form-wrap h3 {
  font-family: var(--display); font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  padding: 13px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--border);
  font-size: 15px; color: var(--text); background: var(--white);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,149,245,.1);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.consent-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.consent-row input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }
.consent-row label { font-size: 13px; color: var(--muted); line-height: 1.55; }
.consent-row a { color: var(--blue); }
.btn-submit {
  width: 100%; padding: 16px; background: var(--blue); color: var(--white);
  font-size: 15px; font-weight: 700; border-radius: 10px; font-family: inherit;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-submit:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,149,245,.38); }
.form-success {
  display: none; text-align: center; padding: 60px 40px;
  flex-direction: column; align-items: center; gap: 16px;
}
.form-success.show { display: flex; }
.form-success-icon { width: 64px; height: 64px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 32px; height: 32px; stroke: #16A34A; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.form-success h4 { font-family: var(--display); font-size: 22px; font-weight: 700; }
.form-success p { font-size: 15px; color: var(--muted); }

/* ─── FOOTER ─── */
.footer { background: var(--navy); color: rgba(255,255,255,.5); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-reg {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); padding: 14px 20px; font-size: 12px; margin-top: 28px;
}
.footer-reg strong { color: rgba(255,255,255,.7); display: block; margin-bottom: 4px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; font-size: 12px; gap: 16px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-legal a:hover { color: var(--white); }
.admin-gate {
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.08; transition: opacity .3s; color: rgba(255,255,255,.5);
  padding: 2px; margin-left: 4px;
}
.admin-gate:hover { opacity: 0.5; color: var(--white); }
.footer-warning { max-width: 700px; font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.65; margin-top: 24px; }

/* ─── SCROLL ANIMATIONS ─── */
[data-ao] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .72s cubic-bezier(.25,.1,.25,1), transform .72s cubic-bezier(.25,.1,.25,1);
}
[data-ao].in { opacity: 1; transform: none; }
[data-ao-d="1"] { transition-delay: .12s; }
[data-ao-d="2"] { transition-delay: .22s; }
[data-ao-d="3"] { transition-delay: .34s; }
[data-ao-d="4"] { transition-delay: .46s; }
[data-ao-d="5"] { transition-delay: .58s; }

/* ─── LEGAL PAGES ─── */
.legal-hero { padding: 160px 0 80px; background: var(--navy); }
.legal-hero h1 { font-family: var(--display); font-size: 48px; font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 12px; }
.legal-hero .upd { font-size: 13px; color: rgba(255,255,255,.4); }
.legal-body { padding: 80px 0 120px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-family: var(--display); font-size: 22px; font-weight: 700; margin: 40px 0 14px; letter-spacing: -0.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-content ul li { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 6px; }
.legal-content strong { color: var(--text); }

/* ─── STATS BAND ─── */
.stats-band {
  background: linear-gradient(160deg, #050d1a 0%, #071728 45%, #060f1e 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; pointer-events: none;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,149,245,.10) 0%, transparent 68%);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.stats-band::after {
  content: ''; position: absolute; pointer-events: none;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 60% at 10% 50%, rgba(0,149,245,.06) 0%, transparent 100%),
    radial-gradient(ellipse 30% 60% at 90% 50%, rgba(0,149,245,.06) 0%, transparent 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 40px 24px 36px; position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid rgba(0,149,245,.55);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .38s cubic-bezier(.4,0,.2,1), background .25s, border-color .25s, box-shadow .38s;
  overflow: hidden;
}
.stat-item::before {
  content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 140px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,149,245,.18) 0%, transparent 70%);
}
.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,.07);
  border-color: rgba(0,149,245,.45);
  box-shadow: 0 32px 64px rgba(0,0,0,.3), 0 0 48px rgba(0,149,245,.08);
}
.stat-figure {
  line-height: 1; margin-bottom: 14px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-num {
  font-family: var(--display); font-size: clamp(52px,5.5vw,72px);
  font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(140deg, #ffffff 30%, #90caf9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suf {
  font-family: var(--display); font-size: clamp(28px,3vw,40px);
  font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(140deg, var(--blue-lt) 0%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.stat-sub { font-size: 12px; color: rgba(0,149,245,.75); margin-top: 0; font-weight: 500; }

/* ─── HOVER ANIMATIONS ─── */
/* Service cards */
.service-card {
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              box-shadow .35s cubic-bezier(.4,0,.2,1),
              border-color .35s;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(0,149,245,.13);
  border-color: rgba(0,149,245,.32);
}

/* Compliance items */
.comp-item {
  transition: background .3s, border-color .3s, transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  cursor: default;
}
.comp-item:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(0,149,245,.45);
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 40px rgba(0,149,245,.08);
}

/* Security cards */
.sec-card {
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.sec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

/* Gov items */
.gov-item {
  transition: background .25s, border-radius .25s;
  border-radius: 8px; padding: 12px; margin: -12px;
}
.gov-item:hover { background: rgba(0,149,245,.05); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .about-grid, .governance-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .partner-featured { flex-direction: column; gap: 28px; }
  .cpl-header { grid-template-columns: 1fr; gap: 40px; }
  .cpl-header-right { display: none; }
  .compliance-advisor { grid-template-columns: 1fr; }
  .ca-image-panel { display: none; }
  .ca-divider { display: none; }
  .ca-badge-wrap { padding: 0 0 32px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --pad: 72px; }
  .container, .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 14px 24px; }
  .services-grid, .compliance-grid, .clients-grid, .security-grid, .partners-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .partner-featured { padding: 32px; }
  .compliance-advisor { padding: 32px; }
  .contact-info, .form-wrap { padding: 40px 28px; }
}
