/* ============================================================
   SUPER SPEED IT SOLUTION — Stylesheet
   Design tokens
   ============================================================ */
:root {
  --navy: #121B99;
  --navy-deep: #0A104F;
  --blue: #1F2FF5;
  --blue-light: #6B74FF;
  --red: #F9482F;
  --coral: #FF7A54;
  --ink: #101826;
  --ink-soft: #45516B;
  --paper: #F5F7FB;
  --white: #FFFFFF;
  --line: #E1E6F0;
  --shadow: 0 20px 45px -25px rgba(18, 27, 153, 0.45);

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
body.page-home .container,
body.page-about .container { width: min(1600px, 95%); }
body.page-home .hero-grid { width: min(1600px, 95%); }
body.page-home .site-header .container,
body.page-home .site-footer .container,
body.page-about .site-header .container,
body.page-about .site-footer .container { width: min(1180px, 92%); }

section { padding: 5.5rem 0; }
@media (max-width: 720px) { section { padding: 3.4rem 0; } }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9em 1.6em;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: #c92c21; transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(227,55,43,0.55); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---------------- Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 42, 94, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}
.brand-text {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
}
.brand-text b { color: var(--white); font-size: 1.05rem; }
.brand-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--coral);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
  padding: 0.3em 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--red);
  transition: width 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone {
  font-family: var(--font-mono);
  color: var(--white);
  font-size: 0.88rem;
  display: none;
}
@media (min-width: 900px) { .nav-phone { display: inline-flex; align-items:center; gap:0.5em; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 82px; left: 0; right: 0; background: var(--navy-deep);
    flex-direction: column; align-items: flex-start; padding: 1.5rem 6%; gap: 1.2rem;
    transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
}

/* ---------------- Signal divider (signature motif) ---------------- */
.signal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  background: var(--paper);
}
.signal-divider svg { width: min(1180px, 92%); height: 28px; }
.signal-divider .pulse-dot {
  animation: pulseDot 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulseDot {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 8; opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .signal-divider .pulse-dot { animation: none; }
}

/* ---------------- Hero (diagonal signature layout) ---------------- */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 6rem 0 4rem;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding: 3.5rem 0 2.5rem; }
  .hero { min-height: 0; }
  .hero-visual-wrap { order: -1; }
}
.hero-copy .eyebrow { color: var(--red); }
.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 0.4em;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------------- Approval / credential badge ---------------- */
.badge-approved {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: flex-start;
  gap: 0.55em;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0.6em 1em;
  border-radius: 8px;
  margin-bottom: 1.4rem;
  max-width: 100%;
}
.badge-approved svg { width: 15px; height: 15px; color: var(--coral); flex-shrink: 0; margin-top: 0.15em; }
.badge-approved.on-light {
  background: var(--paper);
  border-color: var(--line);
  color: var(--navy);
}
.badge-approved.on-light svg { color: var(--red); }

.credential-note {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 2px solid var(--red);
  padding-left: 0.9rem;
  margin: 0.9rem 0 1.6rem;
  max-width: 48ch;
}
.credential-note b { color: var(--navy); font-weight: 600; }
.credential-note.on-dark {
  color: rgba(255,255,255,0.7);
  border-left-color: var(--coral);
}
.credential-note.on-dark b { color: var(--white); }

.hero-visual {
  position: relative;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.1;
}
.hero-visual-wrap { position: relative; }
.brand-badge {
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 32px -8px rgba(10,42,94,0.45), 0 0 0 5px var(--white);
  z-index: 3;
}
@media (max-width: 640px) {
  .brand-badge { width: 96px; height: 96px; left: -14px; bottom: -14px; }
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(227,55,43,0.28), rgba(10,42,94,0.05) 55%);
}

.hero-bg-diagonal {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, var(--paper) 58%, var(--red) 58.3%, var(--coral) 100%);
  opacity: 0.07;
}

.stat-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2.2rem 0;
}
.stat-item { text-align: left; }
.stat-item .num {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.7rem;
  display: block;
}
.stat-item .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------------- Page header (inner pages) ---------------- */
.page-header {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--coral); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.3em; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 60ch; }
.page-header-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, transparent 55%, var(--red) 55.4%, var(--coral) 100%);
  opacity: 0.16;
}

/* ---------------- Section headings ---------------- */
.section-head { max-width: 60ch; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-soft); }

/* ---------------- Service cards ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }
.service-card .tag {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--line); font-weight: 600;
}

/* ---------------- About / split panels ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy p { color: var(--ink-soft); }
.split-copy .btn { margin-top: 0.8rem; }

.check-list li {
  display: flex;
  gap: 0.7em;
  padding: 0.55em 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li .mark {
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------------- Panels (navy) ---------------- */
.panel-navy { background: var(--navy); color: var(--white); }
.panel-navy h2, .panel-navy h3 { color: var(--white); }
.panel-navy .section-head p { color: rgba(255,255,255,0.72); }

.stat-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3.5rem 0;
}
.stat-band .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  text-align: center;
}
.stat-band .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--coral); display:block; }
.stat-band .label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ---------------- Partners strip ---------------- */
.partners-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners-strip img { border-radius: 6px; }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--coral));
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 55ch; margin: 0 auto 1.8rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--navy); }
.cta-band .btn-primary:hover { background: var(--navy-deep); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 4rem 0 1.6rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7em; margin-bottom: 1rem; }
.footer-brand img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.footer-brand b { color: var(--white); font-family: var(--font-display); }
.footer-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 0.7em; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--coral); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.6rem; font-size: 0.82rem; flex-wrap: wrap; gap: 0.8rem;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.45);
}

