/* ==========================================================
   MY SPANISH NLV — Shared Design System
   myspanishnlv.com
   ========================================================== */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --navy:            #0c1930;
  --navy-mid:        #1a3a5c;
  --red:             #be0011;
  --red-deep:        #8c000d;
  --cream:           #f8f7f4;
  --yellow:          #facf39;
  --text-muted-light:#8a9bb0;
  --text-muted:      #5a6478;
  --border-light:    #dce3ed;
  --border-dark:     rgba(255,255,255,0.08);
  --black:           #1a1a1a;
  --white:           #ffffff;
  --ff-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:999px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* SKIP LINK */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--yellow); color: var(--navy);
  padding: .5rem 1rem; z-index: 200; font-weight: 500;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ─── NAV ─────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(12,25,48,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 108px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  color: var(--text-muted-light); text-decoration: none;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: .55rem 1.4rem; border-radius: var(--r-pill);
  font-weight: 500 !important; transition: background .2s !important;
  letter-spacing: .04em !important;
}
.nav-cta:hover { background: var(--red-deep) !important; }

/* ─── HAMBURGER ───────────────────────────────────────── */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem; position: relative; z-index: 10001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.active { position: fixed; top: 1.1rem; right: 1.5rem; z-index: 10001; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: #0c1930;
  z-index: 10000; flex-direction: column;
  justify-content: flex-start; align-items: center;
  padding-top: 4.5rem; overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu-close {
  position: absolute; top: 1.1rem; right: 1.5rem;
  background: none; border: 1px solid rgba(255,255,255,.3);
  color: var(--white); font-size: 1.3rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; cursor: pointer;
}
.mobile-menu a {
  display: block; width: 100%; text-align: center;
  padding: 1.3rem 2rem; color: var(--white);
  text-decoration: none; font-size: 1.15rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu a:hover { background: rgba(255,255,255,.05); }
.mobile-menu-bottom {
  width: 100%; padding: 1.5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: .75rem; margin-top: auto;
}
.mm-label {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted-light);
  text-align: center; margin-top: .5rem;
}
.mm-pill {
  display: block; width: 100%; text-align: center;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 600; text-decoration: none;
  letter-spacing: .04em; border: none; transition: background .2s, border-color .2s;
}
.mm-pill.pill-red   { background: var(--red); color: var(--white); }
.mm-pill.pill-red:hover { background: var(--red-deep); }
.mm-pill.pill-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.mm-pill.pill-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.mm-pill.pill-yellow { background: var(--yellow); color: var(--navy); }
.mm-pill.pill-yellow:hover { background: #e8bf30; }

/* ─── MOBILE STICKY BAR ───────────────────────────────── */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100; background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: .75rem 1rem; gap: .5rem;
}
.mobile-bar a {
  flex: 1; text-align: center; padding: .75rem .5rem;
  border-radius: var(--r-pill); font-size: .85rem;
  font-weight: 600; text-decoration: none; letter-spacing: .03em;
}
.mobile-bar .bar-apply  { background: var(--red); color: var(--white); }
.mobile-bar .bar-contact { background: transparent; border: 1px solid var(--cream); color: var(--cream); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--red); color: var(--white);
  padding: .95rem 2rem; text-decoration: none;
  font-weight: 500; font-size: .95rem; border-radius: var(--r-pill);
  transition: background .2s, transform .2s;
  letter-spacing: .02em; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: var(--white);
  padding: .95rem 2rem; text-decoration: none;
  font-weight: 400; font-size: .95rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: var(--navy);
  padding: .95rem 2rem; text-decoration: none;
  font-weight: 500; font-size: .95rem; border-radius: var(--r-pill);
  border: 1px solid var(--navy);
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-cta-inverse {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--navy); color: var(--white);
  padding: 1rem 2.2rem; text-decoration: none;
  font-weight: 500; font-size: .95rem; border-radius: var(--r-pill);
  white-space: nowrap; transition: background .2s;
}
.btn-cta-inverse:hover { background: var(--black); }

