/* ============================================================
   Quantum Opal — Production Stylesheet
   Colors: Navy #0a1628 | Gold #e8a020 | White #ffffff
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #122040;
  --navy-light:  #1c3060;
  --navy-border: #1e3a6e;
  --gold:        #e8a020;
  --gold-hover:  #f5b840;
  --gold-muted:  rgba(232,160,32,0.12);
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #edf0f6;
  --text:        #1a2640;
  --text-mid:    #374869;
  --muted:       #5e708a;
  --border:      #dde3ef;
  --shadow-sm:   0 2px 8px rgba(10,22,40,0.07);
  --shadow:      0 4px 20px rgba(10,22,40,0.10);
  --shadow-lg:   0 8px 40px rgba(10,22,40,0.16);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --ease:        0.22s ease;
  --container:   1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.75;
  font-size: 1.0625rem;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-hover); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
p { margin-bottom: 1.15rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

/* Dark-bg typography overrides */
.dark-text h1, .dark-text h2, .dark-text h3,
.dark-text h4, .dark-text h5, .dark-text p,
.dark-text li { color: var(--white); }
.dark-text p, .dark-text li { color: rgba(255,255,255,0.80); }
.dark-text strong { color: var(--white); }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-mid { background: var(--navy-mid); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; }

.text-center { text-align: center; }
.text-left  { text-align: left; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: rgba(255,255,255,0.80);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.7;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--text) !important;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--off-white); color: var(--navy) !important; }
.dropdown .dropdown-divider { border-top: 1px solid var(--border); margin: 0.375rem 0; }
.dropdown .dropdown-label {
  display: block;
  padding: 0.5rem 0.875rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  pointer-events: none;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold-hover) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--ease), opacity var(--ease);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ── Hero (Homepage) ──────────────────────────────────────── */
.hero {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(28,48,96,0.6) 0%, transparent 70%),
                    radial-gradient(ellipse at 10% 80%, rgba(232,160,32,0.06) 0%, transparent 50%);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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='%231c3060' fill-opacity='0.15'%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");
  opacity: 0.4;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-muted);
  border: 1px solid rgba(232,160,32,0.25);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .hero-sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: fit-content;
}
.hero-stat-num {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }

/* ── Page Hero (internal pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(28,48,96,0.5) 0%, transparent 60%);
  padding: 60px 0 56px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.875rem;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,0.3); }
.breadcrumb li:last-child { color: rgba(255,255,255,0.8); }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.text-center { max-width: 680px; margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p { font-size: 1.0625rem; color: var(--muted); }

/* Dark section header overrides */
.section-dark .section-label { color: var(--gold); }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(232,160,32,0.25);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card h3 { margin-bottom: 0.625rem; color: var(--navy); }
.card h4 { margin-bottom: 0.5rem; color: var(--navy); }
.card p { color: var(--text-mid); margin: 0; }

/* Dark cards */
.card-dark {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  color: var(--white);
}
.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.7); }
.card-dark .card-icon { background: rgba(232,160,32,0.15); }

/* Feature card with left border */
.card-feature {
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}
.service-card .card-link:hover { gap: 0.625rem; }

/* Industry card */
.industry-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.industry-card .card-icon { margin: 0 auto 1.25rem; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 48px 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 50% 50%, rgba(28,48,96,0.8) 0%, transparent 70%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2rem; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Highlight / Callout Box ──────────────────────────────── */
.highlight-box {
  background: var(--gold-muted);
  border: 1px solid rgba(232,160,32,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.highlight-box p { color: var(--text); margin: 0; }
.highlight-box strong { color: var(--navy); }

.info-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

/* ── Compliance Badge ─────────────────────────────────────── */
.compliance-badges { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1rem; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-gold { background: var(--gold-muted); color: var(--gold); border: 1px solid rgba(232,160,32,0.3); }
.badge-navy { background: rgba(10,22,40,0.08); color: var(--navy); border: 1px solid var(--border); }
.badge-white { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

/* ── Process Steps ────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.0625rem;
  flex-shrink: 0;
  z-index: 1;
}
.step-body h4 { color: var(--navy); margin-bottom: 0.375rem; }
.step-body p { margin: 0; }

/* ── Two-col content (service pages) ─────────────────────── */
.content-cols { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.content-main {}
.content-sidebar {}
.sidebar-widget {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { color: var(--navy); margin-bottom: 1rem; font-size: 1.0625rem; }
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.sidebar-widget ul li::before { content: '›'; color: var(--gold); font-weight: 700; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 0.625rem; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ── Check Lists ──────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--text-mid);
  margin: 0;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Dark check list */
.check-list-dark li::before { color: var(--gold); }
.check-list-dark li { color: rgba(255,255,255,0.8); }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; }
.blog-card-img {
  background: var(--light-gray);
  border-radius: var(--radius) var(--radius) 0 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2.5rem;
  overflow: hidden;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.blog-tag {
  background: var(--gold-muted);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.blog-card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; color: var(--navy); }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.9375rem; flex: 1; margin-bottom: 1rem; }
.blog-read-more { color: var(--gold); font-size: 0.875rem; font-weight: 600; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.form-control::placeholder { color: var(--muted); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }
.form-success {
  display: none;
  background: #edfaf2;
  border: 1px solid #6dd4a0;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #1a7a4a;
  font-weight: 600;
  margin-top: 1rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.footer-logo-text { font-weight: 700; color: var(--white); font-size: 1.0625rem; }
.footer-logo-text span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 1.25rem; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.9125rem; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: all var(--ease);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8125rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ── 404 ──────────────────────────────────────────────────── */
.not-found { min-height: 60vh; display: flex; align-items: center; }

/* ── Table ────────────────────────────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.comparison-table th, .comparison-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.comparison-table th { background: var(--navy); color: var(--white); font-weight: 600; }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); }

/* ── Divider ──────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .content-cols { grid-template-columns: 1fr; }
  .content-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .section { padding: 56px 0; }
  .section-lg { padding: 64px 0; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid var(--navy-border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
    overflow-y: auto;
    max-height: calc(100vh - 68px);
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--navy-mid);
    border-radius: var(--radius);
    margin-top: 0.25rem;
    display: none !important;
  }
  .has-dropdown:hover .dropdown { display: none !important; }
  .has-dropdown.open .dropdown { display: block !important; }
  .dropdown a { color: rgba(255,255,255,0.75) !important; }
  .dropdown a:hover { color: var(--white) !important; background: rgba(255,255,255,0.07); }

  .hero { padding: 64px 0 56px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-sidebar { grid-template-columns: 1fr; order: 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { width: 100%; }
  .hero-stat-num { font-size: 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 1.5rem; }
  .process-step { grid-template-columns: 44px 1fr; }
  .step-num { width: 44px; height: 44px; font-size: 0.9375rem; }
}
