/* ═══════════════════════════ TOKENS ═══════════════════════════ */
:root {
  --blue-deep:  #003078;
  --blue-mid:   #1d4ed8;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --blue-pale:  #dbeafe;
  --blue-ghost: #eff6ff;
  --gold:       #b45309;
  --gold-light: #fef3c7;
  --green:      #047857;
  --green-light:#d1fae5;
  --red:        #b91c1c;
  --red-light:  #fee2e2;
  --grey-900:   #111827;
  --grey-800:   #1f2937;
  --grey-700:   #374151;
  --grey-600:   #4b5563;
  --grey-500:   #6b7280;
  --grey-400:   #9ca3af;
  --grey-300:   #d1d5db;
  --grey-200:   #e5e7eb;
  --grey-100:   #f3f4f6;
  --grey-50:    #f9fafb;
  --white:      #ffffff;
  --off-white:  #fafbfc;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', 'Courier New', monospace;
  --radius:   6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--sans); background:var(--off-white); color:var(--grey-900); overflow-x:hidden; -webkit-font-smoothing:antialiased; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--grey-100); }
::-webkit-scrollbar-thumb { background:var(--blue-light); border-radius:3px; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:var(--sans); }
img { max-width:100%; }

/* ═══════════════════════════ GOV BAR ═══════════════════════════ */
.gov-bar {
  background: var(--blue-deep);
  padding: 6px 2rem;
  display: flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--sans); font-size:0.72rem; font-weight:500;
  color:rgba(255,255,255,0.85); letter-spacing:0.04em;
}
.gov-bar strong { color:#fff; font-weight:700; }
.gov-crown { display:inline-flex; align-items:center; justify-content:center; width:22px; height:18px; }
.gov-crown svg { width:18px; height:14px; fill:white; }
.gov-bar-right { display:flex; gap:1.5rem; margin-left:auto; }
.gov-bar-right span { display:flex; align-items:center; gap:5px; font-size:0.68rem; opacity:0.8; }
.gpip { width:5px; height:5px; border-radius:50%; background:#34d399; }

/* ═══════════════════════════ HEADER ═══════════════════════════ */
header { position:sticky; top:0; z-index:1000; background:var(--white); border-bottom:2px solid var(--blue-deep); box-shadow:var(--shadow); }
.header-inner { max-width:1420px; margin:0 auto; padding:0 2rem; height:68px; display:flex; align-items:center; justify-content:space-between; }
.logo { display:flex; align-items:center; gap:12px; }
.logo-mark { width:42px; height:42px; background:var(--blue-deep); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.logo-mark span { font-family:var(--serif); font-size:1rem; font-weight:700; color:white; letter-spacing:-0.02em; }
.logo-name { font-family:var(--serif); font-size:1.15rem; font-weight:700; color:var(--blue-deep); letter-spacing:0.02em; display:block; }
.logo-sub { font-size:0.62rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--grey-500); display:block; }

/* ═══════════════════════════ PRIMARY NAV ═══════════════════════════ */
.primary-nav { background:var(--blue-deep); border-bottom:3px solid var(--blue-mid); position:sticky; top:68px; z-index:999; overflow:visible; }
.primary-nav-inner { max-width:1420px; margin:0 auto; padding:0 1.5rem; display:flex; align-items:stretch; overflow-x:auto; scrollbar-width:none; overflow-y:visible; }
.primary-nav-inner::-webkit-scrollbar { display:none; }
.nav-item { position:static; }
.nav-item > a {
  display:flex; align-items:center; gap:6px;
  padding:0 1rem; height:46px;
  font-size:0.78rem; font-weight:600; letter-spacing:0.03em;
  color:rgba(255,255,255,0.82); white-space:nowrap;
  border-bottom:3px solid transparent;
  transition:color 0.15s, border-color 0.15s;
}
.nav-item > a:hover, .nav-item.active > a { color:#fff; border-bottom-color:#60a5fa; }
.nav-item > a svg { width:13px; height:13px; opacity:0.7; transition:transform 0.15s; }
/* chevron rotates when open */
.nav-item.open > a svg { transform:rotate(180deg); }

/* ═══ DROPDOWN PORTAL — fixed position, renders above everything ═══ */
#dropdown-portal {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 99999;
  pointer-events: none;
}
#dropdown-portal .dropdown-panel {
  position: fixed;
  min-width: 260px;
  max-width: 300px;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  overflow: visible;
}
#dropdown-portal .dropdown-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
#dropdown-portal .dropdown-panel a {
  display: block;
  padding: 0.72rem 1.2rem;
  font-size: 0.83rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.1s, color 0.1s, padding-left 0.1s;
}
#dropdown-portal .dropdown-panel a:last-child { border-bottom: none; }
#dropdown-portal .dropdown-panel a:hover,
#dropdown-portal .dropdown-panel a:focus {
  background: var(--blue-ghost);
  color: var(--blue);
  padding-left: 1.5rem;
  outline: none;
}
#dropdown-portal .dropdown-header {
  padding: 0.6rem 1.2rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 2px solid var(--blue-pale);
  background: var(--blue-ghost);
}
/* keep original .dropdown hidden in nav (content moved to portal) */
.dropdown { display: none !important; }

.nav-cta { margin-left:auto; }
.nav-cta > a { background:rgba(255,255,255,0.15); color:#fff !important; border-radius:var(--radius); margin:8px 0; padding:0 1rem; border-bottom-color:transparent !important; }
.nav-cta > a:hover { background:var(--blue) !important; }

/* hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; background:none; border:none; }
.hamburger span { width:22px; height:2px; background:var(--grey-700); border-radius:2px; transition:all 0.2s; }

/* ═══════════════════════════ PAGE SECTIONS ═══════════════════════════ */
.page-section { display:none; }
.page-section.active { display:block; }

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0a2060 50%, #001850 100%);
  padding: 5rem 2rem 4rem;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width:1420px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; position:relative; z-index:1; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); border-radius:100px; padding:5px 14px; margin-bottom:1.5rem; }
