/* =====================================================================
   Pairdex — Stylesheet
   Brand: Navy #0F1B3D · Gold #C9A227 · Off-white #F7F4EA
   Mobile-first, no framework. Grid + Flexbox.
   ===================================================================== */

:root {
  --navy: #0F1B3D;
  --navy-deep: #0A1330;
  --navy-rgb: 15, 27, 61;
  --gold: #C9A227;
  --gold-soft: #E0BD52;
  --gold-muted: rgba(201, 162, 39, 0.55);
  --offwhite: #F7F4EA;
  --cream: #faf7f0;
  --white: #FFFFFF;
  --gray-100: #F5F6F8;
  --gray-200: #E5E7EB;
  --gray-300: #CBD0D8;
  --gray-500: #6B7280;
  --gray-700: #3A4252;
  --text: #1A2238;
  --shadow-sm: 0 1px 2px rgba(15, 27, 61, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 27, 61, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 27, 61, 0.14);
  --shadow-xl: 0 30px 80px rgba(15, 27, 61, 0.32);
  --radius-card: 8px;
  --radius-btn: 4px;
  --container: 1200px;
  --nav-h: 92px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.eyebrow { display: inline-block; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--gray-700); font-size: 18px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-btn);
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1.2;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--navy); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }
.btn-white-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: transparent; }
.btn-ghost:hover { color: var(--gold); }
.btn-large { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ========== Navigation (stacked logo + How-it-Works pill) ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent; transition: background .25s ease, box-shadow .25s ease;
}
.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav.scrolled, .nav.solid { background: var(--white); box-shadow: var(--shadow-sm); }
.nav.scrolled .nav-link, .nav.scrolled .nav-brand-text, .nav.scrolled .btn-ghost,
.nav.solid .nav-link, .nav.solid .nav-brand-text, .nav.solid .btn-ghost { color: var(--navy); }
.nav.scrolled .hamburger span, .nav.solid .hamburger span { background: var(--navy); }

/* Stacked left brand: logo + (wordmark stacked above pill) */
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); text-decoration: none;
}
.nav-brand-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; line-height: 1; }
.nav-brand-text {
  color: var(--white); font-size: 18px; font-weight: 700; letter-spacing: 0.16em;
}
.nav-brand-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: none;
  transition: background .2s ease, color .2s ease;
}
.nav-brand-pill:hover { background: var(--gold); color: var(--navy); }
.nav.scrolled .nav-brand-pill, .nav.solid .nav-brand-pill { color: var(--gold); border-color: var(--gold); }

.nav-links {
  display: none; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.nav-link { color: var(--white); font-weight: 500; font-size: 15px; }
.nav-link:hover { color: var(--gold); }
.nav-actions { display: none; align-items: center; gap: 10px; }
.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; width: 40px; height: 40px; padding: 9px 8px;
  cursor: pointer; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .25s ease; }

