:root {
  --bg-base:     #0d1526;
  --bg-card:     #162035;
  --bg-card2:    #1a2640;
  --bg-glass:    rgba(22,32,53,0.85);
  --border:      rgba(255,255,255,0.10);
  --border-hot:  rgba(255,75,75,0.35);
  --border-cyan: rgba(0,230,255,0.3);
  --text-1:      #f0f4ff;
  --text-2:      #8ba4cc;
  --text-3:      #4d6a90;
  --nav-bg:      rgba(13,21,38,0.92);
  --ticker-bg:   #0f1a2e;
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 60px rgba(0,230,255,0.14);
  --neon:    #00e6ff;
  --neon2:   #7b5fff;
  --fire:    #ff4b4b;
  --fire2:   #ff9500;
  --green:   #00e676;
  --gold:    #ffd600;
  --radius:  16px;
  --radius-s: 10px;
  --font-d:  'Clash Display', sans-serif;
  --font-b:  'Plus Jakarta Sans', sans-serif;
  --anim-duration-shake: 240ms;
  --modal-close-delay: 3200ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s, color 0.3s;
  padding-bottom: 93px;
}
*:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--neon2); border-radius: 99px; }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--green);
  color: var(--bg-base);
  font-weight: 700;
  border-radius: var(--radius-s);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* Ticker */
.ticker-bar {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--border);
  height: 40px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 91;
  display: flex;
  align-items: center;
}
.ticker-viewport {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
  line-height: 1;
}
.tick-flags {
  display: inline-flex;
  align-items: center;
}
.tick-flags .tick-flag:last-child {
  margin-left: -5px;
}
.tick-flag {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3);
}
.tick-sym {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.tick-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
}
.ticker-disclaimer {
  flex-shrink: 0;
  font-size: 10px;
  color: #a0a8b8;
  white-space: nowrap;
  padding: 0 10px 0 8px;
  border-left: 1px solid var(--border);
  line-height: 1;
}

/* Navigation */
.nav {
  position: sticky; top: 40px; z-index: 90;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,13,26,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s;
}
.nav-inner {
  max-width: 1240px; width: 100%;
  display: flex; align-items: center;
  height: 64px; padding: 0 48px; gap: 16px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 21px; font-weight: 800;
  text-decoration: none;
  color: #00e676;
  -webkit-text-fill-color: #00e676;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex; align-items: center;
  gap: 4px; flex: 1; margin-left: 20px;
}
.nav-links a {
  padding: 7px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover {
  background: rgba(0,230,118,0.08);
  color: rgba(255,255,255,0.95);
}
.nav-links a.active {
  color: #fff;
  background: rgba(0,230,118,0.12);
}
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 13.5px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--radius-s);
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-outline {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--neon); color: var(--neon); }
.btn-fire {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,75,75,0.4);
}
.btn-fire:hover { box-shadow: 0 4px 32px rgba(255,75,75,0.65); transform: translateY(-1px); }
.btn-neon {
  background: linear-gradient(135deg, #0090b8 0%, var(--neon2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,230,255,0.25);
}
.btn-neon:hover { box-shadow: 0 4px 32px rgba(0,230,255,0.45); transform: translateY(-1px); }
.btn-contact-green {
  padding: 9px 20px;
  background: #00e676;
  color: #040d1a;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 8px;
}
.btn-contact-green:hover {
  background: #00ff88;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-deals-section {
  background: var(--bg-base);
  padding: 24px 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(0,60,120,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(0,150,80,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 65%, rgba(0,80,200,0.12) 0%, transparent 55%),
    var(--bg-base);
}
.hero-map {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(0,230,118,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 30%, transparent 75%);
  opacity: 0.35;
}
.hero-chart-deco {
  position: absolute;
  right: 0; top: 100px;
  width: 55%;
  height: 280px;
  z-index: 0;
  opacity: 0.18;
  overflow: hidden;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 48px 24px;
  width: 100%;
}
.hero-copy {
  max-width: 700px;
  width: 100%;
  text-align: center;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.1;
  margin-bottom: 20px;
  overflow: hidden;
}
.title-line {
  overflow: hidden;
  display: block;
}
.title-line span {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}
.line-1 span {
  color: var(--text-1);
  font-size: clamp(32px, 4.8vw, 62px);
  transform: translateX(-80px);
  animation: slideFromLeft 0.85s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}
.line-2 span {
  color: var(--green);
  font-size: clamp(32px, 4.8vw, 62px);
  transform: translateX(80px);
  animation: slideFromRight 0.85s cubic-bezier(0.16,1,0.3,1) 0.42s forwards;
}
.hero-desc {
  font-size: clamp(13px, 1.25vw, 15.5px);
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.68;
  white-space: nowrap;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.78s forwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.95s forwards;
}
.trust-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}
.cta-main {
  padding: 15px 38px;
  background: var(--green);
  color: var(--bg-base);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .4px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(0,230,118,0.28);
}
.cta-main:hover {
  background: #00ff88;
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(0,230,118,0.42);
}
.cta-sec {
  padding: 14px 30px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text-1);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s, color .2s;
}
.cta-sec:hover {
  border-color: var(--green);
  background: rgba(0,230,118,0.07);
  color: var(--green);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .line-1 span, .line-2 span, .hero-desc, .hero-ctas, .trust-badges {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Keyframes */
@keyframes slideFromLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Hero deals label */
.hero-deals-label {
  font-family: var(--font-d);
  font-size: clamp(30px, 4vw, 48px);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-1);
  line-height: 1.08;
  margin: 12px 0 16px;
}

/* Price ribbon */
.price-ribbon {
  display: flex; overflow-x: auto; scrollbar-width: none;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: -24px 0 64px;
  position: relative; z-index: 3;
  box-shadow: var(--shadow-card);
}
.price-ribbon::-webkit-scrollbar { display: none; }
.p-item {
  flex: 1; min-width: 130px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.2s;
}
.p-item:last-child { border-right: none; }
.p-item:hover { background: rgba(0,230,255,0.04); }
.p-pair { font-family: var(--font-d); font-size: 11.5px; font-weight: 600; color: var(--text-2); letter-spacing: 0.06em; }
.p-val  { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--text-1); transition: color 0.3s; }
.p-chg  { font-size: 12px; font-weight: 600; }
.p-chg.up   { color: var(--green); }
.p-chg.down { color: var(--fire);  }
.p-val.flash-up   { color: var(--green); }
.p-val.flash-down { color: var(--fire);  }

