/* ================================================================
   BEST DEAL FOREX — Global Stylesheet v6 FINAL
   One universal white navbar · No tricks · No overrides
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --navy:       #061A2E;
  --navy-mid:   #0B3C5D;
  --blue:       #1266A8;
  --blue-light: #2387D8;
  --blue-pale:  #EBF4FC;
  --gold:       #C8930A;
  --gold-light: #E8AD1A;
  --off-white:  #F3F6F9;
  --text-dark:  #0D1B2A;
  --text-mid:   #3A4A5C;
  --text-muted: #6B7A8D;
  --white:      #FFFFFF;
  --border:     rgba(0,0,0,0.08);
  --shadow:     0 4px 24px rgba(6,26,46,0.10);
  --shadow-md:  0 8px 40px rgba(6,26,46,0.13);
  --shadow-lg:  0 20px 60px rgba(6,26,46,0.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.26s cubic-bezier(0.22,1,0.36,1);
  --nav-height: 150px;
  /* Navbar + fixed ticker strip (used by sticky elements e.g. order progress) */
  --ticker-strip-height: 40px;
}

@media (max-width: 600px) {
  :root { --nav-height: 76px; }
}
@media (max-width: 400px) {
  :root { --nav-height: 70px; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 800; color: var(--navy); line-height: 1.2;
}
.section-title span { color: var(--blue); }

.section-subtitle {
  font-size: 0.93rem; color: var(--text-mid);
  max-width: 520px; margin-top: 9px; font-weight: 400; line-height: 1.7;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 76px 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  padding: 9px 22px; background: var(--gold); border-radius: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.84rem; font-weight: 700;
  color: var(--navy); cursor: pointer; border: none;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 7px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(200,147,10,0.35); }

.btn-outline-dark {
  padding: 9px 22px; border: 1.5px solid rgba(6,26,46,0.18);
  border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 0.84rem;
  font-weight: 600; color: var(--text-dark); cursor: pointer;
  background: transparent; transition: var(--transition);
}
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

.btn-blue {
  padding: 11px 22px; background: var(--blue); border-radius: 9px;
  font-family: 'Syne', sans-serif; font-size: 0.86rem; font-weight: 700;
  color: white; cursor: pointer; border: none;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-blue:hover { background: var(--navy); transform: translateY(-1px); }

.btn-gold-lg {
  padding: 12px 26px; background: var(--gold); border-radius: 9px;
  font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: var(--navy); cursor: pointer; border: none;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,147,10,0.38); }

/* ================================================================
   NAVBAR — WHITE, NO OVERRIDES, IDENTICAL ON EVERY PAGE
   ================================================================ */

/* ══ NAVBAR LOCK — white on all pages, no exceptions ══════ */
html body #navbar,
html body #navbar.elevated,
html body #navbar.scrolled,
html body #navbar.open {
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(0,0,0,0.09) !important;
  width: 100% !important;
  max-width: none !important;
  left: 0 !important;
  right: 0 !important;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  z-index: 1000;
  background: #FFFFFF;                          /* hard-coded — no variable that could be overridden */
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 1px 16px rgba(6,26,46,0.07);
  transition: box-shadow 0.26s ease;
  color: #0D1B2A !important;                     /* force dark; page `<style>` blocks load after global.css */
}
#navbar.elevated {
  box-shadow: 0 2px 24px rgba(6,26,46,0.13);
}

.nav-inner {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 10px;
  /* Edge-to-edge content: only safe-area insets (no extra side gutters) */
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Logo image (graphic already includes company name + RBI line) */
.nav-logo-img {
  height: calc(var(--nav-height) - 12px);
  width: auto;
  max-height: calc(var(--nav-height) - 6px);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Brand = home link wrapping logo only */
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 2;
}

/*
 * Nav sits after logo (no huge empty band). Only .nav-actions uses margin-left: auto
 * so free space goes between the last link and “Get Quote”, not between logo and menu.
 * flex-shrink: 0 + min-width: min-content avoids clipping under body { overflow-x: hidden }.
 */
.nav-links {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-left: 0;
  flex: 0 0 auto;
  min-width: min-content;
}
.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 1.06rem;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  transition: color 0.22s ease, background 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}

