/* ═══════════════════════════════════════════════
   OurDream AI Coupons — Main Stylesheet v5
   Colors: #000 / #09090b / #fafafa / #ec4899 / #f36ab1
═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #09090b;
  color: #e4e4e7;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
a { text-decoration: none; color: inherit; transition: all .22s; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ═══════════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════════ */
:root {
  --pink:        #ec4899;
  --pink-btn:    #f36ab1;
  --pink-light:  #f9a8d4;
  --pink-dark:   #be185d;
  --success:     #22c55e;
  --danger:      #ef4444;
  --gold:        #f59e0b;

  /* Dark section palette */
  --d-bg1: #000000;
  --d-bg2: #09090b;
  --d-card:#18181b;
  --d-card2:#1c1c1f;
  --d-border:#27272a;
  --d-text: #e4e4e7;
  --d-text2:#a1a1aa;
  --d-text3:#71717a;

  /* Light section palette */
  --l-bg:   #fafafa;
  --l-card: #ffffff;
  --l-card2:#f4f4f5;
  --l-border:#e4e4e7;
  --l-text: #09090b;
  --l-text2:#3f3f46;
  --l-text3:#71717a;

  --radius:     12px;
  --radius-lg:  16px;
  --shadow-dark:0 6px 24px rgba(0,0,0,.55);
  --shadow-light:0 4px 16px rgba(0,0,0,.1);
  --glow:       0 0 24px rgba(236,72,153,.28);
  --transition: all .22s cubic-bezier(.4,0,.2,1);
  --header-h:   64px;
}

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center{ text-align: center; }
.mt-1       { margin-top: .75rem; }
.mt-2       { margin-top: 1.5rem; }
.text-red   { color: var(--danger)  !important; }
.text-green { color: var(--success) !important; }