/* Sections */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section-light {
  background: #f8faff;
  border-top-color: rgba(0,0,0,0.06);
}
.section-light .sec-title { color: #0d1526; }
.section-light .sec-sub { color: #4b5f84; }
.section-light .sec-label.cyan { color: var(--neon); }
.section-light .sec-label.fire { color: var(--fire); }
.section-light .sec-label.green { color: var(--green); }
.section-light .hero-deals-label { color: #0d1526; }
.section-light .deal-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.section-light .deal-cta {
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
}
.section-light .deal-cta:hover {
  background: #fff;
  color: #0d0d14;
  border-color: #0d0d14;
}
.section-light .deal-badge {
  background: rgba(0,0,0,0.08);
  color: #1a1a2e;
  border-color: rgba(0,0,0,0.15);
}
.section-light .deal-card:hover { border-color: var(--neon); }
.section-light .deal-title { color: #0d1526; }
.section-light .deal-desc { color: #2d3a52; }
.section-light .deal-broker { color: #2d3a52; }
.section-light .cb-hero {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.section-light .cb-hero::before { background: rgba(0,0,0,0.06); }
.section-light .cb-kicker { color: var(--green); }
.section-light .cb-h3 { color: #0d1526; }
.section-light .cb-h3 span { color: var(--green); }
.section-light .cb-body { color: #4b5f84; }
.section-light .cb-hero-stat {
  background: #f0f4ff;
  border-color: rgba(0,0,0,0.06);
}
.section-light .cb-big-num { color: #0d1526; -webkit-text-fill-color: #0d1526; }
.section-light .cb-stat-lbl { color: #4d6a90; }
.section-light .cb-divider { background: rgba(0,0,0,0.06); }
.section-light .cb-steps {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.section-light .cb-step { border-right-color: rgba(0,0,0,0.06); }
.section-light .cb-step:hover { background: rgba(0,230,118,0.06); }
.section-light .cb-step-title { color: #0d1526; }
.section-light .cb-step-desc { color: #4d6a90; }
.section-dark {
  background: var(--bg-base);
  border-top-color: var(--border);
}
.section-dark .sec-title { color: var(--text-1); }
.section-dark .sec-sub { color: var(--text-2); }
.section-dark thead th { color: var(--text-2); }
.section-dark td { color: var(--text-2); }
.section-dark .star-num { color: var(--text-2); }
.sec-label {
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-block; margin-bottom: 12px;
}
.sec-label.cyan  { color: var(--neon); }
.sec-label.fire  { color: var(--fire); }
.sec-label.green { color: var(--green); }
.sec-label.gold  { color: var(--gold); }
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-1); line-height: 1.08;
  margin-bottom: 14px;
}
.sec-sub { color: var(--text-2); font-weight: 300; font-size: 16px; }
.sec-head { margin-bottom: 52px; text-align: center; }

/* Deals marquee */
.deals-marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.deals-marquee-wrap::before,
.deals-marquee-wrap::after {
  content: '';
  position: absolute; top: 0; height: 100%;
  width: 120px; z-index: 2; pointer-events: none;
}
.deals-marquee-wrap::before { left:  0; background: linear-gradient(90deg, var(--bg-base), transparent); }
.deals-marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-base), transparent); }
.section-light .deals-marquee-wrap::before { background: linear-gradient(90deg, #f8faff, transparent); }
.section-light .deals-marquee-wrap::after { background: linear-gradient(-90deg, #f8faff, transparent); }

.deals-track {
  display: flex; gap: 20px;
  animation: dealScroll 35s linear infinite;
  width: max-content;
}
.deals-track-reverse {
  animation-direction: reverse;
}
.deals-track:hover, .deals-track-reverse:hover { animation-play-state: paused; }
@keyframes dealScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Deal cards */
.deal-card {
  width: 320px; flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s, border-color 0.2s;
  cursor: pointer;
}
.deal-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--dc, rgba(0,230,255,0.4));
  border-color: var(--dc, var(--neon));
}
.deal-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--dc-grad, linear-gradient(90deg, var(--neon), var(--neon2)));
}
.deal-card::after {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--dc-blob, rgba(0,230,255,0.06));
  filter: blur(30px);
  pointer-events: none;
}
.deal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-d); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  margin-bottom: 14px;
}
.deal-title {
  font-family: var(--font-d); font-size: 21px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.02em;
  margin-bottom: 10px; line-height: 1.2;
}
.deal-desc { font-size: 13.5px; color: var(--text-2); font-weight: 300; line-height: 1.6; margin-bottom: 18px; }
.deal-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.deal-broker { font-size: 12px; color: var(--text-3); font-weight: 500; }
.deal-cta {
  font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 8px;
  text-decoration: none; transition: all 0.2s;
  font-family: var(--font-d); letter-spacing: 0.03em;
}

.deal-v1, .deal-v2, .deal-v3, .deal-v4, .deal-v5 {
  --dc: rgba(255,255,255,0.15);
  --dc-grad: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  --dc-blob: rgba(255,255,255,0.03);
}

.deals-grid-static { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── Carousel Option Switcher ────────────────────── */
.carousel-switcher {
  display: flex; justify-content: center; gap: 8px;
  margin: 0 0 24px; flex-wrap: wrap;
}
.carousel-switcher button {
  padding: 8px 18px; border-radius: 99px;
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer; transition: all 0.2s;
}
.carousel-switcher button:hover { border-color: var(--green); color: var(--text-1); }
.carousel-switcher button.active {
  background: rgba(0,230,118,0.12); border-color: rgba(0,230,118,0.3); color: var(--green);
}

/* Click-to-scroll nav arrows */
.carousel-nav { display: none; justify-content: center; gap: 12px; margin-top: 16px; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-1); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.carousel-nav button:hover { background: var(--green); color: var(--bg-base); border-color: var(--green); }
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════════
   ALL carousel options use #hero-deals for specificity
   to override .section-light styles
   ══════════════════════════════════════════════════ */

/* Common: dark background override for non-light options */
#hero-deals[class*="carousel-opt"].carousel-opt1,
#hero-deals[class*="carousel-opt"].carousel-opt2,
#hero-deals[class*="carousel-opt"].carousel-opt4,
#hero-deals[class*="carousel-opt"].carousel-opt5,
#hero-deals[class*="carousel-opt"].carousel-opt6 {
  background: var(--bg-base);
}
#hero-deals.carousel-opt1 .hero-deals-label,
#hero-deals.carousel-opt2 .hero-deals-label,
#hero-deals.carousel-opt4 .hero-deals-label,
#hero-deals.carousel-opt5 .hero-deals-label,
#hero-deals.carousel-opt6 .hero-deals-label {
  color: var(--text-1);
}
#hero-deals.carousel-opt1 .deals-marquee-wrap::before,
#hero-deals.carousel-opt2 .deals-marquee-wrap::before,
#hero-deals.carousel-opt4 .deals-marquee-wrap::before,
#hero-deals.carousel-opt5 .deals-marquee-wrap::before,
#hero-deals.carousel-opt6 .deals-marquee-wrap::before {
  background: linear-gradient(90deg, var(--bg-base), transparent);
}
#hero-deals.carousel-opt1 .deals-marquee-wrap::after,
#hero-deals.carousel-opt2 .deals-marquee-wrap::after,
#hero-deals.carousel-opt4 .deals-marquee-wrap::after,
#hero-deals.carousel-opt5 .deals-marquee-wrap::after,
#hero-deals.carousel-opt6 .deals-marquee-wrap::after {
  background: linear-gradient(-90deg, var(--bg-base), transparent);
}

/* ── Option 1: Glass Morphism (dark, frosted, colored left borders, single row, slow) */
#hero-deals.carousel-opt1 .deals-marquee-wrap:nth-child(n+4) { display: none; }
#hero-deals.carousel-opt1 .deals-track { animation-duration: 50s; gap: 28px; }
#hero-deals.carousel-opt1 .deal-card {
  width: 360px; padding: 32px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--green);
  border-radius: 20px;
}
#hero-deals.carousel-opt1 .deal-card::before,
#hero-deals.carousel-opt1 .deal-card::after { display: none; }
#hero-deals.carousel-opt1 .deal-v1 { border-left-color: var(--neon); }
#hero-deals.carousel-opt1 .deal-v3 { border-left-color: var(--neon2); }
#hero-deals.carousel-opt1 .deal-v4 { border-left-color: var(--gold); }
#hero-deals.carousel-opt1 .deal-v5 { border-left-color: var(--fire); }
#hero-deals.carousel-opt1 .deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.15);
}
#hero-deals.carousel-opt1 .deal-title { color: var(--text-1); }
#hero-deals.carousel-opt1 .deal-desc { color: var(--text-2); }
#hero-deals.carousel-opt1 .deal-broker { color: var(--text-3); }
#hero-deals.carousel-opt1 .deal-badge { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.2); }
#hero-deals.carousel-opt1 .deal-v1 .deal-badge { background: rgba(0,230,255,0.1); color: var(--neon); border-color: rgba(0,230,255,0.2); }
#hero-deals.carousel-opt1 .deal-v3 .deal-badge { background: rgba(123,95,255,0.1); color: var(--neon2); border-color: rgba(123,95,255,0.2); }
#hero-deals.carousel-opt1 .deal-v4 .deal-badge { background: rgba(255,214,0,0.1); color: var(--gold); border-color: rgba(255,214,0,0.2); }
#hero-deals.carousel-opt1 .deal-v5 .deal-badge { background: rgba(255,75,75,0.1); color: var(--fire); border-color: rgba(255,75,75,0.2); }
#hero-deals.carousel-opt1 .deal-meta { border-top-color: rgba(255,255,255,0.06); }
#hero-deals.carousel-opt1 .deal-cta { background: rgba(255,255,255,0.06); color: var(--text-1); border: 1px solid rgba(255,255,255,0.12); }