@media (min-width: 1024px) {
  .nav-links, .nav-actions { display: flex; }
  .hamburger { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: min(320px, 85vw); height: 100vh;
  background: var(--navy); transform: translateX(100%);
  transition: transform .3s ease; z-index: 110;
  padding: 80px 28px 32px; overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close-btn {
  position: absolute; top: 18px; right: 18px;
  background: transparent; border: 0; color: var(--white);
  font-size: 28px; cursor: pointer; line-height: 1;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 24px; }
.mobile-menu ul li { margin-bottom: 8px; }
.mobile-menu ul a {
  display: block; padding: 12px 0; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 17px;
}
.mobile-menu .mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 105;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

/* ========== Hero ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); color: var(--white); overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(15,27,61,0.7); }
.hero-inner { position: relative; z-index: 2; }
.gold-rule { width: 64px; height: 3px; background: var(--gold); border: 0; margin: 0 0 28px; }
.hero h1 {
  font-family: var(--font-head); color: var(--white);
  font-size: clamp(36px, 7vw, 64px); line-height: 1.05;
  margin-bottom: 20px; max-width: 900px;
}
.hero-sub { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.85); max-width: 720px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(201,162,39,0.6);
  border-radius: 100px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  background: rgba(15,27,61,0.4);
  cursor: pointer; transition: background .2s ease, border-color .2s ease;
}
.badge-pill::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.badge-pill:hover { background: rgba(201,162,39,0.18); border-color: var(--gold); }

/* ========== Booking strip ========== */
.booking-strip { background: var(--navy); color: var(--white); text-align: center; padding: 72px 0; }
.booking-strip h2 { color: var(--white); font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.booking-strip .lead { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 32px; }
.booking-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.booking-divider { width: 80px; height: 1px; background: rgba(255,255,255,0.2); margin: 0 auto 20px; border: 0; }
.talk-first { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.talk-first p { margin: 0; color: rgba(255,255,255,0.85); font-size: 16px; }

/* ========== Problem cards (clickable) ========== */
.problem { background: var(--offwhite); }
.problem-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  background: var(--white); border-radius: var(--radius-card);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer; text-align: left; border-top: 0; border-right: 0; border-bottom: 0;
  font-family: var(--font-body); padding: 0; width: 100%;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-card img { width: 100%; height: 200px; object-fit: cover; }
.problem-card .body { padding: 24px; }
.problem-card p { color: var(--text); font-weight: 500; font-size: 17px; margin: 0 0 10px; }
.problem-card .more { color: var(--gold); font-size: 13px; font-weight: 600; }

/* ========== Solution triangle ========== */
.solution { background: var(--white); text-align: center; }
.triangle-wrap { display: flex; justify-content: center; margin: 0 auto 32px; }
.triangle-svg { width: min(560px, 100%); height: auto; }
.solution-text { max-width: 600px; margin: 0 auto; color: var(--gray-700); font-size: 17px; line-height: 1.7; }

/* ========== How it works steps ========== */
.how { background: var(--navy); color: var(--white); }
.how h2 { color: var(--white); }
.steps {
  display: grid; gap: 36px; grid-template-columns: 1fr;
  margin-top: 48px; position: relative;
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 18px; }
  .steps::before {
    content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
    height: 2px; background: var(--gold); opacity: .55; z-index: 0;
  }
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-flex; width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; font-family: var(--font-head);
  font-size: 22px; font-weight: 700; margin: 0 auto 16px;
  border: 4px solid var(--navy); box-shadow: 0 0 0 2px var(--gold);
}
.step h3 { color: var(--white); font-family: var(--font-body); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }
.steps.light .step h3 { color: var(--navy); }
.steps.light .step p { color: var(--gray-700); }
.steps.light::before { background: var(--gold); opacity: 1; }

/* ========== Image cards (deals, business types, etc.) ========== */
.deals { background: var(--offwhite); }
.image-cards-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 600px) { .image-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .image-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.image-cards-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .image-cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .image-cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.image-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer; border: 0; text-align: left; padding: 0;
  font-family: var(--font-body); width: 100%;
}
.image-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.image-card .img {
  width: 100%; height: 200px;
  background-size: cover; background-position: center;
}
.image-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.image-card .icon-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.image-card .icon-row .icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(201,162,39,0.12); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.image-card h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.image-card p { color: var(--gray-700); font-size: 15px; flex: 1; margin-bottom: 14px; }
.image-card .learn { color: var(--gold); font-weight: 600; font-size: 14px; }
.image-card .tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(201,162,39,0.12); color: var(--gold);
  border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 12px;
  text-transform: uppercase;
}

/* ========== Why Pairdex ========== */
.why { background: var(--white); }
.why-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr; margin-top: 40px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-col { text-align: center; padding: 16px; }
.why-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--navy); color: var(--gold);
  margin-bottom: 16px;
}
.why-col h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-col p { color: var(--gray-700); font-size: 14px; margin: 0; }

/* ========== Markets map ========== */
.markets { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.markets-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.25; }
.markets-overlay { position: absolute; inset: 0; background: rgba(15,27,61,0.8); }
.markets .container { position: relative; z-index: 2; }
.markets h2 { color: var(--white); }
.us-map { display: block; width: 100%; max-width: 900px; height: auto; margin: 32px auto 0; }
.map-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 28px; font-size: 14px; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.p1 { background: var(--gold); }
.dot.p2 { background: var(--gold-muted); }
.dot.p3 { background: transparent; border: 2px dashed var(--gold); }

