/* TripAmigo — high-converting mobile-first landing page
   Optimized for: click-to-call, Google Ads Quality Score, LCP < 2.5s
   95% mobile traffic -> mobile-first with sticky call bar + responsive desktop */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* header offset for in-page anchors */
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a2236;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* keep last section visible above the mobile sticky call bar */
  padding-bottom: 88px;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

/* ---------- A11Y FOCUS RINGS ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid #ffd76a;
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .dot-live { animation: none !important; }
}

/* ---------- TOKENS ---------- */
:root {
  --blue-900: #0a2a5e;
  --blue-800: #0c3a87;
  --blue-700: #0f4aa8;
  --blue-600: #1663d1;
  --blue-50:  #eaf2ff;
  --orange:   #ff6a1a;
  --orange-dark: #e95a0e;
  --yellow:   #ffb400;
  --green:    #16a34a;
  --ink:      #1a2236;
  --ink-2:    #4a5674;
  --line:     #e4e8f0;
  --bg-soft:  #f6f8fc;
  --radius:   14px;
  --shadow-sm: 0 1px 2px rgba(10,42,94,.06), 0 2px 8px rgba(10,42,94,.06);
  --shadow-md: 0 4px 14px rgba(10,42,94,.10), 0 10px 30px rgba(10,42,94,.08);
  --container: 1200px;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1200px) { .container { padding: 0 32px; } }

section { padding: 40px 0; }
@media (min-width: 768px) { section { padding: 64px 0; } }
@media (min-width: 1024px) { section { padding: 80px 0; } }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--blue-900);
  color: #fff;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 12px;
}
.topbar .trust { display: flex; gap: 14px; flex-wrap: wrap; color: #c9dcff; }
.topbar .trust span { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch { display: inline-flex; gap: 2px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 2px; }
.lang-switch a { padding: 4px 10px; border-radius: 999px; color: #c9dcff; font-weight: 600; font-size: 12px; }
.lang-switch a.active { background: #fff; color: var(--blue-900); }
@media (max-width: 640px) { .topbar .trust { display: none; } }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}
@media (min-width: 768px) { .header .container { padding: 12px 24px; } }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--blue-900); font-size: 20px;
  letter-spacing: -.02em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo small {
  color: var(--ink-2); font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
  display: block; margin-top: -2px;
}

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  min-height: 44px;
  box-shadow: 0 4px 0 var(--orange-dark);
  transition: transform .08s ease;
}
.header-cta:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-dark); }
.header-cta svg { width: 16px; height: 16px; }
.header-cta .number { font-variant-numeric: tabular-nums; }
@media (min-width: 768px) { .header-cta { font-size: 15px; padding: 12px 18px; } .header-cta svg { width: 18px; height: 18px; } }
@media (max-width: 380px) { .header-cta .label { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,42,94,.72), rgba(10,42,94,.86)),
    linear-gradient(135deg, #0a2a5e 0%, #1663d1 60%, #2a82e8 100%);
  color: #fff;
  padding: 32px 0 36px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(1200px 400px at 80% -20%, rgba(255,180,0,.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* Desktop 2-column hero */
.hero-grid { display: grid; gap: 22px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 40px; }
  .hero { padding: 72px 0 72px; }
}
@media (min-width: 1200px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; }
}

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(28px, 5.5vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
  text-wrap: balance;
}
.hero h1 .hl { color: #ffd76a; }
.hero .sub {
  font-size: 16px;
  color: #dbe6fb;
  max-width: 620px;
  margin-bottom: 20px;
}
@media (min-width: 768px) { .hero .sub { font-size: 18px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 52px; } .hero .sub { font-size: 19px; max-width: 560px; } }

/* Hero badges */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 13px; color: #dbe6fb;
  margin-top: 6px;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; }
.hero-badges svg { width: 16px; height: 16px; color: #ffd76a; }
@media (min-width: 768px) { .hero-badges { font-size: 14px; } }

/* Bullet highlights in hero left (desktop fills the width) */
.hero-usps {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 8px;
}
.hero-usps li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: #e7eefb;
}
.hero-usps li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 1px;
  border-radius: 50%;
  background: #ffd76a url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2a5e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center/13px no-repeat;
}
@media (min-width: 768px) { .hero-usps { grid-template-columns: 1fr 1fr; gap: 10px 20px; max-width: 600px; } }