/* ─── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  padding: 9rem 4rem 5rem; background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,207,57,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--text-muted-light);
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted-light); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: var(--yellow); }
.page-label {
  font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1rem; font-weight: 500;
  display: flex; align-items: center; gap: .75rem;
}
.page-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--yellow); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 500; line-height: 1.08;
  max-width: 820px; margin-bottom: 1.25rem;
  letter-spacing: -.01em; color: var(--white);
}
.page-hero h1 em { font-style: normal; color: var(--yellow); font-weight: 600; }
.page-hero-sub {
  font-size: 1.05rem; color: var(--text-muted-light);
  max-width: 640px; margin-bottom: 2rem;
  font-weight: 300; line-height: 1.75;
}
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}
.stat-num {
  font-family: var(--ff-display); font-size: 2rem;
  color: var(--yellow); font-weight: 500;
  line-height: 1; margin-bottom: .3rem;
}
.stat-label {
  font-size: .78rem; color: var(--text-muted-light);
  text-transform: uppercase; letter-spacing: .1em;
}
.hero-trust {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}
.trust-item { display: flex; align-items: center; gap: .65rem; font-size: .84rem; color: var(--text-muted-light); }
.trust-icon {
  width: 28px; height: 28px; background: rgba(250,207,57,.12);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .8rem; flex-shrink: 0;
}

/* ─── SECTIONS ────────────────────────────────────────── */
section { padding: 6rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 500; line-height: 1.15; margin-bottom: 1rem;
}
.section-body {
  font-size: 1.05rem; line-height: 1.75;
  max-width: 640px; font-weight: 300;
}
/* Dark section */
.dark-section { background: var(--navy); color: var(--white); }
.dark-section .section-label { color: var(--yellow); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-body { color: var(--text-muted-light); }
/* Light section */
.light-section { background: var(--cream); color: var(--black); }
.light-section .section-label { color: var(--red); }
.light-section .section-title { color: var(--navy); }
.light-section .section-body { color: var(--text-muted); }

/* ─── CARDS ───────────────────────────────────────────── */
/* Feature card (dark bg) */
.feature-card {
  background: var(--navy-mid); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 2rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .4rem; }
.feature-card p  { font-size: .87rem; color: var(--text-muted-light); line-height: 1.65; }
/* Content card (light bg) */
.content-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 2rem;
}
.content-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.content-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }
/* Link card (dark section, hover yellow border) */
.link-card {
  border: 1px solid var(--border-dark); border-radius: var(--r-lg);
  padding: 2rem; text-decoration: none; color: var(--white);
  transition: border-color .2s, transform .2s;
  display: block; background: var(--navy-mid);
}
.link-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.link-card-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--yellow); margin-bottom: .75rem; font-weight: 500; }
.link-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.link-card p  { font-size: .85rem; color: var(--text-muted-light); line-height: 1.6; }
.link-arrow  { margin-top: 1.25rem; font-size: .85rem; color: var(--yellow); font-weight: 500; }

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

