: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; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
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: rgba(255,255,255,0.14); 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: 100001;
  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: 100000;
  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;
  position: relative;
}
.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;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.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: transparent;
  color: #00e676;
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid #00e676;
  border-radius: 8px;
}
.btn-contact-green:hover {
  background: rgba(0, 230, 118, 0.08);
  color: #00ff88;
  border-color: #00ff88;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 12px;
  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-deals .sec-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 46px);
}
#hero-deals .sec-head {
  margin-bottom: 28px;
}
.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 td { 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: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300; 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: visible;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease-out, border-color 0.2s ease-out;
  cursor: pointer;
  z-index: 1;
  will-change: transform;
}
.deal-card.tilt-reset {
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease-out, border-color 0.2s ease-out;
}
.deal-card:hover {
  border-color: #00e676;
  box-shadow: 0 0 0 2px #00e676, 0 16px 48px rgba(0,0,0,0.45);
  z-index: 10;
}
.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; }
a.deal-broker { cursor: pointer; transition: color 0.2s, opacity 0.2s; }
a.deal-broker:hover { color: var(--green); opacity: 0.9; }
.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);
}

/* ── About Us ────────────────────────────────────── */
.about-body {
  max-width: 800px;
  margin: 0 auto;
}
.about-block {
  margin-bottom: 64px;
}
.about-h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-1);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.about-p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.about-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-2);
  font-style: italic;
  text-align: center;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ── Image Deal Card ─────────────────────────────── */
.deal-card.has-img {
  padding: 0;
  overflow: hidden;
}
.deal-card.has-img::before,
.deal-card.has-img::after { display: none; }
.deal-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  line-height: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
}
.deal-card.has-img:hover .deal-img-wrap img {
  filter: brightness(1.07);
}
.deal-img-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
}

.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: visible; }

/* 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:hover,
#deals .deal-card:hover {
  animation: none;
  opacity: 1;
}
#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 {
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.table-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 2px solid #00e676;
  background: #09111f;
}
.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; }
thead th {
  text-align: left;
  font-family: var(--font-b); font-size: 13px; font-weight: 500;
  color: #f0f4ff; padding: 13px 14px;
  border-bottom: 2px solid #00e676;
  background: #09111f;
  white-space: nowrap;
}
.table-wrap tbody tr:nth-child(odd)  { background: #111d31; }
.table-wrap tbody tr:nth-child(even) { background: #172137; }
tbody tr { transition: background 0.15s; }
tbody tr:hover { background: #1c2a45 !important; }
td { padding: 13px 14px; font-size: 13px; color: var(--text-2); border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; word-break: break-word; }
tbody tr:last-child td { border-bottom: none; }
.bname { font-family: var(--font-d); font-weight: 700; font-size: 12px; 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; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left; width: 100%; }
.b-logo-link { display: inline-flex; flex-shrink: 0; }
.b-logo-row .bname { display: none; }
.b-logo {
  width: 76px; height: 76px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 20px; font-weight: 700; color: #fff;
}
.b-logo-img {
  height: 60px; width: 120px; flex-shrink: 0;
  object-fit: fill;
}
.review-logo-img {
  height: 44px; width: 120px; flex-shrink: 0;
  object-fit: fill;
}
/* ── Broker Review Cards ──────────────────────── */
.broker-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  justify-content: center;
}
.broker-card {
  flex: 0 0 320px;
}
body[data-tab="home"] .broker-cards-grid { display: none; }
body[data-tab="home"] .brokers-title-tab { display: none; }
body:not([data-tab="home"]) .brokers-title-home { display: none; }
body[data-tab="home"] .broker-table-heading { display: none; }
.brokers-table-band {
  background: #f8faff;
  padding: 56px 0 64px;
  margin-top: 40px;
}
.brokers-table-band .sec-title { color: #0d1526; }
.brokers-table-band .sec-sub   { color: #4b5f84; }
body[data-tab="home"] .brokers-table-band {
  background: transparent;
  padding: 0;
  margin-top: 0;
}
.broker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.broker-card:hover {
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 4px 28px rgba(0,230,118,0.07);
}
.broker-card-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brc-logo-link { display: inline-flex; flex-shrink: 0; }
.brc-logo-img {
  height: 60px; width: 120px; flex-shrink: 0;
  object-fit: fill;
}
.broker-card-rating { display: flex; align-items: center; gap: 6px; }
.broker-card-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.broker-card-rating-num { font-size: 13px; color: var(--text-2); font-weight: 600; }
.broker-card-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 16px; background: rgba(255,255,255,0.03); border-radius: 10px;
  border: 1px solid var(--border);
}
.broker-card-stat { display: flex; flex-direction: column; gap: 3px; }
.bcs-label { font-size: 10.5px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; }
.bcs-value { font-size: 13px; color: var(--text-1); font-weight: 600; }
.broker-card-cta {
  display: block; width: 100%; padding: 13px 20px;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.25);
  border-radius: 10px; color: var(--green);
  font-family: var(--font-d); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; text-align: center;
  margin-top: auto;
}
.broker-card-cta:hover { background: rgba(0,230,118,0.18); border-color: rgba(0,230,118,0.5); }