.hero-eyebrow span { font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.9); }
.hero h1 { font-family:var(--serif); font-size:clamp(2rem,4vw,3.2rem); color:#fff; line-height:1.18; margin-bottom:1.2rem; }
.hero h1 em { font-style:italic; color:#93c5fd; }
.hero-desc { font-size:1.05rem; color:rgba(255,255,255,0.75); line-height:1.7; margin-bottom:2rem; max-width:540px; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; gap:8px; padding:0.75rem 1.5rem; border-radius:var(--radius); font-size:0.9rem; font-weight:600; transition:all 0.2s; border:2px solid transparent; cursor:pointer; }
.btn-white { background:#fff; color:var(--blue-deep); }
.btn-white:hover { background:var(--blue-pale); }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,0.4); }
.btn-outline-white:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.7); }
.btn-blue { background:var(--blue); color:#fff; }
.btn-blue:hover { background:var(--blue-mid); }
.btn-sm { padding:0.5rem 1rem; font-size:0.82rem; }

.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; }
.stat-card { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:var(--radius-lg); padding:1.4rem 1.2rem; text-align:center; backdrop-filter:blur(8px); }
.stat-num { font-family:var(--serif); font-size:2rem; font-weight:700; color:#fff; line-height:1; }
.stat-label { font-size:0.78rem; color:rgba(255,255,255,0.65); margin-top:6px; line-height:1.4; }

/* ═══════════════════════════ SERVICE GRID ═══════════════════════════ */
.section { padding:4rem 2rem; }
.section-inner { max-width:1420px; margin:0 auto; }
.section-head { margin-bottom:2.5rem; }
.section-head h2 { font-family:var(--serif); font-size:clamp(1.6rem,3vw,2.2rem); color:var(--grey-900); margin-bottom:0.6rem; }
.section-head p { font-size:1rem; color:var(--grey-600); max-width:600px; line-height:1.7; }
.eyebrow { font-size:0.72rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--blue); margin-bottom:0.7rem; display:block; }

.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }
.service-card { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:1.8rem; transition:all 0.2s; position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--blue); opacity:0; transition:opacity 0.2s; }
.service-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-2px); border-color:var(--blue-pale); }
.service-card:hover::before { opacity:1; }
.service-icon { width:48px; height:48px; border-radius:var(--radius); background:var(--blue-ghost); display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
.service-icon svg { width:24px; height:24px; fill:var(--blue); }
.service-card h3 { font-size:1.05rem; font-weight:700; color:var(--grey-900); margin-bottom:0.5rem; }
.service-card p { font-size:0.87rem; color:var(--grey-600); line-height:1.65; }
.service-link { display:inline-flex; align-items:center; gap:5px; margin-top:1rem; font-size:0.82rem; font-weight:600; color:var(--blue); }
.service-link:hover { color:var(--blue-mid); }

/* ═══════════════════════════ INFO SECTIONS ═══════════════════════════ */
.info-split { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; }
.info-panel { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:2rem; }
.info-panel h3 { font-family:var(--serif); font-size:1.3rem; color:var(--grey-900); margin-bottom:1rem; }
.info-panel p { font-size:0.9rem; color:var(--grey-600); line-height:1.7; margin-bottom:0.8rem; }
.checklist { list-style:none; display:flex; flex-direction:column; gap:0.6rem; margin-top:1rem; }
.checklist li { display:flex; align-items:flex-start; gap:10px; font-size:0.88rem; color:var(--grey-700); line-height:1.5; }
.checklist li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:1px; }

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq-list { display:flex; flex-direction:column; gap:0.8rem; }
.faq-item { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); overflow:hidden; }
.faq-q { width:100%; text-align:left; padding:1.1rem 1.4rem; background:none; border:none; display:flex; justify-content:space-between; align-items:center; font-size:0.92rem; font-weight:600; color:var(--grey-800); gap:1rem; }
.faq-q svg { width:16px; height:16px; fill:var(--grey-400); flex-shrink:0; transition:transform 0.2s; }
.faq-item.open .faq-q svg { transform:rotate(180deg); fill:var(--blue); }
.faq-a { display:none; padding:0 1.4rem 1.1rem; font-size:0.88rem; color:var(--grey-600); line-height:1.7; border-top:1px solid var(--grey-100); padding-top:0.8rem; }
.faq-item.open .faq-a { display:block; }

/* ═══════════════════════════ STEPS ═══════════════════════════ */
.steps-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1.2rem; }
.step-card { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:1.5rem; position:relative; }
.step-num { width:36px; height:36px; border-radius:50%; background:var(--blue-deep); color:#fff; font-family:var(--mono); font-size:0.85rem; font-weight:500; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
.step-card h4 { font-size:0.95rem; font-weight:700; color:var(--grey-900); margin-bottom:0.4rem; }
.step-card p { font-size:0.84rem; color:var(--grey-600); line-height:1.6; }

/* ═══════════════════════════ PRICING ═══════════════════════════ */
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.5rem; }
.price-card { background:var(--white); border:2px solid var(--grey-200); border-radius:var(--radius-lg); padding:2rem; text-align:center; transition:all 0.2s; }
.price-card.featured { border-color:var(--blue); position:relative; }
.price-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--blue); color:#fff; font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:4px 14px; border-radius:100px; white-space:nowrap; }
.price-card h3 { font-size:1rem; font-weight:700; color:var(--grey-800); margin-bottom:1rem; }
.price-amount { font-family:var(--serif); font-size:2.5rem; font-weight:700; color:var(--grey-900); line-height:1; }
.price-period { font-size:0.8rem; color:var(--grey-500); margin-top:4px; }
.price-features { list-style:none; text-align:left; margin:1.5rem 0; display:flex; flex-direction:column; gap:0.6rem; }
.price-features li { font-size:0.85rem; color:var(--grey-700); display:flex; align-items:center; gap:8px; }
.price-features li::before { content:'✓'; color:var(--green); font-weight:700; }

/* ═══════════════════════════ TOOLS ═══════════════════════════ */
.tool-card { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:2rem; margin-bottom:1.5rem; }
.tool-card h3 { font-size:1.1rem; font-weight:700; color:var(--grey-900); margin-bottom:0.5rem; display:flex; align-items:center; gap:10px; }
.tool-card p { font-size:0.88rem; color:var(--grey-600); line-height:1.6; margin-bottom:1.2rem; }
.tool-form { display:flex; gap:0.8rem; flex-wrap:wrap; }
.tool-input { flex:1; min-width:220px; padding:0.65rem 1rem; border:1.5px solid var(--grey-300); border-radius:var(--radius); font-family:var(--sans); font-size:0.9rem; color:var(--grey-900); outline:none; transition:border-color 0.15s; }
.tool-input:focus { border-color:var(--blue); }
.tool-result { margin-top:1rem; padding:1rem 1.2rem; border-radius:var(--radius); background:var(--blue-ghost); border:1px solid var(--blue-pale); font-size:0.88rem; color:var(--grey-700); display:none; }