/* ─── PROCESS STEPS ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.step  { display: flex; gap: 2rem; position: relative; padding-bottom: 2.5rem; }
.step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-dot {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700;
  font-size: .9rem; color: var(--white);
}
.step-line { flex: 1; width: 1px; background: var(--border-dark); margin: .5rem 0; }
.step:last-child .step-line { display: none; }
.step-content { padding-top: .4rem; }
.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; color: var(--white); }
.step-content p  { font-size: .88rem; color: var(--text-muted-light); line-height: 1.65; }

/* ─── PRICING CARDS ───────────────────────────────────── */
.price-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: 2.5rem;
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover { box-shadow: 0 16px 40px rgba(12,25,48,.1); transform: translateY(-3px); }
.price-card.featured { border-color: var(--red); border-width: 2px; }
.price-card.featured::before {
  content: 'Most popular'; position: absolute; top: -.85rem; left: 2rem;
  background: var(--yellow); color: var(--navy);
  font-size: .68rem; padding: .35rem .9rem; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
}
.price-card h2 { font-family: var(--ff-display); font-size: 1.45rem; margin-bottom: .3rem; color: var(--navy); }
.price-desc  { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.price-tag   { font-family: var(--ff-display); font-size: 3rem; color: var(--red); font-weight: 500; line-height: 1; margin-bottom: .25rem; }
.price-sub   { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.milestone-list { list-style: none; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 1.1rem 0; margin-bottom: 1.5rem; }
.milestone-list li { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .6rem 0; font-size: .88rem; }
.m-label { color: var(--text-muted); }
.m-price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.m-note  { font-size: .75rem; color: var(--text-muted); display: block; }
.includes-list { list-style: none; margin-bottom: 2rem; }
.includes-list li { font-size: .88rem; padding: .45rem 0 .45rem 1.6rem; position: relative; color: var(--black); }
.includes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.price-card .btn-primary,
.price-card .btn-outline-dark { margin-top: auto; justify-content: center; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 820px; }
.light-section details { border-bottom: 1px solid var(--border-light); padding: 1.5rem 0; }
.dark-section  details { border-bottom: 1px solid var(--border-dark);  padding: 1.5rem 0; }
details summary {
  cursor: pointer; font-size: 1.02rem; font-weight: 600;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
.light-section details summary { color: var(--navy); }
.dark-section  details summary { color: var(--white); }
details summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform .2s; }
.light-section details summary::after { color: var(--red); }
.dark-section  details summary::after { color: var(--yellow); }
details[open] summary::after { transform: rotate(45deg); }
details p, details div.answer {
  margin-top: 1rem; font-size: .95rem; line-height: 1.75; font-weight: 400;
}
.light-section details p { color: var(--text-muted); }
.dark-section  details p { color: var(--text-muted-light); }
.light-section details a { color: var(--red); }
.dark-section  details a { color: var(--yellow); }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner { background: var(--red); padding: 5rem 4rem; }
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
}
.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem,3vw,2.5rem);
  color: var(--white); font-weight: 500; margin-bottom: .5rem;
}
.cta-text p { color: rgba(255,255,255,.88); font-size: 1rem; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── INFO CARD (quick-facts) ─────────────────────────── */
.info-card {
  background: var(--navy-mid); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 2.5rem;
}
.info-card h3 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--yellow); }
.info-card p, .info-card li { color: var(--text-muted-light); }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem; gap: 1rem;
}
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--text-muted-light); }
.info-val { font-weight: 500; text-align: right; color: var(--white); }