/* ── Option 2: Neon Glow (dark, vibrant neon per card, pulsing glow, two rows) */
#hero-deals.carousel-opt2 .deals-track { gap: 24px; animation-duration: 38s; }
#hero-deals.carousel-opt2 .deal-card {
  width: 340px; padding: 28px;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid rgba(0,230,255,0.12);
}
#hero-deals.carousel-opt2 .deal-card::before { height: 2px; opacity: 0.8; }
#hero-deals.carousel-opt2 .deal-card::after { display: none; }
#hero-deals.carousel-opt2 .deal-v1 { border-color: rgba(0,230,255,0.2); box-shadow: 0 0 30px rgba(0,230,255,0.07), inset 0 0 30px rgba(0,230,255,0.02); }
#hero-deals.carousel-opt2 .deal-v2 { border-color: rgba(0,230,118,0.2); box-shadow: 0 0 30px rgba(0,230,118,0.07), inset 0 0 30px rgba(0,230,118,0.02); }
#hero-deals.carousel-opt2 .deal-v3 { border-color: rgba(123,95,255,0.2); box-shadow: 0 0 30px rgba(123,95,255,0.07), inset 0 0 30px rgba(123,95,255,0.02); }
#hero-deals.carousel-opt2 .deal-v4 { border-color: rgba(255,214,0,0.2); box-shadow: 0 0 30px rgba(255,214,0,0.07), inset 0 0 30px rgba(255,214,0,0.02); }
#hero-deals.carousel-opt2 .deal-v5 { border-color: rgba(255,75,75,0.2); box-shadow: 0 0 30px rgba(255,75,75,0.07), inset 0 0 30px rgba(255,75,75,0.02); }
#hero-deals.carousel-opt2 .deal-v1::before { background: linear-gradient(90deg, var(--neon), transparent); }
#hero-deals.carousel-opt2 .deal-v2::before { background: linear-gradient(90deg, var(--green), transparent); }
#hero-deals.carousel-opt2 .deal-v3::before { background: linear-gradient(90deg, var(--neon2), transparent); }
#hero-deals.carousel-opt2 .deal-v4::before { background: linear-gradient(90deg, var(--gold), transparent); }
#hero-deals.carousel-opt2 .deal-v5::before { background: linear-gradient(90deg, var(--fire), transparent); }
#hero-deals.carousel-opt2 .deal-card:hover { transform: translateY(-6px); }
#hero-deals.carousel-opt2 .deal-v1:hover { box-shadow: 0 8px 50px rgba(0,230,255,0.25), 0 0 80px rgba(0,230,255,0.1); border-color: rgba(0,230,255,0.5); }
#hero-deals.carousel-opt2 .deal-v2:hover { box-shadow: 0 8px 50px rgba(0,230,118,0.25), 0 0 80px rgba(0,230,118,0.1); border-color: rgba(0,230,118,0.5); }
#hero-deals.carousel-opt2 .deal-v3:hover { box-shadow: 0 8px 50px rgba(123,95,255,0.25), 0 0 80px rgba(123,95,255,0.1); border-color: rgba(123,95,255,0.5); }
#hero-deals.carousel-opt2 .deal-v4:hover { box-shadow: 0 8px 50px rgba(255,214,0,0.25), 0 0 80px rgba(255,214,0,0.1); border-color: rgba(255,214,0,0.5); }
#hero-deals.carousel-opt2 .deal-v5:hover { box-shadow: 0 8px 50px rgba(255,75,75,0.25), 0 0 80px rgba(255,75,75,0.1); border-color: rgba(255,75,75,0.5); }
#hero-deals.carousel-opt2 .deal-title { color: var(--text-1); }
#hero-deals.carousel-opt2 .deal-desc { color: var(--text-2); }
#hero-deals.carousel-opt2 .deal-broker { color: var(--text-3); }
#hero-deals.carousel-opt2 .deal-v1 .deal-badge { background: var(--neon); color: var(--bg-base); border-color: var(--neon); }
#hero-deals.carousel-opt2 .deal-v2 .deal-badge { background: var(--green); color: var(--bg-base); border-color: var(--green); }
#hero-deals.carousel-opt2 .deal-v3 .deal-badge { background: var(--neon2); color: #fff; border-color: var(--neon2); }
#hero-deals.carousel-opt2 .deal-v4 .deal-badge { background: var(--gold); color: var(--bg-base); border-color: var(--gold); }
#hero-deals.carousel-opt2 .deal-v5 .deal-badge { background: var(--fire); color: #fff; border-color: var(--fire); }
#hero-deals.carousel-opt2 .deal-meta { border-top-color: rgba(255,255,255,0.06); }
#hero-deals.carousel-opt2 .deal-v1 .deal-cta { color: var(--neon); background: rgba(0,230,255,0.08); border: 1px solid rgba(0,230,255,0.2); }
#hero-deals.carousel-opt2 .deal-v2 .deal-cta { color: var(--green); background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.2); }
#hero-deals.carousel-opt2 .deal-v3 .deal-cta { color: var(--neon2); background: rgba(123,95,255,0.08); border: 1px solid rgba(123,95,255,0.2); }
#hero-deals.carousel-opt2 .deal-v4 .deal-cta { color: var(--gold); background: rgba(255,214,0,0.08); border: 1px solid rgba(255,214,0,0.2); }
#hero-deals.carousel-opt2 .deal-v5 .deal-cta { color: var(--fire); background: rgba(255,75,75,0.08); border: 1px solid rgba(255,75,75,0.2); }

/* ── Option 3: Minimal Clean (light bg, white cards, clean typography, single row) */
#hero-deals.carousel-opt3 { background: #f8faff; }
#hero-deals.carousel-opt3 .hero-deals-label { color: #0d1526; }
#hero-deals.carousel-opt3 .deals-marquee-wrap:nth-child(n+4) { display: none; }
#hero-deals.carousel-opt3 .deals-marquee-wrap::before,
#hero-deals.carousel-opt3 .deals-marquee-wrap::after { display: none; }
#hero-deals.carousel-opt3 .deals-track { gap: 28px; animation-duration: 42s; }
#hero-deals.carousel-opt3 .deal-card {
  width: 350px; padding: 36px;
  background: #fff; border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
#hero-deals.carousel-opt3 .deal-card::before,
#hero-deals.carousel-opt3 .deal-card::after { display: none; }
#hero-deals.carousel-opt3 .deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.08);
}
#hero-deals.carousel-opt3 .deal-badge {
  background: transparent; border: none; border-radius: 0; padding: 0 0 0 12px;
  border-left: 3px solid var(--green); color: #1a1a2e;
}
#hero-deals.carousel-opt3 .deal-v1 .deal-badge { border-left-color: #0077b6; }
#hero-deals.carousel-opt3 .deal-v3 .deal-badge { border-left-color: #7b5fff; }
#hero-deals.carousel-opt3 .deal-v4 .deal-badge { border-left-color: #d4a017; }
#hero-deals.carousel-opt3 .deal-v5 .deal-badge { border-left-color: #e74c3c; }
#hero-deals.carousel-opt3 .deal-title { font-size: 24px; color: #0d1526; letter-spacing: -0.03em; }
#hero-deals.carousel-opt3 .deal-desc { color: #5a6f8a; font-size: 14px; }
#hero-deals.carousel-opt3 .deal-broker { color: #5a6f8a; }
#hero-deals.carousel-opt3 .deal-meta { border-top: 1px solid #eef2f7; }
#hero-deals.carousel-opt3 .deal-cta {
  background: transparent; border: none; padding: 0;
  color: #0d1526; text-decoration: underline; text-underline-offset: 4px;
  font-weight: 700; font-size: 13px;
}
#hero-deals.carousel-opt3 .deal-cta:hover { color: var(--green); }

/* ── Option 4: Gradient Cards (dark, unique gradient per variant, bold look, two rows) */
#hero-deals.carousel-opt4 .deals-track { gap: 24px; animation-duration: 36s; }
#hero-deals.carousel-opt4 .deal-card {
  width: 340px; padding: 28px; border: none; border-radius: 20px;
}
#hero-deals.carousel-opt4 .deal-card::before,
#hero-deals.carousel-opt4 .deal-card::after { display: none; }
#hero-deals.carousel-opt4 .deal-v1 { background: linear-gradient(150deg, #081830, #0d3060, #081830); }
#hero-deals.carousel-opt4 .deal-v2 { background: linear-gradient(150deg, #062018, #0d4030, #062018); }
#hero-deals.carousel-opt4 .deal-v3 { background: linear-gradient(150deg, #140830, #220d55, #140830); }
#hero-deals.carousel-opt4 .deal-v4 { background: linear-gradient(150deg, #201808, #3d2e10, #201808); }
#hero-deals.carousel-opt4 .deal-v5 { background: linear-gradient(150deg, #200808, #3d1010, #200808); }
#hero-deals.carousel-opt4 .deal-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
#hero-deals.carousel-opt4 .deal-v1:hover { background: linear-gradient(150deg, #0c2040, #124080, #0c2040); }
#hero-deals.carousel-opt4 .deal-v2:hover { background: linear-gradient(150deg, #0a2a20, #155540, #0a2a20); }
#hero-deals.carousel-opt4 .deal-v3:hover { background: linear-gradient(150deg, #1a0c40, #2e1570, #1a0c40); }
#hero-deals.carousel-opt4 .deal-v4:hover { background: linear-gradient(150deg, #2a2010, #504018, #2a2010); }
#hero-deals.carousel-opt4 .deal-v5:hover { background: linear-gradient(150deg, #2a0c0c, #501515, #2a0c0c); }
#hero-deals.carousel-opt4 .deal-title { color: #fff; }
#hero-deals.carousel-opt4 .deal-desc { color: rgba(255,255,255,0.6); }
#hero-deals.carousel-opt4 .deal-broker { color: rgba(255,255,255,0.4); }
#hero-deals.carousel-opt4 .deal-badge { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
#hero-deals.carousel-opt4 .deal-meta { border-top-color: rgba(255,255,255,0.06); }
#hero-deals.carousel-opt4 .deal-cta { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
#hero-deals.carousel-opt4 .deal-cta:hover { background: rgba(255,255,255,0.2); }

