/* ═══════════════════════════════════════════════════════════════════════════
   DealFinder — Main Stylesheet
   Pure CSS, no build step required. Edit variables in :root to retheme.
═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --orange:        #FF6900;
  --orange-light:  #FF8C2F;
  --orange-dark:   #E55A00;
  --red:           #FF3B30;
  --red-light:     #FF6B6B;
  --yellow:        #FFD700;
  --yellow-light:  #FFF3CC;
  --green:         #22C55E;
  --green-light:   #DCFCE7;
  --purple:        #8B5CF6;
  --purple-light:  #EDE9FE;
  --blue:          #3B82F6;
  --blue-light:    #DBEAFE;
  --rose:          #F43F5E;

  /* Neutrals */
  --white:         #FFFFFF;
  --neutral-50:    #FAFAFA;
  --neutral-100:   #F5F5F5;
  --neutral-200:   #E5E5E5;
  --neutral-300:   #D4D4D4;
  --neutral-500:   #737373;
  --neutral-600:   #525252;
  --neutral-700:   #404040;
  --neutral-800:   #262626;
  --neutral-900:   #171717;

  /* Semantic */
  --bg-body:       #FAFAFA;
  --bg-section:    #FFFFFF;
  --bg-alt:        #FFF5F0;
  --text-primary:  #171717;
  --text-secondary:#525252;
  --text-muted:    #737373;
  --border:        #E5E5E5;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-cta:  0 4px 20px rgba(255,105,0,0.40);
  --shadow-cta-h:0 8px 32px rgba(255,105,0,0.55);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full:9999px;

  /* Type */
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-md: 15px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl:28px;
  --font-size-3xl:36px;
  --font-size-4xl:48px;
  --font-size-5xl:60px;

  /* Animation */
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul, ol { list-style: none; }

/* ── Utility ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}
@media (min-width:640px)  { .container { padding-inline: var(--space-lg); } }
@media (min-width:1024px) { .container { padding-inline: var(--space-xl); } }

.section {
  padding-block: 52px;
}
@media (min-width:768px) { .section { padding-block: 72px; } }

.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-eyebrow {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--bg-alt);
  border: 1px solid #FFD6C2;
  border-radius: var(--r-full);
  padding: 4px 14px;
  margin-bottom: var(--space-sm);
}
.section-title {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.section-sub {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  max-width: 520px;
  margin-inline: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.link-orange { color: var(--orange); font-weight: 600; }
.link-orange:hover { text-decoration: underline; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  border-radius: var(--r-full);
  transition: transform .18s var(--ease-bounce),
              box-shadow .18s ease,
              background .18s ease,
              border-color .18s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.btn-sm  { font-size: var(--font-size-sm); padding: 7px 18px; }
.btn-md  { font-size: var(--font-size-md); padding: 10px 22px; }
.btn-lg  { font-size: var(--font-size-md); padding: 13px 28px; }
.btn-xl  { font-size: var(--font-size-lg); padding: 15px 36px; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-cta-h);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
}
.btn-white:hover {
  background: var(--yellow-light);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* ── Focus Styles ─────────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── Disclosure Banner ────────────────────────────────────────────────── */
.disclosure-banner {
  background: var(--yellow-light);
  border-bottom: 1px solid #FFE099;
  padding: 10px var(--space-md);
}
.disclosure-banner p {
  font-size: var(--font-size-sm);
  color: var(--neutral-700);
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.disclosure-close {
  margin-left: var(--space-sm);
  font-size: 14px;
  color: var(--neutral-500);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background .15s;
}
.disclosure-close:hover { background: rgba(0,0,0,.08); }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  height: 58px;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
@media (min-width:640px) { .header-inner { padding-inline: var(--space-lg); } }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.logo-accent { color: var(--orange); }
.footer-logo-text { font-size: 22px; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
}
@media (min-width:768px) { .desktop-nav { display: flex; } }

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: color .15s;
}
.nav-link:hover { color: var(--orange); }