/* ═══════════════════════════ ALERT BANNERS ═══════════════════════════ */
.alert { display:flex; gap:12px; padding:1rem 1.4rem; border-radius:var(--radius); margin-bottom:1.5rem; border-left:4px solid; }
.alert-blue { background:var(--blue-ghost); border-color:var(--blue); color:var(--grey-700); }
.alert-gold { background:var(--gold-light); border-color:var(--gold); color:var(--grey-800); }
.alert-green { background:var(--green-light); border-color:var(--green); color:var(--grey-800); }
.alert svg { width:18px; height:18px; flex-shrink:0; margin-top:1px; }
.alert-blue svg { fill:var(--blue); }
.alert-gold svg { fill:var(--gold); }
.alert-green svg { fill:var(--green); }
.alert p { font-size:0.88rem; line-height:1.6; }
.alert strong { font-weight:700; }

/* ═══════════════════════════ TABLE ═══════════════════════════ */
.table-wrap { overflow-x:auto; border:1px solid var(--grey-200); border-radius:var(--radius-lg); background:var(--white); }
table { width:100%; border-collapse:collapse; font-size:0.88rem; }
th { background:var(--grey-50); color:var(--grey-700); font-weight:700; text-align:left; padding:0.9rem 1.2rem; border-bottom:2px solid var(--grey-200); font-size:0.8rem; letter-spacing:0.05em; text-transform:uppercase; }
td { padding:0.85rem 1.2rem; border-bottom:1px solid var(--grey-100); color:var(--grey-700); line-height:1.5; }
tr:last-child td { border-bottom:none; }
tr:hover td { background:var(--grey-50); }
.badge { display:inline-flex; align-items:center; padding:3px 10px; border-radius:100px; font-size:0.73rem; font-weight:600; }
.badge-green { background:var(--green-light); color:var(--green); }
.badge-red { background:var(--red-light); color:var(--red); }
.badge-gold { background:var(--gold-light); color:var(--gold); }
.badge-blue { background:var(--blue-pale); color:var(--blue-mid); }

/* ═══════════════════════════ BREADCRUMB ═══════════════════════════ */
.breadcrumb { background:var(--grey-50); border-bottom:1px solid var(--grey-200); }
.breadcrumb-inner { max-width:1420px; margin:0 auto; padding:0.7rem 2rem; display:flex; align-items:center; gap:6px; font-size:0.78rem; color:var(--grey-500); flex-wrap:wrap; }
.breadcrumb a { color:var(--blue); }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { opacity:0.5; }

/* ═══════════════════════════ PAGE HEADER ═══════════════════════════ */
.page-header { background:linear-gradient(135deg, var(--blue-deep), #0a2060); padding:3rem 2rem; }
.page-header-inner { max-width:1420px; margin:0 auto; }
.page-header .eyebrow { color:#93c5fd; }
.page-header h1 { font-family:var(--serif); font-size:clamp(1.8rem,4vw,2.6rem); color:#fff; margin-bottom:0.8rem; }
.page-header p { font-size:1rem; color:rgba(255,255,255,0.72); max-width:580px; line-height:1.7; }

/* ═══════════════════════════ BLOG GRID ═══════════════════════════ */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }
.blog-card { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); overflow:hidden; transition:all 0.2s; }
.blog-card:hover { box-shadow:var(--shadow); transform:translateY(-2px); }
.blog-thumb { height:160px; background:linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); display:flex; align-items:center; justify-content:center; }
.blog-thumb svg { width:48px; height:48px; fill:rgba(255,255,255,0.3); }
.blog-body { padding:1.4rem; }
.blog-tag { font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--blue); margin-bottom:0.5rem; display:block; }
.blog-card h3 { font-size:0.95rem; font-weight:700; color:var(--grey-900); line-height:1.45; margin-bottom:0.4rem; }
.blog-card p { font-size:0.83rem; color:var(--grey-600); line-height:1.6; }
.blog-meta { display:flex; align-items:center; gap:8px; margin-top:0.8rem; font-size:0.75rem; color:var(--grey-400); }