.gradient-text {
  background: linear-gradient(135deg, #f9a8d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   SECTION SYSTEM — compact
═══════════════════════════════════════════════ */
.section { padding: 44px 0; }

/* Dark sections */
.dark-section     { background: var(--d-bg2); }
.dark-section-alt { background: var(--d-bg1); }
.bg-dark-alt      { background: var(--d-bg1); }

/* Light sections */
.light-section { background: var(--l-bg); }

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  padding: 3px 13px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
/* Dark section label */
.dark-section     .section-label,
.dark-section-alt .section-label {
  background: rgba(236,72,153,.12);
  color: var(--pink);
  border: 1px solid rgba(236,72,153,.3);
}
/* Light section label */
.light-section .section-label {
  background: rgba(236,72,153,.1);
  color: var(--pink-dark);
  border: 1px solid rgba(236,72,153,.3);
}
/* standalone section-label (inside content-two-col col-text) */
.col-text .section-label {
  background: rgba(236,72,153,.12);
  color: var(--pink);
  border: 1px solid rgba(236,72,153,.3);
}
.light-section .col-text .section-label {
  background: rgba(236,72,153,.1);
  color: var(--pink-dark);
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
/* section-title and section-sub are aliases for section-header h2/p */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700; line-height: 1.25; margin-bottom: 8px;
}
.section-sub {
  font-size: .87rem; line-height: 1.65; margin-bottom: 0;
}
.dark-section     .section-header h2,
.dark-section-alt .section-header h2 { color: #fff; }
.light-section    .section-header h2 { color: var(--l-text); }
.dark-section     .section-title,
.dark-section-alt .section-title { color: #fff; }
.light-section    .section-title    { color: var(--l-text); }

.section-header p { font-size: .87rem; line-height: 1.65; }
.dark-section     .section-header p,
.dark-section-alt .section-header p  { color: var(--d-text2); }
.light-section    .section-header p  { color: var(--l-text2); }
.dark-section     .section-sub,
.dark-section-alt .section-sub { color: var(--d-text2); }
.light-section    .section-sub { color: var(--l-text2); }

/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #7f1d4b, #be185d, #ec4899);
  padding: 7px 0;
  font-size: .82rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}
.topbar-text { color: #fff; }
.topbar-cta {
  background: rgba(255,255,255,.22);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.4);
  padding: 3px 13px;
  border-radius: 99px;
  font-weight: 700;
  font-size: .76rem;
  white-space: nowrap;
}
.topbar-cta:hover { background: rgba(255,255,255,.35); }
.topbar-close {
  background: none; border: none;
  color: rgba(255,255,255,.8);
  cursor: pointer; font-size: .9rem;
  padding: 2px 5px; margin-left: auto;
}
.topbar.hidden { display: none; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(9,9,11,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #27272a;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: var(--transition);
}
.site-header.scrolled { background: rgba(0,0,0,.98); box-shadow: 0 2px 20px rgba(0,0,0,.6); }
.header-inner { display: flex; align-items: center; gap: 20px; width: 100%; }

.logo { display: flex; align-items: center; gap: 7px; }
.logo-icon  { font-size: 1.2rem; color: var(--pink); }
.logo-text  { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; white-space: nowrap; }
.logo-accent{ color: var(--pink); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 0; align-items: center; }
.main-nav a {
  color: #a1a1aa; font-size: .86rem; font-weight: 500;
  padding: 5px 12px; border-radius: 7px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: #fff; background: rgba(236,72,153,.14); }
.btn-header { margin-left: 10px; white-space: nowrap; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px; margin-left: auto;
}
.hamburger span { width: 21px; height: 2px; background: #e4e4e7; border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: #09090b;
  border-bottom: 1px solid #27272a;
  padding: 14px 20px; z-index: 998;
  animation: slideDown .2s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav ul li a {
  display: block; padding: 9px 12px; border-radius: 7px;
  color: #e4e4e7; font-weight: 500; font-size: .92rem;
}
.mobile-nav ul li a:hover { background: rgba(236,72,153,.1); color: var(--pink); }
.btn-full { width: 100%; text-align: center; display: block; }
@keyframes slideDown { from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 20px; border-radius: 9px;
  font-weight: 600; font-size: .87rem; cursor: pointer;
  border: none; transition: var(--transition);
  white-space: nowrap; text-decoration: none; line-height: 1.3;
}
.btn-primary {
  background: var(--pink-btn);
  color: #fff !important;
  box-shadow: 0 3px 12px rgba(243,106,177,.3);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(236,72,153,.45);
}
.btn-secondary {
  background: var(--d-card);
  color: var(--pink) !important;
  border: 1px solid var(--pink);
}
.btn-secondary:hover { background: rgba(236,72,153,.1); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--pink) !important;
  border: 2px solid var(--pink);
}
.btn-outline:hover { background: rgba(236,72,153,.1); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #e4e4e7 !important;
  border: 1px solid #3f3f46;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--pink); color: var(--pink) !important; }

.btn-danger { background: #dc2626; color: #fff !important; }
.btn-danger:hover { background: #b91c1c; transform: translateY(-1px); }

/* Light section button fixes */
.light-section .btn-ghost {
  background: #f4f4f5;
  color: var(--l-text2) !important;
  border-color: var(--l-border);
}
.light-section .btn-ghost:hover { border-color: var(--pink); color: var(--pink-dark) !important; background: rgba(236,72,153,.06); }
.light-section .btn-outline { color: var(--pink-dark) !important; border-color: var(--pink-dark); }
.light-section .btn-secondary { background: #f4f4f5; color: var(--pink-dark) !important; border-color: var(--pink-dark); }

.btn-sm  { padding: 6px 14px; font-size: .78rem; border-radius: 7px; }
.btn-lg  { padding: 11px 26px; font-size: .96rem; }
.btn-xl  { padding: 13px 32px; font-size: 1rem; border-radius: 11px; }
.btn-glow{ box-shadow: var(--glow), 0 3px 12px rgba(243,106,177,.28); }
.btn-glow:hover { box-shadow: 0 0 36px rgba(236,72,153,.5), 0 5px 18px rgba(243,106,177,.38); }

/* ═══════════════════════════════════════════════
   HERO — COMPACT
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 36px 0 32px;
  background: var(--d-bg2);
  border-bottom: 1px solid #27272a;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 75% at 68% 50%, rgba(236,72,153,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-overlay { display: none; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(236,72,153,.12);
  color: var(--pink);
  border: 1px solid rgba(236,72,153,.3);
  padding: 3px 12px;
  border-radius: 99px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 10px;
}
.hero-desc {
  color: var(--d-text2);
  font-size: .88rem;
  margin-bottom: 14px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-stats {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.stat {
  display: flex; flex-direction: column;
  padding: 6px 12px;
  background: rgba(236,72,153,.08);
  border: 1px solid rgba(236,72,153,.22);
  border-radius: var(--radius);
}
.stat strong { font-size: 1rem; color: var(--pink); font-weight: 800; line-height: 1.2; }
.stat span   { font-size: .66rem; color: var(--d-text3); }

.hero-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.hero-trust {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: .74rem; color: var(--d-text3);
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }
.hero-trust i { color: var(--success); }

.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 44px rgba(0,0,0,.65);
  border: 1px solid rgba(236,72,153,.18);
}
.hero-badge-float {
  position: absolute;
  display: flex; align-items: center; gap: 5px;
  background: var(--pink-btn);
  color: #fff !important;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: .74rem; font-weight: 700;
  box-shadow: 0 3px 14px rgba(236,72,153,.38);
  white-space: nowrap;
}
.badge-top    { top: 10px; left: -8px; }
.badge-bottom { bottom: 14px; right: -8px; }

/* ═══════════════════════════════════════════════
   TINDER SWIPE CAROUSEL
═══════════════════════════════════════════════ */
.swipe-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 420px;
  user-select: none;
  touch-action: none;
}

/* Stack wrapper — clips cards */
.swipe-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual card */
.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: grab;
  box-shadow: 0 14px 44px rgba(0,0,0,.65);
  border: 1px solid rgba(236,72,153,.18);
  transition: transform .15s ease, box-shadow .15s ease;
  will-change: transform;
  background: var(--d-card);
}
.swipe-card:active { cursor: grabbing; }

/* Back cards are slightly scaled/offset */
.swipe-card:nth-child(2) {
  transform: translateY(8px) scale(0.96);
  z-index: 8;
}
.swipe-card:nth-child(3) {
  transform: translateY(16px) scale(0.92);
  z-index: 7;
}
.swipe-card:nth-child(n+4) {
  transform: translateY(22px) scale(0.89);
  z-index: 6;
}

/* Top active card */
.swipe-card.top {
  z-index: 10;
  transform: none;
}

/* Image fills card */
.swipe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  pointer-events: none;
}

/* Overlay gradient at bottom */
.swipe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  pointer-events: none;
}

/* Name label inside card */
.swipe-card-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 14px 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  pointer-events: none;
}
.swipe-card-name span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-top: 1px;
}

/* LIKE / NOPE stamp overlays */
.swipe-stamp {
  position: absolute;
  top: 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 7px;
  border-width: 3px;
  border-style: solid;
  opacity: 0;
  transition: opacity .05s;
  pointer-events: none;
}
.swipe-stamp.like {
  left: 16px;
  color: #22c55e;
  border-color: #22c55e;
  transform: rotate(-18deg);
}
.swipe-stamp.nope {
  right: 16px;
  color: #ef4444;
  border-color: #ef4444;
  transform: rotate(18deg);
}

/* Float badges on top of carousel */
.swipe-carousel .hero-badge-float { z-index: 12; }

/* Action buttons row */
.swipe-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.swipe-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.swipe-btn-nope {
  background: rgba(239,68,68,.12);
  color: #ef4444;
  border: 1.5px solid rgba(239,68,68,.3);
}
.swipe-btn-nope:hover { background: rgba(239,68,68,.24); transform: scale(1.08); }
.swipe-btn-like {
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1.5px solid rgba(34,197,94,.3);
}
.swipe-btn-like:hover { background: rgba(34,197,94,.24); transform: scale(1.08); }
.swipe-btn-undo {
  width: 36px; height: 36px; font-size: .78rem;
  background: rgba(236,72,153,.1);
  color: var(--pink);
  border: 1.5px solid rgba(236,72,153,.3);
}
.swipe-btn-undo:hover { background: rgba(236,72,153,.22); transform: scale(1.08); }

/* Dot indicators */
.swipe-dots {
  display: flex; justify-content: center; gap: 5px;
  margin-top: 7px;
}
.swipe-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--d-border);
  transition: background .2s, transform .2s;
}
.swipe-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════
   DEAL TIMER BAR
═══════════════════════════════════════════════ */
.deal-timer-bar {
  background: var(--d-bg1);
  border-bottom: 1px solid #27272a;
  padding: 9px 0;
}
.deal-timer-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.deal-timer-left {
  display: flex; align-items: center; gap: 6px;
  color: var(--pink); font-weight: 600; font-size: .85rem;
}
.countdown { display: flex; align-items: center; gap: 4px; }
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(236,72,153,.1);
  border: 1px solid rgba(236,72,153,.25);
  padding: 4px 10px; border-radius: 7px; min-width: 48px;
}
.cd-unit span  { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1; }
.cd-unit small { font-size: .58rem; color: var(--d-text3); text-transform: uppercase; letter-spacing: .05em; }
.cd-sep        { font-size: 1.2rem; font-weight: 800; color: var(--pink); }