/* ─── TAGS / BADGES ───────────────────────────────────── */
.badge {
  display: inline-block; font-size: .67rem; padding: .2rem .55rem;
  border-radius: var(--r-pill); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-blue   { background: #e0f2fe; color: #0369a1; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-red    { background: #fee2e2; color: #991b1b; }

/* ─── COMPARISON TABLE ────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare-table th {
  background: var(--white); color: var(--navy);
  padding: 1rem 1.25rem; text-align: left; font-weight: 600;
  border-bottom: 2px solid var(--border-light);
}
.compare-table th.hl { background: var(--red); color: var(--white); }
.compare-table td {
  padding: .9rem 1.25rem; border-bottom: 1px solid var(--border-light);
  background: var(--white); color: var(--text-muted);
}
.compare-table td.hl { background: #fff8f8; color: var(--navy); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.tick { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; font-weight: 700; }

/* ─── TESTIMONIAL CARDS ───────────────────────────────── */
.t-card {
  background: var(--navy-mid); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 2rem;
}
.t-stars  { color: var(--yellow); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .05em; }
.t-quote  { font-size: .92rem; color: var(--text-muted-light); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.t-author { font-size: .82rem; color: var(--white); font-weight: 600; }
.t-meta   { font-size: .78rem; color: var(--text-muted-light); margin-top: .15rem; }
.t-card-light {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 2rem;
}
.t-card-light .t-quote  { color: var(--text-muted); }
.t-card-light .t-author { color: var(--navy); }
.t-card-light .t-meta   { color: var(--text-muted-light); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 108px; width: auto; }
.footer-tagline { font-size: .88rem; color: var(--text-muted-light); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-email a { color: var(--yellow); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.footer-email a:hover { color: var(--white); }
.footer-heading { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; font-weight: 600; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: .6rem; }
.footer-list a { color: var(--text-muted-light); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-list a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: var(--text-muted-light); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted-light); text-decoration: none; font-size: .78rem; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* Footer visa-type pills */
.footer-pill {
  display: block; text-align: center;
  background: var(--yellow); color: var(--navy);
  padding: .45rem 1rem; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 600;
  text-decoration: none; margin-bottom: .45rem;
  transition: opacity .2s;
}
.footer-pill:hover { opacity: .82; }

/* ─── UTILITY ─────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.text-yellow { color: var(--yellow); }
.text-red    { color: var(--red); }
.text-muted  { color: var(--text-muted-light); }

/* Aliases for hero / section heading patterns */
.hero-tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; font-weight: 500; display: flex; align-items: center; gap: .75rem; }
.hero-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--yellow); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-family: var(--ff-display); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 500; line-height: 1.15; margin-bottom: .75rem; }
.section-header p  { font-size: 1.05rem; line-height: 1.75; max-width: 640px; font-weight: 300; }
.dark-section .section-header h2 { color: var(--white); }
.dark-section .section-header p  { color: var(--text-muted-light); }
.light-section .section-header h2 { color: var(--navy); }
.light-section .section-header p  { color: var(--text-muted); }

/* Footer class aliases (backwards-compat for older page HTML) */
.footer-brand  { display: contents; }
.footer-links  { display: contents; }
.footer-col-heading { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; font-weight: 600; }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up-1 { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .1s ease both; }
.fade-up-3 { animation: fadeUp .6s .2s ease both; }
.fade-up-4 { animation: fadeUp .6s .3s ease both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── CONTAINER (generic centred wrapper) ─────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* ─── LEGAL PAGES ─────────────────────────────────────── */
.legal-body { max-width: 800px; }
.legal-body h2 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border-light);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.legal-body p {
  font-size: .97rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.legal-body ul,
.legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.legal-body li {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: .45rem;
}
.legal-body strong { color: var(--black); font-weight: 600; }
.legal-body a { color: var(--red); text-decoration: underline; transition: color .2s; }
.legal-body a:hover { color: var(--red-deep); }

/* Cookie table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.cookie-table th {
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
}
.cookie-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: rgba(220,227,237,.25); }
.cookie-table code {
  font-family: monospace;
  font-size: .84rem;
  background: var(--border-light);
  padding: .1rem .4rem;
  border-radius: 4px;
  color: var(--navy);
}

/* Light-section section padding override for legal content */
.light-section .container { padding-top: 4rem; padding-bottom: 5rem; }

/* ─── MOBILE NAV JS HELPER ────────────────────────────── */
/* (included in every page's <script> block) */

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav.site-nav { padding: 1rem 1.5rem; flex-direction: row; align-items: center; }
  .nav-logo img { height: 80px !important; width: auto !important; }
  .nav-toggle { display: flex; flex-direction: column; gap: 0; background: none; border: none; cursor: pointer; margin-left: auto; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s ease; }
  .nav-links { display: none !important; flex-direction: column; gap: 0; width: 100%; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-dark); }
  .nav-links.open { display: flex !important; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-links a.nav-cta { padding: .85rem 2rem; text-align: center; border: none; }
  .mobile-bar  { display: flex; }
  body         { padding-top: 92px; padding-bottom: 4.5rem; }
  .nav-desktop { display: none !important; }
  .page-hero   { padding: 2rem 1.5rem 3.5rem; }
  section      { padding: 4rem 1.5rem; }
  .cta-banner  { padding: 3.5rem 1.5rem; }
  .cta-inner   { flex-direction: column; align-items: flex-start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats  { gap: 2rem; }
  .hero-trust  { flex-direction: column; gap: 1rem; }
  footer.site-footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .compare-table { display: block; overflow-x: auto; }
}