.header-cta { margin-left: auto; }
@media (max-width:639px) { .header-cta { display: none; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background .15s;
  margin-left: auto;
}
@media (min-width:768px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--neutral-100); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.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 */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  background: var(--white);
  border-top: 1px solid var(--neutral-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s var(--ease-out), opacity .2s;
  opacity: 0;
}
.mobile-nav.open { max-height: 400px; opacity: 1; }
@media (min-width:768px) { .mobile-nav { display: none !important; } }

.mobile-nav-link {
  padding: 11px 14px;
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--r-md);
  transition: background .15s, color .15s;
}
.mobile-nav-link:hover {
  background: var(--bg-alt);
  color: var(--orange);
}
.mobile-cta {
  margin-top: 8px;
  padding: 13px;
  text-align: center;
  border-radius: var(--r-lg);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #FFF7F0 0%, #FFFFFF 55%, #F0F4FF 100%);
  overflow: hidden;
  position: relative;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -150px;
  animation: float1 12s ease-in-out infinite;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--purple);
  bottom: -100px; left: -100px;
  animation: float2 16s ease-in-out infinite;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--yellow);
  top: 40%; right: 30%;
  animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,-40px) scale(1.05); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-20px,30px) scale(1.08); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(15px,-15px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}
@media (min-width:900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-content { max-width: 600px; }

/* Promo chips */
.promo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid;
}
.chip-red    { color: var(--red);    background: #FFF1F0; border-color: #FFBDB8; }
.chip-orange { color: var(--orange); background: var(--bg-alt); border-color: #FFD6C2; }
.chip-green  { color: #15803D;       background: var(--green-light); border-color: #86EFAC; }
.chip-purple { color: var(--purple); background: var(--purple-light); border-color: #C4B5FD; }
.chip-blue   { color: var(--blue);   background: var(--blue-light); border-color: #93C5FD; }

.hero-headline {
  font-size: clamp(32px, 6vw, var(--font-size-5xl));
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}
.hero-sub {
  font-size: clamp(var(--font-size-md), 2vw, var(--font-size-lg));
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  display: none;
  position: relative;
  height: 380px;
}
@media (min-width:900px) { .hero-visual { display: block; } }

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: transform .3s var(--ease-bounce);
}
.hero-card:hover { transform: translateY(-6px) rotate(0deg) scale(1.03) !important; }
.hero-card-1 { width: 155px; top: 20px;  left: 20px;  transform: rotate(-4deg); animation: cardFloat1 6s ease-in-out infinite; }
.hero-card-2 { width: 155px; top: 60px;  left: 160px; transform: rotate(3deg);  animation: cardFloat2 7s ease-in-out infinite; }
.hero-card-3 { width: 155px; top: 200px; left: 80px;  transform: rotate(-2deg); animation: cardFloat3 5.5s ease-in-out infinite; }

@keyframes cardFloat1 {
  0%,100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-8px); }
}
@keyframes cardFloat2 {
  0%,100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-10px); }
}
@keyframes cardFloat3 {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-6px); }
}

.hero-card-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.hero-card-img-1 { background: linear-gradient(135deg, #ff6900 0%, #ff3b30 100%); }
.hero-card-img-2 { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); }
.hero-card-img-3 { background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%); }
.hero-card-body { padding: 10px; }
.hero-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border-radius: var(--r-full);
  padding: 2px 8px;
  margin-bottom: 4px;
}
.hero-card-badge-purple { background: var(--purple); }
.hero-card-badge-green  { background: var(--green); }
.hero-card-price { font-size: 13px; font-weight: 800; color: var(--orange); }

.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--neutral-200);
  animation: floatTag 4s ease-in-out infinite;
}
.ft1 { top: 10px;  right: 0;  animation-delay: 0s; }
.ft2 { bottom: 90px; right: 10px; animation-delay: 2s; }

@keyframes floatTag {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Ticker */
.ticker-wrap {
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: .04em;
  padding: 0 20px;
}
.ticker-sep {
  color: rgba(255,255,255,.5);
  font-size: 10px;
  align-self: center;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Bounce animation for primary CTA */
.animate-bounce-soft {
  animation: bounceSoft 3s ease-in-out infinite;
}
@keyframes bounceSoft {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-5px) scale(1.02); }
}
.animate-bounce-soft:hover { animation: none; }

/* ── Deals Section ────────────────────────────────────────────────────── */
.deals-section { background: var(--white); }

.deal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.deal-tab {
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 2px solid var(--neutral-200);
  color: var(--text-secondary);
  background: var(--white);
  transition: all .18s;
}
.deal-tab:hover { border-color: var(--orange); color: var(--orange); }
.deal-tab.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width:640px)  { .deals-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:900px)  { .deals-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width:1200px) { .deals-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); } }

/* Deal card */
.deal-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s var(--ease-bounce),
              box-shadow .22s ease,
              border-color .22s ease;
  cursor: pointer;
}
.deal-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.deal-card[data-hidden="true"] { display: none; }