/* ═══════════════════════════ CONTACT ═══════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.contact-card { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:2rem; }
.contact-card h3 { font-size:1rem; font-weight:700; color:var(--grey-900); margin-bottom:1rem; display:flex; align-items:center; gap:10px; }
.contact-card p { font-size:0.88rem; color:var(--grey-600); line-height:1.7; }
.contact-detail { display:flex; align-items:center; gap:10px; padding:0.7rem 0; border-bottom:1px solid var(--grey-100); font-size:0.88rem; color:var(--grey-700); }
.contact-detail:last-child { border-bottom:none; }
.contact-detail svg { width:16px; height:16px; fill:var(--blue); flex-shrink:0; }

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer { background:var(--grey-900); color:rgba(255,255,255,0.7); padding:3rem 2rem 1.5rem; }
.footer-inner { max-width:1420px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand p { font-size:0.85rem; line-height:1.7; margin-top:1rem; }
.footer-col h4 { font-size:0.78rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-bottom:1rem; }
.footer-col a { display:block; font-size:0.83rem; color:rgba(255,255,255,0.65); padding:0.3rem 0; transition:color 0.15s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; font-size:0.78rem; }
.footer-badges { display:flex; gap:0.8rem; flex-wrap:wrap; }
.f-badge { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); border-radius:4px; padding:4px 10px; font-size:0.7rem; color:rgba(255,255,255,0.6); }

/* ═══════════════════════════ MOBILE ═══════════════════════════ */
@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr; gap:2.5rem; }
  .hero-stats { grid-template-columns:1fr 1fr 1fr; }
  .info-split { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .primary-nav-inner { gap:0; }
  .nav-item > a { padding:0 0.7rem; font-size:0.73rem; }
}
@media(max-width:640px) {
  .gov-bar-right { display:none; }
  .hero { padding:3rem 1.2rem 2.5rem; }
  .hero-stats { grid-template-columns:1fr; gap:0.8rem; }
  .section { padding:2.5rem 1.2rem; }
  .page-header { padding:2rem 1.2rem; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}

/* ═══════════════════════════ WA FLOAT ═══════════════════════════ */
.wa-float {
  position:fixed; bottom:1.5rem; left:1.5rem; z-index:9999;
  display:flex; align-items:center; gap:8px;
  background:#25D366; color:#fff;
  padding:0.7rem 1.2rem; border-radius:100px;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  font-size:0.82rem; font-weight:700;
  transition:transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(37,211,102,0.5); }
.wa-float svg { width:20px; height:20px; fill:white; flex-shrink:0; }

/* Two-col with sidebar */
.two-col { display:grid; grid-template-columns:1fr 320px; gap:2rem; align-items:start; }
.sidebar { display:flex; flex-direction:column; gap:1.2rem; }
.sidebar-card { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:1.5rem; }
.sidebar-card h4 { font-size:0.88rem; font-weight:700; color:var(--grey-900); margin-bottom:0.8rem; }
.sidebar-card p { font-size:0.83rem; color:var(--grey-600); line-height:1.6; }
.sidebar-links a { display:flex; align-items:center; justify-content:space-between; padding:0.55rem 0; border-bottom:1px solid var(--grey-100); font-size:0.84rem; color:var(--grey-700); transition:color 0.15s; }
.sidebar-links a:hover { color:var(--blue); }
.sidebar-links a:last-child { border-bottom:none; }
@media(max-width:900px) { .two-col { grid-template-columns:1fr; } }

/* Tab component */
.tabs-nav-local { display:flex; gap:0; border-bottom:2px solid var(--grey-200); margin-bottom:2rem; overflow-x:auto; }
.tab-btn { padding:0.75rem 1.2rem; background:none; border:none; font-size:0.85rem; font-weight:600; color:var(--grey-500); border-bottom:2px solid transparent; margin-bottom:-2px; white-space:nowrap; transition:all 0.15s; }
.tab-btn.active { color:var(--blue); border-bottom-color:var(--blue); }
.tab-panel { display:none; }
.tab-panel.active { display:block; }

/* Number plate visual */
.plate { display:inline-flex; align-items:center; background:#FADA5E; border:3px solid #333; border-radius:6px; padding:6px 16px; font-family:var(--mono); font-size:1.4rem; font-weight:700; letter-spacing:0.15em; color:#111; margin:1rem 0; }
.city-btn { background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:0.9rem 1rem; font-size:0.88rem; font-weight:600; color:var(--grey-800); cursor:pointer; transition:all 0.15s; text-align:center; }
.city-btn:hover { background:var(--blue-ghost); border-color:var(--blue-pale); color:var(--blue); }

/* ═══════════════════════════ PAYMENT PAGE ═══════════════════════════ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.payment-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.payment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pay-icon {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.pay-body {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--grey-100);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pay-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--grey-900);
}
.pay-body p {
  font-size: 0.86rem;
  color: var(--grey-600);
  line-height: 1.6;
}
.pay-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  color: var(--grey-700);
  flex-wrap: wrap;
}
.pay-detail span { opacity: 0.7; }
.pay-detail strong { font-family: var(--mono); font-size: 0.82rem; color: var(--grey-900); }
.pay-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  align-items: center;
}
.btn-pay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--sans);
}
.btn-pay:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-pay-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  background: transparent;
  border: 1.5px solid var(--grey-300);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--sans);
}
.btn-pay-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-ghost); }
.copy-confirm {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  display: none;
}
.crypto-coin-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1.5px solid var(--grey-300);
  background: var(--grey-50);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-700);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--sans);
}
.crypto-coin-btn:hover, .crypto-coin-btn.active {
  background: var(--grey-900);
  color: #fff;
  border-color: var(--grey-900);
}
.crypto-addr-box {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  margin-top: 0.4rem;
}

/* ═══════════════════════════ AEO PAGE ═══════════════════════════ */
.aeo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-ghost);
  border: 1px solid var(--blue-pale);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

@media(max-width:640px) {
  .payment-grid { grid-template-columns: 1fr; }
  .pay-actions { flex-direction: column; align-items: stretch; }
  .btn-pay, .btn-pay-outline { text-align: center; justify-content: center; }
}

/* ═══════════════════════════ D1 FORM ═══════════════════════════ */
.d1-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey-100);
}
.d1-section:last-child { border-bottom: none; }
.d1-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.d1-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.d1-section-head h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-900);
}
.d1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.d1-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.d1-field.d1-full { grid-column: 1 / -1; }
.d1-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-700);
}
.d1-req { color: var(--red); }
.d1-input {
  padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--grey-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  resize: vertical;
}
.d1-input:focus { border-color: var(--blue); background: var(--blue-ghost); }
.d1-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--grey-700);
  cursor: pointer;
  padding: 4px 0;
}
.d1-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--grey-700);
  cursor: pointer;
  padding: 5px 8px;
  border-radius: var(--radius);
  transition: background 0.1s;
}
.d1-check:hover { background: var(--blue-ghost); }
.d1-check input { accent-color: var(--blue); }
.d1-radio input { accent-color: var(--blue); }

/* ═══════════════════════════ CREDENTIALS MODAL ═══════════════════════════ */
.cred-modal-inner {
  font-family: var(--sans);
}
.cred-modal-inner h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--grey-900);
  margin-bottom: 0.3rem;
}
.cred-modal-inner p {
  font-size: 0.85rem;
  color: var(--grey-600);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.cred-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.9rem;
}
.cred-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-700);
  letter-spacing: 0.03em;
}
.cred-input {
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--grey-900);
  outline: none;
  transition: border-color 0.15s;
}
.cred-input:focus { border-color: var(--blue); }
.cred-divider {
  border: none;
  border-top: 1px solid var(--grey-100);
  margin: 1rem 0;
}
.cred-success {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--grey-800);
  margin-top: 1rem;
  display: none;
}

@media(max-width:640px) {
  .d1-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════ HEADER CONTACT (PHONE + WHATSAPP STACKED) ═══════════════════════════ */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-deep);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.header-phone:hover { color: var(--blue); }
