/* ═══════════════════════════════════════════════════════════════
   China Trade Recovery — Unified Stylesheet v2.0
   Navy + Gold palette | Inter font | Full mobile responsive
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --navy: #0B1F3A;
  --navy-light: #142D52;
  --navy-dark: #07182A;
  --gold: #C9972B;
  --gold-light: #E8B84B;
  --gold-ghost: rgba(201,151,43,0.15);
  --text: #1A2332;
  --text-muted: #5A6474;
  --text-light: #8B96A5;
  --bg: #F8F9FB;
  --bg-white: #FFFFFF;
  --border: #E2E6EC;
  --success: #1A7A4A;
  --red: #C0392B;
  --red-bg: #FFF3F2;
  --red-border: #FCA5A5;
  --red-text: #7F1D1D;
  --bg-secondary: #F0F2F6;

  /* Spacing */
  --section-pad: 80px;
  --content-max: 1100px;
  --nav-height: 64px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.16);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LIST DEFAULTS (override global reset) ── */
/* Restore list bullets/numbers stripped by the * reset above */
ol, ul { margin: 0; }
ol > li, ul > li { display: list-item; }
ol { list-style: decimal; padding-left: 32px; }
ul { list-style: disc; padding-left: 28px; }
/* Explicitly neutralise list rendering inside nav / footer contexts */
nav ol, nav ul { list-style: none; padding: 0; }
nav li { display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { color: var(--navy); line-height: 1.25; }

.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); max-width: 560px;
  line-height: 1.7; margin-bottom: 48px;
}

/* ── LAYOUT HELPERS ── */
section {
  padding: var(--section-pad) 40px;
}
.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.alt { background: var(--bg); }
.bg-navy { background: var(--navy); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: #fff;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border: none; cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); text-decoration: none; }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); text-decoration: none; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--navy); color: #fff; text-decoration: none; }

/* ── NAVIGATION — Shared across all pages
   ═══════════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 40px; height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 17px; text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold-light); }
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.78); font-size: 14px;
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover { color: #fff; text-decoration: none; }

.nav-cta {
  background: var(--gold); color: #fff;
  padding: 9px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold-light); text-decoration: none; color: #fff; }

/* ── SERVICES DROPDOWN ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-dropdown > a::after {
  content: '▾'; font-size: 10px; opacity: 0.7;
  transition: transform .2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: #0d2441;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 230px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 1010;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.82) !important;
  font-size: 13.5px; font-weight: 400;
  text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff !important;
  text-decoration: none;
}
.nav-dropdown-menu .ddm-icon { font-size: 15px; flex-shrink: 0; }

/* Mobile: hamburger toggle */
.nav-toggle {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 24px; cursor: pointer; padding: 4px;
}
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85); font-size: 18px;
  text-decoration: none; font-weight: 500;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-cta-mobile {
  background: var(--gold); color: #fff;
  padding: 12px 32px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600; text-decoration: none;
}

