/* ══════════════════════════════
   RESET & CSS VARIABLES
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core Brand Colors — Wheat & Brown (Headcorn shop theme) */
  --blue-900:   #451a03;
  --blue-800:   #5c2d0c;
  --blue-700:   #7c3f17;
  --blue-600:   #9a5b2e;
  --blue-500:   #b8834f;
  --blue-400:   #d4a574;
  --blue-300:   #e3c39a;
  --blue-200:   #efdcbf;
  --blue-100:   #f7ead9;
  --blue-50:    #fdf8f2;

  /* Deep Coffee Brown — true-dark section backgrounds (hero, CTA, topbar) */
  --navy-950:   #120c07;
  --navy-900:   #1f140b;
  --navy-800:   #2c1d10;

  /* Neutral/Surface */
  --white:      #ffffff;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --slate-600:  #475569;
  --slate-700:  #334155;
  --slate-800:  #1e293b;
  --slate-900:  #0f172a;

  /* Accent - Coral/Red for urgent notes; Gold for award/press highlights */
  --coral-500:  #ef4444;
  --coral-600:  #dc2626;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #b8834f 0%, #d4a574 55%, #e3c39a 100%);
  --grad-navy:    linear-gradient(150deg, #120c07 0%, #1f140b 48%, #2c1d10 100%);
  --grad-header:  linear-gradient(90deg, #7c3f17, #9a5b2e);
  --grad-btn:     linear-gradient(135deg, #7c3f17, #9a5b2e);
  --grad-card:    linear-gradient(160deg, #fdf8f2 0%, #ffffff 100%);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:    10px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    28px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 18px rgba(124,63,23,0.14), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:    0 14px 44px rgba(124,63,23,0.20), 0 4px 14px rgba(15,23,42,0.07);
  --shadow-form:  0 28px 70px rgba(31,20,11,0.30), 0 4px 18px rgba(0,0,0,0.08);
}

/* scroll-behavior intentionally omitted: Lenis (loaded via CDN) owns smooth
   scrolling; native + Lenis smoothing together causes double-easing jank.
   script.js falls back to scrollIntoView({behavior:'smooth'}) if Lenis fails
   to load, which does not depend on this CSS property. */
html { scroll-padding-top: 96px; }
.hero, .section { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-padding-top: 0; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); }

img { max-width: 100%; display: block; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.75); opacity: 0.5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.80);
  font-size: 0.8rem;
  padding: 9px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.topbar a {
  color: var(--blue-300);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-item svg {
  width: 13px; height: 13px;
  stroke: var(--blue-300);
  flex-shrink: 0;
}
.topbar-sep { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--blue-100);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 20px rgba(154,91,46,0.07);
  transition: box-shadow 0.3s, padding 0.3s;
}
header.is-scrolled {
  padding: 6px 40px;
  box-shadow: 0 4px 24px rgba(154,91,46,0.14);
}
header.is-scrolled .logo-wrap img { height: 42px; }
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-wrap img {
  height: 52px;
  width: auto;
  transition: height 0.3s;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  text-decoration: none;
  transition: color 0.2s;
}
.header-phone svg {
  width: 18px; height: 18px;
  stroke: var(--blue-500);
  stroke-width: 2.2;
}
.header-phone:hover { color: var(--blue-600); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(184,131,79,0.34);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,131,79,0.44);
}
.btn-primary:active { transform: translateY(0); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 88vh;
  background: var(--grad-navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 40px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(184,131,79,0.38) 0%, transparent 70%);
  top: -220px; right: -120px;
}
.hero-orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(212,165,116,0.24) 0%, transparent 70%);
  bottom: -120px; left: 5%;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--blue-400) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
}


.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left { animation: slideUp 0.65s cubic-bezier(0.16,1,0.3,1) both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  border: 1.5px solid var(--blue-200);
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero-eyebrow svg { width: 12px; height: 12px; stroke: var(--blue-500); stroke-width: 2.5; }

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.05rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 .gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 22px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  color: var(--slate-700);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.chip svg {
  width: 14px; height: 14px;
  stroke: var(--blue-500);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--slate-700);
  font-size: 0.88rem;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.hero-urgency strong { color: var(--blue-700); }
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--blue-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-h1-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  vertical-align: middle;
}
.hero-h1-icons svg {
  width: 20px; height: 20px;
  stroke: var(--blue-400);
  stroke-width: 2;
  opacity: 0.85;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-explore:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-explore svg { width: 15px; height: 15px; stroke: var(--blue-300); transition: transform 0.2s; }
.btn-explore:hover svg { transform: translateX(3px); }

.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.hero-avatars { display: flex; }
.hero-avatars .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--navy-900);
  margin-left: -12px;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.hero-avatars .av:first-child { margin-left: 0; }