/* ========== Footer (5 columns now) ========== */
footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; }
}
footer h4 {
  color: var(--white); font-family: var(--font-body); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.78); font-size: 14px; }
footer ul a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-text { color: var(--white); font-weight: 700; letter-spacing: 0.14em; font-size: 18px; }
.footer-tagline { font-size: 14px; line-height: 1.5; margin-bottom: 14px; color: rgba(255,255,255,0.72); }
.footer-meta { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.social-icons { display: flex; gap: 12px; margin-bottom: 14px; }
.social-icons a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(201,162,39,0.5);
  color: var(--gold); transition: background .2s ease, color .2s ease;
}
.social-icons a:hover { background: var(--gold); color: var(--navy); }
.footer-book { color: var(--gold); font-weight: 600; font-size: 14px; }
.footer-contact { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.78); }
.footer-contact strong { display: block; color: var(--white); font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.footer-contact .addr { color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-contact a { display: block; color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-contact .label { color: rgba(255,255,255,0.55); font-weight: 400; font-size: 12px; }

.disclaimer {
  background: var(--navy-deep); color: rgba(255,255,255,0.55);
  font-size: 12px; text-align: center; padding: 18px 24px; margin-top: 48px; line-height: 1.6;
}
.disclaimer p { margin: 0; max-width: 1000px; margin: 0 auto; }

/* ========== Cookie banner (Accept/Decline) ========== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 200; background: var(--navy); color: var(--white);
  border-radius: var(--radius-card); padding: 18px 22px;
  display: none; align-items: center; gap: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,162,39,0.35);
  transform: translateY(120%);
  transition: transform .35s ease;
}
.cookie-banner.show { display: flex; flex-wrap: wrap; }
.cookie-banner.show.in { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; min-width: 240px; color: rgba(255,255,255,0.86); line-height: 1.55; }
.cookie-banner p a { color: var(--gold); }
.cookie-banner .actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 20px; }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.cookie-decline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ========== Modal system ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15, 27, 61, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white); color: var(--text);
  width: 100%; max-width: 760px; max-height: 88vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.96) translateY(20px);
  transition: transform .25s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(15,27,61,0.06);
  border: 0; border-radius: 50%;
  font-size: 22px; line-height: 1; color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
  z-index: 2;
}
.modal-close:hover { background: rgba(15,27,61,0.14); }
.modal-header { padding: 36px 40px 8px; }
.modal-header h2 { font-family: var(--font-head); font-size: 28px; margin: 0 0 8px; color: var(--navy); }
.modal-header .modal-eyebrow { color: var(--gold); font-size: 12px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; display: block; }
.modal-body { padding: 0 40px 36px; }
.modal-body p { color: var(--gray-700); font-size: 15px; line-height: 1.7; }
.modal-body h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--navy); margin: 22px 0 8px; }
.modal-body ul { margin: 0 0 16px 22px; padding: 0; color: var(--gray-700); font-size: 15px; line-height: 1.7; }
.modal-body img { border-radius: 6px; }
.modal-cta { padding: 16px 40px 32px; display: flex; gap: 10px; flex-wrap: wrap; border-top: 1px solid var(--gray-200); margin-top: 16px; padding-top: 22px; }
.modal-disclaimer { background: var(--cream); padding: 14px 18px; border-radius: 6px; font-size: 13px; color: var(--gray-700); margin: 16px 0; border-left: 3px solid var(--gold); }
.modal-cards {
  display: grid; gap: 18px; grid-template-columns: 1fr; margin: 22px 0 0;
}
@media (min-width: 600px) { .modal-cards { grid-template-columns: 1fr 1fr; } }
.modal-card {
  background: var(--cream); border-radius: 8px; overflow: hidden;
}
.modal-card .img { width: 100%; height: 130px; background-size: cover; background-position: center; }
.modal-card .body { padding: 16px; }
.modal-card h4 { font-family: var(--font-body); font-size: 14px; color: var(--navy); margin: 0 0 6px; }
.modal-card p { font-size: 13px; line-height: 1.55; color: var(--gray-700); margin: 0 0 8px; }
.modal-card .tag { font-size: 10px; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 600px) {
  .modal-header { padding: 28px 22px 4px; }
  .modal-body { padding: 0 22px 22px; }
  .modal-cta { padding: 14px 22px 24px; }
}

/* ========== Page sub-hero ========== */
.subhero { background: var(--navy); color: var(--white); padding: 160px 0 72px; text-align: center; }
.subhero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.subhero p { color: rgba(255,255,255,0.82); max-width: 700px; margin: 0 auto 24px; font-size: 18px; }

/* ========== Generic content blocks ========== */
.content { padding: 72px 0; }
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
  position: relative; padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700); font-size: 15px;
}
.feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700;
}