/* Mobile: collapsible Services accordion */
.nav-mobile-group { width: 100%; text-align: center; }
.nav-mobile-toggle {
  background: none; border: none;
  color: rgba(255,255,255,0.85); font-size: 18px;
  font-weight: 500; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; padding: 0;
}
.nav-mobile-toggle span { transition: transform .2s; font-size: 14px; }
.nav-mobile-toggle.open span { transform: rotate(180deg); }
.nav-mobile-submenu {
  display: none; flex-direction: column; align-items: center;
  gap: 16px; margin-top: 18px;
}
.nav-mobile-submenu.open { display: flex; }
.nav-mobile-submenu a {
  color: rgba(255,255,255,0.65); font-size: 15px; font-weight: 400;
}
.nav-mobile-submenu a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   PAGE HEADER — Shared across sub-pages
   ═══════════════════════════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, #1A3A6B 100%);
  padding: 120px 40px 60px;
}
.page-header-inner { max-width: var(--content-max); margin: 0 auto; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 13px;
  color: rgba(255,255,255,0.5); flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.page-header h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.page-header p {
  color: rgba(255,255,255,0.65); font-size: 17px;
  max-width: 680px; line-height: 1.7; margin-bottom: 24px;
}
.header-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   TWO-COLUMN GRID — Heavy-use layout component
   ═══════════════════════════════════════════════════════════════════ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

/* ═══════════════════════════════════════════════════════════════════
   COMMON COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Warning box */
.warning-box {
  background: var(--red-bg);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin-bottom: 28px;
}
.warning-box h4 { color: var(--red); margin-bottom: 8px; }
.warning-box p { color: var(--red-text); margin: 0; font-size: 14px; }

/* Success box */
.success-box {
  background: #F0FBF4;
  border: 1.5px solid #6EE7B7;
  border-radius: var(--radius-md);
  padding: 20px 24px; margin-bottom: 28px;
}
.success-box h4 { color: var(--success); margin-bottom: 8px; }
.success-box p { color: #065F46; margin: 0; font-size: 14px; }

/* Callout / info box */
.callout {
  background: #FFFBEB; border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}
.callout p { color: #78350F; font-size: 15px; margin: 0; }
.callout strong { color: #451A03; }

/* Check list */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-muted);
}
.check-list li:last-child { border-bottom: none; }
.check-list .ck { color: var(--success); font-weight: 700; flex-shrink: 0; }

/* Case highlight card — used on service pages */
.case-highlight {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 32px; color: #fff; margin-bottom: 24px;
}
.case-highlight .flag { font-size: 32px; margin-bottom: 12px; }
.case-highlight .amount { font-size: 32px; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }
.case-highlight p { color: rgba(255,255,255,0.80); font-size: 15px; margin: 0; line-height: 1.65; }

/* Service page intro paragraphs */
.two-col > div > p {
  font-size: 16px; line-height: 1.75; color: var(--text-muted);
  margin-bottom: 18px;
}
.two-col > div > p:first-of-type {
  font-size: 18px; color: var(--navy); font-weight: 500;
}

/* Numbered steps */
.steps-list { list-style: none; padding: 0; counter-reset: step; }
.steps-list li {
  counter-increment: step; display: flex; gap: 16px;
  margin-bottom: 24px; align-items: flex-start;
}
.steps-list .step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.steps-list .step-body h4 { margin-bottom: 4px; }
.steps-list .step-body p { margin: 0; font-size: 14px; color: var(--text-muted); }
.steps-list .step-body ul { padding-left: 18px; margin-top: 6px; }
.steps-list .step-body ul li { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; display: list-item; }

/* Tag pills */
.tag {
  font-size: 12px; padding: 3px 10px; border-radius: 4px;
  background: #F0F4FF; color: #3558A8; font-weight: 500;
}
.tag.green { background: #F0FBF4; color: var(--success); }
.tag.gold { background: #FFFBEB; color: #92400E; }

/* Stats grid (3-col) */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.stat-item {
  text-align: center; background: var(--navy);
  border-radius: var(--radius-md); padding: 24px 16px;
  color: #fff;
}
.stat-item .num { font-size: 36px; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* Divider */
.section-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 0 auto 48px; border-radius: 2px;
}

/* Info box — neutral callout with gold left border */
.info-box {
  background: #FFFBEB; border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px; margin: 20px 0;
}
.info-box h4 { color: #92400E; margin-bottom: 6px; font-size: 15px; }
.info-box p { color: #78350F; font-size: 14px; }

/* Alert box — red danger callout */
.alert-box {
  background: var(--red-bg); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px; margin: 20px 0;
}
.alert-box h4 { color: var(--red); margin-bottom: 6px; font-size: 15px; }
.alert-box p { color: var(--red-text); font-size: 14px; }

/* Related services cards — used on service sub-pages */
.related-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.related-card {
  display: block; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; text-decoration: none;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.related-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: var(--gold); text-decoration: none;
}
.related-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── GUIDE PAGE SHARED COMPONENTS ── */
/* Highlight callout box */
.highlight-box {
  background: #FFFBEB; border-left: 4px solid var(--gold);
  padding: 16px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
}
.highlight-box p { color: #92400E; font-size: 14px; margin: 0; line-height: 1.7; }

/* Country cross-link nav */
.country-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.country-link {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 18px;
  text-decoration: none; color: var(--navy); font-size: 14px; font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.country-link:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); text-decoration: none; }
.country-link .flag { font-size: 18px; flex-shrink: 0; }

/* Stats grid (2-3 col) */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 20px 0; }
.stat-box {
  background: var(--navy); border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center; color: #fff;
}
.stat-box .num { display: block; font-size: 28px; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.stat-box .label { display: block; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* Steps list (numbered process) */
.steps { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.step-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 24px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.step-item strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 15px; }

/* Service type grid — breach-types, fraud-types, ip-types, outcome-grid (shared pattern) */
.breach-types, .fraud-types, .ip-types, .outcome-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.breach-card, .fraud-card, .ip-card, .outcome-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  transition: box-shadow .2s, border-color .2s;
}
.breach-card:hover, .fraud-card:hover, .ip-card:hover, .outcome-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.breach-card h4, .fraud-card h4, .ip-card h4, .outcome-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.breach-card p, .fraud-card p, .ip-card p, .outcome-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Privacy / legal page — last-updated timestamp */
.last-updated { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════
   FOCUS-VISIBLE — accessibility
   ═══════════════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ PAGE — Specific styles for faq.html
   ═══════════════════════════════════════════════════════════════════ */

/* Hero (faq.html header — mirrors .page-header) */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, #1A3A6B 100%);
  padding: 120px 40px 56px; text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.hero p {
  color: rgba(255,255,255,0.65); font-size: 17px;
  max-width: 620px; margin: 0 auto; line-height: 1.7;
}

/* Content + container — used by faq.html and service pages */
.content { padding: 64px 40px 80px; background: #fff; }
.container { max-width: var(--content-max); margin: 0 auto; }

/* Quick-jump — section navigation box */
.quick-jump {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px; margin-bottom: 40px;
}
.quick-jump h3 {
  font-size: 15px; font-weight: 600; color: var(--navy);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px;
}
.quick-jump ol {
  columns: 2; column-gap: 32px; padding: 0; margin: 0; list-style-position: inside;
}
.quick-jump li { margin-bottom: 8px; }
.quick-jump a {
  color: var(--navy-light); font-size: 14px;
  text-decoration: none; font-weight: 500;
}
.quick-jump a:hover { text-decoration: underline; color: var(--navy); }

/* Category title */
.cat-title {
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin-top: 36px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold);
}

/* FAQ item accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-q {
  font-size: 16px; font-weight: 600; color: var(--navy);
  cursor: pointer; position: relative; user-select: none;
  padding: 4px 36px 4px 0;
}
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--gold); position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-a { max-height: 600px; padding-top: 12px; }

/* CTA banner (primary definition) */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 44px; text-align: center; margin: 40px 0;
}
.cta-banner h2 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.65; margin-bottom: 24px; }
.cta-banner .btn-primary { font-size: 16px; padding: 16px 36px; }

/* CTA section — bottom call-to-action (used on all guide & service pages) */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 24px; text-align: center;
}
.cta-inner {
  max-width: var(--content-max); margin: 0 auto;
}
.cta-inner h2 {
  color: #fff; font-size: 28px; margin-bottom: 12px; font-weight: 700;
}
.cta-inner p {
  color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.65;
  max-width: 640px; margin: 0 auto 28px;
}
.cta-btns {
  display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cta-section .btn-primary {
  font-size: 16px; padding: 16px 36px;
}
.cta-section .btn-secondary {
  font-size: 16px; padding: 15px 34px; border-color: rgba(255,255,255,0.35); color: #fff;
}
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — Shared across all pages
   ═══════════════════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 56px 40px 28px;
}

.footer-grid {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-col h4, .footer-col h5 {
  color: rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: .5px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.5); font-size: 13px;
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-brand h4 {
  color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 12px;
}
.footer-brand h4 span { color: var(--gold-light); }
.footer-brand p {
  color: rgba(255,255,255,0.5); font-size: 13px;
  line-height: 1.7; max-width: 300px;
}
.footer-brand .footer-disclaimer {
  margin-top: 14px; font-size: 12px;
  color: rgba(255,255,255,0.3); line-height: 1.6;
}

.footer-bottom {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════════════
   FLOATING CTA BUTTON
   ═══════════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  background: var(--gold); color: #fff;
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 24px rgba(201,151,43,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s;
  animation: floatPulse 3s infinite;
}
.floating-cta:hover {
  background: var(--gold-light); transform: scale(1.05);
  text-decoration: none; color: #fff;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(201,151,43,0.45); }
  50% { box-shadow: 0 6px 40px rgba(201,151,43,0.65); }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (max-width: 860px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  :root {
    --section-pad: 56px;
    --nav-height: 56px;
  }

  /* Nav */
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  /* Page header */
  .page-header { padding: 96px 20px 48px; }
  .page-header h1 { font-size: clamp(24px, 6vw, 36px); }
  .page-header p { font-size: 15px; }

  /* Sections */
  section { padding: 56px 20px; }

  /* Grids */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* CTA banner */
  .cta-banner { padding: 32px 20px; }
  .cta-banner h2 { font-size: 22px; }

  /* CTA section */
  .cta-section { padding: 40px 20px; }
  .cta-inner h2 { font-size: 22px; }
  .cta-inner p { font-size: 15px; }

  /* Buttons */
  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 14px; }
  .header-btns { flex-direction: column; }

  /* Floating CTA */
  .floating-cta {
    bottom: 16px; right: 16px;
    padding: 12px 18px; font-size: 13px;
  }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; }

  /* Warning/callout */
  .warning-box, .callout, .success-box { padding: 16px 18px; }

  /* Case highlight */
  .case-highlight { padding: 24px 20px; }
  .case-highlight .amount { font-size: 24px; }

  /* FAQ */
  .hero { padding: 96px 20px 48px; }
  .hero h1 { font-size: clamp(24px, 6vw, 36px); }
  .hero p { font-size: 15px; }
  .content { padding: 48px 20px 64px; }
  .quick-jump ol { columns: 1; }
  .cat-title { font-size: 20px; }

  /* Info / alert boxes */
  .info-box, .alert-box { padding: 16px 18px; }
  .info-box h4, .alert-box h4 { font-size: 14px; }

  /* Service type grids */
  .breach-types, .fraud-types, .ip-types, .outcome-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
}

/* ── Small mobile (max-width: 480px) ── */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-header { padding: 84px 16px 40px; }
  section { padding: 44px 16px; }

  .cta-banner { padding: 28px 16px; }
  .cta-banner h2 { font-size: 20px; }
  .cta-banner p { font-size: 14px; }

  .cta-section { padding: 36px 16px; }
  .cta-inner h2 { font-size: 20px; }
  .cta-inner p { font-size: 14px; }
  .cta-section .btn-primary,
  .cta-section .btn-secondary { font-size: 14px; padding: 13px 24px; }

  .floating-cta {
    bottom: 12px; right: 12px; left: 12px;
    justify-content: center; border-radius: var(--radius-sm);
  }

  .steps-list .step-num {
    width: 32px; height: 32px; font-size: 14px;
  }

  /* FAQ */
  .hero { padding: 84px 16px 40px; }
  .content { padding: 36px 16px 52px; }
  .cat-title { font-size: 18px; }
  .faq-q { font-size: 15px; }

  .case-highlight { padding: 20px 16px; }
  .case-highlight .amount { font-size: 22px; }

  /* Service page intro */
  .two-col > div > p { font-size: 14px; }
  .two-col > div > p:first-of-type { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLLBAR STYLING
   ═══════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════
   SKIP LINK (accessibility)
   ═══════════════════════════════════════════════════════════════════ */
.skip-link {
  position: fixed; top: -100px; left: 20px; z-index: 1001;
  background: var(--gold); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 10px; }