.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}
.header-whatsapp:hover { background: #128C7E; transform: translateY(-1px); }

/* ═══════════════════════════ IMPROVED MOBILE LAYOUT ═══════════════════════════ */
@media(max-width:768px) {
  /* Header */
  .header-inner {
    height: auto;
    padding: 0.7rem 1rem;
    gap: 0.5rem;
  }
  .logo-name { font-size: 0.95rem; }
  .logo-sub { font-size: 0.58rem; }
  .logo-mark { width: 36px; height: 36px; }
  .logo-mark span { font-size: 0.82rem; }
  .header-contact {
    align-items: flex-end;
    gap: 4px;
  }
  .header-phone { font-size: 0.78rem; }
  .header-whatsapp { font-size: 0.72rem; padding: 4px 10px; }

  /* Gov bar */
  .gov-bar { font-size: 0.65rem; padding: 5px 0.8rem; text-align: center; justify-content: center; }
  .gov-bar-right { display: none; }

  /* Primary nav */
  .primary-nav { top: auto; position: relative; }
  .primary-nav-inner { padding: 0 0.5rem; }
  .nav-item > a { padding: 0 0.55rem; font-size: 0.7rem; height: 42px; }

  /* Hero */
  .hero { padding: 2.5rem 1rem 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-desc { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .stat-num { font-size: 1.6rem; }

  /* Sections */
  .section { padding: 2rem 1rem; }
  .section-head h2 { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.3rem; }

  /* Page headers */
  .page-header { padding: 1.8rem 1rem; }
  .page-header h1 { font-size: 1.6rem; }

  /* Breadcrumb */
  .breadcrumb-inner { padding: 0.5rem 1rem; font-size: 0.72rem; }

  /* Info split */
  .info-split { grid-template-columns: 1fr; gap: 1rem; }

  /* Two-col with sidebar */
  .two-col { grid-template-columns: 1fr; }
  .sidebar { order: -1; }

  /* Payment grid */
  .payment-grid { grid-template-columns: 1fr; }
  .pay-actions { flex-direction: column; }
  .btn-pay, .btn-pay-outline { width: 100%; justify-content: center; }

  /* D1 form */
  .d1-grid { grid-template-columns: 1fr; }
  .d1-field.d1-full { grid-column: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; }

  /* Pricing grid */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }

  /* Steps grid */
  .steps-grid { grid-template-columns: 1fr; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; }

  /* Tables */
  .table-wrap { font-size: 0.78rem; }
  th, td { padding: 0.6rem 0.8rem; }

  /* Tabs */
  .tabs-nav-local { overflow-x: auto; }
  .tab-btn { padding: 0.65rem 0.9rem; font-size: 0.78rem; }

  /* WA float */
  .wa-float { bottom: 1rem; left: 1rem; padding: 0.6rem 1rem; font-size: 0.75rem; }

  /* Modal */
  #payment-modal > div { padding: 1.2rem; max-width: 95vw; }

  /* City buttons */
  .city-btn { font-size: 0.8rem; padding: 0.7rem; }
}

@media(max-width:480px) {
  .logo-name { font-size: 0.85rem; }
  .logo-sub { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .header-phone span { display: none; }
}

/* ═══════════════════════════ SKIP LINK (ACCESSIBILITY) ═══════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--blue-deep);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════ INDEPENDENT DISCLAIMER BAR ═══════════════════════════ */
.disclaimer-bar {
  background: #1e3a5f;
  border-bottom: 2px solid #f59e0b;
  padding: 7px 1.5rem;
}
.disclaimer-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.disclaimer-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  flex: 1;
}
.disclaimer-left svg { flex-shrink: 0; margin-top: 1px; color: #f59e0b; }
.disclaimer-left strong { color: #fbbf24; }
.disclaimer-right {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.disc-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  white-space: nowrap;
}

/* ═══════════════════════════ HERO DISCLAIMER ═══════════════════════════ */
.hero-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  margin-top: 1rem;
  line-height: 1.4;
}
.hero-disclaimer strong { color: #fbbf24; }

/* ═══════════════════════════ READING PROGRESS BAR ═══════════════════════════ */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, var(--blue));
  width: 0%;
  z-index: 99998;
  transition: width 0.1s linear;
}

/* ═══════════════════════════ BACK TO TOP ═══════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--blue-deep);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  transition: background 0.2s, transform 0.2s;
  aria-label: "Back to top";
}
#back-to-top:hover { background: var(--blue); transform: translateY(-2px); }
#back-to-top.visible { display: flex; }

/* ═══════════════════════════ TRUST STRIP ═══════════════════════════ */
.trust-strip {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 1rem 2rem;
}
.trust-strip-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-600);
}
.trust-item svg { color: var(--blue); }

/* ═══════════════════════════ IMPROVED MOBILE ═══════════════════════════ */
@media(max-width:640px) {
  .disclaimer-right { display: none; }
  .disclaimer-left { font-size: 0.68rem; }
  .hero-disclaimer { font-size: 0.72rem; }
  .trust-strip-inner { gap: 1.2rem; }
  .trust-item { font-size: 0.75rem; }
}

/* ═══════════════════════════ PRINT STYLES ═══════════════════════════ */
@media print {
  .disclaimer-bar, header, .primary-nav, footer, .wa-float, #back-to-top, #reading-progress { display: none !important; }
  .page-section { display: block !important; }
  body { font-size: 12pt; }
}