/* ========== FAQ ========== */
.faq { background: var(--offwhite); }
.faq-list { max-width: 760px; margin: 32px auto 0; }
.faq-item {
  background: var(--white); border-radius: var(--radius-card);
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 18px 22px; font-family: var(--font-body); font-weight: 600;
  font-size: 16px; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-question::after { content: '+'; color: var(--gold); font-size: 22px; line-height: 1; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px; color: var(--gray-700); font-size: 15px;
}
.faq-item.open .faq-answer { padding: 0 22px 18px; max-height: 600px; }

/* ========== Pricing ========== */
.pricing-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 24px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: var(--white); border-radius: var(--radius-card);
  border: 1px solid var(--gray-200); padding: 32px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.plan.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-lg); position: relative; }
.plan.featured::before {
  content: 'Most Popular'; position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 700; padding: 5px 14px;
  border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase;
}
.plan h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.plan .price { font-family: var(--font-head); font-size: 40px; color: var(--navy); font-weight: 700; margin: 8px 0 4px; }
.plan .price small { font-family: var(--font-body); font-size: 14px; color: var(--gray-500); font-weight: 500; }
.plan .blurb { color: var(--gray-700); font-size: 14px; margin-bottom: 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.plan ul li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; color: var(--gray-700); }
.plan ul li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 700; }

.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 24px;
  background: var(--white); border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-sm); font-size: 14px;
}
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.compare-table thead th { background: var(--navy); color: var(--white); font-family: var(--font-body); font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .check { color: var(--gold); font-weight: 700; }

.commission { background: var(--offwhite); padding: 32px; border-radius: var(--radius-card); margin-top: 32px; }
.commission table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14px; }
.commission th, .commission td { padding: 12px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.commission th { color: var(--navy); }

/* ========== Forms ========== */
.form-card {
  background: var(--white); padding: 32px;
  border-radius: var(--radius-card); box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 768px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-btn); background: var(--white); color: var(--text); width: 100%;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }

.checkbox-group { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .checkbox-group { grid-template-columns: 1fr 1fr; } }
.check-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-btn); cursor: pointer; background: var(--white);
  transition: border-color .2s ease, background .2s ease; font-size: 14px;
}
.check-item:hover { border-color: var(--gold-muted); }
.check-item input[type="checkbox"], .check-item input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 2px solid var(--gold); border-radius: 4px;
  background: var(--white); cursor: pointer; flex-shrink: 0; margin-top: 1px;
  position: relative; transition: background .15s ease;
}
.check-item input[type="radio"] { border-radius: 50%; }
.check-item input[type="checkbox"]:checked, .check-item input[type="radio"]:checked { background: var(--gold); border-color: var(--gold); }
.check-item input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: solid var(--navy);
  border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.check-item input[type="radio"]:checked::after {
  content: ''; position: absolute; left: 4px; top: 4px;
  width: 8px; height: 8px; background: var(--navy); border-radius: 50%;
}
.check-item.selected { border-color: var(--gold); background: rgba(201,162,39,0.06); }
.check-item span { line-height: 1.4; }