.hero-social-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.hero-social-text strong { color: #fff; }
.hero-social-text .stars-inline { color: #f59e0b; letter-spacing: 1px; }

/* ══════════════════════════════
   HERO VISUAL — floating cards around the form
══════════════════════════════ */
.hero-visual { position: relative; }

/* Pinned so it only ever encroaches on the form-card's own dark header
   (decorative, non-interactive) — never on the white input area below
   it — so it can't sit on top of a field or button at any viewport width. */
.float-pill-group {
  position: absolute;
  top: 14px;
  right: -22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 5;
}
.float-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--blue-700);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
  animation: float 5.5s ease-in-out infinite;
}
.float-pill:nth-child(2) { animation-delay: 0.5s; }
.float-pill:nth-child(3) { animation-delay: 1s; }
.float-pill span.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; }

@media (max-width: 1024px) {
  .float-pill-group { display: none; }
}

/* ══════════════════════════════
   ENQUIRY FORM CARD
══════════════════════════════ */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  box-shadow: var(--shadow-form);
  border: 1.5px solid var(--blue-100);
  animation: slideUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.15s both;
  position: relative;
}
.form-card-header {
  background: var(--grad-btn);
  margin: -40px -34px 30px;
  padding: 26px 34px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  text-align: center;
}
.form-card-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}
.form-card-header p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.88);
}
.free-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Form Inputs */
.fg { margin-bottom: 14px; }
.fg label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.fg label .lbl-icon { width: 13px; height: 13px; stroke: var(--blue-500); flex-shrink: 0; }
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-800);
  background: var(--slate-50);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(184,131,79,0.14);
  background: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.v-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  animation: fadeInUp 0.2s ease both;
}
.v-error svg { width: 14px; height: 14px; flex-shrink: 0; }
.is-invalid { border-color: #f87171 !important; background: #fff5f5 !important; }
.is-valid   { border-color: #34d399 !important; background: #f0fdf4 !important; }
.hp-field   { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* Submit button */
.form-card .btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(184,131,79,0.34);
  letter-spacing: 0.01em;
}
.form-card .btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,131,79,0.44);
}
.form-card .btn-submit:disabled {
  background: var(--slate-300);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--slate-600);
  margin-top: 12px;
  line-height: 1.5;
}
.form-note svg { width: 14px; height: 14px; stroke: var(--slate-600); flex-shrink: 0; }

/* Success Box */
.success-box {
  display: none;
  background: #f0fdf4;
  border: 2px solid #34d399;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  animation: scaleIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.success-icon svg { width: 32px; height: 32px; stroke: #fff; stroke-width: 2.5; }
.success-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 10px;
}
.success-box p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
}

/* ══════════════════════════════
   TRUST RIBBON
══════════════════════════════ */
.trust-ribbon {
  background: var(--grad-btn);
  padding: 18px 40px;
}
.trust-ribbon-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.trust-item svg {
  width: 18px; height: 18px;
  fill: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

/* ══════════════════════════════
   PRESS & RECOGNITION
══════════════════════════════ */
.press-section {
  background: var(--slate-900);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.press-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,131,79,0.14) 0%, transparent 70%);
  top: -180px; left: -120px;
  pointer-events: none;
}
.press-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1.5px solid rgba(245,158,11,0.35);
  color: #fbbf24;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.press-badge svg { width: 14px; height: 14px; stroke: #fbbf24; }