/* ── Broker Cards: Mobile Responsive ─────────────── */
@media (max-width: 700px) {
  .broker-cards-grid {
    gap: 16px;
  }
  .broker-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .broker-cards-grid {
    gap: 14px;
  }
  .broker-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 16px;
  }
  .brc-logo-img {
    height: 48px;
    width: 96px;
  }
  .broker-card-stats {
    gap: 10px;
  }
  .broker-card-cta {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.spread-hi { font-family: var(--font-d); font-weight: 700; color: var(--text-2); }
.reg-chip { line-height: 1.7; }
.col-sep { color: #00e676; font-weight: 700; }
.star-row { color: #ffd600; font-size: 13px; letter-spacing: 1px; }
.star-num { color: #ffd600; font-size: 12px; margin-left: 4px; }
.star-tp-link { display: inline-flex; align-items: center; gap: 0; text-decoration: none; border-radius: 6px; padding: 2px 4px; transition: background 0.2s; }
.star-tp-link:hover { background: rgba(255,214,0,0.1); }
.row-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700;
  padding: 8px 18px; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
  font-family: var(--font-d); letter-spacing: 0.02em;
  transition: all 0.2s;
  background: transparent; color: #00e676; border: 1.5px solid #00e676;
}
.row-btn:hover { background: rgba(0,230,118,0.08); color: #00ff88; border-color: #00ff88; }
.rb-g, .rb-c, .rb-f { background: transparent; color: #00e676; border: 1.5px solid #00e676; }
.rb-g:hover, .rb-c:hover, .rb-f:hover { background: rgba(0,230,118,0.08); color: #00ff88; border-color: #00ff88; }
.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);
  font-size: 12px; padding: 10px 28px; line-height: 1.4; text-align: center;
}
.disclaimer-fixed .wrap { max-width: none; padding: 0; }
#riskDisclaimer {
  font-size: 12px !important;
  padding: 10px 28px !important;
  line-height: 1.4 !important;
}
.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: 100002; 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: 0; cursor: pointer; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:not(:has(.blog-card-hero)) { padding: 32px; }
.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-card .blog-card-hero-wrap { position: relative; width: 100%; height: 200px; overflow: hidden; }
.blog-card .blog-card-hero { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.blog-card .blog-card-body { padding: 24px; }

/* ── Blog Featured Card (single-article state) ─── */
.blog-card-featured {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  max-width: 480px;
}
.blog-card-hero {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center center;
  display: block;
  border-radius: 10px 10px 0 0;
}
.blog-card-featured .blog-card-body { flex: 1; min-width: 0; padding: 20px 24px 24px; }
.blog-card-featured .blog-card-badge {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: rgba(0,230,118,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-featured .blog-card-badge svg { width: 34px; height: 34px; stroke: var(--green); }
.blog-card-featured .blog-card-body { flex: 1; min-width: 0; }
.blog-card-featured .blog-card-title { font-size: 26px; margin-bottom: 14px; }
.blog-card-featured .blog-card-excerpt { font-size: 15px; line-height: 1.75; max-width: 640px; margin-bottom: 22px; }
.blog-card-read-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: transparent; border: 1.5px solid var(--neon);
  color: var(--neon); border-radius: 8px;
  font-family: var(--font-d); font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; transition: background 0.18s, color 0.18s;
}
.blog-card-read-cta:hover { background: var(--neon); color: #0a0f1a; }
/* ── Related Articles ─────────────────────────────── */
/* ── Related Articles — editorial row style ───────── */
.blog-related { margin-top: 48px; padding-top: 36px; border-top: 2px solid #e0e5ed; }
.blog-related-heading { font-family: var(--font-d); font-size: 20px; font-weight: 700; color: #000; letter-spacing: -0.02em; margin-bottom: 20px; }
.blog-related .blog-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 300px)); gap: 20px; justify-content: start; }
.blog-related a.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e0e5ed; border-radius: 10px;
  text-decoration: none; color: inherit; overflow: hidden; padding: 0;
  transform: none !important; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.blog-related a.blog-card:hover { border-color: #0066cc; box-shadow: 0 4px 16px rgba(0,102,204,0.1); transform: translateY(-2px) !important; }
.blog-related .blog-card-hero-wrap { width: 100%; height: 150px; overflow: hidden; border-radius: 0; min-width: 0; }
.blog-related .blog-card-hero { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.blog-related .blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.blog-related .blog-card-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0; }
.blog-related .blog-card-title { font-size: 14px; font-weight: 700; color: #0a0f1a; line-height: 1.45; margin-bottom: 0; }
.blog-related .blog-card-excerpt { display: none; }
.blog-related .blog-card-meta { font-size: 11px; color: #5a6a7a; margin: 0; margin-top: auto; padding-top: 8px; }
.blog-related a.blog-card::after { display: none; }
.blog-related .blog-card-body::after { display: none; }
.blog-related a.blog-card:hover .blog-card-title { color: #0066cc; }
@media (max-width: 640px) {
  .blog-card-featured { flex-direction: column; gap: 0; padding: 0; }
  .blog-card-hero { width: 100%; min-width: unset; height: 180px; border-radius: 12px 12px 0 0; }
  .blog-card-featured .blog-card-body { padding: 22px; }
  .blog-card-featured .blog-card-title { font-size: 21px; }
}

/* ── Blog Article Layout — editorial, no card ─────── */
.section-article { background: #fff !important; }
@media (max-width: 768px) {
  .section-article.page-section { padding-top: 16px !important; }
}
.blog-article-wrap {
  max-width: 1240px; margin: 0 auto;
  color: #1a1a2e;
}
/* 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;
}
.blog-article-wrap table th {
  background: #f4f7fb; font-weight: 600; color: #0a0f1a;
}
.blog-article-wrap table td { color: #3a4a62; }
.blog-article-wrap tbody tr:hover { background: transparent !important; }
.blog-article-wrap tbody tr:hover td { background: transparent !important; }
.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; }
@media (max-width: 900px) {
  .blog-article-header { padding: 0 20px; margin-bottom: 16px; }
}
.blog-hero-wrap { position: relative; width: 100%; margin-bottom: 28px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.13); }
.blog-hero-img { width: 100%; height: auto; display: block; border-radius: 10px; margin-bottom: 0; }
.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: #000; display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid #e8ecf2;
}
.blog-author-img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 1px solid #e8ecf2;
}
.blog-author-link { color: #00a868; text-decoration: none; font-weight: 600; }
.blog-author-link:hover { text-decoration: underline; }
.blog-author-li {
  display: inline-flex; align-items: center; margin-left: -2px;
  transition: opacity 0.2s;
}
.blog-author-li svg { display: block; }
.blog-author-li:hover { opacity: 0.75; }
.blog-author-title {
  width: 100%; font-style: italic; color: #000; font-size: 13px; margin-top: 4px;
}

/* ── Blog Inline CTA ──────────────────────────────── */
.blog-inline-cta {
  background: #f4f7fb; border: 1px solid #e0e5ed;
  border-radius: var(--radius-s);
  padding: 16px 20px; margin: 24px 0; font-size: 15px; line-height: 1.7;
}
.blog-inline-cta a { color: #0066cc; font-weight: 600; text-decoration: underline; }

/* ── Blog CTA Banner — editorial, soft ───────────── */
.blog-cta-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: #f4f7fb; border: 1px solid #e0e5ed;
  border-radius: var(--radius-s); padding: 20px 24px; margin: 32px 0;
}
.blog-cta-banner-text { display: flex; flex-direction: column; gap: 4px; }
.blog-cta-banner-text strong { font-size: 15px; color: #0a0f1a; font-weight: 700; }
.blog-cta-banner-text span { font-size: 13.5px; color: #5a6a80; line-height: 1.6; }
.blog-cta-banner .btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #00b67a; border: none; color: #fff;
  font-size: 13px; font-weight: 700; padding: 10px 20px;
  border-radius: 6px; white-space: nowrap; width: auto;
  align-self: flex-start; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.blog-cta-banner .btn:hover { background: #009966; transform: translateY(-1px); }
@media(max-width:600px){ .blog-cta-banner { flex-direction: column; align-items: flex-start; } }

/* ── 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;
}
.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 !important; }
.blog-table tbody tr { background: transparent !important; }

/* ── Blog table: auto layout, horizontal scroll when needed ── */
.article-main .blog-table .tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.article-main .blog-table table { table-layout: auto; width: 100%; min-width: 560px; }
.article-main .blog-table table th,
.article-main .blog-table table td { white-space: normal; overflow-wrap: normal; word-break: normal; hyphens: none; min-width: 70px; }

/* ── 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: #3a4a5c; line-height: 1.8; text-align: center;
}

/* ── Two-column article layout ─────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 256px;
  gap: 48px;
  align-items: start;
  padding: 40px 40px 60px;
}
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }

/* Sidebar TOC */
.sidebar-toc {
  background: #f7f9fc; border: 1px solid #e8ecf2; border-radius: var(--radius); padding: 18px 20px;
}
.sidebar-toc-label {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #000; margin-bottom: 12px;
}
.sidebar-toc-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.sidebar-toc-nav li a {
  display: block; font-size: 12.5px; color: #000; text-decoration: none;
  padding: 5px 8px; border-radius: 5px; border-left: 2px solid transparent;
  line-height: 1.45; transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.sidebar-toc-nav li.active a { color: #0066cc; border-left-color: #0066cc; background: rgba(0,102,204,0.05); }
.sidebar-toc-nav li a:hover { color: #0d1526; background: #eef1f5; }

/* Sidebar Latest Articles */
.sidebar-latest {
  background: #f7f9fc; border: 1px solid #e8ecf2; border-radius: var(--radius); padding: 18px 20px;
}
.sidebar-latest-label {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #000; margin-bottom: 12px;
}
.sidebar-art-list { display: flex; flex-direction: column; }
.sidebar-art-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 0; border-bottom: 1px solid #e8ecf2;
  text-decoration: none; color: inherit;
}
.sidebar-art-item:first-child { padding-top: 0; }
.sidebar-art-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-art-cat {
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.sidebar-art-cat.orange { color: #cc6a10; }
.sidebar-art-cat.green { color: #0a7a50; }
.sidebar-art-cat.cyan { color: #0066cc; }
.sidebar-art-cat.blue { color: #2255aa; }
.sidebar-art-title {
  font-size: 12.5px; font-weight: 600; color: #000; line-height: 1.4; transition: color 0.15s;
}
.sidebar-art-item:hover .sidebar-art-title { color: #0066cc; }
.sidebar-art-date { font-size: 11px; color: #3a4a5c; }

/* On desktop: sidebar TOC replaces in-body TOC */
@media (min-width: 901px) { .blog-toc { display: none; } }
/* On mobile: collapse sidebar, show in-body TOC */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; padding: 12px 20px 48px; }
  .article-sidebar { display: none; }
}

/* ── 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: 0; }
  .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: 0; }
}

/* 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: 104px; left: 0; right: 0; bottom: 0;
  width: 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; }

/* Broker comparison table — column width hints */
thead th:nth-child(1), td:nth-child(1) { width: 190px; }   /* Broker */
thead th:nth-child(2), td:nth-child(2) { width: 34px; white-space: nowrap; }    /* Est. */
thead th:nth-child(3), td:nth-child(3) { width: 76px; }    /* Spread */
thead th:nth-child(4), td:nth-child(4) { width: 52px; }    /* Min. deposit */
thead th:nth-child(5), td:nth-child(5) { width: 200px; }   /* Regulation — content wraps */
thead th:nth-child(6), td:nth-child(6) { width: 110px; }   /* Platform — content wraps */
thead th:nth-child(7), td:nth-child(7) { width: 68px; white-space: nowrap; }    /* Rating */
thead th:nth-child(8), td:nth-child(8) { width: 108px; }   /* Action */

/* 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-badge-link {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.review-rating-badge-link:hover {
  border-color: #00b67a;
  box-shadow: 0 2px 12px rgba(0,182,122,0.15);
}
.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: 1px solid var(--border); }
.review-cons { border-top: 1px solid var(--border); }
.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);
}
/* Global Coming Soon toast */
.coming-soon-toast {
  position: absolute;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-card);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.coming-soon-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.calc-coming-soon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-card);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
  animation: csfadeIn 0.2s ease;
  z-index: 10;
}
@keyframes csfadeIn {
  from { opacity: 0; transform: translate(-50%, -44%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* 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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.deal-chip:focus, .deal-chip:focus-visible { outline: none; }
.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);
}
.deal-chip-logo { width: 110px; height: 36px; object-fit: contain; display: block; }
.deal-chip-logo[src*="/xm/"] { transform: scale(1.35); }
.deal-chip-logo[src*="/avatrade/"] { transform: scale(1.3); }
.deal-chip:has(.deal-chip-logo) { padding: 4px 10px; background: #fff; overflow: hidden; }
.deal-chip:has(.deal-chip-logo):hover,
.deal-chip:has(.deal-chip-logo).active { border-color: var(--border); background: #fff; }

/* 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 */
/* Nav hamburger — triggers at 900px to cover landscape phones (844px+) */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    transform: none;
    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;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }
  .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-inner { position: relative; }
  .nav-right .btn { font-size: 12px; padding: 7px 12px; }
}

@media (max-width: 768px) {
  .legal-overlay { top: 96px; }
  .nav { height: 56px; }
  .nav-inner { padding: 0 18px; height: 56px; }
  .logo { font-size: 18px; }
  .nav { position: sticky; top: 40px; }
  .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); }

  /* Risk disclaimer — wraps on mobile, that's fine */
  .disclaimer-fixed { font-size: 11px; padding: 9px 14px; line-height: 1.55; }
  #riskDisclaimer { font-size: 11px !important; padding: 9px 14px !important; line-height: 1.55 !important; }

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

  /* 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: 0; }
  .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 */
}

/* ── Cashback section — Model A editorial layout ── */
#cashback .sec-head { margin-bottom: 56px; }
#cashback .cb-eyebrow {
  font-family: var(--font-d);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #00a855;
  margin-bottom: 16px;
}
#cashback .sec-title {
  font-size: clamp(22px, 3.4vw, 42px);
  white-space: nowrap;
  margin-bottom: 0;
}
#cashback .cb-rule {
  width: 60px; height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 22px auto 0;
}
#cashback .cb-hero {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 64px;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
}
#cashback .cb-hero::before,
#cashback .cb-hero::after { content: none; display: none; }
#cashback .cb-hero-stat {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(13,21,38,0.12);
  border-radius: 0;
  padding: 8px 40px 8px 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}
#cashback .cb-stat-icon {
  color: var(--green);
  width: 140px; height: 140px;
  display: block;
}
#cashback .cb-stat-icon svg { width: 100%; height: 100%; }
#cashback .cb-stat-cap {
  font-family: var(--font-d);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em;
  color: #5a6a85;
}
#cashback .cb-hero-text { text-align: center; max-width: 760px; }
#cashback .cb-body { margin-left: auto; margin-right: auto; }

#cashback .cb-cta-card {
  display: flex; align-items: center; gap: 20px;
  max-width: 620px; margin: 32px auto 0;
  background: #fff;
  border: 1px solid rgba(13,21,38,0.10);
  border-radius: 14px;
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 4px 14px rgba(13,21,38,0.04);
}
#cashback .cb-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,21,38,0.10);
  border-color: var(--green);
}
#cashback .cb-cta-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green) 0%, #00b85a 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,230,118,0.30);
  color: #fff;
}
#cashback .cb-cta-icon svg { width: 22px; height: 22px; }
#cashback .cb-cta-title {
  flex: 1; min-width: 0;
  font-size: 15px; font-weight: 700;
  color: #0d1526;
}
#cashback .cb-cta-arrow {
  color: #00a855; font-size: 22px; font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s;
}
#cashback .cb-cta-card:hover .cb-cta-arrow { transform: translateX(4px); }

body[data-tab="home"] #cashback .cb-steps,
body[data-tab="home"] #cashback .cb-calculator {
  display: none;
}
body[data-tab="cashback"] #cashback .cb-cta-card {
  display: none;
}

/* Cashback — compact spacing */
#cashback.section { padding: 56px 0; }
#cashback .sec-head { margin-bottom: 32px; }
#cashback .cb-hero { margin-bottom: 36px; }
#cashback .cb-h3 { margin-bottom: 14px; }
#cashback .cb-body { line-height: 1.7; margin-bottom: 10px; }
#cashback .cb-steps { margin-bottom: 36px; }
#cashback .cb-step { padding: 24px 22px; }
#cashback .cb-step-num { font-size: 34px; margin-bottom: 10px; }
#cashback .cb-step-title { margin-bottom: 8px; }
#cashback .cb-step-desc { line-height: 1.6; }
#cashback .cb-cta-card { margin-top: 20px; padding: 14px 18px; }

@media (max-width: 960px) {
  #cashback .sec-title { white-space: normal; font-size: clamp(22px, 5.5vw, 34px); }
  #cashback .cb-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #cashback .cb-hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(13,21,38,0.12);
    padding: 0 0 24px 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  #cashback .cb-stat-icon { width: 88px; height: 88px; flex-shrink: 0; }
}

/* ═══════════════════════════════════════════════════════
   FULL BROKER REVIEW — fr-* component styles
   ═══════════════════════════════════════════════════════ */

/* Verdict box */
.fr-verdict {
  background: rgba(0,230,118,0.05);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin-bottom: 28px;
}
.fr-verdict-label {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.fr-verdict-badge {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
}
.fr-verdict-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Stat counters */
.fr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}
.fr-stat {
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.fr-stat:last-child { border-right: none; }
.fr-stat-num {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 4px;
}
.fr-stat-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* AFA banner image */
.fr-banner-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 0 28px;
  object-fit: cover;
  max-height: 280px;
}

/* Section container */
.fr-section {
  margin-bottom: 36px;
}
.fr-h2 {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
/* Suppress the site-wide legal-body h2::before blue line */
.legal-body .fr-h2::before { display: none; }
.fr-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.fr-footnote {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 10px;
  font-style: italic;
}

/* Tables */
.fr-table-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.fr-scroll { overflow-x: clip; }
.fr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: auto;
}
.fr-table th {
  background: var(--bg-card2);
  color: var(--text-3);
  font-family: var(--font-d);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: normal;
}
.fr-table td {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-2);
  vertical-align: top;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}
.fr-table tr:last-child td { border-bottom: none; }
.fr-table tr:hover td { background: rgba(255,255,255,0.025); }
.fr-cta-row td { padding: 12px 10px; }
.fr-cta-row:hover td { background: transparent !important; }
.fr-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a73e8;
  color: #fff !important;
  padding: 9px 16px;
  min-height: 40px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.fr-cta-btn:hover { background: #1255b8; }
#review-overlay-dynamic .fr-table tr:hover { background: transparent !important; }
#review-overlay-dynamic .fr-cta-btn { background: #1a73e8; color: #fff !important; }
#review-overlay-dynamic .fr-cta-btn:hover { background: #1255b8; }

/* Broker name inline link in paragraphs */
.fr-broker-link,
.fr-broker-link strong {
  color: #000000 !important;
  font-weight: 700;
  text-decoration: none;
}
.fr-broker-link:hover,
.fr-broker-link:hover strong {
  color: #1a73e8 !important;
  text-decoration: none;
}

/* Key-value table */
.fr-table.fr-kv {
  table-layout: fixed;
}
.fr-kv .fr-key {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  white-space: normal;
  width: 30%;
  min-width: 120px;
  padding-right: 12px;
  overflow-wrap: break-word;
}

/* Tier chips */
.fr-tier {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.fr-tier.t1, .fr-tier.t2, .fr-tier.t3 {
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* Protection checkmarks */
.fr-protections {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.fr-protection {
  font-size: 13.5px;
  color: var(--text-2);
  padding: 4px 0;
}

/* Section images */
.fr-section-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: contain;
  background: var(--bg-card2);
  margin-bottom: 16px;
}

/* Platform cards */
.fr-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.fr-platform {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.fr-platform-name {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}
.fr-platform-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Note / warning box */
.fr-note {
  font-size: 13px;
  color: var(--text-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  line-height: 1.65;
}

/* Deposits & Withdrawals grid */
.fr-dw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fr-dw-col {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.fr-dw-title {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.fr-dw-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.fr-dw-row:last-child { border-bottom: none; }
.fr-dw-row .fr-key {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ accordion */
.fr-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fr-faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fr-faq-item.open { border-color: rgba(0,230,118,0.3); }
.fr-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: none;
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.fr-faq-q:hover { color: var(--green); }
.fr-faq-icon {
  font-size: 20px;
  line-height: 1;
  color: var(--green);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.2s;
}
.fr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.fr-faq-item.open .fr-faq-a {
  max-height: 400px;
}
.fr-faq-a p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.75;
  padding: 0 18px 16px;
  margin: 0;
}

/* Disclaimer */
.fr-disclaimer {
  font-size: 13px;
  color: var(--text-3);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  line-height: 1.75;
  margin-top: 32px;
  margin-bottom: 8px;
}

/* ── Full review responsive ───────────────── */
@media (max-width: 640px) {
  .fr-stats { grid-template-columns: repeat(2, 1fr); }
  .fr-platforms { grid-template-columns: 1fr; }
  .fr-dw-grid { grid-template-columns: 1fr; }
  .fr-table th, .fr-table td { padding: 9px 10px; font-size: 12.5px; }
  .fr-verdict { padding: 20px 16px; }
  .fr-kv .fr-key { width: auto; }
}

/* ── Review sidebar banners ──────────────────────────────────── */
.review-with-sidebars {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.review-with-sidebars .legal-body {
  flex: 1;
  max-width: 820px;
  margin: 0;
}
.review-sidebar {
  flex-shrink: 0;
  padding: 24px 12px 0;
  align-self: flex-start;
  position: sticky;
  top: 0;
}
.review-sidebar-left {
  width: 320px;
  padding-top: 75px;
}
.review-sidebar-right {
  width: 500px;
  padding-top: 75px;
}
.review-sidebar-right .review-banner-card {
  max-height: calc(100vh - 200px);
  width: auto;
  max-width: 100%;
}
.review-sidebar a { display: block; }
.review-sidebar a + a { margin-top: 20px; }
.review-sidebar-left img { width: 160px; max-width: 160px; margin: 0 auto; }
.review-sidebar-right img { width: 100%; }
.rbc-no-cta { background-color: #0d1526; }
.rbc-no-cta .rbc-overlay { background: transparent; }
.rbc-no-cta .rbc-content { display: none; }
.review-sidebar img {
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-sidebar img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
/* ── Sidebar HTML banner card ────────────────────────────────── */
.review-banner-card {
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.rbc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.4s ease;
}
.review-banner-card:hover .rbc-bg { transform: scale(1.04); }
.rbc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.75) 100%);
}
.rbc-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 16px;
}
.rbc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 5px;
}
.rbc-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  margin-bottom: 14px;
}
.rbc-btn {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 11px;
  align-self: flex-start;
  transition: background 0.2s;
}
.review-banner-card:hover .rbc-btn { background: #1255b8; }
.review-sidebar-right .review-banner-card .rbc-btn {
  position: absolute;
  top: 88%;
  left: 16px;
}
.review-sidebar-left .review-banner-card {
  width: 160px;
  margin: 0 auto;
  aspect-ratio: 160/600;
}
.review-sidebar-left .review-banner-card .rbc-overlay { background: transparent; }
.review-sidebar-left .review-banner-card .rbc-content { justify-content: flex-start; }
.review-sidebar-left .review-banner-card .rbc-btn {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.sidebar-img-wrap { display: flex; flex-direction: column; align-items: center; }
.sidebar-img-cta {
  display: block;
  width: 160px;
  text-align: center;
  background: #1a73e8;
  color: #fff;
  padding: 7px 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-img-cta:hover { background: #1255b8; }
@media (max-width: 1460px) {
  .review-sidebar { display: none; }
}

/* ── Review overlay: mobile-friendly ────────────────────────── */
@media (max-width: 768px) {
  /* Body padding */
  #review-overlay-dynamic .legal-body { padding: 20px 14px 60px; }

  /* Hero header: stack on small screens */
  #review-overlay-dynamic .review-hero-header {
    flex-wrap: wrap; gap: 12px; padding: 18px 16px;
  }

  /* Section headings */
  #review-overlay-dynamic .fr-h2 { font-size: 15px; margin: 28px 0 10px; }

  /* All table wraps: horizontal scroll instead of clip */
  #review-overlay-dynamic .fr-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #review-overlay-dynamic .fr-scroll { overflow-x: auto; }

  /* Multi-column tables: enforce min-width so scroll triggers */
  #review-overlay-dynamic .fr-table:not(.fr-kv) { min-width: 480px; }

  /* First column: prevent empty-th column from collapsing to zero on mobile */
  #review-overlay-dynamic .fr-table:not(.fr-kv) th:first-child,
  #review-overlay-dynamic .fr-table:not(.fr-kv) td:first-child { min-width: 110px; }

  /* Scrollbar styling — thin and unobtrusive */
  #review-overlay-dynamic .fr-table-wrap::-webkit-scrollbar { height: 4px; }
  #review-overlay-dynamic .fr-table-wrap::-webkit-scrollbar-track { background: #e8edf6; }
  #review-overlay-dynamic .fr-table-wrap::-webkit-scrollbar-thumb { background: #b0bfd4; border-radius: 2px; }

  /* KV tables: stack key above value */
  #review-overlay-dynamic .fr-kv,
  #review-overlay-dynamic .fr-kv tbody { display: block; width: 100%; }
  #review-overlay-dynamic .fr-kv tr {
    display: flex; flex-direction: column;
    border-bottom: 1px solid #dde3ee; padding: 10px 12px;
  }
  #review-overlay-dynamic .fr-kv tr:last-child { border-bottom: none; }
  #review-overlay-dynamic .fr-kv td {
    display: block; width: 100% !important;
    padding: 0; border: none;
  }
  #review-overlay-dynamic .fr-kv .fr-key {
    width: 100% !important; margin-bottom: 4px;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  }

  /* Pros / cons grid: single column */
  #review-overlay-dynamic .review-grid { grid-template-columns: 1fr; }
  #review-overlay-dynamic .review-details-grid { grid-template-columns: 1fr 1fr; }

  /* Platform cards: single column */
  #review-overlay-dynamic .fr-platforms { grid-template-columns: 1fr; }

  /* D&W columns: stack */
  #review-overlay-dynamic .fr-dw-grid { grid-template-columns: 1fr; }

  /* Stats: 2×2 grid */
  #review-overlay-dynamic .fr-stats { grid-template-columns: repeat(2, 1fr); }
  #review-overlay-dynamic .fr-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  #review-overlay-dynamic .fr-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  #review-overlay-dynamic .fr-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* CTA bar: stack buttons */
  #review-overlay-dynamic .review-cta-bar { flex-direction: column; }

  /* FAQ answer max-height: allow more room on mobile */
  #review-overlay-dynamic .fr-faq-item.open .fr-faq-a { max-height: 600px; }
}

/* ── Review Overlay: Extra small screens (≤ 480px) ─────────── */
@media (max-width: 480px) {
  /* review-with-sidebars: ensure full width, no flex oddities */
  .review-with-sidebars { display: block; width: 100%; }

  /* Tighter body padding */
  #review-overlay-dynamic .legal-body { padding: 16px 12px 56px; }

  /* Hero header dark card: slim padding, full-width */
  #review-overlay-dynamic .review-hero-header {
    padding: 14px 12px;
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Logo smaller on tiny screens */
  #review-overlay-dynamic .review-logo-img { height: 36px; width: 96px; }

  /* Rating badge: full-width row */
  #review-overlay-dynamic .review-rating-badge {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  /* Detail cards: force 1 column */
  #review-overlay-dynamic .review-details-grid { grid-template-columns: 1fr; }

  /* Stats: 2 columns */
  #review-overlay-dynamic .fr-stats { grid-template-columns: repeat(2, 1fr); }

  /* Table wraps: ensure horizontal scroll, no page overflow */
  #review-overlay-dynamic .fr-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  /* CTA bar buttons: full width */
  #review-overlay-dynamic .review-cta-bar .btn { width: 100%; text-align: center; }
}

/* ── Review Overlay Light Theme ──────────────────────────────── */
#review-overlay-dynamic {
  background: #eef1f7;
}

/* Hero header: dark card on light page */
#review-overlay-dynamic .review-hero-header {
  background: #162035;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.08);
}
#review-overlay-dynamic .review-logo-link { display: inline-flex; flex-shrink: 0; }
#review-overlay-dynamic .review-broker-meta { color: #8ba4cc; font-size: 13px; flex: 1; }
#review-overlay-dynamic .review-rating-badge {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
#review-overlay-dynamic .review-rating-sub { color: #8ba4cc; }

/* Labels & headings */
#review-overlay-dynamic .legal-hero-label { color: #1a2e4a; }
#review-overlay-dynamic .fr-verdict-label { color: #1a2e4a; }
#review-overlay-dynamic .fr-verdict-badge { color: var(--green); }
#review-overlay-dynamic .fr-h2,
#review-overlay-dynamic .legal-body h2 { color: #1a2e4a; }
#review-overlay-dynamic .legal-body h2::before { background: var(--neon); }

/* Body text */
#review-overlay-dynamic .fr-text,
#review-overlay-dynamic .legal-body p { color: #3d5470; }

/* Verdict box */
#review-overlay-dynamic .fr-verdict { background: #ffffff; border-color: #dde3ee; }
#review-overlay-dynamic .fr-verdict-text { color: #3d5470; }

/* Stat counters — keep dark card feel */
#review-overlay-dynamic .fr-stats { background: #162035; border-radius: 12px; overflow: hidden; }
#review-overlay-dynamic .fr-stat { border-color: rgba(255,255,255,0.08); }
#review-overlay-dynamic .fr-stat-label { color: #8ba4cc; }

/* Tables */
#review-overlay-dynamic .fr-table-wrap { background: #ffffff; border: 1px solid #dde3ee; overflow-x: auto; }
#review-overlay-dynamic .fr-table th { background: #f4f7fc; color: #4a5f7a; border-bottom-color: #dde3ee; }
#review-overlay-dynamic .fr-table td { border-color: #edf0f7; color: #1a2e4a; }
#review-overlay-dynamic .fr-table tr:hover td { background: inherit; }
#review-overlay-dynamic .fr-kv .fr-key { color: #6a85a8; }
#review-overlay-dynamic .fr-kv td { word-break: break-word; overflow-wrap: break-word; white-space: normal; }
/* 3-line max per cell */
#review-overlay-dynamic .fr-table td .cell-clamp,
#review-overlay-dynamic .fr-table th .cell-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Tier chips */
#review-overlay-dynamic .fr-tier.t1,
#review-overlay-dynamic .fr-tier.t2,
#review-overlay-dynamic .fr-tier.t3 { background: #e8edf6; color: #4a5f7a; border-color: #c8d5e8; }

/* Pros / Cons */
#review-overlay-dynamic .review-pros,
#review-overlay-dynamic .review-cons { background: #ffffff; border-color: #dde3ee; border-top-color: #dde3ee; }
#review-overlay-dynamic .review-list li { color: #3d5470; }

/* Detail cards */
#review-overlay-dynamic .review-detail-card { background: #ffffff; border-color: #dde3ee; }
#review-overlay-dynamic .review-detail-label { color: #6a85a8; }
#review-overlay-dynamic .review-detail-value { color: #1a2e4a; }

/* Platform cards */
#review-overlay-dynamic .fr-platform { background: #ffffff; border-color: #dde3ee; }
#review-overlay-dynamic .fr-platform-name { color: #1a2e4a; }
#review-overlay-dynamic .fr-platform-desc { color: #3d5470; }

/* Deposits & Withdrawals */
#review-overlay-dynamic .fr-dw-col { background: #ffffff; border-color: #dde3ee; }
#review-overlay-dynamic .fr-dw-title { color: #1a2e4a; }
#review-overlay-dynamic .fr-dw-row { border-color: #edf0f7; }
#review-overlay-dynamic .fr-dw-row .fr-key { color: #6a85a8; }

/* FAQ */
#review-overlay-dynamic .fr-faq-item { background: #ffffff; border-color: #dde3ee; }
#review-overlay-dynamic .fr-faq-q { color: #1a2e4a; }
#review-overlay-dynamic .fr-faq-a p { color: #3d5470; }

/* Note / footnote / disclaimer */
#review-overlay-dynamic .fr-note { background: #f0f4fb; border-color: #cdd6e8; color: #000000 !important; }
#review-overlay-dynamic .fr-note * { color: #000000 !important; }
#review-overlay-dynamic .fr-footnote { color: #2a3e5c; }
#review-overlay-dynamic .fr-disclaimer { background: #f0f4fb; border-color: #cdd6e8; color: #000000 !important; font-size: 13px; }
#review-overlay-dynamic .fr-disclaimer * { color: #000000 !important; }

/* Protection list */
#review-overlay-dynamic .fr-protection { color: #3d5470; }

/* CTA bar buttons */
#review-overlay-dynamic .btn-contact-green {
  background: #00c060;
  color: #ffffff !important;
  border-color: #00c060;
  font-weight: 700;
  font-size: 15px;
}
#review-overlay-dynamic .btn-contact-green:hover {
  background: #00a050;
  border-color: #00a050;
  color: #ffffff !important;
}
#review-overlay-dynamic .btn-outline {
  color: #000000 !important;
  border-color: #aabbcc;
  font-weight: 600;
}
#review-overlay-dynamic .btn-outline:hover {
  color: #000000 !important;
  border-color: #000000;
  background: rgba(0,0,0,0.04);
}