.progress { display: flex; gap: 8px; margin-bottom: 28px; }
.progress-bar { flex: 1; height: 6px; background: var(--gray-200); border-radius: 100px; position: relative; overflow: hidden; }
.progress-bar.active::after, .progress-bar.done::after {
  content: ''; position: absolute; inset: 0; background: var(--gold); border-radius: 100px;
}
.step-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.step-title { font-family: var(--font-head); color: var(--navy); font-size: 26px; margin-bottom: 24px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-200);
}
.form-nav .btn-back {
  background: transparent; border: 1.5px solid var(--gray-300); color: var(--navy);
}
.form-nav .btn-back:hover { border-color: var(--navy); background: var(--gray-100); }
.form-nav .btn-back:disabled { opacity: 0.45; cursor: not-allowed; }

/* Photo dropzone */
.dropzone {
  border: 2px dashed var(--gold); border-radius: 8px;
  padding: 40px 24px; text-align: center;
  background: var(--cream); cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.dropzone:hover, .dropzone.dragging { background: rgba(201,162,39,0.08); border-color: var(--navy); }
.dropzone p { margin: 0; color: var(--gray-700); font-size: 15px; }
.dropzone .pri { color: var(--navy); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.dropzone input[type="file"] { display: none; }
.thumb-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); margin-top: 16px; }
.thumb {
  position: relative; aspect-ratio: 1; border-radius: 6px;
  overflow: hidden; background: var(--gray-100);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .x {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border: 0;
  border-radius: 50%; background: rgba(15,27,61,0.85);
  color: var(--white); font-size: 14px; line-height: 1; cursor: pointer;
}

/* ========== About / values ========== */
.about-cols { display: grid; gap: 28px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 768px) { .about-cols { grid-template-columns: repeat(3, 1fr); } }
.about-col {
  background: var(--white); padding: 28px; border-radius: var(--radius-card);
  border-top: 4px solid var(--gold); box-shadow: var(--shadow-md);
}
.about-col h3 { font-family: var(--font-head); color: var(--navy); font-size: 22px; margin-bottom: 12px; }
.values-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--offwhite); padding: 24px; border-radius: var(--radius-card); text-align: center; }
.value-card .value-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy); border-radius: 50%; margin-bottom: 14px;
}
.value-card h3 { font-family: var(--font-body); font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--gray-700); margin: 0; }

.team-placeholder {
  background: var(--navy); color: var(--white);
  padding: 48px; border-radius: var(--radius-card);
  text-align: center; margin-top: 40px;
}
.team-placeholder h3 { color: var(--white); font-family: var(--font-head); font-size: 24px; margin-bottom: 8px; }
.team-placeholder p { color: rgba(255,255,255,0.78); margin: 0; }

/* ========== Newsletter ========== */
.newsletter {
  background: var(--navy); color: var(--white);
  padding: 48px; border-radius: var(--radius-card);
  text-align: center; margin-top: 56px;
}
.newsletter h3 { color: var(--white); font-family: var(--font-head); font-size: 26px; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.78); margin-bottom: 22px; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter input { flex: 1; min-width: 220px; padding: 12px 14px; border-radius: var(--radius-btn); border: 0; font-family: var(--font-body); font-size: 15px; }