/*
 * Contrast lock: `a { color: inherit }` + per-page `<style>` (after global.css) must not wash out nav.
 * `nav-active` avoids clashes with `.calc-tab.active`, `.cat-pill.active`, etc.
 */
html body #navbar .nav-inner {
  color: #0D1B2A !important;
}
html body #navbar .nav-links a,
html body #navbar .nav-links a:link,
html body #navbar .nav-links a:visited {
  color: #061A2E !important;
  -webkit-text-fill-color: #061A2E !important;
  background-color: transparent !important;
  opacity: 1 !important;
}
html body #navbar .nav-links a:hover {
  color: #020810 !important;
  -webkit-text-fill-color: #020810 !important;
  background: #E8EDF2 !important;
}
html body #navbar .nav-links a.nav-active {
  color: #023047 !important;
  -webkit-text-fill-color: #023047 !important;
  background: #C5E0F2 !important;
  font-weight: 700 !important;
}
/* Legacy pages still using class="active" on nav only */
html body #navbar .nav-links a.active {
  color: #023047 !important;
  -webkit-text-fill-color: #023047 !important;
  background: #C5E0F2 !important;
  font-weight: 700 !important;
}

/* Desktop: single row; CTA pinned right; menu cannot shrink away */
@media (min-width: 901px) {
  .nav-inner {
    flex-wrap: nowrap;
  }
  .nav-actions {
    margin-left: auto;
  }
  #navbar .nav-actions .btn-primary {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Tighter links on mid-width screens so one row still fits */
@media (min-width: 901px) and (max-width: 1240px) {
  .nav-links a {
    padding: 8px 7px;
    font-size: 0.92rem;
  }
}
/* Actions — flush with right padding of .nav-inner */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  z-index: 2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hamburger span {
  width: 22px; height: 2px;
  background: #0D1B2A;
  border-radius: 2px;
  transition: 0.26s ease;
  display: block;
}

/* Mobile */
/* ── Tablet (900px) ── */
@media (max-width: 900px) {
  .nav-inner {
    padding-left: max(6px, env(safe-area-inset-left, 0px));
    padding-right: max(6px, env(safe-area-inset-right, 0px));
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-height);
    transform: none;
    max-width: none;
    margin-left: 0;
    min-width: 0;
    flex-shrink: 1;
    pointer-events: auto;
    background: #FFFFFF;
    padding: 8px 16px 16px;
    gap: 2px;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.09);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    justify-content: flex-start;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    border-radius: 8px;
  }
  html body #navbar .nav-links a,
  html body #navbar .nav-links a:link,
  html body #navbar .nav-links a:visited {
    color: #061A2E !important;
    -webkit-text-fill-color: #061A2E !important;
    background-color: transparent !important;
  }
  html body #navbar .nav-links a:hover {
    color: #020810 !important;
    -webkit-text-fill-color: #020810 !important;
    background: #E8EDF2 !important;
  }
  html body #navbar .nav-links a.nav-active,
  html body #navbar .nav-links a.active {
    color: #023047 !important;
    -webkit-text-fill-color: #023047 !important;
    background: #C5E0F2 !important;
    font-weight: 700 !important;
  }
  .nav-actions { margin-left: auto; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Mobile (600px) ── */
@media (max-width: 600px) {
  .nav-inner {
    padding-left: max(4px, env(safe-area-inset-left, 0px));
    padding-right: max(4px, env(safe-area-inset-right, 0px));
  }
  .ticker-bar { margin-top: var(--nav-height); }
  .nav-logo-img { height: 66px; max-height: calc(var(--nav-height) - 8px); }
  .nav-actions .btn-primary { padding: 10px 18px; font-size: 0.86rem; }
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
}

/* ── Small mobile (400px) ── */
@media (max-width: 400px) {
  .nav-inner {
    padding-left: max(2px, env(safe-area-inset-left, 0px));
    padding-right: max(2px, env(safe-area-inset-right, 0px));
  }
  .ticker-bar { margin-top: var(--nav-height); }
  .nav-logo-img { height: 58px; max-height: calc(var(--nav-height) - 8px); }
  .nav-actions .btn-primary { padding: 9px 16px; font-size: 0.84rem; }
  .container { padding: 0 12px; }
}

/* ================================================================
   TICKER BAR
   ================================================================ */
.ticker-bar {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: var(--navy);
  padding: 7px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: var(--nav-height);
}
.ticker-track {
  display: flex; gap: 52px;
  animation: ticker-scroll 38s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: rgba(255,255,255,0.72); white-space: nowrap;
}
.ticker-currency { font-weight: 700; color: var(--gold-light); font-size: 0.77rem; }
.ticker-rate     { font-weight: 600; color: rgba(255,255,255,0.9); }
.ticker-up       { color: #4ade80; font-size: 0.72rem; }
.ticker-down     { color: #f87171; font-size: 0.72rem; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   PAGE HERO — Inner pages
   ================================================================ */
.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 50%, #104D7A 100%);
  padding: 56px 0 48px; position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; width: 360px; height: 360px;
  top: -100px; right: -60px; background: rgba(18,102,168,0.26);
}
.page-hero-inner { position: relative; z-index: 2; }

.page-hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,147,10,0.1); border: 1px solid rgba(200,147,10,0.28);
  border-radius: 50px; padding: 5px 14px;
  font-size: 0.71rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.07em; margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800; color: #FFFFFF;
  margin-bottom: 12px; line-height: 1.18;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p {
  font-size: 0.94rem; color: rgba(255,255,255,0.65);
  max-width: 520px; font-weight: 400; line-height: 1.72;
}
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  margin-top: 20px; font-size: 0.76rem; color: rgba(255,255,255,0.42);
}
.breadcrumb a { color: rgba(255,255,255,0.52); transition: color 0.22s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip { background: #FFFFFF; padding: 16px 0; border-bottom: 1px solid var(--border); }
.trust-strip-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--text-mid); }
.trust-icon { font-size: 1.1rem; }
.trust-item strong { color: var(--navy); font-weight: 700; }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--navy); color: rgba(255,255,255,0.56); padding: 52px 0 26px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: #FFFFFF; margin-bottom: 3px; }
.footer-brand-sub  { font-size: 0.69rem; color: var(--gold-light); margin-bottom: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-desc       { font-size: 0.8rem; line-height: 1.72; margin-bottom: 14px; }
.footer-rbi {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,147,10,0.1); border: 1px solid rgba(200,147,10,0.24);
  border-radius: 7px; padding: 6px 11px; font-size: 0.71rem; color: var(--gold-light); font-weight: 600;
}
.footer-col-title { font-family: 'Syne', sans-serif; font-weight: 700; color: #FFFFFF; margin-bottom: 12px; font-size: 0.82rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.79rem; color: rgba(255,255,255,0.48); transition: color 0.22s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 20px; }
.footer-copy   { font-size: 0.76rem; }
.footer-legal  { display: flex; gap: 16px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.38); transition: color 0.22s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; align-items: center; gap: 10px; }
.whatsapp-btn {
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  cursor: pointer; border: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: var(--transition); animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.42), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,0.42), 0 0 0 10px rgba(37,211,102,0); }
}
.whatsapp-tooltip {
  background: var(--navy); color: #FFFFFF; padding: 7px 12px;
  border-radius: 7px; font-size: 0.78rem; font-weight: 500; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6,26,46,0.75);
  backdrop-filter: blur(6px); display: flex; align-items: center;
  justify-content: center; opacity: 0; pointer-events: none;
  transition: opacity 0.28s; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #FFFFFF; border-radius: var(--radius-lg); padding: 32px 28px;
  width: 100%; max-width: 460px; transform: translateY(16px);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  border-radius: 7px; background: var(--off-white); border: none; cursor: pointer;
  font-size: 0.95rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--text-mid);
}
.modal-close:hover { background: var(--navy); color: white; }
.modal-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--navy); margin-bottom: 5px; }
.modal-sub   { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.form-group  { margin-bottom: 13px; }
.form-label  { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); margin-bottom: 5px; }
.form-input  {
  width: 100%; padding: 10px 13px; border: 1.5px solid rgba(0,0,0,0.11);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.87rem;
  color: var(--text-dark); background: var(--off-white); transition: border-color 0.22s;
}
.form-input:focus { outline: none; border-color: var(--blue); background: white; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.btn-submit  {
  width: 100%; padding: 13px; background: var(--blue); border: none; border-radius: 9px;
  color: white; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition); margin-top: 5px;
}
.btn-submit:hover { background: var(--navy); }
.form-success       { display: none; text-align: center; padding: 16px 0; }
.form-success-icon  { font-size: 2.6rem; margin-bottom: 10px; }
.form-success-title { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 1.1rem; }
.form-success-sub   { font-size: 0.83rem; color: var(--text-muted); }