/* CTA bar */
#review-overlay-dynamic .review-cta-bar { border-top-color: #dde3ee; }

/* ── Cookie consent banner (GDPR) ───────────────────── */
#fdp-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 100002;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 28px rgba(0,0,0,0.45);
  padding: 16px 24px;
  font-family: var(--font-b);
}
.fdp-cc-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: space-between;
}
.fdp-cc-text {
  flex: 1; min-width: 240px;
  color: var(--text-2); font-size: 13px; line-height: 1.6;
}
.fdp-cc-text a { color: var(--neon); text-decoration: none; font-weight: 600; }
.fdp-cc-text a:hover { text-decoration: underline; }
.fdp-cc-actions { display: flex; gap: 10px; flex-shrink: 0; }
.fdp-cc-btn {
  cursor: pointer; font-family: inherit; font-weight: 700; font-size: 13px;
  padding: 10px 20px; border-radius: var(--radius-s);
  border: 1px solid transparent; transition: opacity 0.2s, background 0.2s;
}
.fdp-cc-reject {
  background: transparent; color: var(--text-1);
  border-color: rgba(255,255,255,0.25);
}
.fdp-cc-reject:hover { background: rgba(255,255,255,0.06); }
.fdp-cc-accept { background: var(--neon); color: #062029; }
.fdp-cc-accept:hover { opacity: 0.88; }
@media (max-width: 600px) {
  #fdp-cookie-banner { padding: 14px 16px; }
  .fdp-cc-inner { gap: 14px; }
  .fdp-cc-actions { width: 100%; }
  .fdp-cc-btn { flex: 1; padding: 12px 10px; }
}