/* ── Option 5: Snap Scroll (dark, manual drag/swipe, colored header bands) */
#hero-deals.carousel-opt5 .deals-marquee-wrap:nth-child(n+4) { display: none; }
#hero-deals.carousel-opt5 .deals-track {
  animation: none; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 16px 40px; gap: 24px;
}
#hero-deals.carousel-opt5 .deals-track::-webkit-scrollbar { display: none; }
#hero-deals.carousel-opt5 .deal-card {
  width: 380px; padding: 0; scroll-snap-align: center;
  border-radius: 20px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
}
#hero-deals.carousel-opt5 .deal-card::before {
  position: relative; display: block; height: 56px; width: 100%; border-radius: 0;
}
#hero-deals.carousel-opt5 .deal-card::after { display: none; }
#hero-deals.carousel-opt5 .deal-v1::before { background: linear-gradient(90deg, #003366, #006699); }
#hero-deals.carousel-opt5 .deal-v2::before { background: linear-gradient(90deg, #004d33, #008855); }
#hero-deals.carousel-opt5 .deal-v3::before { background: linear-gradient(90deg, #2d1b69, #5b3aad); }
#hero-deals.carousel-opt5 .deal-v4::before { background: linear-gradient(90deg, #664d00, #998000); }
#hero-deals.carousel-opt5 .deal-v5::before { background: linear-gradient(90deg, #661a1a, #993030); }
#hero-deals.carousel-opt5 .deal-badge,
#hero-deals.carousel-opt5 .deal-title,
#hero-deals.carousel-opt5 .deal-desc,
#hero-deals.carousel-opt5 .deal-meta { margin-left: 28px; margin-right: 28px; }
#hero-deals.carousel-opt5 .deal-badge { margin-top: 24px; background: rgba(255,255,255,0.08); color: var(--text-1); border: 1px solid rgba(255,255,255,0.1); }
#hero-deals.carousel-opt5 .deal-title { color: var(--text-1); }
#hero-deals.carousel-opt5 .deal-desc { color: var(--text-2); }
#hero-deals.carousel-opt5 .deal-broker { color: var(--text-3); }
#hero-deals.carousel-opt5 .deal-meta { margin-bottom: 28px; border-top-color: var(--border); }
#hero-deals.carousel-opt5 .deal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
#hero-deals.carousel-opt5 .deal-cta { background: var(--green); color: var(--bg-base); border: none; font-weight: 800; }
#hero-deals.carousel-opt5 .carousel-dots { display: flex; }

/* ── Option 6: Click-to-Scroll (dark, arrow navigation, single visible card area) */
#hero-deals.carousel-opt6 .deals-marquee-wrap:nth-child(n+4) { display: none; }
#hero-deals.carousel-opt6 .deals-track {
  animation: none; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; gap: 24px; padding: 16px 40px;
}
#hero-deals.carousel-opt6 .deals-track::-webkit-scrollbar { display: none; }
#hero-deals.carousel-opt6 .deal-card {
  width: 420px; padding: 32px; scroll-snap-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
}
#hero-deals.carousel-opt6 .deal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--green), var(--neon));
}
#hero-deals.carousel-opt6 .deal-card::after { display: none; }
#hero-deals.carousel-opt6 .deal-v1::before { background: linear-gradient(90deg, var(--neon), var(--neon2)); }
#hero-deals.carousel-opt6 .deal-v3::before { background: linear-gradient(90deg, var(--neon2), var(--fire)); }
#hero-deals.carousel-opt6 .deal-v4::before { background: linear-gradient(90deg, var(--gold), var(--fire2)); }
#hero-deals.carousel-opt6 .deal-v5::before { background: linear-gradient(90deg, var(--fire), var(--fire2)); }
#hero-deals.carousel-opt6 .deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
#hero-deals.carousel-opt6 .deal-title { color: var(--text-1); }
#hero-deals.carousel-opt6 .deal-desc { color: var(--text-2); }
#hero-deals.carousel-opt6 .deal-broker { color: var(--text-3); }
#hero-deals.carousel-opt6 .deal-badge { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.2); }
#hero-deals.carousel-opt6 .deal-meta { border-top-color: var(--border); }
#hero-deals.carousel-opt6 .deal-cta { background: var(--green); color: var(--bg-base); border: none; font-weight: 700; }
#hero-deals.carousel-opt6 .carousel-nav { display: flex; }

/* ── Option 7: Single-row marquee (light bg, 3 cards visible, continuous R-to-L) */
/* Hero deals — static grid on light bg */
#hero-deals { background: #f8faff; }
#hero-deals .deals-grid { margin-top: 0; overflow: hidden; }

/* Slide From Sides animation */
@keyframes hdSlideL { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hdSlideR { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hdSlideU { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
#hero-deals .deal-card {
  opacity: 0;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
#hero-deals .deal-card:nth-child(3n+1) { animation-name: hdSlideL; }
#hero-deals .deal-card:nth-child(3n+2) { animation-name: hdSlideU; }
#hero-deals .deal-card:nth-child(3n+3) { animation-name: hdSlideR; }
#hero-deals .deal-card:nth-child(1) { animation-delay: 0s; }
#hero-deals .deal-card:nth-child(2) { animation-delay: 0.1s; }
#hero-deals .deal-card:nth-child(3) { animation-delay: 0.2s; }
#hero-deals .deal-card:nth-child(4) { animation-delay: 0.3s; }
#hero-deals .deal-card:nth-child(5) { animation-delay: 0.4s; }
#hero-deals .deal-card:nth-child(6) { animation-delay: 0.5s; }
#hero-deals .deal-card:nth-child(7) { animation-delay: 0.6s; }
#hero-deals .deal-card:nth-child(8) { animation-delay: 0.7s; }
#hero-deals .deal-card {
  width: 100%; background: #fff; border: 1px solid #e0e5ed;
  border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.045);
}
#hero-deals .deal-card::before, #hero-deals .deal-card::after { display: none; }
#hero-deals .deal-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.09); border-color: #c0cad6; }
#hero-deals .deal-title { color: #0a0f1a; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
#hero-deals .deal-desc { color: #3a4a62; font-size: 13px; line-height: 1.65; margin-bottom: 16px; }
#hero-deals .deal-broker { color: #4a5f7a; }
#hero-deals .deal-meta { border-top: 1px solid #dde4ed; padding-top: 16px; }
#hero-deals .deal-meta .deal-cta { font-weight: 600; }
#hero-deals .deal-meta .deal-cta:hover { filter: brightness(0.9); }

/* Legacy carousel-opt7 overrides (no longer used, kept for safety) */
#hero-deals.carousel-opt7 { background: #f8faff; }
#hero-deals.carousel-opt7 .hero-deals-label { color: #0d1526; margin-bottom: 40px; }
#hero-deals.carousel-opt7 .deals-marquee-wrap:nth-child(n+4) { display: none; }
#hero-deals.carousel-opt7 .deals-marquee-wrap::before { background: linear-gradient(90deg, #f8faff, transparent); }
#hero-deals.carousel-opt7 .deals-marquee-wrap::after { background: linear-gradient(-90deg, #f8faff, transparent); }
#hero-deals.carousel-opt7 .deals-track {
  display: flex;
  animation: dealScroll 40s linear infinite;
  gap: 24px;
  width: max-content;
}
#hero-deals.carousel-opt7 .deal-card {
  width: calc((1240px - 56px - 48px) / 3);
  min-width: 340px;
  flex-shrink: 0;
  padding: 24px;
  background: #fff;
  border: 2.5px solid #bcc8d8;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