/* ================================================================
   RATE LIVE BADGE
   ================================================================ */
.rate-live-badge {
  display: flex; align-items: center; gap: 5px; font-size: 0.7rem;
  color: #4ade80; font-weight: 600; background: rgba(74,222,128,0.1);
  padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(74,222,128,0.2);
}
.rate-live-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #4ade80;
  animation: pulse-dot 1.8s ease-in-out infinite; flex-shrink: 0;
}
.rate-live-badge.indicative { color: var(--gold-light); background: rgba(200,147,10,0.1); border-color: rgba(200,147,10,0.22); }
.rate-live-badge.indicative .rate-live-dot { background: var(--gold-light); animation: none; }
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.7} }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.58s ease, transform 0.58s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  section { padding: 52px 0; }
  .page-hero { padding: 42px 0 36px; }
  .page-hero h1 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .trust-strip-inner { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .trust-item { font-size: 0.76rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   COMPREHENSIVE MOBILE OVERRIDES
   ================================================================ */

/* Page hero text stacking */
@media (max-width: 600px) {
  .page-hero { padding: 40px 0 34px; }
  .page-hero h1 { font-size: clamp(1.3rem, 5.5vw, 1.7rem); line-height: 1.2; }
  .page-hero p  { font-size: 0.88rem; }
  .page-hero-label { font-size: 0.68rem; padding: 4px 11px; }
  .breadcrumb { font-size: 0.72rem; margin-top: 14px; }
}

/* Trust strip: stack to 2-col on phone */
@media (max-width: 480px) {
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-items: start;
    padding: 0 4px;
  }
}

/* Section headings */
@media (max-width: 600px) {
  .section-title { font-size: clamp(1.25rem, 5vw, 1.7rem); }
  .section-subtitle { font-size: 0.86rem; }
}

/* Footer: single column, centered */
@media (max-width: 600px) {
  footer { padding: 40px 0 22px; }
  .footer-grid { gap: 28px; }
  .footer-brand-name { font-size: 0.92rem; }
  .footer-col-title { font-size: 0.8rem; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* WhatsApp button: slightly smaller on mobile */
@media (max-width: 600px) {
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-btn { width: 48px; height: 48px; font-size: 1.3rem; }
  .whatsapp-tooltip { display: none; }
}

/* Modal: full-width on mobile */
@media (max-width: 480px) {
  .modal-box { padding: 24px 18px; }
  .modal-title { font-size: 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Ticker bar: slightly smaller text on mobile */
@media (max-width: 600px) {
  .ticker-item { gap: 5px; font-size: 0.74rem; }
  .ticker-currency { font-size: 0.72rem; }
}