/* ========== Careers role cards (with image) ========== */
.role-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 22px;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .role-card { grid-template-columns: 240px 1fr; } }
.role-card .img { background-size: cover; background-position: center; min-height: 180px; }
.role-card .body { padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.role-card h3 { font-family: var(--font-body); font-size: 19px; margin: 0; color: var(--navy); }
.role-card .meta { color: var(--gray-500); font-size: 13px; margin: 0; }
.role-card .actions { margin-top: 6px; }

/* ========== Contact ========== */
.contact-cards { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 24px; margin-bottom: 56px; }
@media (min-width: 600px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--white); padding: 24px;
  border-radius: var(--radius-card);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md); text-align: center;
}
.contact-card .icon {
  width: 44px; height: 44px;
  background: var(--navy); color: var(--gold); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.contact-card h3 { font-family: var(--font-body); font-size: 14px; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card a { color: var(--gold); font-weight: 600; font-size: 14px; word-break: break-word; }

.booking-card {
  border: 2px solid var(--gold); border-radius: var(--radius-card);
  padding: 36px; text-align: center; background: var(--white);
  margin: 56px auto 0; max-width: 640px; box-shadow: var(--shadow-md);
}
.booking-card h3 { font-family: var(--font-head); font-size: 26px; margin-bottom: 10px; }
.booking-card p { color: var(--gray-700); margin-bottom: 22px; }

/* ========== Thank you page ========== */
.ty-hero { background: var(--navy); color: var(--white); text-align: center; padding: 160px 0 96px; }
.ty-hero h1 { color: var(--white); font-size: clamp(36px, 6vw, 56px); margin: 18px 0 14px; }
.ty-hero p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 620px; margin: 0 auto 32px; }
.checkmark {
  width: 96px; height: 96px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); border-radius: 50%; margin: 0 auto;
}
.next-steps-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 24px; }
@media (min-width: 768px) { .next-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.next-step {
  background: var(--white); padding: 26px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-md); border-top: 3px solid var(--gold);
}
.next-step .num {
  display: inline-flex; width: 32px; height: 32px;
  background: var(--navy); color: var(--gold); border-radius: 50%;
  align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 12px; font-family: var(--font-head);
}
.next-step h3 { font-family: var(--font-body); font-size: 17px; margin-bottom: 8px; }
.next-step p { font-size: 14px; color: var(--gray-700); margin: 0; }
.ty-actions { display: flex; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* ========== Reveal animations ========== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== Party (2 vs 3) ========== */
.party-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 768px) { .party-grid { grid-template-columns: 1fr 1fr; } }
.party-card { padding: 32px; border-radius: var(--radius-card); background: var(--offwhite); border-left: 4px solid var(--gold); }
.party-card h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 12px; }