.press-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.55;
  font-style: italic;
  letter-spacing: -0.2px;
}
.press-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue-300);
  letter-spacing: 0.01em;
}
.press-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 8px;
}
@media (max-width: 720px) { .press-stats { grid-template-columns: 1fr; gap: 20px; } }
.press-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}
.press-stat strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-300);
  margin-bottom: 6px;
}
.press-stat strong svg { width: 22px; height: 22px; stroke: #fbbf24; flex-shrink: 0; }
.press-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.press-link:hover { color: var(--blue-300); border-color: var(--blue-300); }
.press-link svg { width: 14px; height: 14px; stroke: currentColor; }

/* ══════════════════════════════
   SCROLL-REVEAL MOTION
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.section { padding: 96px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.eyebrow::after {
  content: '';
  flex: 0 0 36px; height: 2px;
  background: var(--blue-300);
  border-radius: 2px;
}

.section-h {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.78;
  max-width: 640px;
}

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
.why-section { background: var(--blue-50); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--blue-100);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 0 4px 4px;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue-600);
  transition: background 0.25s, border-color 0.25s;
}
.why-icon svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.9; fill: none; }
.why-card:hover .why-icon {
  background: var(--blue-100);
  border-color: var(--blue-300);
}
.why-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ══════════════════════════════
   VACCINES
══════════════════════════════ */
.vaccines-section { background: #fff; }

.vaccines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.vax-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.vax-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 28px rgba(184,131,79,0.12);
  transform: translateY(-3px);
}
.vax-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-700);
  transition: background 0.22s;
}
.vax-card:hover .vax-icon { background: var(--blue-200); }
.vax-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.vax-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.vax-card p {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.vax-note {
  margin-top: 36px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-left: 5px solid var(--blue-500);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--slate-700);
  line-height: 1.6;
}
.vax-note svg {
  width: 26px; height: 26px;
  stroke: var(--blue-500);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ══════════════════════════════
   PRICE LIST
══════════════════════════════ */
.price-section { background: var(--blue-50); }
.price-table-wrap {
  margin-top: 56px;
  background: #fff;
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.price-grid-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) { .price-grid-cols { grid-template-columns: 1fr; } }
.price-col table {
  width: 100%;
  border-collapse: collapse;
}
.price-col:first-child { border-right: 1.5px solid var(--blue-100); }
@media (max-width: 720px) { .price-col:first-child { border-right: none; border-bottom: 1.5px solid var(--blue-100); } }
.price-table-wrap th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-btn);
  padding: 12px 22px;
}
.price-table-wrap th.th-price, .price-table-wrap td.td-price { text-align: right; }
.price-table-wrap td {
  padding: 11px 22px;
  font-size: 0.88rem;
  color: var(--slate-700);
  border-top: 1px solid var(--slate-100);
}
.price-table-wrap tr:hover td { background: var(--blue-50); }
.price-table-wrap td.td-price {
  font-weight: 800;
  color: var(--blue-700);
  font-family: var(--font-display);
  white-space: nowrap;
}
.price-table-wrap td.td-course {
  color: var(--slate-500);
  font-size: 0.78rem;
}
.price-footnote {
  text-align: center;
  font-size: 0.84rem;
  color: var(--slate-600);
  margin-top: 22px;
}

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how-section {
  background: var(--grad-btn);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}
.how-section .eyebrow { color: var(--blue-100); }
.how-section .eyebrow::after { background: rgba(255,255,255,0.5); }
.how-section .section-h { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,0.85); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.step-card { text-align: center; position: relative; }
.step-card::after {
  content: '→';
  position: absolute;
  right: -18px; top: 24px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.22);
}
.step-card:last-child::after { display: none; }

.step-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  padding: 0 6px;
}

/* ══════════════════════════════
   LOCATIONS
══════════════════════════════ */
.locations-section { background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.loc-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-300);
}
.loc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(184,131,79,0.3);
}
.loc-icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; }
.loc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.loc-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.loc-links { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-700);
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.loc-links a:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.loc-links svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; }

.visit-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8px;
  margin-top: 56px;
  max-width: 900px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 36px;
}
@media (max-width: 720px) { .visit-card { grid-template-columns: 1fr; } }
.visit-card-main .loc-icon { margin-bottom: 18px; }
.visit-card-main h3 { font-size: 1.15rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.visit-card-main p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 16px; }
.visit-card-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1.5px solid var(--blue-200);
  padding-left: 32px;
}
@media (max-width: 720px) { .visit-card-features { border-left: none; border-top: 1.5px solid var(--blue-200); padding-left: 0; padding-top: 24px; } }
.visit-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
}
.visit-feature svg { width: 18px; height: 18px; stroke: var(--blue-500); flex-shrink: 0; }