/* HERO CALL CARD */
.call-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}
.call-card .lede { font-size: 13px; color: var(--ink-2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.call-card .headline { font-size: 18px; font-weight: 800; margin: 4px 0 12px; }
@media (min-width: 768px) { .call-card { padding: 24px; } .call-card .headline { font-size: 20px; } }

.call-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(180deg, #ff8a3d, var(--orange));
  color: #fff !important;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 20px;
  min-height: 64px;
  box-shadow: 0 6px 0 var(--orange-dark), 0 10px 20px rgba(233,90,14,.35);
  transition: transform .08s ease, box-shadow .08s ease;
  letter-spacing: -.01em;
}
.call-btn:hover { transform: translateY(-1px); }
.call-btn:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--orange-dark), 0 6px 12px rgba(233,90,14,.3); }
.call-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.call-btn .num { font-variant-numeric: tabular-nums; white-space: nowrap; font-size: 22px; }
.call-btn .cta-label { font-size: 13px; font-weight: 700; opacity: .95; display: block; line-height: 1; margin-bottom: 2px; letter-spacing: .05em; text-transform: uppercase; }
.call-btn .cta-col { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }

.call-card .hours {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--ink-2); margin-top: 12px;
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(22,163,74,.6); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* Why-call card (under primary on mobile, stacked right-col on desktop) */
.search-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  margin-top: 16px;
}
.search-card h3 { font-size: 17px; margin-bottom: 14px; color: var(--blue-900); }
.why-list { list-style: none; padding: 0; margin: 0 0 16px; }
.why-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.why-list li:last-child { border-bottom: 0; }
.why-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center/14px no-repeat;
}
.why-list strong { color: var(--blue-900); display: block; font-size: 15px; margin-bottom: 2px; }
.search-note { text-align: center; font-size: 12px; color: var(--ink-2); margin-top: 10px; }
.search-note strong { color: var(--orange-dark); }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--bg-soft);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-strip .item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-strip .item svg { width: 28px; height: 28px; color: var(--blue-700); }
.trust-strip .item strong { font-size: 14px; color: var(--ink); }
.trust-strip .item span { font-size: 12px; color: var(--ink-2); }
@media (min-width: 768px) {
  .trust-strip .items { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .trust-strip .item svg { width: 32px; height: 32px; }
  .trust-strip .item strong { font-size: 15px; }
}

/* ---------- BENEFITS ---------- */
.benefits .head { text-align: center; margin-bottom: 28px; }
.benefits h2 { font-size: clamp(24px, 4.5vw, 36px); }
.benefits .sub { color: var(--ink-2); max-width: 680px; margin: 0 auto; font-size: 16px; }

.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.benefit .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.benefit .icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 18px; }
.benefit p { color: var(--ink-2); font-size: 14.5px; margin: 0; }

/* ---------- DESTINATIONS ---------- */
.destinations { background: var(--bg-soft); }
.destinations .head { display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.destinations h2 { font-size: clamp(24px, 4.5vw, 34px); margin: 0; }
.destinations .head p { margin: 0; color: var(--ink-2); font-size: 14px; }

.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 640px)  { .dest-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 900px)  { .dest-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
@media (min-width: 1200px) { .dest-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }

.dest {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-900);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  display: block;
  color: #fff;
}
.dest-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); transition: transform .3s ease; }
.dest:hover .dest-bg { transform: scale(1.08); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.8) 100%); }
.dest-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; z-index: 2; }
.dest-city { font-weight: 800; font-size: 15px; line-height: 1.1; }
.dest-country { font-size: 11.5px; opacity: .88; }
.dest-price { margin-top: 6px; font-size: 12.5px; }
.dest-price strong { color: #ffd76a; font-size: 15px; }

.destinations .cta-row { margin-top: 24px; text-align: center; }
.destinations .cta-row p { color: var(--ink-2); font-size: 14px; margin-bottom: 10px; }

/* ---------- KEYWORD-RICH ROUTES ---------- */
.routes { background: #fff; }
.routes h2 {
  font-size: clamp(24px, 4.5vw, 34px);
  text-align: center; max-width: 760px; margin: 0 auto 12px;
}
.routes .lede { text-align: center; color: var(--ink-2); max-width: 720px; margin: 0 auto 28px; font-size: 16px; }
.routes-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .routes-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .routes-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.route {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.route h3 { color: var(--blue-900); font-size: 18px; margin-bottom: 8px; }
.route p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 10px; }
.route .cities { font-size: 13px; color: var(--ink); font-weight: 600; }
.route .cities span { display: inline-block; padding: 2px 6px; }

/* ---------- TRAVEL TYPES ---------- */
.travel-types { background: var(--bg-soft); }
.travel-types h2 { font-size: clamp(24px, 4.5vw, 34px); text-align: center; margin-bottom: 10px; }
.travel-types .lede { text-align: center; color: var(--ink-2); max-width: 700px; margin: 0 auto 28px; font-size: 16px; }
.types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 640px) { .types-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .types-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.type-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease;
}
.type-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.type-card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; margin-bottom: 10px;
}
.type-card .icon svg { width: 22px; height: 22px; }
.type-card h3 { color: var(--blue-900); font-size: 15.5px; margin-bottom: 4px; }
.type-card p { font-size: 13px; color: var(--ink-2); margin: 0; }