#hero-deals.carousel-opt7 .deal-card::before,
#hero-deals.carousel-opt7 .deal-card::after { display: none; }
#hero-deals.carousel-opt7 .deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #8a9bb5;
}
#hero-deals.carousel-opt7 .deal-title { color: #0a0f1a; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
#hero-deals.carousel-opt7 .deal-desc { color: #3a4a62; font-size: 13px; line-height: 1.65; margin-bottom: 16px; }
#hero-deals.carousel-opt7 .deal-broker { color: #4a5f7a; }
#hero-deals.carousel-opt7 .deal-badge {
  background: #eef3f8; color: #2a4060;
  border: 1px solid #c0cdd8; font-size: 10px; padding: 4px 12px;
}
#hero-deals.carousel-opt7 .deal-meta { border-top: 1px solid #dde4ed; padding-top: 16px; }
#hero-deals.carousel-opt7 .deal-meta .deal-cta {
  background: #0a0f1a !important; color: #ffffff !important; border: none !important;
  font-weight: 800; padding: 8px 18px; font-size: 12px; border-radius: 8px;
}
#hero-deals.carousel-opt7 .deal-meta .deal-cta:hover {
  background: #1a2a45 !important;
}
#hero-deals.carousel-opt7 .deals-track:hover { animation-play-state: paused; }

@media (max-width: 768px) {
  #hero-deals.carousel-opt7 .deal-card { min-width: 280px; }
}
@media (max-width: 480px) {
  #hero-deals.carousel-opt7 .deal-card { min-width: 250px; padding: 18px; }
}

/* ── Deals Tab — static 3-column grid, same width as promo strip ─────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 48px;
  grid-auto-rows: 1fr;
}
/* #deals cards — structural overrides only; appearance unified with base .deal-card */
#deals .deal-card {
  width: 100%;
  flex-shrink: unset;
  display: flex;
  flex-direction: column;
}
#deals .deal-desc { flex: 1; }
#deals .deal-card::before,
#deals .deal-card::after { display: none; }
#deals .deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
#deals .deal-meta { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 16px; }
#deals .deal-meta .deal-cta:hover { filter: brightness(0.9); }
@media (max-width: 900px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .deals-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Broker table */
.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.table-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}
.table-topbar-title { font-family: var(--font-d); font-weight: 600; font-size: 15px; color: var(--text-1); }
.tbl-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 860px; }
thead th {
  text-align: left;
  font-family: var(--font-d); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(0,230,255,0.03); }
td { padding: 18px 22px; font-size: 13.5px; color: var(--text-2); vertical-align: middle; }
.bname { font-family: var(--font-d); font-weight: 700; font-size: 14.5px; color: var(--text-1); }
.bname-link {
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.bname-link:hover { color: var(--neon); }
.b-logo-row { display: flex; align-items: center; gap: 13px; }
.b-logo {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 12px; font-weight: 700; color: #fff;
}
.spread-hi { font-family: var(--font-d); font-weight: 700; color: var(--green); }
.reg-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; padding: 4px 10px;
  background: rgba(0,230,255,0.07);
  color: var(--neon); border-radius: 6px;
  border: 1px solid rgba(0,230,255,0.18);
  font-family: var(--font-d); white-space: nowrap;
}
.star-row { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.star-num { color: var(--text-2); font-size: 12px; margin-left: 4px; }
.row-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700;
  padding: 8px 18px; border-radius: 99px;
  text-decoration: none; white-space: nowrap;
  font-family: var(--font-d); letter-spacing: 0.02em;
  transition: all 0.2s;
}
.rb-g { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.25); }
.rb-g:hover { background: rgba(0,230,118,0.2); box-shadow: 0 0 18px rgba(0,230,118,0.2); }
.rb-c { background: rgba(0,230,255,0.1); color: var(--neon); border: 1px solid rgba(0,230,255,0.25); }
.rb-c:hover { background: rgba(0,230,255,0.2); box-shadow: 0 0 18px rgba(0,230,255,0.2); }
.rb-f { background: rgba(255,75,75,0.1); color: #ff8080; border: 1px solid rgba(255,75,75,0.25); }
.rb-f:hover { background: rgba(255,75,75,0.2); box-shadow: 0 0 18px rgba(255,75,75,0.2); }
.rb-y { background: rgba(255,214,0,0.1); color: var(--gold); border: 1px solid rgba(255,214,0,0.25); }
.rb-y:hover { background: rgba(255,214,0,0.2); box-shadow: 0 0 18px rgba(255,214,0,0.2); }

/* Promo strip */
.promo-strip {
  background: linear-gradient(110deg, #0d0a22 0%, #0d1f30 40%, #10220d 100%);
  border: 1px solid rgba(0,230,255,0.15);
  border-radius: var(--radius);
  padding: 44px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
  margin: 56px 0;
}
.promo-strip::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.promo-tag { font-size: 11px; font-family: var(--font-d); letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); margin-bottom: 10px; font-weight: 600; }
.promo-h { font-family: var(--font-d); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--text-1); line-height: 1.15; }
.promo-h span { color: var(--fire); }
.promo-p { font-size: 14.5px; color: var(--text-2); margin-top: 8px; font-weight: 300; }
.promo-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.2s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123,95,255,0.3);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(123,95,255,0.2);
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 12px; right: 22px;
  font-size: 100px; font-family: Georgia, serif;
  color: rgba(123,95,255,0.06); line-height: 1;
}
.testi-stars { font-size: 15px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14.5px; color: var(--text-2); font-weight: 300; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-bottom { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 14px; font-weight: 700; color: #fff;
}
.testi-name { font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--text-1); }
.testi-loc  { font-size: 12px; color: var(--text-3); }

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.2s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--neon); }
.why-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 24px;
}
.why-title { font-family: var(--font-d); font-weight: 600; font-size: 15px; color: var(--text-1); margin-bottom: 8px; }
.why-desc  { font-size: 13px; color: var(--text-3); line-height: 1.65; }

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-logo {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #00e676;
  -webkit-text-fill-color: #00e676;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.footer-about { font-size: 13px; color: var(--text-2); line-height: 1.75; max-width: 240px; }
.footer-col h5 { font-family: var(--font-d); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-1); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-2); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--neon); }
.disclaimer {
  border: 1px solid rgba(255,50,50,0.25);
  border-radius: var(--radius-s); padding: 20px 26px;
  font-size: 14px; color: var(--text-2); line-height: 1.85;
}
.disclaimer strong { color: var(--fire); }
.disclaimer-fixed {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--bg-card);
  border-radius: 0; border-left: none; border-right: none; border-bottom: none;
  border-top: 1px solid rgba(255,50,50,0.35);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
/* Desktop: show full text, hide short/toggle */
.disc-short { display: none; }
.disc-full { display: none; }
.disc-desktop { display: inline; }
.disc-toggle {
  background: none; border: none; color: var(--neon); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: underline; padding: 0 4px;
}
.footer-bar { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-2); }

/* Overlay / Modals */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg-card2); border: 1px solid var(--border-cyan);
  border-radius: var(--radius); padding: 44px 40px;
  max-width: 440px; width: 100%; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), var(--shadow-glow);
  transform: scale(0.9) translateY(16px); transition: transform 0.3s;
}
.overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer; color: var(--text-2); display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.modal-title { font-family: var(--font-d); font-size: 26px; font-weight: 700; margin-bottom: 6px; color: var(--text-1); }
.modal-sub { font-size: 13.5px; color: var(--text-2); margin-bottom: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-d); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-s); color: var(--text-1); font-size: 14px;
  font-family: var(--font-b); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus { border-color: var(--fire); box-shadow: 0 0 0 3px rgba(255,75,75,0.1); }
.modal-switch { text-align: center; font-size: 13px; color: var(--text-2); margin-top: 20px; }
.modal-switch a { color: var(--neon); text-decoration: none; font-weight: 600; }