.deal-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--neutral-100);
}
.deal-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.deal-card:hover .deal-card-img { transform: scale(1.07); }

.deal-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--r-full);
  color: var(--white);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.deal-badge-red    { background: var(--red); }
.deal-badge-orange { background: var(--orange); }
.deal-badge-green  { background: var(--green); }
.deal-badge-purple { background: var(--purple); }

.deal-badge-type {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--purple);
  border: 1px solid var(--purple-light);
}

.deal-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deal-card-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.deal-price {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 900;
  color: var(--orange);
}
.deal-original {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-decoration: line-through;
}
.deal-savings {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--green);
}
.deal-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.deal-stars { color: var(--yellow); font-size: 12px; letter-spacing: 1px; }
.deal-reviews { font-size: var(--font-size-xs); color: var(--text-muted); }

.deal-card-cta {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  text-align: center;
  transition: background .18s;
  letter-spacing: .02em;
}
.deal-card-cta:hover { background: var(--orange-dark); }

.price-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
}

.section-cta-wrap {
  text-align: center;
  margin-top: var(--space-2xl);
}
.disclaimer-micro {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ── Countdown Strip ──────────────────────────────────────────────────── */
.countdown-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--white);
  padding-block: var(--space-xl);
  overflow: hidden;
  position: relative;
}
.countdown-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,105,0,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(138,92,246,.12) 0%, transparent 60%);
  pointer-events: none;
}
.countdown-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  position: relative;
}
@media (min-width:900px) {
  .countdown-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.countdown-left {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.countdown-fire {
  font-size: 36px;
  animation: fireFlicker 1.5s ease-in-out infinite alternate;
  flex-shrink: 0;
}
@keyframes fireFlicker {
  0%   { transform: scale(1) rotate(-3deg); }
  100% { transform: scale(1.12) rotate(3deg); }
}

.countdown-headline {
  font-size: clamp(var(--font-size-lg), 2.5vw, var(--font-size-2xl));
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 4px;
}
.countdown-sub {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.65);
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 68px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.02em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-variant-numeric: tabular-nums;
  transition: background .3s;
}
.countdown-num.flip { background: rgba(255,105,0,.25); }
.countdown-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.countdown-colon {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  align-self: flex-start;
  padding-top: 14px;
  animation: colonBlink 1s step-start infinite;
}
@keyframes colonBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: .2; }
}

/* ── Categories ───────────────────────────────────────────────────────── */
.categories-section { background: var(--neutral-50); }

/* Tighten vertical rhythm between countdown -> categories -> value blocks */
.categories-section,
.value-section {
  padding-block: 42px;
}
@media (min-width:768px) {
  .categories-section,
  .value-section {
    padding-block: 56px;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width:480px)  { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:768px)  { .categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width:1024px) { .categories-grid { grid-template-columns: repeat(5, 1fr); } }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--r-xl);
  color: var(--white);
  text-align: center;
  transition: transform .22s var(--ease-bounce),
              box-shadow .22s ease;
  cursor: pointer;
  text-decoration: none;
  min-height: 130px;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .2s;
}
.category-card:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow-lg); }
.category-card:hover::before { background: rgba(0,0,0,.06); }

.category-emoji { font-size: 36px; line-height: 1; }
.category-name  { font-size: var(--font-size-sm); font-weight: 800; letter-spacing: .01em; }
.category-desc  { font-size: var(--font-size-xs); opacity: .85; }

/* ── Value Props ──────────────────────────────────────────────────────── */
.value-section { background: var(--white); }

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width:640px)  { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:1024px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  padding: var(--space-lg);
  border-radius: var(--r-xl);
  border: 1px solid var(--neutral-200);
  background: var(--neutral-50);
  transition: transform .2s var(--ease-bounce), box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.value-icon { font-size: 36px; margin-bottom: var(--space-sm); }
.value-title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.value-desc { font-size: var(--font-size-sm); color: var(--text-secondary); line-height: 1.6; }

/* ── Featured Banner Carousel ─────────────────────────────────────────── */
.featured-section { background: var(--neutral-50); }

.banner-carousel { position: relative; overflow: hidden; border-radius: var(--r-xl); }

.banner-track {
  display: flex;
  transition: transform .45s var(--ease-out);
  will-change: transform;
}
.banner-slide { min-width: 100%; }

.banner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 280px;
}
@media (min-width:640px) {
  .banner-card { flex-direction: row; min-height: 260px; }
}

