/* ============================================================
   USDtoCash.live — White & Blue Theme 2026
   Background: #ffffff | Primary: #1d4ed8 | Text: #1a1a2e
   ============================================================ */

/* Force light mode in all browsers including Safari */
:root {
  color-scheme: light only;
}

html {
  color-scheme: light only;
}

/* Disable automatic dark mode on all elements */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: light only; }
  html, body { background-color: #f5f8ff !important; color: #1a1a2e !important; }
  img { filter: none !important; }
}

:root {
  --bg:           #f5f8ff;
  --bg2:          #ffffff;
  --bg3:          #f0f4ff;
  --blue:         #1d4ed8;
  --blue-dark:    #1e40af;
  --blue-light:   #e8eeff;
  --blue-mid:     #2563eb;
  --text:         #1a1a2e;
  --text2:        #374151;
  --text-muted:   #6b7280;
  --border:       rgba(29,78,216,0.15);
  --border2:      rgba(29,78,216,0.08);
  --card-bg:      #ffffff;
  --card-shadow:  0 4px 24px rgba(29,78,216,0.08);
  --card-shadow-hover: 0 8px 40px rgba(29,78,216,0.16);
  --radius:       16px;
  --radius-sm:    10px;
  --navbar-h:     68px;

  /* legacy aliases — keep so pages don't break */
  --green:        #1d4ed8;
  --green-dark:   #1e40af;
  --green-light:  #e8eeff;
  --purple:       #1d4ed8;
  --purple-light: #f0f4ff;
  --gold:         #f59e0b;
  --blue-900:     #1d4ed8;
  --blue-800:     #2563eb;
  --blue-700:     #3b82f6;
  --orange:       #f59e0b;
  --gray-50:      #f5f8ff;
  --gray-100:     #f0f4ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
p { color: var(--text2); }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(90deg, #1d4ed8, #2563eb, #1e40af, #1d4ed8);
  background-size: 300% 100%;
  animation: tickerGradient 8s linear infinite;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@keyframes tickerGradient { 0%{background-position:0% 50%} 100%{background-position:300% 50%} }
.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
  letter-spacing: .3px;
}
.t-up { color: #93c5fd; }
.t-dn { color: #fca5a5; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-h);
  box-shadow: 0 2px 16px rgba(29,78,216,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-logo span { color: var(--blue); }
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; font-weight: 900;
  box-shadow: 0 4px 12px rgba(29,78,216,0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text2) !important;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue) !important;
  background: var(--blue-light);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(29,78,216,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text2) !important;
  border-bottom: 1px solid var(--border2);
}
.nav-mobile a:hover { background: var(--blue-light); color: var(--blue) !important; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(29,78,216,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,78,216,0.45);
  color: #fff !important;
}
.btn-secondary {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(29,78,216,0.25);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,78,216,0.4);
  color: #fff !important;
}
.btn-white {
  background: #fff;
  color: var(--text) !important;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(29,78,216,0.07);
}
.btn-white:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue) !important;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue) !important;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff !important;
}
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 8px 16px; font-size: .82rem; border-radius: 8px; }
.nav-cta { padding: 9px 18px; }