/* ---------------- Services page detail ---------------- */
.detail-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2.4rem; }
.detail-list h3 { font-size: 1.05rem; display:flex; align-items:center; gap:0.5em; }
.detail-list h3::before { content:""; width:8px; height:8px; background:var(--red); border-radius:50%; display:inline-block; }

.brand-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.brand-chip {
  font-family: var(--font-mono); font-size: 0.78rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4em 0.9em; color: var(--ink-soft);
}

/* ---------------- Contact page ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 2.2rem;
}
.contact-line { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px dashed var(--line); }
.contact-line:last-child { border-bottom: none; }
.contact-line .ic {
  width: 40px; height: 40px; border-radius: 8px; background: var(--paper);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red);
}
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line b { display: block; color: var(--navy); font-size: 0.94rem; }
.contact-line span, .contact-line a { color: var(--ink-soft); font-size: 0.92rem; }

.map-frame { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 2.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4em;
}
.field input, .field textarea {
  width: 100%; padding: 0.8em 0.9em; border: 1px solid var(--line); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.95rem; background: var(--paper);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.6rem; }
.form-success {
  display: none; background: #EAF7EE; border: 1px solid #B7E4C4; color: #1E7A3C;
  padding: 1rem 1.2rem; border-radius: 8px; font-size: 0.92rem; margin-bottom: 1.2rem;
}
.form-success.show { display: block; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------------- Full-bleed feature section (main service banner) ---------------- */
.feature-full {
  padding: 0;
  background: var(--paper);
}
.feature-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.feature-full-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(2rem, 6vw, 6rem);
}
.feature-full-media { position: relative; overflow: hidden; }
.feature-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-full-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(18,27,153,0.22), rgba(249,72,47,0.12) 60%);
}
@media (max-width: 900px) {
  .feature-full-grid { grid-template-columns: 1fr; min-height: auto; }
  .feature-full-media { order: -1; height: 340px; }
  .feature-full-copy { padding: 3rem 6%; }
}
.feature-full-grid .media-wrap { height: 100%; }
.feature-full-grid .media-wrap .feature-full-media { height: 100%; }
@media (max-width: 900px) {
  .feature-full-grid .media-wrap { order: -1; height: 340px; }
  .feature-full-grid .media-wrap .feature-full-media { height: 100%; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

/* ---------------- Floating quick-contact popup ---------------- */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}
.float-cta-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.float-cta.open .float-cta-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-cta-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75em 1.2em;
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(10,42,94,0.45);
  white-space: nowrap;
  border: 1px solid var(--line);
}
.float-cta-menu a svg { width: 17px; height: 17px; flex-shrink: 0; }
.float-cta-menu a.primary {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
}
.float-cta-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(227,55,43,0.55);
  transition: transform 0.2s ease, background 0.2s ease;
}
.float-cta-toggle:hover { background: #c92c21; transform: translateY(-2px); }
.float-cta-toggle svg { width: 24px; height: 24px; transition: transform 0.2s ease; }
.float-cta.open .float-cta-toggle svg { transform: rotate(45deg); }
@media (max-width: 560px) {
  .float-cta { right: 16px; bottom: 16px; }
  .float-cta-toggle { width: 52px; height: 52px; }
  .float-cta-menu a { font-size: 0.86rem; padding: 0.65em 1em; }
}

/* ---------------- Credential strip (under hero on landing pages) ---------------- */
.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.55em 1em;
  border-radius: 999px;
}
.cred-chip.on-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.cred-chip svg { width: 15px; height: 15px; color: var(--coral); flex-shrink: 0; }
.cred-chip.on-light svg { color: var(--red); }

/* ---------------- Compliance table ---------------- */
.compliance-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.compliance-table th, .compliance-table td {
  text-align: left;
  padding: 0.9em 1.2em;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.compliance-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
}
.compliance-table tr:last-child td { border-bottom: none; }
.compliance-table td:first-child { font-weight: 600; color: var(--navy); width: 38%; }
.compliance-table td { color: var(--ink-soft); }
.table-scroll { overflow-x: auto; border-radius: 10px; box-shadow: var(--shadow); }

/* ---------------- Process steps ---------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem 1.5rem 1.6rem;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--line);
  display: block;
  margin-bottom: 0.6rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.4em; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.3rem; right: -1.3rem;
  width: 1rem; height: 2px;
  background: var(--line);
  display: none;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); }
  .process-step:not(:last-child)::after { display: block; }
}

/* ---------------- FAQ accordion ---------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 70ch;
}

/* ---------------- Mini stat row (compact, for landing pages) ---------------- */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.mini-stats .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--red); display: block; }
.mini-stats .label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------------- Brand seal (overlapping stamp on hero/split images) ---------------- */
.media-wrap { position: relative; }
.seal-overlay {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px -10px rgba(10,42,94,0.5);
  border: 4px solid var(--white);
  z-index: 3;
}
@media (max-width: 640px) {
  .seal-overlay { width: 100px; height: 100px; bottom: -16px; left: -16px; border-width: 3px; }
}

/* ---------------- Categorized partner logos ---------------- */
.partner-categories { display: grid; gap: 2.4rem; }
.partner-category h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.partner-category h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.partner-logos img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
}
.partner-logos .text-tile {
  height: 56px;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