.banner-card-orange { background: linear-gradient(135deg, #FF6900 0%, #FF3B30 100%); }
.banner-card-purple { background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%); }
.banner-card-rose   { background: linear-gradient(135deg, #F43F5E 0%, #FB923C 100%); }

.banner-content {
  flex: 1;
  padding: var(--space-xl);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}
.banner-eyebrow {
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
.banner-title {
  font-size: clamp(var(--font-size-xl), 3.5vw, var(--font-size-3xl));
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.banner-desc {
  font-size: var(--font-size-md);
  opacity: .9;
  max-width: 380px;
  line-height: 1.6;
}

.banner-visual {
  flex-shrink: 0;
  width: 100%; max-width: 260px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255,255,255,.08);
}
@media (min-width:640px) { .banner-visual { width: 260px; height: 100%; } }

.banner-emoji-bg {
  font-size: 90px;
  opacity: .6;
  animation: bannerEmoji 4s ease-in-out infinite;
}
@keyframes bannerEmoji {
  0%,100% { transform: scale(1) rotate(-5deg); }
  50%      { transform: scale(1.08) rotate(5deg); }
}

.banner-floating-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.3);
}
.banner-floating-badge-light  { background: rgba(255,255,255,.2); }
.banner-floating-badge-yellow { background: rgba(255,215,0,.3); }

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--neutral-200);
  font-size: 22px;
  line-height: 1;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--shadow-cta);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neutral-300);
  border: none;
  transition: background .2s, transform .2s, width .2s;
}
.carousel-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ── Trending / Social Proof ──────────────────────────────────────────── */
.trending-section { background: var(--white); }

.trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width:768px) { .trending-grid { grid-template-columns: repeat(4, 1fr); } }

.trending-stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg-alt) 0%, #FFF0E8 100%);
  border: 1px solid #FFD6C2;
  transition: transform .2s var(--ease-bounce);
}
.trending-stat-card:hover { transform: translateY(-4px); }
.trending-stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.trending-stat-label { font-size: var(--font-size-sm); color: var(--text-secondary); line-height: 1.4; }

.trending-disclaimer {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--neutral-50);
  border-radius: var(--r-lg);
  border: 1px solid var(--neutral-200);
}
.trending-disclaimer p { font-size: var(--font-size-sm); color: var(--text-muted); }
.trending-cta-wrap { text-align: center; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-section { background: var(--neutral-50); }

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--orange); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg);
  text-align: left;
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  border: none;
  transition: background .15s;
}
.faq-question:hover { background: var(--neutral-50); }
.faq-question[aria-expanded="true"] { color: var(--orange); }

.faq-chevron {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(90deg);
  color: var(--orange);
}

.faq-answer {
  border-top: 1px solid var(--neutral-100);
  animation: faqOpen .22s var(--ease-out);
}
.faq-answer p {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: 1.7;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Disclosure Section ───────────────────────────────────────────────── */
.disclosure-section {
  background: var(--yellow-light);
  padding-block: var(--space-2xl);
  border-top: 1px solid #FFE099;
  border-bottom: 1px solid #FFE099;
}
.disclosure-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid #FFE099;
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin-inline: auto;
}
.disclosure-icon { font-size: 40px; flex-shrink: 0; }
.disclosure-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.disclosure-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
@media (min-width:640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-tagline {
  font-size: var(--font-size-sm);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,.55);
}
.footer-disclosure-mini {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--space-md);
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-link:hover { color: var(--orange); }

.footer-bottom {
  background: var(--neutral-900);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: var(--space-md);
  text-align: center;
}
@media (min-width:640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p { font-size: var(--font-size-xs); color: rgba(255,255,255,.4); }
.footer-bottom-right { color: rgba(255,255,255,.4); }

/* ── Sticky Mobile CTA ────────────────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 200;
  padding: 12px var(--space-md);
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--neutral-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transition: transform .3s var(--ease-out), opacity .3s;
  transform: translateY(100%);
  opacity: 0;
}
.sticky-mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width:767px) { .sticky-mobile-cta { display: block; } }

.sticky-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: var(--white);
  font-size: var(--font-size-md);
  font-weight: 800;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-cta);
  letter-spacing: .02em;
  transition: filter .18s;
}
.sticky-mobile-btn:hover { filter: brightness(1.08); }

/* ── Scrolled header shadow ────────────────────────────────────────────── */
.site-header.scrolled { box-shadow: var(--shadow-card); }

/* ── Image lazy-load fade ─────────────────────────────────────────────── */
img.lazyload { opacity: 0; transition: opacity .35s ease; }
img.lazyloaded { opacity: 1; }

/* ── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