/* ── BADGES ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.badge-blue   { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(29,78,216,0.2); }
.badge-green  { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(29,78,216,0.2); }
.badge-orange { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(29,78,216,0.2); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #eef2ff 0%, #f5f8ff 40%, #ffffff 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: all .25s;
}
.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(29,78,216,0.25);
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text2); max-width: 580px; margin: 0 auto; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: all .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(29,78,216,0.3);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.step-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── FEATURE CARDS ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s;
  box-shadow: var(--card-shadow);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); border-color: rgba(29,78,216,0.3); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: .875rem; color: var(--text2); line-height: 1.65; }

/* ── RATE TABLE ──────────────────────────────────────────── */
.rate-table { width: 100%; border-collapse: collapse; }
.rate-table th {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem;
  font-weight: 700;
}
.rate-table th:first-child { border-radius: 12px 0 0 0; }
.rate-table th:last-child  { border-radius: 0 12px 0 0; }
.rate-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
}
.rate-table tr:nth-child(even) td { background: var(--bg3); }
.rate-table tr:hover td { background: var(--blue-light); }
.rate-up   { color: #16a34a; font-weight: 700; }
.rate-down { color: #dc2626; font-weight: 700; }

/* 24h change pill badges */
.change-up {
  display: inline-flex; align-items: center; gap: 4px;
  background: #dcfce7; color: #15803d;
  padding: 4px 10px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.change-down {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fee2e2; color: #dc2626;
  padding: 4px 10px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.t-up   { color: #16a34a; font-weight: 600; }
.t-down { color: #dc2626; font-weight: 600; }

/* ── CALCULATOR ──────────────────────────────────────────── */
.calc-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  border: 1.5px solid rgba(29,78,216,0.18);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(29,78,216,0.1);
}
.calc-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text);
  background: var(--bg);
  transition: border .2s;
  outline: none;
}
.calc-input:focus { border-color: var(--blue); background: #fff; }
.calc-result {
  background: linear-gradient(135deg, #e8eeff, #f0f4ff);
  border: 1.5px solid rgba(29,78,216,0.2);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
}
.calc-result-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(29,78,216,0.05);
  transition: all .2s;
}
.faq-item.active { border-color: var(--blue); box-shadow: 0 4px 20px rgba(29,78,216,0.1); }
.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  transition: background .2s;
  user-select: none;
}
.faq-question:hover { background: var(--blue-light); }
.faq-item.active .faq-question { background: var(--blue-light); color: var(--blue); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform .2s;
  line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.75;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  min-width: 280px;
  box-shadow: var(--card-shadow);
  flex-shrink: 0;
}
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; }
.testi-text { font-size: .88rem; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.testi-name { font-weight: 700; font-size: .85rem; color: var(--text); font-family: 'Space Grotesk', sans-serif; }
.testi-city { font-size: .78rem; color: var(--text-muted); }

/* ── BLOG CARDS ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.blog-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--blue-light), var(--bg3));
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p  { font-size: .875rem; color: var(--text2); flex: 1; line-height: 1.65; }
.read-more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap .2s;
}
.read-more:hover { gap: 10px; color: var(--blue-dark); }

/* ── STAT CARDS ──────────────────────────────────────────── */
.stat-card {
  background: linear-gradient(135deg, #fff 0%, #f5f8ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: 6px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #1e40af 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: #fff; font-size: clamp(1.6rem,4vw,2.4rem); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.btn-cta-white {
  background: #fff;
  color: var(--blue) !important;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: none;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); color: var(--blue) !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  padding: 60px 0 0;
}
footer a  { color: #94a3b8 !important; transition: color .2s; }
footer a:hover { color: #93c5fd !important; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: #93c5fd; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  text-align: center;
  font-size: .78rem;
  color: #64748b;
  margin-top: 40px;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; list-style: none; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb li a { color: var(--text-muted); }
.breadcrumb li a:hover { color: var(--blue); }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
}
.trust-item-icon { font-size: 1.2rem; }

/* ── CITY GRID ───────────────────────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 14px; }
.city-card {
  padding: 18px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all .2s;
  display: block;
  box-shadow: 0 2px 8px rgba(29,78,216,0.05);
}
.city-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(29,78,216,0.14);
}
.city-card-icon { font-size: 1.6rem; margin-bottom: 8px; }
.city-card-label { font-weight: 700; font-size: .85rem; color: var(--text); font-family: 'Space Grotesk', sans-serif; }
.city-card-sub   { font-size: .75rem; color: var(--blue); margin-top: 2px; font-weight: 600; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s ease-in-out infinite;
  text-decoration: none;
}
@keyframes pulse-wa {
  0%,100%{ box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%    { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── FORMS ───────────────────────────────────────────────── */
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); background: #fff; }
label { font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }

/* ── CHATBOT ─────────────────────────────────────────────── */
#chatbotToggle {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(29,78,216,0.4);
  cursor: pointer;
  border: none;
}
#chatWindow {
  position: fixed;
  bottom: 90px; left: 24px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(29,78,216,0.18);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

/* ── PAGE OFFSET ─────────────────────────────────────────── */
.page-offset { padding-top: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .section { padding: 56px 0; }
  .trust-items { gap: 20px; }
  .stat-num { font-size: 2rem; }
  footer > .container > div { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 2fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  div[style*="grid-template-columns:2fr 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr;gap:64px"] { grid-template-columns: 1fr !important; gap: 36px !important; }
}
@media (max-width: 580px) {
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  footer .container > div { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 12px 22px; font-size: .9rem; }
  .calc-card { padding: 22px 18px; }
  footer .container > div { grid-template-columns: 1fr !important; }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-blue   { color: var(--blue) !important; }
.text-green  { color: var(--blue) !important; }
.text-purple { color: var(--blue) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