/* Contact modal */
.contact-modal-box { max-width: 480px; }
.contact-modal-header { text-align: center; margin-bottom: 28px; }
.contact-modal-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 14px;
  background: linear-gradient(135deg, #00c853, #00e676);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 20px rgba(0,230,118,0.35);
  color: var(--bg-base);
}
.required { color: var(--fire); font-size: 11px; margin-left: 3px; }
.optional {
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-3); background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 2px 7px; margin-left: 6px; text-transform: uppercase;
  vertical-align: middle;
}
.field textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-s); color: var(--text-1); font-size: 14px;
  font-family: var(--font-b); outline: none; resize: vertical; min-height: 110px;
  transition: border-color 0.2s, box-shadow 0.2s; line-height: 1.6;
}
.field textarea:focus { border-color: var(--fire); box-shadow: 0 0 0 3px rgba(255,75,75,0.1); }
.field input.error, .field textarea.error { border-color: var(--fire); }
.contact-success {
  display: none; text-align: center;
  padding: 28px 0 8px;
  animation: fadeUp 0.4s ease both;
}
.contact-success.show { display: block; }
.contact-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.3);
  color: var(--green); font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.contact-success-title { font-family: var(--font-d); font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.contact-success-sub { font-size: 13.5px; color: var(--text-2); }
.contact-error {
  display: none; text-align: center;
  padding: 12px 0 0;
  color: var(--fire); font-size: 13px;
}
.contact-error.show { display: block; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s, transform 0.65s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* Cashback section */
.cb-hero {
  display: grid; grid-template-columns: 1fr auto;
  gap: 52px; align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 52px;
  margin-bottom: 48px;
  position: relative; overflow: hidden;
}
.cb-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--border);
}
.cb-hero::after {
  content: none;
}
.cb-kicker {
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.cb-h3 {
  font-family: var(--font-d); font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-1); line-height: 1.15; margin-bottom: 20px;
}
.cb-h3 span { color: var(--green); }
.cb-body {
  font-size: 14.5px; color: var(--text-2); font-weight: 300;
  line-height: 1.8; margin-bottom: 14px; max-width: 540px;
}
.cb-hero-stat {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 32px 36px;
  min-width: 230px; text-align: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.cb-big-num {
  font-family: var(--font-d); font-size: clamp(36px,4vw,58px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-1); -webkit-text-fill-color: var(--text-1);
  line-height: 1.1;
}
.cb-unit { font-size: 0.45em; opacity: 0.7; }
.cb-stat-lbl { font-size: 11.5px; color: var(--text-3); margin-top: 4px; margin-bottom: 16px; line-height: 1.5; }
.cb-divider { height: 1px; background: var(--border); margin: 16px 0; }
.cb-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-bottom: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.cb-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.cb-step:last-child { border-right: none; }
.cb-step:hover { background: rgba(0,230,118,0.03); }
.cb-step-num {
  font-family: var(--font-d); font-size: 42px; font-weight: 700;
  color: #00e676; line-height: 1; margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cb-step-title { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.cb-step-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.cb-rates-label {
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 18px;
}
.cb-rates-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cb-rate-card {
  background: #fff;
  border: none;
  border-radius: 16px; padding: 26px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.045);
}
.cb-rate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}
.cb-rate-card::before {
  display: none;
}
.cb-rate-broker { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cb-av {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 11px; font-weight: 700; color: #fff;
}
.cb-bname { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: #0a0f1a; }
.cb-rate-val {
  font-family: var(--font-d); font-size: 38px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--green); margin-bottom: 6px;
}
.cb-rate-val span { font-size: 16px; opacity: 0.6; color: #3a4a62; }
.cb-rate-pair { font-size: 12px; color: #4a5f7a; margin-bottom: 2px; }

/* Page sections */
.page-section { display: block; }
.page-section.hidden { display: none; }

/* Blog coming soon */
.blog-coming {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 72px 40px;
  text-align: center;
  max-width: 560px; margin: 0 auto;
}
.blog-coming-icon { font-size: 48px; margin-bottom: 20px; }
.blog-coming-title { font-family: var(--font-d); font-size: 24px; font-weight: 700; color: var(--text-1); margin-bottom: 12px; }
.blog-coming-sub { font-size: 14.5px; color: var(--text-2); line-height: 1.75; font-weight: 300; }

/* ── Blog Listing ─────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { border-color: rgba(0,230,255,0.25); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,230,255,0.06); }
.blog-card-cat { font-family: var(--font-d); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.blog-card-cat.green { color: var(--green); }
.blog-card-cat.cyan { color: var(--neon); }
.blog-card-cat.blue { color: #3b9eff; }
.blog-card-cat.orange { color: #ff8c42; }
.blog-card-title { font-family: var(--font-d); font-size: 20px; font-weight: 700; color: var(--text-1); line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.02em; }
.blog-card-excerpt { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; font-weight: 300; }
.blog-card-meta { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.blog-card-dot { opacity: 0.5; }

/* ── Blog Article Layout — white bg / black font ──── */
.blog-article-wrap {
  max-width: 1240px; margin: 0 auto;
  background: #fff; color: #1a1a2e; border-radius: var(--radius);
  padding: 48px 52px; box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
/* Table horizontal scroll inside blog articles */
.blog-article-wrap table { width: 100%; border-collapse: collapse; }
.blog-article-wrap .table-scroll-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 20px 0; border-radius: 8px;
}
.blog-article-wrap table th,
.blog-article-wrap table td {
  padding: 10px 14px; border: 1px solid #e0e5ed;
  font-size: 14px; line-height: 1.5; white-space: nowrap;
}
.blog-article-wrap table th {
  background: #f4f7fb; font-weight: 600; color: #0a0f1a;
}
.blog-article-wrap table td { color: #3a4a62; }
.blog-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 13px; font-weight: 600; color: #5a6a80;
  cursor: pointer; background: #f4f6f9; border: 1px solid #e0e5ed;
  padding: 8px 18px; border-radius: var(--radius-s); margin-bottom: 40px;
  transition: color 0.2s, border-color 0.2s;
}
.blog-back:hover { color: #0d1526; border-color: #b0bcc8; }
.blog-article-header { margin-bottom: 32px; }
.blog-article-label {
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #00a868; margin-bottom: 14px;
}
.blog-article-h1 {
  font-family: var(--font-d); font-size: clamp(26px, 4vw, 38px); font-weight: 700;
  letter-spacing: -0.03em; color: #0a0f1a; line-height: 1.2; margin-bottom: 16px;
}
.blog-article-meta {
  font-size: 13px; color: #7a8a9e; display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid #e8ecf2;
}

/* ── Risk Warning ─────────────────────────────────── */
.blog-risk-warning {
  background: #f7f9fc; border: 1px solid #e0e5ed;
  border-radius: var(--radius-s); padding: 18px 22px; margin: 28px 0;
  font-size: 13px; color: #5a6a80; line-height: 1.75;
}
.blog-risk-warning .rw-label { color: #d32f2f; }
.blog-risk-warning .rw-icon { font-style: normal; }

/* ── Table of Contents ────────────────────────────── */
.blog-toc {
  background: #f7f9fc; border: 1px solid #e8ecf2; border-radius: var(--radius);
  padding: 24px 28px; margin: 32px 0 48px;
}
.blog-toc-title { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: #0a0f1a; margin-bottom: 14px; }
.blog-toc-list { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.blog-toc-list li { counter-increment: toc; margin-bottom: 8px; }
.blog-toc-list li::before {
  content: counter(toc) "."; font-family: var(--font-d); font-size: 12px; font-weight: 600;
  color: #9aa8b8; margin-right: 10px; min-width: 20px; display: inline-block;
}
.blog-toc-link { font-size: 14px; color: #4a5f7a; text-decoration: none; transition: color 0.2s; }
.blog-toc-link:hover { color: #0d1526; }

/* ── Article Body Typography ──────────────────────── */
.blog-section { margin-bottom: 48px; scroll-margin-top: 120px; }
.blog-h2 {
  font-family: var(--font-d); font-size: 22px; font-weight: 700; color: #0a0f1a;
  margin: 48px 0 18px; letter-spacing: -0.02em;
  padding-left: 16px; border-left: 3px solid #00b67a;
}
.blog-section:first-child .blog-h2 { margin-top: 0; }
.blog-article-wrap h3 {
  font-family: var(--font-d); font-size: 18px; font-weight: 700; color: #0a0f1a;
  margin: 36px 0 14px; letter-spacing: -0.01em;
}
.blog-article-wrap p { font-size: 15.5px; color: #3a4a62; line-height: 1.9; margin-bottom: 18px; font-weight: 400; }
.blog-article-wrap strong { color: #0a0f1a; font-weight: 600; }
.blog-article-wrap ul { margin: 12px 0 18px 20px; color: #3a4a62; font-size: 15px; line-height: 1.85; font-weight: 400; }
.blog-article-wrap li { margin-bottom: 6px; }
.blog-article-wrap a { color: #0066cc; text-decoration: none; }
.blog-article-wrap a:hover { text-decoration: underline; }
.blog-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #00b67a; color: #fff !important; font-family: var(--font-d);
  font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 8px;
  text-decoration: none !important; margin: 12px 0 28px;
  transition: background 0.2s, transform 0.15s; box-shadow: 0 2px 8px rgba(0,182,122,0.2);
}
.blog-cta:hover { background: #009d68; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,182,122,0.3); }

/* ── Blog Tables (light theme override) ──────────── */
.blog-table { margin: 24px 0 32px; }
.blog-table.table-wrap { border-radius: 0; border: none; box-shadow: none; background: transparent; }
.blog-table table { width: 100%; min-width: 0; table-layout: auto; background: transparent; border: none; }
.blog-table-sub { font-size: 13px; color: #7a8a9e; margin-bottom: 16px; }
.blog-table .tbl-scroll { border-radius: 0; border: none; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.blog-table thead th { background: transparent; color: #7a8a9e; border: none; border-bottom: 2px solid #e0e5ed; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 12px; }
.blog-table tbody td { color: #3a4a62; border: none; font-size: 13px; padding: 10px 12px; }
.blog-table tbody tr:nth-child(even) td { background: #f7f9fc; }
.blog-table tbody tr:hover td { background: #eef3fa; }

/* ── Steps (light theme) ─────────────────────────── */
.blog-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #f7f9fc; border: 1px solid #e0e5ed;
  border-radius: var(--radius); overflow: hidden; margin: 24px 0;
}
.blog-step { padding: 28px 24px; border-right: 1px solid #e0e5ed; transition: background 0.2s; }
.blog-step:last-child { border-right: none; }
.blog-step:hover { background: #eef6f0; }
.blog-step-num {
  font-family: var(--font-d); font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, #00b67a, #00a0d0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.blog-step-title { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: #0a0f1a; margin-bottom: 8px; }
.blog-step-desc { font-size: 13px; color: #5a6a80; line-height: 1.7; font-weight: 400; }

/* ── FAQ Accordion (light theme) ──────────────────── */
.blog-faq { margin: 24px 0; }
.blog-faq-item {
  border: 1px solid #e0e5ed; border-radius: var(--radius-s);
  margin-bottom: 10px; overflow: hidden; background: #fff;
}
.blog-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-d); font-size: 15px; font-weight: 600; color: #0a0f1a;
  text-align: left; transition: color 0.2s;
}
.blog-faq-q:hover { color: #00b67a; }
.blog-faq-icon { font-size: 20px; color: #9aa8b8; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.blog-faq-a {
  display: none;
  padding: 0 22px 20px; font-size: 14px; color: #4a5f7a; line-height: 1.8;
}
.blog-faq-item.open .blog-faq-a { display: block; }
.blog-faq-item.open .blog-faq-icon { transform: rotate(45deg); }

/* ── Article Footer ───────────────────────────────── */
.blog-article-footer {
  border-top: 1px solid #e0e5ed; padding-top: 24px; margin-top: 48px;
  font-size: 12px; color: #9aa8b8; line-height: 1.8; text-align: center;
}

/* ── Visual Comparison Widget ─────────────────────── */
.wgt { margin: 24px 0; max-width: 100%; overflow: hidden; }
.wgt-filters { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.wgt-select {
  flex: 1; min-width: 180px; padding: 10px 14px; font-size: 13px; font-family: var(--font-b);
  border: 1px solid #d0d8e2; border-radius: 8px; background: #fff; color: #1a1a2e;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a8a9e'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; cursor: pointer;
}
.wgt-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid #e0e5ed; border-radius: 0; overflow: hidden; margin-bottom: 24px; }
.wgt-stat { padding: 18px 22px; border-right: 1px solid #e0e5ed; }
.wgt-stat:last-child { border-right: none; }
.wgt-stat-label { font-size: 11px; color: #7a8a9e; font-weight: 500; margin-bottom: 4px; }
.wgt-stat-val { font-family: var(--font-d); font-size: 24px; font-weight: 700; color: #0a0f1a; line-height: 1.2; }
.wgt-stat-sub { font-size: 11px; color: #9aa8b8; margin-top: 2px; }

/* Widget table */
.wgt-table { width: 100%; max-width: 100%; border-collapse: collapse; table-layout: fixed; }
.wgt-table th { font-size: 9px; font-weight: 600; color: #7a8a9e; text-transform: uppercase; letter-spacing: 0.04em; text-align: left; padding: 8px 10px; border-bottom: 1px solid #e0e5ed; white-space: nowrap; }
.wgt-table td { padding: 10px 10px; border-bottom: 1px solid #f0f2f5; vertical-align: middle; font-size: 12px; color: #3a4a62; word-wrap: break-word; white-space: normal; }
.wgt-table tr:last-child td { border-bottom: none; }
.wgt-table tr:hover td { background: #f9fafb; }
.wgt-broker-name { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: #0a0f1a; }
.wgt-broker-reg { font-size: 10px; color: #9aa8b8; }
.wgt-rate { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: #0a0f1a; }
.wgt-rate-bar { height: 3px; background: #00b67a; border-radius: 2px; margin-top: 4px; transition: width 0.3s; }
.wgt-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; }
.wgt-badge.daily { background: #e6f9f0; color: #00874a; }
.wgt-badge.weekly { background: #e8f0fe; color: #2563eb; }
.wgt-badge.monthly { background: #f3f0ff; color: #7c3aed; }
.wgt-top-pick { display: inline-block; font-size: 9px; font-weight: 700; color: #fff; background: #00b67a; padding: 2px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle; text-transform: uppercase; letter-spacing: 0.05em; }
.wgt-details-btn {
  font-family: var(--font-d); font-size: 11px; font-weight: 600; color: #0a0f1a;
  border: 1px solid #d0d8e2; border-radius: 6px; padding: 5px 10px; background: #fff;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; white-space: nowrap;
}
.wgt-details-btn:hover { border-color: #00b67a; background: #f0faf5; }

/* Widget estimator */
.wgt-estimator { margin-top: 32px; border-top: 1px solid #e0e5ed; padding-top: 28px; }
.wgt-est-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: #0a0f1a; margin-bottom: 20px; }
.wgt-slider-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.wgt-slider-label { font-size: 13px; color: #5a6a80; min-width: 120px; }
.wgt-slider {
  flex: 1; -webkit-appearance: none; appearance: none; height: 4px; background: #e0e5ed;
  border-radius: 2px; outline: none;
}
.wgt-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 2px solid #c0c8d4; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.wgt-slider-val { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: #0a0f1a; min-width: 70px; text-align: right; }
.wgt-est-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid #e0e5ed; border-radius: 0; overflow: hidden; margin-top: 20px; }
.wgt-est-box { padding: 18px 22px; border-right: 1px solid #e0e5ed; }
.wgt-est-box:last-child { border-right: none; }
.wgt-est-box-label { font-size: 11px; color: #7a8a9e; margin-bottom: 4px; }
.wgt-est-box-val { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: #0a0f1a; }

/* ── Blog Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-wrap { padding: 28px 20px; }
  .blog-steps { grid-template-columns: 1fr; }
  .blog-step { border-right: none; border-bottom: 1px solid #e0e5ed; }
  .blog-step:last-child { border-bottom: none; }
  .blog-article-h1 { font-size: 24px; }
  .wgt-stats { grid-template-columns: 1fr; }
  .wgt-stat { border-right: none; border-bottom: 1px solid #e0e5ed; }
  .wgt-stat:last-child { border-bottom: none; }
  .wgt-est-results { grid-template-columns: 1fr; }
  .wgt-est-box { border-right: none; border-bottom: 1px solid #e0e5ed; }
  .wgt-est-box:last-child { border-bottom: none; }
  .wgt { overflow-x: auto; }
}
@media (max-width: 480px) {
  .blog-card { padding: 22px; }
  .blog-toc { padding: 18px 20px; }
  .blog-article-wrap { padding: 20px 16px; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-s); cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text-1); border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Legal overlay */
.legal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: var(--bg-base);
  z-index: 99999;
  overflow-y: auto;
  display: none;
}
.legal-overlay.open { display: block; }
.legal-topbar {
  position: sticky; top: 0; z-index: 10;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.legal-topbar-title {
  font-family: var(--font-d); font-size: 16px; font-weight: 700;
  color: var(--text-1);
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 13px; font-weight: 600;
  color: var(--text-2); text-decoration: none; cursor: pointer;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: var(--radius-s);
  transition: color 0.2s, border-color 0.2s;
}
.legal-back:hover { color: var(--neon); border-color: var(--border-cyan); }
.legal-body {
  max-width: 820px; margin: 0 auto;
  padding: 52px 28px 80px;
}
.legal-hero-label {
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon); margin-bottom: 14px;
}
.legal-h1 {
  font-family: var(--font-d); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-1); line-height: 1.15; margin-bottom: 12px;
}
.legal-date {
  font-size: 13px; color: var(--text-3); margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.legal-body h2 {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  color: var(--text-1); margin: 40px 0 14px; letter-spacing: -0.02em;
}
.legal-body h2::before {
  content: '';
  display: inline-block; width: 3px; height: 18px;
  background: linear-gradient(180deg, var(--neon), var(--neon2));
  border-radius: 2px; margin-right: 12px; vertical-align: middle;
}
.legal-body p {
  font-size: 14.5px; color: var(--text-2); line-height: 1.85;
  margin-bottom: 16px;
}
.legal-body ul {
  margin: 12px 0 20px 20px;
}
.legal-body ul li {
  font-size: 14.5px; color: var(--text-2); line-height: 1.85;
  margin-bottom: 8px; list-style: none; padding-left: 16px; position: relative;
}
.legal-body ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--neon); opacity: 0.6;
}
.legal-body strong { color: var(--text-1); font-weight: 600; }
.legal-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--fire);
  border-radius: var(--radius-s);
  padding: 20px 24px; margin: 28px 0;
  font-size: 13.5px; color: var(--text-2); line-height: 1.8;
}
.legal-callout strong { color: var(--fire); }
.legal-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 32px; margin-top: 48px; text-align: center;
}
.legal-contact-box p { margin-bottom: 6px; }
.legal-contact-box a { color: var(--neon); text-decoration: none; font-weight: 600; }

/* Sortable table headers */
.th-sortable {
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  position: relative;
}
.th-sortable:hover { color: var(--neon); }
.sort-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 9px;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.th-sortable.active .sort-arrow { opacity: 1; color: var(--green); }

/* Broker review overlay */
.review-hero-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
}
.review-logo {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 16px; font-weight: 700; color: #fff;
}
.review-broker-info { flex: 1; }
.review-broker-name {
  font-family: var(--font-d); font-size: 28px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.02em;
}
.review-broker-meta {
  font-size: 13px; color: var(--text-2); margin-top: 4px;
}
.review-rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-s); padding: 12px 20px;
  flex-shrink: 0;
}
.review-rating-num {
  font-family: var(--font-d); font-size: 28px; font-weight: 700; color: var(--gold);
}
.review-rating-sub { font-size: 11px; color: var(--text-3); }
.review-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin: 32px 0;
}
.review-pros, .review-cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.review-pros { border-top: 3px solid var(--green); }
.review-cons { border-top: 3px solid var(--fire); }
.review-pros-title, .review-cons-title {
  font-family: var(--font-d); font-size: 14px; font-weight: 700;
  margin-bottom: 14px; letter-spacing: 0.05em; text-transform: uppercase;
}
.review-pros-title { color: var(--green); }
.review-cons-title { color: var(--fire); }
.review-list {
  list-style: none; margin: 0; padding: 0;
}
.review-list li {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  padding: 6px 0 6px 20px; position: relative;
}
.review-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
}
.review-pros .review-list li::before { background: var(--green); }
.review-cons .review-list li::before { background: var(--fire); }
.review-details-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 32px 0;
}
.review-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-s); padding: 20px;
}
.review-detail-label {
  font-family: var(--font-d); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 8px;
}
.review-detail-value {
  font-size: 14px; color: var(--text-1); line-height: 1.6;
}
.review-cta-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Cashback calculator */
.cb-calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-top: 32px;
}
.cb-calc-title {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  color: var(--text-1); margin-bottom: 6px;
}
.cb-calc-sub {
  font-size: 13px; color: var(--text-3); margin-bottom: 24px;
}
.cb-calc-form {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
}
.cb-calc-field { flex: 1; min-width: 180px; }
.cb-calc-field label {
  display: block;
  font-family: var(--font-d); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 8px;
}
.cb-calc-field select,
.cb-calc-field input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-s); color: var(--text-1); font-size: 14px;
  font-family: var(--font-b); outline: none; transition: border-color 0.2s;
}
.cb-calc-field select:focus,
.cb-calc-field input:focus { border-color: var(--green); }
.cb-calc-field select option { background: var(--bg-card2); color: var(--text-1); }
.cb-calc-result {
  flex: 1; min-width: 180px;
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--radius-s); padding: 12px 20px;
  text-align: center;
}
.cb-calc-result-label {
  font-size: 10px; font-family: var(--font-d); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 4px;
}
.cb-calc-result-value {
  font-family: var(--font-d); font-size: 28px; font-weight: 700;
  color: var(--green);
}

/* Deal filter chips */
.deal-filter-bar {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.deal-chip {
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-d); font-size: 12px; font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.deal-chip:hover { border-color: var(--green); color: var(--text-1); }
.deal-chip.active {
  background: rgba(0,230,118,0.12);
  border-color: rgba(0,230,118,0.3);
  color: var(--green);
}

/* Responsive additions */
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-details-grid { grid-template-columns: 1fr; }
  .review-hero-header { flex-direction: column; align-items: flex-start; }
  .cb-calc-form { flex-direction: column; }
  .review-cta-bar { flex-direction: column; }
}

.hero-video-bg {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive: 960px */
@media (max-width: 960px) {
  .nav-inner { padding: 0 24px; }
  .hero-inner { padding: 28px 24px 40px; }
  .hero-copy { max-width: 100%; }
  .hero-chart-deco { width: 100%; opacity: 0.09; }
  .cb-hero { grid-template-columns: 1fr; }
  .cb-hero-stat { min-width: unset; }
  .cb-steps { grid-template-columns: 1fr 1fr; }
  .cb-rates-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .deals-grid-static { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-strip { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
}

/* Responsive: 768px */
@media (max-width: 768px) {
  .nav { height: 56px; }
  .nav-inner { padding: 0 18px; height: 56px; }
  .logo { font-size: 18px; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    z-index: 100;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: var(--radius-s);
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav { position: sticky; top: 40px; }
  .nav-inner { position: relative; }

  .nav-right .btn { font-size: 12px; padding: 7px 12px; }
  .ticker-bar { top: 0; }
  .hero { padding: 92px 0 24px 0; }
  .hero-inner { padding: 24px 20px 48px; padding-top: 36px; }
  .hero-title { font-size: clamp(28px, 8vw, 52px); }
  .line-1 span { transform: translateX(-50px); }
  .line-2 span { transform: translateX(50px); }
  .hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 24px; white-space: normal; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .cta-main, .cta-sec { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; }
  .trust-badges { flex-wrap: wrap; gap: 10px 20px; }
  .trust-item { font-size: 13px; }
  .hero-chart-deco { display: none; }

  .hero-deals-label { font-size: clamp(22px, 6vw, 36px); }
  .deal-card { width: 260px; padding: 18px; }

  .tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tbl-scroll::after {
    content: '\2190 Scroll to see more \2192';
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-3);
    padding: 10px;
    border-top: 1px solid var(--border);
  }
  table { min-width: 700px; }
  td, thead th { padding: 12px 14px; }

  .cb-steps { grid-template-columns: 1fr; }
  .cb-rates-grid { grid-template-columns: 1fr; }
  .cb-hero { flex-direction: column; gap: 20px; }
  .cb-hero-stat { width: 100%; }

  .promo-strip { padding: 28px 24px; flex-direction: column; }
  .promo-h { font-size: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; gap: 10px; text-align: center; }

  .section { padding: 48px 0; }
  .wrap { padding: 0 18px; }
  .sec-title { font-size: clamp(22px, 6vw, 36px); }

  /* Fix 1: Collapse risk disclaimer on mobile */
  .disc-desktop { display: none; }
  .disc-short { display: inline; }
  .disc-full { display: none; }
  .disclaimer-fixed.disc-open .disc-full { display: inline; }
  .disclaimer-fixed.disc-open .disc-short .disc-toggle { display: none; }
  .disclaimer { font-size: 12px; padding: 12px 18px; line-height: 1.6; }

  /* Fix 2: Fixed header on mobile */
  .ticker-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 91; }
  .nav { position: fixed; top: 40px; left: 0; right: 0; z-index: 90; }
  main { padding-top: 104px; }

  /* Hero deals grid responsive */
  #hero-deals .deals-grid { grid-template-columns: 1fr; }
  #hero-deals .deal-card:nth-child(3n+1),
  #hero-deals .deal-card:nth-child(3n+3) { animation-name: hdSlideU; }
}

/* Responsive: 480px */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .deals-grid-static { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hstat { border-right: none; border-bottom: 1px solid var(--border); }
  .hstat:last-child { border-bottom: none; }
  .cb-steps { grid-template-columns: 1fr; }
  .cb-rates-grid { grid-template-columns: 1fr; }
  .cb-hero { padding: 20px 16px; }
  .modal-box { padding: 28px 20px; }
  .nav-right .btn span { display: none; }
  .hero { padding: 60px 0 0; }
  .deal-card { width: 100%; min-width: 0; }
  .table-topbar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px; }
  /* Mobile-first: better touch targets */
  .btn, .cta-main, .cta-sec { min-height: 44px; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .deal-cta { min-height: 44px; font-size: 14px; }
  /* Mobile-first: full-width deal grid on mobile */
  #deals .deals-grid { grid-template-columns: 1fr; }
  .blog-article-wrap { padding: 20px 14px; }
  .sec-title { font-size: 22px; }
  .wrap { padding: 0 14px; }
  /* Mobile: improve form usability */
  .modal-box input, .modal-box textarea, .modal-box select { font-size: 16px; } /* prevent iOS zoom */
}