/* ═══════════════════════════ FOCUS STYLES (ACCESSIBILITY) ═══════════════════════════ */
:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible { outline: 3px solid #f59e0b; }

/* ═══════════════════════════ SMOOTH ANCHOR ═══════════════════════════ */
html { scroll-behavior: smooth; }

/* ═══════════════════════════ SELECTION ═══════════════════════════ */
::selection { background: var(--blue-pale); color: var(--blue-deep); }

/* ═══════════════════════════ SCREEN READER ONLY ═══════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}


/* ════════════════════════════════════════════════════════════════
   COMPLETE VISIBILITY SYSTEM — ALL HARDCODED, NO CSS VARS
   Every card, section, text element — fully visible on all screens
════════════════════════════════════════════════════════════════ */

/* ── FORCE BODY WHITE ── */
body { background: #ffffff !important; color: #111827 !important; }
* { -webkit-font-smoothing: antialiased; }

/* ════════ STEP CARDS (Payment page + How It Works) ════════ */
.step-card {
  background: #ffffff !important;
  border: 2px solid #1d4ed8 !important;
  border-radius: 14px !important;
  padding: 1.6rem !important;
  box-shadow: 0 4px 16px rgba(0,48,120,0.12) !important;
}
.step-card h4 {
  color: #111827 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.6rem !important;
}
.step-card p {
  color: #1f2937 !important;
  font-size: 0.88rem !important;
  line-height: 1.7 !important;
}
.step-num {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  background: #003078 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
}

/* ════════ SERVICE CARDS ════════ */
.service-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-top: 4px solid #2563eb !important;
  border-radius: 12px !important;
  padding: 1.8rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07) !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,48,120,0.16) !important;
  transform: translateY(-3px) !important;
}
.service-card::before { display: none !important; }
.service-card h3 { color: #003078 !important; font-size: 1.05rem !important; font-weight: 700 !important; margin-bottom: 0.5rem !important; }
.service-card p { color: #1f2937 !important; font-size: 0.87rem !important; line-height: 1.65 !important; }
.service-link { color: #2563eb !important; font-weight: 600 !important; font-size: 0.85rem !important; margin-top: 0.75rem !important; display: inline-block !important; }
.service-icon svg { width: 28px; height: 28px; stroke: #2563eb; fill: none; stroke-width: 1.8; }

/* ════════ REVIEW CARDS ════════ */
[itemtype*="schema.org/Review"],
[class*="review-card"] {
  background: #ffffff !important;
  border: 2px solid #cbd5e1 !important;
  border-radius: 14px !important;
  padding: 1.5rem !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}
[itemprop="reviewBody"],
[class*="review-body"] {
  color: #111827 !important;
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
  display: block !important;
}
[itemprop="author"] {
  color: #111827 !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  display: block !important;
}
[itemprop="datePublished"] {
  color: #475569 !important;
  font-size: 0.78rem !important;
}
.star-display { color: #f59e0b !important; }

/* ════════ PRESS KIT CARDS ════════ */
.press-kit-card {
  background: #ffffff !important;
  border: 2px solid #bfdbfe !important;
  border-radius: 14px !important;
  padding: 1.5rem !important;
  box-shadow: 0 3px 12px rgba(0,48,120,0.08) !important;
  display: flex !important;
  gap: 1rem !important;
  align-items: flex-start !important;
}
.press-kit-card h3 { color: #003078 !important; font-size: 0.95rem !important; font-weight: 700 !important; margin-bottom: 0.3rem !important; }
.press-kit-card p { color: #1f2937 !important; font-size: 0.85rem !important; line-height: 1.65 !important; }
.press-kit-card a { color: #2563eb !important; font-weight: 600 !important; text-decoration: underline !important; font-size: 0.82rem !important; display: inline-block !important; margin-top: 0.4rem !important; }
.press-kit-icon { font-size: 1.8rem !important; flex-shrink: 0 !important; }

/* ════════ TRUST FEATURE CARDS ════════ */
.trust-feature-card {
  background: #ffffff !important;
  border: 2px solid #93c5fd !important;
  border-radius: 14px !important;
  padding: 1.6rem !important;
  box-shadow: 0 3px 12px rgba(0,48,120,0.08) !important;
}
.trust-feature-card h3 { color: #003078 !important; font-size: 0.95rem !important; font-weight: 700 !important; margin-bottom: 0.4rem !important; }
.trust-feature-card p { color: #1f2937 !important; font-size: 0.85rem !important; line-height: 1.65 !important; }
.tfc-icon { font-size: 2rem !important; display: block !important; margin-bottom: 0.75rem !important; }

/* ════════ BLOG CARDS ════════ */
.blog-card { background: #ffffff !important; border: 1.5px solid #e2e8f0 !important; }
.blog-card h3 { color: #003078 !important; font-weight: 700 !important; }
.blog-card p { color: #1f2937 !important; }

/* ════════ CONTACT CARDS ════════ */
.contact-card { background: #ffffff !important; border: 1.5px solid #e2e8f0 !important; }
.contact-card h3 { color: #003078 !important; font-weight: 700 !important; }
.contact-card p { color: #1f2937 !important; }

/* ════════ TOOL CARDS ════════ */
.tool-card { background: #ffffff !important; border: 1.5px solid #e2e8f0 !important; border-radius: 12px !important; padding: 2rem !important; }
.tool-card h3 { color: #003078 !important; font-weight: 700 !important; font-size: 1rem !important; }
.tool-card p { color: #1f2937 !important; font-size: 0.88rem !important; }
.tool-input { background: #ffffff !important; color: #111827 !important; border: 1.5px solid #cbd5e1 !important; padding: 0.6rem 0.9rem !important; border-radius: 8px !important; font-size: 0.88rem !important; }
.tool-result { color: #065f46 !important; background: #f0fdf4 !important; font-size: 0.85rem !important; font-weight: 600 !important; padding: 0.5rem 0.75rem !important; border-radius: 6px !important; margin-top: 0.75rem !important; }

/* ════════ PRICE CARDS ════════ */
.price-card { background: #ffffff !important; border: 2px solid #e2e8f0 !important; }
.price-card.featured { border-color: #2563eb !important; }
.price-card h3 { color: #003078 !important; font-weight: 700 !important; }

/* ════════ SIDEBAR CARDS ════════ */
.sidebar-card { background: #ffffff !important; border: 1.5px solid #e2e8f0 !important; }
.sidebar-card h4 { color: #003078 !important; font-weight: 700 !important; }
.sidebar-card p { color: #1f2937 !important; }

/* ════════ INFO PANELS ════════ */
.info-panel { background: #ffffff !important; border: 1.5px solid #e2e8f0 !important; }
.info-panel h3, .info-panel h4 { color: #003078 !important; font-weight: 700 !important; }
.info-panel p { color: #1f2937 !important; }

/* ════════ FAQ ITEMS ════════ */
.faq-item { background: #ffffff !important; border: 1.5px solid #e2e8f0 !important; border-radius: 10px !important; margin-bottom: 0.75rem !important; overflow: hidden !important; }
.faq-q { width: 100% !important; background: #f8faff !important; color: #003078 !important; font-weight: 600 !important; font-size: 0.95rem !important; padding: 1rem 1.4rem !important; text-align: left !important; border: none !important; display: flex !important; justify-content: space-between !important; align-items: center !important; cursor: pointer !important; }
.faq-q:hover { background: #eff6ff !important; }
.faq-q svg { stroke: #2563eb !important; fill: none !important; width: 18px !important; height: 18px !important; flex-shrink: 0 !important; }
.faq-a { color: #1f2937 !important; font-size: 0.9rem !important; line-height: 1.75 !important; padding: 1rem 1.4rem 1.2rem !important; background: #ffffff !important; display: none !important; }
.faq-item.open .faq-a { display: block !important; }
.faq-item.open .faq-q { background: #eff6ff !important; border-bottom: 1px solid #dbeafe !important; color: #003078 !important; }

/* ════════ PAYMENT CARDS ════════ */
.payment-card { background: #ffffff !important; border: 2px solid #e2e8f0 !important; }
.payment-card h3 { color: #003078 !important; }
.payment-card p { color: #1f2937 !important; }

/* ════════ SECTION HEADS ════════ */
.section-head h2 { color: #003078 !important; font-weight: 700 !important; }
.section-head p { color: #1f2937 !important; line-height: 1.7 !important; }

/* ════════ EYEBROW LABELS ════════ */
.eyebrow {
  display: inline-block !important;
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.3rem 0.9rem !important;
  border-radius: 100px !important;
  border: 1px solid #bfdbfe !important;
  margin-bottom: 0.75rem !important;
}

/* ════════ SECTION BACKGROUNDS ════════ */
.page-section { background: #ffffff !important; }
.section { padding: 4rem 2rem; }

/* ════════ COMPARISON TABLE ════════ */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead th { background: #003078 !important; color: #ffffff !important; padding: 0.85rem 1rem !important; font-weight: 700 !important; text-align: left !important; }
.comparison-table tbody td { color: #111827 !important; padding: 0.75rem 1rem !important; border-bottom: 1px solid #e2e8f0 !important; font-size: 0.88rem !important; }
.comparison-table tbody tr:nth-child(even) { background: #f8faff !important; }
.comparison-table tbody tr:hover { background: #eff6ff !important; }
.comparison-table .check { color: #065f46 !important; font-weight: 700 !important; }
.comparison-table .cross { color: #991b1b !important; font-weight: 700 !important; }

/* ════════ ANSWER BOXES ════════ */
.answer-box { background: #f0fdf4 !important; border: 2px solid #86efac !important; border-radius: 12px !important; padding: 1.2rem 1.4rem !important; margin: 1rem 0 !important; }
.answer-box p { color: #111827 !important; font-size: 0.9rem !important; line-height: 1.7 !important; }
.answer-box strong { color: #065f46 !important; font-weight: 700 !important; }

/* ════════ VOICE TIP ════════ */
.voice-tip { background: #eff6ff !important; border: 1.5px solid #93c5fd !important; border-radius: 8px !important; padding: 0.9rem 1rem !important; display: flex !important; gap: 0.75rem !important; margin-top: 1rem !important; }
.voice-tip p { color: #1e40af !important; font-size: 0.83rem !important; line-height: 1.6 !important; margin: 0 !important; }

/* ════════ QUICK ANSWER BAR ════════ */
.quick-answer { background: linear-gradient(135deg, #fffbeb, #fef3c7) !important; border-top: 4px solid #f59e0b !important; border-bottom: 2px solid #fde68a !important; padding: 1.25rem 2rem !important; }
.qa-icon { font-size: 1.5rem !important; flex-shrink: 0 !important; }
.qa-label { font-size: 0.65rem !important; font-weight: 800 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: #92400e !important; margin-bottom: 0.35rem !important; }
.qa-text { color: #111827 !important; font-size: 0.92rem !important; line-height: 1.65 !important; font-weight: 500 !important; }
.qa-chip { background: #ffffff !important; border: 1px solid #f59e0b !important; color: #92400e !important; padding: 0.3rem 0.9rem !important; border-radius: 100px !important; font-size: 0.78rem !important; font-weight: 600 !important; cursor: pointer !important; }
.qa-chip:hover { background: #f59e0b !important; color: #fff !important; }

/* ════════ BUTTONS ════════ */
.btn { font-weight: 700 !important; border-radius: 8px !important; padding: 0.75rem 1.5rem !important; font-size: 0.9rem !important; display: inline-flex !important; align-items: center !important; gap: 0.4rem !important; cursor: pointer !important; text-decoration: none !important; border: none !important; transition: all 0.15s !important; }
.btn-blue, .btn-primary { background: #2563eb !important; color: #ffffff !important; }
.btn-blue:hover, .btn-primary:hover { background: #1d4ed8 !important; box-shadow: 0 4px 12px rgba(37,99,235,0.35) !important; transform: translateY(-1px) !important; }
.btn-white { background: #ffffff !important; color: #003078 !important; }
.btn-outline-white { background: transparent !important; color: #ffffff !important; border: 2px solid rgba(255,255,255,0.7) !important; }
.btn-sm { padding: 0.5rem 1rem !important; font-size: 0.82rem !important; }

/* ════════ ALERT BOXES ════════ */
.alert { display: flex !important; gap: 0.75rem !important; align-items: flex-start !important; padding: 1rem 1.2rem !important; border-radius: 10px !important; }
.alert-gold { background: #fffbeb !important; border: 2px solid #f59e0b !important; }
.alert-gold p, .alert-gold strong { color: #111827 !important; font-size: 0.88rem !important; line-height: 1.65 !important; }
.alert-blue { background: #eff6ff !important; border: 2px solid #93c5fd !important; }
.alert-blue p { color: #1e3a8a !important; }
.alert svg { width: 22px !important; height: 22px !important; fill: none !important; flex-shrink: 0 !important; margin-top: 2px !important; }
.alert-gold svg { stroke: #92400e !important; }

/* ════════ ENTITY PILLS ════════ */
.entity-pill { background: #eff6ff !important; color: #1d4ed8 !important; border: 1px solid #bfdbfe !important; font-weight: 600 !important; padding: 0.3rem 0.85rem !important; border-radius: 100px !important; font-size: 0.78rem !important; cursor: pointer !important; display: inline-flex !important; transition: all 0.15s !important; }
.entity-pill:hover { background: #2563eb !important; color: #fff !important; }

/* ════════ BREADCRUMB ════════ */
.breadcrumb-nav { background: #f8faff !important; border-bottom: 1px solid #dbeafe !important; padding: 0.5rem 2rem !important; }
.breadcrumb-nav li { color: #475569 !important; font-size: 0.78rem !important; }
.breadcrumb-nav li a { color: #2563eb !important; text-decoration: none !important; }
.breadcrumb-nav li:last-child { color: #003078 !important; font-weight: 600 !important; }

/* ════════ TABLES (penalties, categories) ════════ */
.table-wrap { overflow-x: auto !important; border-radius: 10px !important; border: 1px solid #e2e8f0 !important; }
.table-wrap table { width: 100% !important; border-collapse: collapse !important; min-width: 500px !important; }
.table-wrap thead th { background: #003078 !important; color: #ffffff !important; padding: 0.8rem 1rem !important; font-weight: 700 !important; text-align: left !important; font-size: 0.85rem !important; }
.table-wrap tbody td { padding: 0.7rem 1rem !important; border-bottom: 1px solid #e2e8f0 !important; color: #111827 !important; font-size: 0.87rem !important; }
.table-wrap tbody tr:nth-child(even) { background: #f8faff !important; }

/* ════════ FOOTER — FULLY FIXED ════════ */
footer {
  background: #0f172a !important;
  color: #e2e8f0 !important;
  padding: 3.5rem 2rem 1.5rem !important;
}
footer * { color: #e2e8f0 !important; }
.footer-brand p { color: #cbd5e1 !important; font-size: 0.85rem !important; line-height: 1.7 !important; }
.footer-col h4 {
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}
.footer-col a {
  color: #94a3b8 !important;
  display: block !important;
  font-size: 0.83rem !important;
  padding: 0.3rem 0 !important;
  text-decoration: none !important;
  transition: color 0.15s !important;
}
.footer-col a:hover { color: #ffffff !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding-top: 1.5rem !important;
  margin-top: 2rem !important;
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  font-size: 0.78rem !important;
  color: #64748b !important;
}
.footer-bottom * { color: #64748b !important; }
.footer-bottom a { color: #94a3b8 !important; text-decoration: none !important; }
.footer-bottom a:hover { color: #ffffff !important; }
.footer-badge {
  background: rgba(255,255,255,0.08) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  padding: 0.3rem 0.75rem !important;
  border-radius: 6px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
}

/* ════════ DARK SECTION TEXT (navy bg) ════════ */
[style*="background:#003078"] h2,
[style*="background:#003078"] h3,
[style*="background:#003078"] p,
[style*="background:#001245"] h2,
[style*="background:#001245"] p,
[style*="background:#001a4a"] h2,
[style*="background:#001a4a"] h4,
[style*="background:#001a4a"] p,
[style*="background:#0f172a"] p,
[style*="background:#1f2937"] p {
  color: #ffffff !important;
}
[style*="background:#003078"] .eyebrow,
[style*="background:#001a4a"] .eyebrow {
  background: rgba(255,255,255,0.12) !important;
  color: #93c5fd !important;
  border-color: rgba(255,255,255,0.2) !important;
}

/* ════════ HERO TEXT — always white ════════ */
.hero h1 { color: #ffffff !important; text-shadow: 0 2px 12px rgba(0,0,0,0.4) !important; }
.hero-desc { color: rgba(255,255,255,0.92) !important; }
.hero .hero-inner { color: #ffffff !important; }
.stat-num { color: #ffffff !important; font-family: var(--serif) !important; font-size: 1.6rem !important; font-weight: 700 !important; }
.stat-label { color: rgba(255,255,255,0.8) !important; font-size: 0.75rem !important; }

/* ════════ PAGE HEADER (inner pages) ════════ */
.page-header { background: linear-gradient(135deg, #003078, #0a1f5c) !important; padding: 3rem 2rem !important; }
.page-header h1 { color: #ffffff !important; font-family: var(--serif) !important; }
.page-header p { color: rgba(255,255,255,0.88) !important; }
.page-header .eyebrow { background: rgba(255,255,255,0.12) !important; color: #93c5fd !important; border-color: rgba(255,255,255,0.2) !important; }

/* ════════ GENERAL TEXT DEFAULTS ════════ */
h1, h2, h3, h4, h5, h6 { color: #111827; }
p { color: #1f2937; }
a { color: #2563eb; }

/* ════════ SECTION BACKGROUNDS ════════ */
#reviews { background: #f8faff !important; }
#press-kit { background: #f8faff !important; }
#faq-home { background: #f8faff !important; }
#comparison { background: #f8faff !important; }
#points-guide { background: #f8faff !important; }
#licence-categories { background: #ffffff !important; }
#international { background: #ffffff !important; }
#voice-ai-answers { background: #ffffff !important; }

/* ════════ COOKIE BANNER ════════ */
#cookie-banner { background: #1e293b !important; }
#cookie-banner p { color: rgba(255,255,255,0.9) !important; }
#cookie-banner a { color: #60a5fa !important; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 1.9rem !important; }
  .section { padding: 2.5rem 1.2rem !important; }
  .step-card { padding: 1.2rem !important; }
  .qa-inner { flex-direction: column !important; }
}

/* ════════════════════════════════════════════════════════
   FORM FIELDS — COMPLETE VISIBILITY FIX
   Hardcoded white bg + black text on ALL input types
════════════════════════════════════════════════════════ */

/* All text/email/number/date inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="search"],
input[type="url"],
select,
textarea {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1.5px solid #9ca3af !important;
  border-radius: 8px !important;
  padding: 0.6rem 0.9rem !important;
  font-size: 0.9rem !important;
  font-family: inherit !important;
  outline: none !important;
  -webkit-text-fill-color: #111827 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
  background: #ffffff !important;
  color: #111827 !important;
}

/* Placeholder text */
input::placeholder,
textarea::placeholder { color: #9ca3af !important; opacity: 1 !important; }

/* D1 form specific */
.d1-input {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1.5px solid #9ca3af !important;
  -webkit-text-fill-color: #111827 !important;
}
.d1-input:focus { border-color: #2563eb !important; background: #ffffff !important; }
.d1-input::placeholder { color: #9ca3af !important; }

/* D1 labels */
.d1-field label,
.d1-section-head h4,
.d1-radio,
.d1-check {
  color: #111827 !important;
  font-weight: 600 !important;
}

/* D1 field background - ensure white */
.d1-field { background: transparent !important; }
.d1-section { background: #ffffff !important; }

/* Cred inputs */
.cred-input {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1.5px solid #9ca3af !important;
  -webkit-text-fill-color: #111827 !important;
}

/* Radio and checkbox labels */
label.d1-radio,
label.d1-check,
.d1-radio span,
.d1-check span {
  color: #111827 !important;
}

/* Select dropdowns */
select option { 
  background: #ffffff !important; 
  color: #111827 !important; 
}

/* Date inputs */
input[type="date"]::-webkit-calendar-picker-indicator { 
  filter: invert(0) !important; 
  cursor: pointer;
}

/* ── FORM CONTAINER / WRAPPER ── */
.d1-form-inner,
.form-container,
.form-wrap,
[id*="d1-form"] {
  background: #ffffff !important;
}

/* Ensure form section padding area is white */
.d1-section + * { background: #ffffff !important; }