/* ═══════════════════════════════════════════════
   DISCOUNT PILLS
═══════════════════════════════════════════════ */
.deal-badge {
  display: inline-block; padding: 2px 8px; border-radius: 5px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  margin-right: 6px; vertical-align: middle;
}
.deal-badge.hot { background: var(--pink); color: #fff; }

.discount-pill {
  display: inline-block; padding: 2px 10px; border-radius: 99px;
  font-weight: 800; font-size: .78rem;
}
.discount-pill          { background: rgba(236,72,153,.15); color: #f9a8d4; border: 1px solid rgba(236,72,153,.28); }
.discount-pill.yellow   { background: rgba(245,158,11,.12); color: #fcd34d; border: 1px solid rgba(245,158,11,.28); }
.discount-pill.purple   { background: rgba(139,92,246,.12); color: #c4b5fd; border: 1px solid rgba(139,92,246,.22); }
.discount-pill.green    { background: rgba(34,197,94,.12);  color: #86efac; border: 1px solid rgba(34,197,94,.22); }
.discount-pill.blue     { background: rgba(59,130,246,.12); color: #93c5fd; border: 1px solid rgba(59,130,246,.22); }
.discount-pill.gray     { background: rgba(255,255,255,.07);color: #a1a1aa; border: 1px solid #3f3f46; }

/* Light section pill overrides */
.light-section .discount-pill          { color: #be185d; }
.light-section .discount-pill.yellow   { color: #b45309; }
.light-section .discount-pill.purple   { color: #6d28d9; }
.light-section .discount-pill.green    { color: #15803d; }
.light-section .discount-pill.blue     { color: #1d4ed8; }
.light-section .discount-pill.gray     { color: var(--l-text3); border-color: var(--l-border); background: #f4f4f5; }

/* ═══════════════════════════════════════════════
   COUPON TABLE
═══════════════════════════════════════════════ */
.coupon-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid #27272a; }

/* Dark context */
.dark-section .coupon-table-wrap,
.dark-section-alt .coupon-table-wrap { box-shadow: var(--shadow-dark); border-color: #27272a; }
.dark-section .coupon-table,
.dark-section-alt .coupon-table { background: var(--d-card); border-radius: var(--radius-lg); overflow: hidden; }
.dark-section .coupon-table thead tr,
.dark-section-alt .coupon-table thead tr { background: #000; }
.dark-section .coupon-table th,
.dark-section-alt .coupon-table th { color: var(--d-text3); border-bottom: 1px solid #27272a; }
.dark-section .coupon-table td,
.dark-section-alt .coupon-table td { color: var(--d-text); border-bottom: 1px solid #27272a; }
.dark-section .coupon-table tbody tr:hover,
.dark-section-alt .coupon-table tbody tr:hover { background: rgba(236,72,153,.07); }
.dark-section .hot-row,
.dark-section-alt .hot-row { background: rgba(236,72,153,.07) !important; }

/* Light context */
.light-section .coupon-table-wrap { border-color: var(--l-border); box-shadow: var(--shadow-light); }
.light-section .coupon-table { background: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.light-section .coupon-table thead tr { background: #f4f4f5; }
.light-section .coupon-table th { color: var(--l-text2); border-bottom: 1px solid var(--l-border); }
.light-section .coupon-table td { color: var(--l-text); border-bottom: 1px solid #f0f0f0; }
.light-section .coupon-table tbody tr:hover { background: rgba(236,72,153,.04); }
.light-section .hot-row { background: rgba(236,72,153,.05) !important; }

.coupon-table th { padding: 11px 14px; font-size: .72rem; font-weight: 700; text-align: left; white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; }
.coupon-table td { padding: 10px 14px; font-size: .83rem; vertical-align: middle; }
.coupon-table tbody tr { transition: var(--transition); }

/* ═══════════════════════════════════════════════
   COUPON CARDS
═══════════════════════════════════════════════ */
.coupon-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.coupon-card {
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: var(--transition);
}
.coupon-card:hover { transform: translateY(-2px); }

/* Dark coupon card */
.dark-section .coupon-card,
.dark-section-alt .coupon-card {
  background: var(--d-card);
  border: 1px solid #27272a;
  box-shadow: var(--shadow-dark);
}
.dark-section .coupon-card:hover,
.dark-section-alt .coupon-card:hover { border-color: rgba(236,72,153,.4); box-shadow: var(--glow); }
.dark-section .coupon-card.featured,
.dark-section-alt .coupon-card.featured { background: #111113; border-color: var(--pink); box-shadow: var(--glow); }

/* Light coupon card */
.light-section .coupon-card {
  background: #fff;
  border: 1px solid var(--l-border);
  box-shadow: var(--shadow-light);
}
.light-section .coupon-card:hover { border-color: rgba(236,72,153,.4); box-shadow: 0 6px 20px rgba(236,72,153,.12); }
.light-section .coupon-card.featured { background: #fff; border-color: var(--pink); box-shadow: 0 0 20px rgba(236,72,153,.18); }

.coupon-ribbon {
  position: absolute; top: -1px; right: 16px;
  background: var(--pink-btn); color: #fff !important;
  padding: 3px 12px 6px; font-size: .67rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  clip-path: polygon(0 0,100% 0,100% 100%,50% 80%,0 100%);
}
.coupon-card-top { text-align: center; }
.coupon-discount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #f9a8d4, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coupon-discount.yellow { background: linear-gradient(135deg,#fcd34d,#f59e0b); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; }
.coupon-discount.purple { background: linear-gradient(135deg,#c4b5fd,#8b5cf6); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; }

/* Plan name */
.dark-section .coupon-plan,
.dark-section-alt .coupon-plan { color: #fff; font-weight: 700; font-size: .88rem; margin-top: 3px; }
.light-section .coupon-plan    { color: var(--l-text); font-weight: 700; font-size: .88rem; margin-top: 3px; }

/* Code box */
.coupon-code-box {
  border-radius: var(--radius);
  padding: 9px 11px;
  text-align: center;
  border: 1px dashed;
}
.dark-section .coupon-code-box,
.dark-section-alt .coupon-code-box { background: #111113; border-color: rgba(236,72,153,.3); }
.light-section .coupon-code-box    { background: #f9f9f9; border-color: rgba(236,72,153,.3); }

.code-label { font-size: .67rem; display: block; margin-bottom: 3px; }
.dark-section .code-label,
.dark-section-alt .code-label { color: var(--d-text3); }
.light-section .code-label    { color: var(--l-text3); }

.code-display {
  font-family: 'Space Grotesk', monospace;
  font-weight: 800; font-size: .93rem;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 5px;
}
.light-section .code-display { color: var(--pink-dark); }

.copy-btn {
  border-radius: 6px; cursor: pointer;
  font-size: .72rem; font-weight: 600;
  padding: 3px 11px;
  transition: var(--transition);
}
.dark-section .copy-btn,
.dark-section-alt .copy-btn { background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.22); color: var(--d-text2); }
.dark-section .copy-btn:hover,
.dark-section-alt .copy-btn:hover { background: rgba(236,72,153,.22); color: #fff; }
.light-section .copy-btn { background: rgba(236,72,153,.08); border: 1px solid rgba(236,72,153,.22); color: var(--l-text2); }
.light-section .copy-btn:hover { background: rgba(236,72,153,.18); color: var(--pink-dark); }

/* Coupon perks */
.coupon-perks { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.coupon-perks li { display: flex; align-items: center; gap: 6px; font-size: .81rem; }
.dark-section .coupon-perks li,
.dark-section-alt .coupon-perks li { color: var(--d-text2); }
.light-section .coupon-perks li    { color: var(--l-text2); }
.coupon-perks .fa-check  { color: var(--success) !important; }
.coupon-perks .fa-times  { color: #a1a1aa !important; }

.coupon-note { font-size: .67rem; text-align: center; }
.dark-section .coupon-note,
.dark-section-alt .coupon-note { color: var(--d-text3); }
.light-section .coupon-note    { color: var(--l-text3); }

/* ═══════════════════════════════════════════════
   STEPS / HOW TO REDEEM
═══════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-2px); }

.dark-section .step-card,
.dark-section-alt .step-card { background: var(--d-card); border: 1px solid #27272a; }
.dark-section .step-card:hover,
.dark-section-alt .step-card:hover { border-color: rgba(236,72,153,.38); box-shadow: var(--shadow-dark); }
.light-section .step-card { background: #fff; border: 1px solid var(--l-border); box-shadow: var(--shadow-light); }
.light-section .step-card:hover { border-color: rgba(236,72,153,.4); }

.step-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 0; }
.step-card > *:not(img) { padding-left: 14px; padding-right: 14px; }
.step-card h3 { font-size: .87rem; font-weight: 700; margin: 9px 0 4px; }
.step-card p  { font-size: .78rem; padding-bottom: 14px; line-height: 1.55; }

.dark-section .step-card h3,
.dark-section-alt .step-card h3 { color: #fff; }
.dark-section .step-card p,
.dark-section-alt .step-card p  { color: var(--d-text3); }
.light-section .step-card h3    { color: var(--l-text); }
.light-section .step-card p     { color: var(--l-text2); }

.step-num {
  position: absolute; top: 8px; left: 8px;
  background: var(--pink-btn); color: #fff !important;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem; z-index: 2;
}
.step-num.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(236,72,153,.4)}50%{box-shadow:0 0 0 8px rgba(236,72,153,0)} }

.cta-step {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 24px 16px;
}
.dark-section .cta-step,
.dark-section-alt .cta-step { background: #111113; border-color: rgba(236,72,153,.3); }
.light-section .cta-step { background: #fdf2f8; border-color: rgba(236,72,153,.3); }
.cta-step h3 { font-size: .95rem; margin-bottom: 6px; }
.cta-step p  { font-size: .8rem; margin-bottom: 12px; }
.dark-section .cta-step h3,
.dark-section-alt .cta-step h3 { color: #fff; }
.dark-section .cta-step p,
.dark-section-alt .cta-step p  { color: var(--d-text3); }
.light-section .cta-step h3    { color: var(--l-text); }
.light-section .cta-step p     { color: var(--l-text2); }

/* ═══════════════════════════════════════════════
   VIDEO SHOWCASE
═══════════════════════════════════════════════ */
.video-showcase-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; align-items: start; }
.video-main video, .video-thumb-wrap video {
  width: 100%; border-radius: var(--radius-lg); background: #000;
}
.dark-section .video-main video,
.dark-section-alt .video-main video,
.dark-section .video-thumb-wrap video,
.dark-section-alt .video-thumb-wrap video { border: 1px solid #27272a; box-shadow: var(--shadow-dark); }
.light-section .video-main video,
.light-section .video-thumb-wrap video    { border: 1px solid var(--l-border); box-shadow: var(--shadow-light); }
.video-main video { max-height: 360px; }
.video-thumb-wrap video { max-height: 100px; }
.video-side { display: flex; flex-direction: column; gap: 8px; }
.video-caption { font-size: .7rem; margin-top: 3px; text-align: center; }
.dark-section .video-caption,
.dark-section-alt .video-caption { color: var(--d-text3); }
.light-section .video-caption    { color: var(--l-text3); }

/* ═══════════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card.featured { transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-2px); }

.dark-section .pricing-card,
.dark-section-alt .pricing-card { background: var(--d-card); border: 1px solid #27272a; }
.dark-section .pricing-card:hover,
.dark-section-alt .pricing-card:hover { border-color: rgba(236,72,153,.35); box-shadow: var(--shadow-dark); }
.dark-section .pricing-card.featured,
.dark-section-alt .pricing-card.featured { background: #111113; border: 2px solid var(--pink); box-shadow: var(--glow); }

.light-section .pricing-card { background: #fff; border: 1px solid var(--l-border); box-shadow: var(--shadow-light); }
.light-section .pricing-card:hover { border-color: rgba(236,72,153,.35); box-shadow: 0 6px 20px rgba(236,72,153,.1); }
.light-section .pricing-card.featured { background: #fff5f9; border: 2px solid var(--pink); box-shadow: 0 0 22px rgba(236,72,153,.18); }

.plan-ribbon {
  position: absolute; top: -1px; right: 16px;
  background: var(--pink-btn); color: #fff !important;
  padding: 3px 12px 6px; font-size: .67rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .07em;
  clip-path: polygon(0 0,100% 0,100% 100%,50% 80%,0 100%);
}
.plan-badge-sm {
  display: inline-block; padding: 2px 10px; border-radius: 99px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; width: fit-content;
  background: rgba(236,72,153,.12); color: var(--pink);
  border: 1px solid rgba(236,72,153,.28);
}
.plan-badge-sm.glow { background: var(--pink-btn); color: #fff !important; border-color: var(--pink); box-shadow: 0 0 12px rgba(243,106,177,.35); }

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .98rem;
}
.dark-section .plan-name,
.dark-section-alt .plan-name { color: #fff; }
.light-section .plan-name    { color: var(--l-text); }

.plan-price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.price-original { text-decoration: line-through; font-size: .88rem; }
.dark-section .price-original,
.dark-section-alt .price-original { color: var(--d-text3); }
.light-section .price-original    { color: var(--l-text3); }

.price-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem; font-weight: 900; color: var(--pink); line-height: 1;
}
.price-period { font-size: .76rem; }
.dark-section .price-period,
.dark-section-alt .price-period { color: var(--d-text3); }
.light-section .price-period    { color: var(--l-text3); }

.plan-billed { font-size: .73rem; color: var(--success); font-weight: 600; }
.plan-desc { font-size: .79rem; }
.dark-section .plan-desc,
.dark-section-alt .plan-desc { color: var(--d-text3); }
.light-section .plan-desc    { color: var(--l-text2); }

.plan-features { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 6px; font-size: .81rem; }
.dark-section .plan-features li,
.dark-section-alt .plan-features li { color: var(--d-text2); }
.light-section .plan-features li    { color: var(--l-text2); }
.plan-features .yes i { color: var(--success); }
.plan-features .no    { opacity: .45; }
.plan-features .no i  { color: var(--danger); }
.plan-features .star i{ color: var(--gold); }

.plan-note { font-size: .67rem; text-align: center; }
.dark-section .plan-note,
.dark-section-alt .plan-note { color: var(--d-text3); }
.light-section .plan-note    { color: var(--l-text3); }

.pricing-img-showcase {
  width: 100%; max-width: 680px; margin: 0 auto;
  border-radius: var(--radius-lg);
}
.dark-section .pricing-img-showcase,
.dark-section-alt .pricing-img-showcase { border: 1px solid #27272a; box-shadow: var(--shadow-dark); }
.light-section .pricing-img-showcase    { border: 1px solid var(--l-border); box-shadow: var(--shadow-light); }

/* ═══════════════════════════════════════════════
   PRICING SCREENSHOTS GRID
═══════════════════════════════════════════════ */
.pricing-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-screenshot-item { display: flex; flex-direction: column; gap: 8px; }
.pricing-screenshot-item img {
  width: 100%;
  border-radius: 14px;
}
.light-section .pricing-screenshot-item img { border: 1px solid var(--l-border); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.dark-section .pricing-screenshot-item img,
.dark-section-alt .pricing-screenshot-item img { border: 1px solid #27272a; box-shadow: var(--shadow-dark); }
.screenshot-caption { text-align: center; font-size: .78rem; }
.light-section .screenshot-caption { color: var(--l-text3); }
.dark-section .screenshot-caption,
.dark-section-alt .screenshot-caption { color: var(--d-text3); }

/* ═══════════════════════════════════════════════
   DATA TABLES
═══════════════════════════════════════════════ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); }

.data-table { border-radius: var(--radius-lg); overflow: hidden; }

.dark-section .table-wrap,
.dark-section-alt .table-wrap { box-shadow: var(--shadow-dark); border: 1px solid #27272a; }
.dark-section .data-table,
.dark-section-alt .data-table { background: var(--d-card); }
.dark-section .data-table thead tr,
.dark-section-alt .data-table thead tr { background: #000; }
.dark-section .data-table th,
.dark-section-alt .data-table th { color: var(--d-text3); border-bottom: 1px solid #27272a; }
.dark-section .data-table td,
.dark-section-alt .data-table td { color: var(--d-text); border-bottom: 1px solid #27272a; }
.dark-section .data-table tbody tr:hover,
.dark-section-alt .data-table tbody tr:hover { background: rgba(236,72,153,.06); }
.dark-section .data-table .hot-row,
.dark-section-alt .data-table .hot-row { background: rgba(236,72,153,.07) !important; }

.light-section .table-wrap { box-shadow: var(--shadow-light); border: 1px solid var(--l-border); }
.light-section .data-table { background: #fff; }
.light-section .data-table thead tr { background: #f4f4f5; }
.light-section .data-table th { color: var(--l-text2); border-bottom: 1px solid var(--l-border); }
.light-section .data-table td { color: var(--l-text); border-bottom: 1px solid #f0f0f0; }
.light-section .data-table tbody tr:hover { background: rgba(236,72,153,.04); }
.light-section .data-table .hot-row { background: rgba(236,72,153,.05) !important; }

.data-table th { padding: 11px 14px; font-size: .71rem; font-weight: 700; text-align: left; white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 10px 14px; font-size: .83rem; }
.data-table tbody tr { transition: var(--transition); }

.highlight-col {
  border-left: 1px solid rgba(236,72,153,.2);
  border-right: 1px solid rgba(236,72,153,.2);
}
.dark-section .highlight-col,
.dark-section-alt .highlight-col { background: rgba(236,72,153,.07); }
.light-section .highlight-col    { background: rgba(236,72,153,.05); }
.compare-table .highlight-col th  { color: var(--pink) !important; }
.light-section .compare-table .highlight-col th { color: var(--pink-dark) !important; }

.savings-green { color: #4ade80; font-weight: 700; }
.savings-best  { color: var(--gold); font-weight: 800; }
.light-section .savings-green { color: #16a34a; }
.light-section .savings-best  { color: #b45309; }

.savings-callout, .compare-callout {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border-radius: var(--radius-lg); padding: 18px 20px; margin-top: 16px;
  border: 1px solid rgba(236,72,153,.22);
}
.dark-section .savings-callout,
.dark-section-alt .savings-callout,
.dark-section .compare-callout,
.dark-section-alt .compare-callout { background: #111113; }
.light-section .savings-callout,
.light-section .compare-callout { background: #fdf2f8; }

.savings-callout p, .compare-callout p { flex: 1; font-size: .87rem; }
.dark-section .savings-callout p,
.dark-section-alt .savings-callout p,
.dark-section .compare-callout p,
.dark-section-alt .compare-callout p { color: var(--d-text2); }
.light-section .savings-callout p,
.light-section .compare-callout p { color: var(--l-text2); }

.compare-note { margin-top: 14px; font-size: .85rem; }
.dark-section .compare-note,
.dark-section-alt .compare-note { color: var(--d-text2); }
.light-section .compare-note    { color: var(--l-text2); }

/* ═══════════════════════════════════════════════
   DREAMCOINS TWO-COL
═══════════════════════════════════════════════ */
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.feature-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; margin-bottom: 36px; }
.feature-two-col.reverse { direction: rtl; }
.feature-two-col.reverse > * { direction: ltr; }

.col-text .section-label { display: inline-block; margin-bottom: 8px; }
.col-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700; margin-bottom: 10px;
}
.dark-section .col-text h2,
.dark-section-alt .col-text h2 { color: #fff; }
.light-section .col-text h2    { color: var(--l-text); }

.col-text p { font-size: .86rem; margin-bottom: 9px; line-height: 1.65; }
.dark-section .col-text p,
.dark-section-alt .col-text p { color: var(--d-text2); }
.light-section .col-text p    { color: var(--l-text2); }

.coins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 12px 0; }
.coin-item {
  display: flex; align-items: center; gap: 8px;
  border-radius: var(--radius); padding: 8px 10px;
  border: 1px solid;
  transition: var(--transition);
}
.coin-item:hover { border-color: rgba(236,72,153,.35) !important; }
.dark-section .coin-item,
.dark-section-alt .coin-item { background: #111113; border-color: #27272a; }
.light-section .coin-item    { background: #f4f4f5; border-color: var(--l-border); }

.coin-icon { font-size: 1rem; color: var(--pink); min-width: 20px; text-align: center; }
.light-section .coin-icon { color: var(--pink-dark); }
.coin-info { display: flex; flex-direction: column; }
.coin-info strong { font-size: .78rem; }
.coin-info span   { font-size: .7rem; }
.dark-section .coin-info strong,
.dark-section-alt .coin-info strong { color: #fff; }
.dark-section .coin-info span,
.dark-section-alt .coin-info span   { color: var(--d-text3); }
.light-section .coin-info strong    { color: var(--l-text); }
.light-section .coin-info span      { color: var(--l-text3); }

.topup-box {
  display: flex; align-items: flex-start; gap: 8px;
  border-radius: var(--radius); padding: 10px 12px; margin-bottom: 12px;
  font-size: .8rem;
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.2);
}
.topup-box i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.topup-box p { margin: 0; line-height: 1.55; }
.dark-section .topup-box p,
.dark-section-alt .topup-box p { color: var(--d-text); }
.light-section .topup-box p { color: var(--l-text2); }

.col-img { display: flex; flex-direction: column; gap: 10px; }
.col-img video { width: 100%; border-radius: var(--radius-lg); }
.dark-section .col-img video,
.dark-section-alt .col-img video { border: 1px solid #27272a; box-shadow: var(--shadow-dark); }
.light-section .col-img video { border: 1px solid var(--l-border); }

/* ═══════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.feature-card {
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-2px); }

.dark-section .feature-card,
.dark-section-alt .feature-card { background: var(--d-card); border: 1px solid #27272a; }
.dark-section .feature-card:hover,
.dark-section-alt .feature-card:hover { border-color: var(--pink); box-shadow: var(--shadow-dark); }
.light-section .feature-card { background: #fff; border: 1px solid var(--l-border); box-shadow: var(--shadow-light); }
.light-section .feature-card:hover { border-color: rgba(236,72,153,.4); box-shadow: 0 6px 20px rgba(236,72,153,.1); }

.feature-img-wrap { overflow: hidden; }
.feature-img-wrap img { width: 100%; height: 170px; object-fit: cover; border-radius: 0; transition: transform .35s; }
.feature-card:hover .feature-img-wrap img { transform: scale(1.03); }
.feature-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.feature-icon { font-size: 1rem; color: var(--pink); }
.light-section .feature-icon { color: var(--pink-dark); }
.feature-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .9rem; }
.feature-body p  { font-size: .81rem; line-height: 1.6; }
.dark-section .feature-body h3,
.dark-section-alt .feature-body h3 { color: #fff; }
.dark-section .feature-body p,
.dark-section-alt .feature-body p  { color: var(--d-text2); }
.light-section .feature-body h3    { color: var(--l-text); }
.light-section .feature-body p     { color: var(--l-text2); }

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-2px); }
.dark-section .gallery-item,
.dark-section-alt .gallery-item { border: 1px solid #27272a; }
.dark-section .gallery-item:hover,
.dark-section-alt .gallery-item:hover { border-color: var(--pink); box-shadow: var(--shadow-dark); }
.light-section .gallery-item { border: 1px solid var(--l-border); }
.light-section .gallery-item:hover { border-color: var(--pink); }
.gallery-item img { width: 100%; height: 185px; object-fit: cover; border-radius: 0; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  padding: 8px 10px; font-size: .75rem; font-weight: 600; text-align: center;
}
.dark-section .gallery-caption,
.dark-section-alt .gallery-caption { color: var(--d-text2); background: var(--d-card); }
.light-section .gallery-caption { color: var(--l-text2); background: #f4f4f5; }
.gallery-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top,rgba(0,0,0,.82),transparent);
  color: #fff !important; font-size: .74rem; font-weight: 600;
  padding: 5px 9px 7px; text-align: center;
}

/* ═══════════════════════════════════════════════
   WHO GRID
═══════════════════════════════════════════════ */
.who-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.who-card {
  border-radius: var(--radius-lg); padding: 18px 12px;
  text-align: center; transition: var(--transition);
}
.who-card:hover { transform: translateY(-2px); }
.dark-section .who-card,
.dark-section-alt .who-card { background: var(--d-card); border: 1px solid #27272a; }
.dark-section .who-card:hover,
.dark-section-alt .who-card:hover { border-color: var(--pink); box-shadow: var(--shadow-dark); }
.light-section .who-card { background: #fff; border: 1px solid var(--l-border); box-shadow: var(--shadow-light); }
.light-section .who-card:hover { border-color: rgba(236,72,153,.4); box-shadow: 0 6px 18px rgba(236,72,153,.1); }

.who-icon { font-size: 1.5rem; margin-bottom: 8px; color: var(--pink); }
.light-section .who-icon { color: var(--pink-dark); }
.who-card h3 { font-size: .82rem; font-weight: 700; margin-bottom: 5px; }
.who-card p  { font-size: .74rem; line-height: 1.55; }
.dark-section .who-card h3,
.dark-section-alt .who-card h3 { color: #fff; }
.dark-section .who-card p,
.dark-section-alt .who-card p  { color: var(--d-text3); }
.light-section .who-card h3    { color: var(--l-text); }
.light-section .who-card p     { color: var(--l-text2); }

/* ═══════════════════════════════════════════════
   TIPS LIST
═══════════════════════════════════════════════ */
.tips-list { display: flex; flex-direction: column; gap: 8px; }
/* Inline li items (icon + text, no .tip-item wrapper) */
.tips-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; line-height: 1.6;
  padding: 8px 0;
}
.tips-list li > i { flex-shrink: 0; margin-top: 2px; }
.tips-list li > div, .tips-list li > span { flex: 1; }
.dark-section .tips-list li,
.dark-section-alt .tips-list li { color: var(--d-text2); }
.light-section .tips-list li { color: var(--l-text2); }
.dark-section .tips-list li strong,
.dark-section-alt .tips-list li strong { color: var(--d-text); }
.light-section .tips-list li strong { color: var(--l-text); }
.tip-item {
  display: flex; align-items: center; gap: 16px;
  border-radius: var(--radius-lg); padding: 14px 18px;
  border: 1px solid; transition: var(--transition);
}
.dark-section .tip-item,
.dark-section-alt .tip-item { background: var(--d-card); border-color: #27272a; }
.dark-section .tip-item:hover,
.dark-section-alt .tip-item:hover { border-color: var(--pink); background: rgba(236,72,153,.05); }
.light-section .tip-item { background: #fff; border-color: var(--l-border); box-shadow: var(--shadow-light); }
.light-section .tip-item:hover { border-color: rgba(236,72,153,.35); }

.tip-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--pink); opacity: .3; min-width: 40px; line-height: 1; }
.tip-content { flex: 1; }
.tip-content h3 { font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.tip-content p  { font-size: .8rem; line-height: 1.55; }
.dark-section .tip-content h3,
.dark-section-alt .tip-content h3 { color: #fff; }
.dark-section .tip-content p,
.dark-section-alt .tip-content p  { color: var(--d-text3); }
.light-section .tip-content h3    { color: var(--l-text); }
.light-section .tip-content p     { color: var(--l-text2); }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 48px 0;
  background: var(--d-bg1);
  border-top: 1px solid #27272a;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 70% at 50% 50%, rgba(236,72,153,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-bg-overlay { display: none; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; color: #fff; margin-bottom: 10px;
}
.cta-content p { color: var(--d-text2); margin-bottom: 7px; font-size: .88rem; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 20px 0 14px; }
.cta-trust-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: .77rem; color: var(--d-text3); }
.cta-trust-row i { color: var(--success); margin-right: 3px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: var(--d-bg1); border-top: 1px solid #27272a; padding: 36px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 24px; }
.footer-brand .logo { margin-bottom: 9px; }
.footer-brand p { font-size: .79rem; color: var(--d-text3); margin-bottom: 8px; }
.footer-disclaimer { background: rgba(255,255,255,.03); border: 1px solid #27272a; border-radius: var(--radius); padding: 8px 10px; }
.footer-disclaimer p { font-size: .71rem; color: #52525b; line-height: 1.5; }
.footer-col h4 { font-size: .76rem; font-weight: 700; color: #e4e4e7; margin-bottom: 9px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { font-size: .79rem; color: var(--d-text3); }
.footer-col ul li a:hover { color: var(--pink); }
.footer-cta-box { background: #09090b; border: 1px solid rgba(236,72,153,.22); border-radius: var(--radius); padding: 12px; margin-top: 10px; text-align: center; }
.footer-cta-box p { font-size: .75rem; color: var(--d-text3); margin-bottom: 7px; }
.footer-bottom { border-top: 1px solid #27272a; padding: 12px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner p { font-size: .73rem; color: #52525b; }
.footer-links { display: flex; gap: 12px; }
.footer-links a { font-size: .73rem; color: #52525b; }
.footer-links a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════
   STICKY WIDGET
═══════════════════════════════════════════════ */
.sticky-widget { position: fixed; bottom: 22px; right: 18px; z-index: 997; }
.sticky-widget-toggle {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--pink-btn); border: none; color: #fff;
  font-size: 1.15rem; cursor: pointer;
  box-shadow: 0 3px 18px rgba(236,72,153,.42);
  position: relative; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  animation: floatBounce 3s ease-in-out infinite;
}
.sticky-widget-toggle:hover { transform: scale(1.07) !important; background: var(--pink); animation: none; }
.sticky-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--gold); color: #000;
  font-size: .56rem; font-weight: 900; padding: 2px 5px; border-radius: 99px;
}
.sticky-widget-panel {
  position: absolute; bottom: 60px; right: 0;
  width: 260px; background: #18181b;
  border: 1px solid var(--pink); border-radius: var(--radius-lg);
  padding: 16px 15px; box-shadow: var(--glow), var(--shadow-dark);
  display: none; flex-direction: column; gap: 8px;
  animation: popIn .2s ease;
}
.sticky-widget-panel.open { display: flex; }
.sticky-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: var(--d-text3); cursor: pointer; font-size: .82rem; }
.sticky-close:hover { color: var(--pink); }
.sw-icon { font-size: 1.5rem; text-align: center; color: var(--gold); }
.sticky-widget-panel h4 { text-align: center; font-size: .88rem; color: #fff; font-weight: 700; }
.sticky-widget-panel p  { font-size: .79rem; color: var(--d-text2); text-align: center; }
.sw-countdown { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: .98rem; font-weight: 800; color: var(--pink); background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.22); border-radius: 7px; padding: 5px; }
.sw-alt-link { text-align: center; font-size: .71rem; color: var(--d-text3); text-decoration: underline; }
.sw-alt-link:hover { color: var(--pink); }

/* ── Inline sticky widget (sw-inner style, used on inner pages) ── */
.sticky-widget .sw-inner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: #18181b;
  border: 1px solid rgba(236,72,153,.38);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.55), 0 0 18px rgba(236,72,153,.18);
  min-width: 280px; max-width: 480px;
}
.sw-badge {
  background: var(--pink); color: #fff;
  font-size: .66rem; font-weight: 800; padding: 2px 8px; border-radius: 99px;
  white-space: nowrap; flex-shrink: 0;
}
.sw-text {
  flex: 1; min-width: 120px; display: flex; flex-direction: column; gap: 1px;
}
.sw-text strong { font-size: .78rem; color: #fff; font-weight: 700; }
.sw-text span   { font-size: .68rem; color: var(--d-text3); }
.sw-cta { flex-shrink: 0; white-space: nowrap; }

/* footer-bottom paragraph color */
.footer-bottom p { font-size: .73rem; color: #52525b; }
.footer-bottom a { color: #52525b; }
.footer-bottom a:hover { color: var(--pink); }

@keyframes floatBounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)} }
@keyframes popIn { from{opacity:0;transform:scale(.92) translateY(7px)}to{opacity:1;transform:scale(1) translateY(0)} }

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 22px; left: 18px; z-index: 996;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--d-card); border: 1px solid #27272a;
  color: var(--d-text3); font-size: .82rem; cursor: pointer;
  opacity: 0; pointer-events: none; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--pink-btn); color: #fff; border-color: var(--pink); }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.animate-ready { opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.animate-ready.animate-in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   DREAMCOINS PLAN CARDS
═══════════════════════════════════════════════ */
.dreamcoins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.dc-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}
.dc-card:hover { border-color: rgba(236,72,153,.4); box-shadow: var(--shadow-dark); }
.dc-icon {
  font-size: 1.4rem;
  color: var(--pink);
  margin-bottom: 8px;
}
.dc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.dc-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: var(--pink); line-height: 1.1;
}
.dc-price span { font-size: 1rem; font-weight: 500; color: var(--d-text3); }
.dc-original {
  font-size: .78rem; color: var(--d-text3); text-decoration: line-through; margin-bottom: 6px;
}
.dc-list {
  list-style: none; padding: 0; margin: 10px 0 16px; display: flex; flex-direction: column; gap: 7px;
}
.dc-list li {
  font-size: .83rem; color: var(--d-text2);
  display: flex; align-items: flex-start; gap: 8px;
}
.dc-list li i { color: var(--success); font-size: .72rem; margin-top: 3px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   FEATURE BENEFITS (benefit-item)
═══════════════════════════════════════════════ */
.feature-benefits {
  display: flex; flex-direction: column; gap: 8px;
}
.benefit-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .84rem;
}
.dark-section .benefit-item,
.dark-section-alt .benefit-item { color: var(--d-text2); }
.light-section .benefit-item { color: var(--l-text2); }
.benefit-item i { color: var(--success); font-size: .75rem; flex-shrink: 0; }
.benefit-item span { color: inherit; }

/* ═══════════════════════════════════════════════
   CTA BANNER — cta-inner / cta-text variants
═══════════════════════════════════════════════ */
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 260px; }
.cta-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800; color: #fff; margin-bottom: 8px;
}
.cta-text p { color: var(--d-text2); font-size: .88rem; line-height: 1.6; margin: 0; }
.cta-banner .cta-actions { margin: 0; justify-content: flex-start; }
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-banner .cta-actions { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   FOOTER — footer-inner grid (alias for footer-grid)
═══════════════════════════════════════════════ */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
}
/* footer-links used as column in new pages */
.footer-inner .footer-links {
  display: flex !important; /* override bottom-links flex */
  flex-direction: column;
  gap: 0;
}
.footer-inner .footer-links h4 {
  font-size: .76rem; font-weight: 700; color: #e4e4e7;
  margin-bottom: 9px; text-transform: uppercase; letter-spacing: .06em;
}
.footer-inner .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-inner .footer-links ul li { margin-bottom: 5px; }
.footer-inner .footer-links ul li a { font-size: .79rem; color: var(--d-text3); }
.footer-inner .footer-links ul li a:hover { color: var(--pink); }
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 9px; display: flex; align-items: center; gap: 6px;
}
.footer-logo .logo-icon { color: var(--pink); }
.footer-logo .logo-accent { color: var(--pink); }
.footer-brand p { font-size: .79rem; color: var(--d-text3); margin-bottom: 6px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .dreamcoins-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   TIPS-LIST — raw li variant (ai-video-guide)
═══════════════════════════════════════════════ */
.tips-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .86rem; line-height: 1.65;
}
.dark-section .tips-list li,
.dark-section-alt .tips-list li { color: var(--d-text2); }
.light-section .tips-list li { color: var(--l-text2); }
.tips-list li i { font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.tips-list li strong { color: inherit; }
.dark-section .tips-list li strong { color: #fff; }
.light-section .tips-list li strong { color: var(--l-text); }
.tips-list li div { flex: 1; }

/* ═══════════════════════════════════════════════
   VIDEO SHOWCASE — 4-CARD GRID
═══════════════════════════════════════════════ */
.video-showcase-section {
  background: var(--d-bg2);
  border-bottom: 1px solid var(--d-border);
}
/* Make text visible on dark background */
.video-showcase-section .section-label {
  background: rgba(236,72,153,.12); color: var(--pink); border: 1px solid rgba(236,72,153,.3);
}
.video-showcase-section .section-title,
.video-showcase-section h2 { color: #fff; }
.video-showcase-section .section-sub,
.video-showcase-section p { color: var(--d-text2); }

/* Section badge pill */
.video-badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(236,72,153,.12);
  color: var(--pink);
  border: 1px solid rgba(236,72,153,.28);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 14px;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 28px;
}

/* Left big video */
.video-main-card {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--d-border);
  box-shadow: var(--shadow-dark);
}
.video-main-card video,
.video-main-card iframe {
  width: 100%;
  display: block;
  border-radius: 0;
}
.video-main-caption {
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--d-text3);
  border-top: 1px solid var(--d-border);
  background: var(--d-card);
}

/* Right column — 3 stacked small cards */
.video-side-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-side-card {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--d-border);
  box-shadow: 0 4px 18px rgba(0,0,0,.4);
}
.video-side-card video,
.video-side-card iframe {
  width: 100%;
  display: block;
  border-radius: 0;
  max-height: 130px;
  object-fit: cover;
}
.video-side-caption {
  padding: 7px 12px;
  font-size: .72rem;
  color: var(--d-text3);
  border-top: 1px solid var(--d-border);
  background: var(--d-card);
}

/* ═══════════════════════════════════════════════
   BENEFIT ITEMS (feature check list)
═══════════════════════════════════════════════ */
.feature-benefits { display: flex; flex-direction: column; gap: 7px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .86rem; line-height: 1.55;
}
.benefit-item i { color: var(--success); margin-top: 1px; flex-shrink: 0; font-size: .85rem; }
.dark-section .benefit-item,
.dark-section-alt .benefit-item { color: var(--d-text2); }
.light-section .benefit-item { color: var(--l-text2); }
.benefit-item span { flex: 1; }

/* ═══════════════════════════════════════════════
   DREAMCOINS PLAN CARDS (dc-card)
═══════════════════════════════════════════════ */
.dreamcoins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .dreamcoins-grid { grid-template-columns: 1fr; }
}
.dc-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: var(--transition);
}
.dc-card:hover { border-color: rgba(236,72,153,.35); box-shadow: var(--shadow-dark); }
.dc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(236,72,153,.12); border: 1px solid rgba(236,72,153,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-size: 1rem;
}
.dc-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: .98rem; color: #fff;
}
.dc-price {
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  font-size: 1.8rem; color: var(--pink); line-height: 1;
}
.dc-price span { font-size: .8rem; font-weight: 500; color: var(--d-text3); }
.dc-original { font-size: .75rem; color: var(--d-text3); text-decoration: line-through; }
.dc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; flex: 1; }
.dc-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: var(--d-text2); line-height: 1.5;
}
.dc-list li i { color: var(--success); margin-top: 2px; flex-shrink: 0; font-size: .78rem; }

/* ── CTA banner inner/text variant (ai-video-guide & comparison pages) ── */
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 260px; }
.cta-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 800; color: #fff; margin-bottom: 8px;
}
.cta-text p { color: var(--d-text2); font-size: .87rem; line-height: 1.6; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 0; }
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text { min-width: unset; }
}

/* ── Footer inner/links variant (for non-index pages) ── */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px; padding-bottom: 24px;
}
.footer-inner .footer-brand { }
.footer-inner .footer-brand .footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 9px;
  display: flex; align-items: center; gap: 6px;
}
.footer-inner .footer-brand p { font-size: .79rem; color: var(--d-text3); line-height: 1.55; }
.footer-inner .footer-links h4 {
  font-size: .76rem; font-weight: 700; color: #e4e4e7;
  margin-bottom: 9px; text-transform: uppercase; letter-spacing: .06em;
}
.footer-inner .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-inner .footer-links ul li { margin-bottom: 6px; }
.footer-inner .footer-links ul li a { font-size: .79rem; color: var(--d-text3); transition: color .2s; }
.footer-inner .footer-links ul li a:hover { color: var(--pink); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* CTA below grid */
.video-showcase-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  gap: 10px;
}

/* Pricing bar below CTA */
.video-pricing-bar {
  margin-top: 20px;
  background: rgba(236,72,153,.07);
  border: 1px solid rgba(236,72,153,.18);
  border-radius: var(--radius);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.video-pricing-bar:hover { background: rgba(236,72,153,.14); }
.video-pricing-bar i { font-size:.7rem; }

/* Responsive */
@media (max-width: 768px) {
  .video-showcase-grid { grid-template-columns: 1fr; }
  .video-side-col { flex-direction: column; }
  .video-side-card video, .video-side-card iframe { max-height: 180px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(3,1fr); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-media  { max-width: 460px; margin: 0 auto; }
  .badge-top   { left: 5px; }
  .badge-bottom{ right: 5px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-2px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .video-showcase-grid { grid-template-columns: 1fr; }
  .video-side  { flex-direction: row; flex-wrap: wrap; }
  .video-side .video-thumb-wrap { flex: 1; min-width: 130px; }
  .feature-two-col { grid-template-columns: 1fr; }
  .feature-two-col.reverse { direction: ltr; }
  .pricing-screenshots { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
  .main-nav, .btn-header { display: none; }
  .hamburger { display: flex; }
  .coupon-cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .content-two-col { grid-template-columns: 1fr; }
  .coins-grid { grid-template-columns: 1fr; }
  .tips-list .btn { display: none; }
  .tip-item { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .section { padding: 36px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .savings-callout, .compare-callout { flex-direction: column; }
  .hero { padding: 26px 0 22px; }
  .deal-timer-inner { gap: 8px; }
  .cta-banner { padding: 36px 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.4rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .cd-unit { min-width: 40px; padding: 3px 7px; }
  .cd-unit span { font-size: 1.05rem; }
  .sticky-widget-panel { width: 248px; right: -2px; }
  .hero { padding: 20px 0 18px; }
}