/* ========== CTA strip ========== */
.cta-strip { background: var(--navy); color: var(--white); padding: 64px 0; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== Legal pages styling ========== */
.legal-hero {
  background: var(--navy); color: #fff;
  padding: 140px 32px 60px; text-align: center;
}
.legal-hero .badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px;
}
.legal-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; margin: 0 0 16px; color: var(--white); font-family: var(--font-head); }
.legal-hero p { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0; }
.legal-meta {
  background: var(--cream); border-bottom: 1px solid #e8e2d6;
  padding: 16px 32px; display: flex; gap: 32px;
  justify-content: center; font-size: 0.85rem; color: var(--gray-500); flex-wrap: wrap;
}
.legal-meta span strong { color: var(--text); }
.legal-body { max-width: 820px; margin: 0 auto; padding: 64px 32px 96px; }
.legal-body h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin: 52px 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-head);
}
.legal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; font-family: var(--font-body); }
.legal-body p { line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; color: var(--gray-700); }
.legal-body ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.legal-body ul li { padding: 5px 0 5px 22px; position: relative; line-height: 1.7; font-size: 0.95rem; color: var(--gray-700); }
.legal-body ul li::before { content: '•'; position: absolute; left: 6px; color: var(--gold); font-weight: 900; }
.notice-box {
  background: #fff8e6; border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 28px 0;
  font-size: 0.93rem; line-height: 1.7; color: #5a4a1a;
}
.notice-box strong { color: #3a2a00; }
.highlight-box {
  background: #f0f4ff; border: 1.5px solid #d0d8f0;
  border-radius: 10px; padding: 20px 24px; margin: 24px 0;
  font-size: 0.93rem; line-height: 1.7; color: var(--gray-700);
}
.caps-block {
  font-size: 0.88rem; line-height: 1.7;
  background: #f8f8f8; border: 1px solid #ddd;
  border-radius: 8px; padding: 20px 24px;
  color: #333; margin: 20px 0;
  font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.section-number { color: var(--gold); font-weight: 700; margin-right: 6px; }
.toc {
  background: var(--cream); border: 1px solid #e8e2d6;
  border-radius: 12px; padding: 28px 32px; margin-bottom: 48px;
}
.toc h3 { margin: 0 0 16px; color: var(--navy); font-size: 1rem; font-family: var(--font-body); }
.toc ol { margin: 0; padding-left: 20px; }
.toc ol li { margin-bottom: 6px; }
.toc a { color: var(--navy); text-decoration: none; font-size: 0.93rem; }
.toc a:hover { color: var(--gold); text-decoration: underline; }
.contact-box {
  background: var(--navy); color: #fff;
  border-radius: 14px; padding: 36px 40px; margin-top: 56px;
}
.contact-box h3 { color: var(--gold-soft); margin: 0 0 16px; }
.contact-box p { color: rgba(255,255,255,0.8); margin: 0 0 8px; font-size: 0.95rem; }
.contact-box a { color: var(--gold-soft); }
.ack-box {
  border: 2px solid var(--gold); border-radius: 12px;
  padding: 28px 32px; text-align: center; margin-top: 48px;
  background: var(--cream);
}
.ack-box p { font-size: 1rem; color: var(--navy); font-weight: 600; margin: 0; line-height: 1.6; }
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 0.9rem; }
.data-table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; }
.data-table td { padding: 11px 16px; border-bottom: 1px solid #eee; vertical-align: top; line-height: 1.55; }
.data-table tr:nth-child(even) td { background: #fafafa; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.security-item { border: 1.5px solid #e8e8e8; border-radius: 10px; padding: 18px; }
.security-item h4 { margin: 0 0 6px; font-size: 0.93rem; color: var(--navy); font-family: var(--font-body); }
.security-item p { margin: 0; font-size: 0.87rem; color: var(--gray-500); line-height: 1.5; }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }

/* ========== Article (blog posts) ========== */
.article-hero {
  position: relative; height: 56vh; min-height: 360px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; color: var(--white);
}
.article-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,27,61,0.92), rgba(15,27,61,0.3)); }
.article-hero .container { position: relative; z-index: 2; padding-bottom: 48px; }
.article-hero .cat { display: inline-block; padding: 5px 12px; background: var(--gold); color: var(--navy); border-radius: 100px; font-size: 11px; letter-spacing: 0.1em; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.article-hero h1 { color: var(--white); font-size: clamp(28px, 5vw, 44px); max-width: 880px; margin: 0; }
.article-back { padding: 20px 0; background: var(--cream); }
.article-back a { color: var(--navy); font-size: 14px; font-weight: 600; }
.article-body { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; color: var(--gray-700); font-size: 17px; line-height: 1.8; }
.article-body p { margin: 0 0 1.4em; }
.article-body h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); margin: 48px 0 16px; color: var(--navy); }
.article-body h3 { font-family: var(--font-body); font-size: 20px; margin: 32px 0 12px; color: var(--navy); }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.article-body th { background: var(--navy); color: var(--white); padding: 12px; text-align: left; }
.article-body td { padding: 11px 12px; border-bottom: 1px solid var(--gray-200); }
.article-body tr:nth-child(even) td { background: var(--cream); }
.article-body blockquote, .article-body .pullquote {
  border-left: 4px solid var(--gold); padding: 16px 24px;
  margin: 32px 0; font-family: var(--font-head);
  font-size: 22px; line-height: 1.5; color: var(--navy); font-style: italic;
}
.waterfall {
  display: grid; gap: 8px; margin: 24px 0;
}
.waterfall-step {
  background: var(--cream); padding: 18px 22px; border-radius: 8px;
  border-left: 4px solid var(--gold); display: flex; align-items: center; gap: 16px;
}
.waterfall-step .n {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; background: var(--navy); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.waterfall-step h4 { margin: 0 0 4px; font-family: var(--font-body); font-size: 16px; color: var(--navy); }
.waterfall-step p { margin: 0; font-size: 14px; color: var(--gray-700); }

/* utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

@media print {
  .nav, .cookie-banner, .mobile-menu, .menu-overlay, .hamburger, .modal-overlay { display: none !important; }
}