/* ---------- AIRLINES ---------- */
.airlines { text-align: center; }
.airlines h2 { font-size: clamp(22px, 4vw, 28px); margin-bottom: 8px; }
.airlines p { color: var(--ink-2); margin-bottom: 20px; }
.airline-list {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  justify-content: center;
  max-width: 900px; margin: 0 auto;
}
.airline-chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- HOW IT WORKS ---------- */
.steps { background: var(--blue-900); color: #fff; }
.steps h2 { color: #fff; text-align: center; font-size: clamp(24px, 4.5vw, 34px); margin-bottom: 30px; }
.step-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}
.step .num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-weight: 900; font-size: 20px; margin-bottom: 12px;
}
.step h3 { color: #fff; font-size: 18px; }
.step p { color: #c9dcff; font-size: 14.5px; margin: 0; }
.steps .cta-row { text-align: center; margin-top: 28px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials .head { text-align: center; margin-bottom: 26px; }
.testimonials h2 { font-size: clamp(24px, 4.5vw, 34px); margin-bottom: 6px; }
.rating-summary { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 14px; }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 18px; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.testi .stars { font-size: 15px; margin-bottom: 8px; }
.testi p { font-size: 14.5px; color: var(--ink); margin-bottom: 10px; }
.testi .who { font-size: 13px; color: var(--ink-2); }
.testi .who strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq h2 { text-align: center; font-size: clamp(24px, 4.5vw, 34px); margin-bottom: 24px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: var(--blue-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px; color: var(--blue-700); font-weight: 400; line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); font-size: 14.5px; margin: 10px 0 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9447 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 { font-size: clamp(26px, 5vw, 40px); color: #fff; }
.final-cta p { color: rgba(255,255,255,.95); max-width: 620px; margin: 0 auto 20px; font-size: 16px; }
.final-cta .call-btn {
  max-width: 460px; margin: 0 auto;
  background: #fff;
  color: var(--orange-dark) !important;
  box-shadow: 0 6px 0 rgba(0,0,0,.18), 0 10px 24px rgba(0,0,0,.2);
}
.final-cta .hours { color: rgba(255,255,255,.9); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; }

/* ---------- FOOTER ---------- */
footer {
  background: #0a1530;
  color: #aeb8d0;
  font-size: 13px;
  padding: 40px 0 28px;
}
footer .fgrid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px) {
  footer .fgrid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
}
footer h4 { color: #fff; font-size: 14px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
footer p { color: #aeb8d0; font-size: 13px; line-height: 1.65; }
footer a { color: #aeb8d0; display: block; padding: 4px 0; }
footer a:hover, footer a:focus-visible { color: #fff; }
footer .policy-note {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 22px;
  font-size: 12.5px;
  line-height: 1.65;
}
footer .policy-note strong { color: #fff; }
footer .legal {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 22px;
  padding-top: 16px;
  font-size: 12px;
  line-height: 1.65;
  color: #8f9ab3;
}
footer .legal p { font-size: 12px; color: #8f9ab3; margin-bottom: 8px; }
footer .legal strong { color: #fff; }
footer .bottom-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 10px; margin-top: 14px; font-size: 12px;
}
footer .bottom-row .mini-links { display: flex; flex-wrap: wrap; gap: 14px; }
footer .bottom-row .mini-links a { display: inline; padding: 0; }

/* ---------- STICKY MOBILE CALL BAR ---------- */
.sticky-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 14px rgba(10,42,94,.08);
}
.sticky-call .call-btn { min-height: 56px; font-size: 18px; padding: 12px 14px; box-shadow: 0 4px 0 var(--orange-dark), 0 8px 18px rgba(233,90,14,.3); }
.sticky-call .call-btn .num { font-size: 20px; }
@media (min-width: 900px) { .sticky-call { display: none; } }

/* ---------- UTILS ---------- */
.nowrap { white-space: nowrap; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