/* ══════════════════════════════
   DESTINATIONS
══════════════════════════════ */
.dest-section { background: var(--blue-50); }

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.dest-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--blue-100);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.dest-tag:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateY(-2px);
}
.dest-tag .flag { font-size: 1.2rem; display: inline-flex; align-items: center; }
.dest-tag .flag svg { width: 16px; height: 16px; stroke: var(--blue-500); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-section { background: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
  margin-top: 56px;
}
.testi-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-500);
  opacity: 0.12;
  position: absolute;
  top: 14px; left: 22px;
  user-select: none;
}
.stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  margin-bottom: 14px;
}
.stars svg { width: 15px; height: 15px; }
.testi-text {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.author-meta {
  font-size: 0.78rem;
  color: var(--slate-600);
}

/* ══════════════════════════════
   STATS STRIP
══════════════════════════════ */
.stats-strip {
  background: #fff;
  border-top: 1.5px solid var(--blue-100);
  border-bottom: 1.5px solid var(--blue-100);
  padding: 40px 40px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-num-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-num-row .stat-num { margin-bottom: 0; }
.stat-star { width: 26px; height: 26px; color: #f59e0b; flex-shrink: 0; }
.stat-label {
  font-size: 0.84rem;
  color: var(--slate-600);
  font-weight: 600;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--blue-100);
}

/* ══════════════════════════════
   BOTTOM CTA
══════════════════════════════ */
.bottom-cta {
  background: var(--grad-navy);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bottom-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,131,79,0.28) 0%, transparent 70%);
  top: -250px; right: -100px;
  pointer-events: none;
}
.bottom-cta-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bottom-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.bottom-cta p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 1.75;
}
.bottom-cta .btn-primary {
  font-size: 1.05rem;
  padding: 15px 48px;
}
.bottom-cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.55);
  padding: 56px 40px 40px;
  font-size: 0.86rem;
  line-height: 1.85;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 1100px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
}
.footer-brand p { max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-300); }
footer strong { color: rgba(255,255,255,0.88); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-legal { font-size: 0.74rem; color: rgba(255,255,255,0.35); max-width: 640px; }

/* ══════════════════════════════
   STICKY MOBILE BAR
══════════════════════════════ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate-900);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 12px;
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.m-call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.m-book {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 12px rgba(184,131,79,0.3);
}

/* ══════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55), 0 4px 10px rgba(0,0,0,0.18);
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 1024px) {
  .whatsapp-fab {
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  header { padding: 12px 24px; }
  .section { padding: 70px 24px; }
  .hero { padding: 72px 24px 48px; min-height: auto; }
  .step-card::after { display: none; }
  .trust-ribbon { padding: 16px 24px; }
  .stats-inner { gap: 40px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}
@media (max-width: 768px) {
  .topbar-sep { display: none; }
  .topbar { gap: 6px 16px; }
  .header-phone { display: none; }
  .stat-divider { display: none; }
}
@media (max-width: 560px) {
  .header-actions { display: none; }
  .topbar { flex-direction: column; gap: 5px; }
  .trust-ribbon-inner { gap: 16px; }
  .hero h1 { font-size: 2.2rem; }
  .form-card { padding: 30px 20px; }
  .form-card-header { margin: -30px -20px 26px; padding: 22px 20px; }
  .row-2 { grid-template-columns: 1fr; gap: 0; }
  .bottom-cta { padding: 70px 24px; }
  .logo-wrap img { height: 42px; }
}

/* ══════════════════════════════
   LEGAL / POLICY PAGES
══════════════════════════════ */
.legal-hero {
  background: var(--blue-50);
  padding: 64px 40px 48px;
  text-align: center;
  border-bottom: 1.5px solid var(--blue-100);
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.legal-hero p {
  color: var(--slate-600);
  font-size: 0.95rem;
}
.legal-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
}
.legal-hero .back-link svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2.5; }
.legal-hero .back-link:hover { color: var(--blue-600); }

.legal-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 96px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .legal-wrap { grid-template-columns: 1fr; padding: 40px 24px 72px; }
}

.legal-toc {
  position: sticky;
  top: 96px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 22px;
}
@media (max-width: 860px) { .legal-toc { position: static; } }
.legal-toc h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.legal-toc a {
  display: block;
  font-size: 0.86rem;
  color: var(--slate-700);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--blue-100);
  transition: color 0.2s;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--blue-600); }

.legal-content section {
  margin-bottom: 44px;
  scroll-margin-top: 96px;
}
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.legal-content .legal-updated {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-bottom: 16px;
  font-weight: 600;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 22px 0 8px;
}
.legal-content p {
  font-size: 0.92rem;
  color: var(--slate-700);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 0 0 14px 0;
  padding-left: 22px;
}
.legal-content li {
  font-size: 0.92rem;
  color: var(--slate-700);
  line-height: 1.75;
  margin-bottom: 4px;
}
.legal-content a { color: var(--blue-600); font-weight: 600; }
.legal-content strong { color: var(--slate-900); }
.legal-note {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-left: 5px solid var(--blue-500);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--slate-700);
  margin-bottom: 16px;
}
