/* =============================================
   LANGTON GREEN AIRPORT TAXIS
   Design System — Premium British Transfer
   Palette: Navy / Gold / White / Light Grey
   ============================================= */

:root {
  --navy:       #0C1B33;
  --navy-light: #152444;
  --navy-mid:   #1E3A5F;
  --gold:       #C9942A;
  --gold-light: #E8B84B;
  --gold-pale:  #FFF8EC;
  --white:      #FFFFFF;
  --light:      #F8F9FC;
  --border:     #E2E8F0;
  --text:       #1C2431;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --green:      #16A34A;
  --red:        #DC2626;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(12,27,51,0.1);
  --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 6px; color: var(--text-mid); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
strong { color: var(--text); }

.gold { color: var(--gold) !important; }
.white { color: var(--white) !important; }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-dark { background: var(--navy); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.78); }
.section-dark strong { color: var(--white); }
.section-light { background: var(--light); }
.section-gold-pale { background: var(--gold-pale); }
.text-center { text-align: center; }

/* Section headers */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-mid); }

/* Eyebrow */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--gold-light); }

/* Divider */
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,148,42,0.35);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--navy-light);
  color: rgba(255,255,255,0.75);
  padding: 9px 0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* =============================================
   NAV
   ============================================= */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links > li > a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 11px;
  border-radius: 6px;
  display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--light); color: var(--navy); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.7; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 300;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--text-mid);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.dropdown a:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.dropdown a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown a:hover { background: var(--light); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone-link {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone-link:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO (HOMEPAGE)
   ============================================= */
.hero {
  background: var(--navy);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,148,42,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(30,58,95,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { font-size: 1.12rem; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.h-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.07);
  padding: 7px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}
.h-badge strong { color: var(--white); }

/* Hero card (price box) */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: var(--white); margin-bottom: 16px; font-size: 1.1rem; }
.price-big {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.price-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.airport-list { list-style: none; padding: 0; margin-bottom: 20px; }
.airport-list li {
  padding: 8px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.airport-list li:last-child { border-bottom: none; }
.airport-list li span { color: var(--gold-light); font-weight: 600; }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 20px;
  max-width: 1140px;
  margin: -24px auto 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}
.t-item {
  background: var(--white);
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.t-item:last-child { border-right: none; }
.t-num {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.t-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(12,27,51,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(12,27,51,0.12);
}
.sc-icon { font-size: 2rem; margin-bottom: 12px; }
.sc-dist {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card p { color: var(--text-mid); font-size: 0.92rem; flex-grow: 1; }
.sc-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.sc-price-val { font-weight: 700; color: var(--navy); font-family: Georgia, serif; font-size: 1.1rem; }
.sc-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.step-row { display: flex; gap: 20px; margin-bottom: 28px; }
.step-num-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
}
.section-dark .step-num-circle { background: var(--gold); }
.step-body h4 { margin-bottom: 5px; font-size: 1rem; }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 600px;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
  background: var(--white);
}
.compare-table tr.us-row td {
  background: var(--gold-pale);
  font-weight: 600;
  color: var(--navy);
}
.compare-table tr:last-child td { border-bottom: none; }
.yes { color: var(--green); font-weight: 700; }
.no { color: var(--red); }
.maybe { color: #D97706; }

/* =============================================
   REVIEW CARDS
   ============================================= */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; font-size: 0.95rem; }
.review-meta { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.review-meta span { font-weight: 400; color: var(--text-light); }

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-q {
  padding: 17px 20px;
  background: var(--white);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  line-height: 1.4;
  user-select: none;
}
.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 12px;
  transition: var(--transition);
}
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background: var(--light);
  font-size: 0.93rem;
  transition: max-height 0.32s ease, padding 0.32s ease;
  color: var(--text-mid);
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 16px 20px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* =============================================
   ROUTE INFO BOX
   ============================================= */
.route-box {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.route-box h4 { margin-bottom: 14px; color: var(--navy); }
.route-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.r-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.r-stat .icon { font-size: 1.2rem; }
.r-stat strong { color: var(--navy); display: block; }
.r-stat span { color: var(--text-light); font-size: 0.82rem; }

/* Terminal cards */
.terminal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.terminal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.terminal-card h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; }
.terminal-card p { color: var(--text-mid); font-size: 0.82rem; margin: 0; }

/* =============================================
   CHECKLIST
   ============================================= */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  top: 9px;
}
.section-dark .check-list li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.1); }
.section-dark .check-list li::before { color: var(--gold-light); }

/* =============================================
   SEASON CARDS
   ============================================= */
.season-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
}
.season-emoji { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.season-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.season-card p { font-size: 0.92rem; color: var(--text-mid); }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.78); max-width: 500px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-strip .btn-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 52px 0 44px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { opacity: 0.5; }

/* Inline highlight box */
.info-box {
  background: var(--gold-pale);
  border: 1px solid #F0D598;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* =============================================
   FLEET CARDS
   ============================================= */
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(12,27,51,0.1); }
.fleet-img {
  background: var(--light);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--border);
}
.fleet-body { padding: 22px; }
.fleet-body h3 { margin-bottom: 6px; }
.fleet-capacity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-weight: 600;
}
.fleet-body p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 14px; }
.fleet-price { font-family: Georgia, serif; color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand { max-width: 280px; }
.footer-logo-txt {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.footer-logo-txt span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 16px; }
.footer-contact a {
  color: var(--gold-light);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 5px;
}
footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   GRIDS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .t-item:nth-child(n+4) { border-top: 1px solid var(--border); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  .nav-inner { flex-wrap: wrap; position: relative; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    z-index: 500;
    border-top: 1px solid var(--border);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open > li > a { display: block; padding: 12px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; border: none; background: var(--light); transform: none; }
  .dropdown a { padding: 8px 24px; font-size: 0.85rem; border-bottom: none; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 10px; font-size: 0.82rem; }
  .cta-strip .btn-ctas { flex-direction: column; align-items: center; }
  .step-row { flex-direction: column; gap: 10px; }
}

/* =============================================
   UTILITY
   ============================================= */
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Highlight pill */
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pill-gold { background: var(--gold); color: var(--white); }
.pill-navy { background: var(--navy); color: var(--white); }
.pill-green { background: #DCFCE7; color: #166534; }

/* Two-col layout for inner pages */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.sidebar-card h3 { margin-bottom: 16px; font-size: 1.1rem; color: var(--navy); }
.sidebar-card .price-display {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.sidebar-card .price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.sidebar-card .btn { width: 100%; margin-bottom: 10px; justify-content: center; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
