/* ==========================================================================
   AI Baby Talking Reel Bundle - High-Converting Sales Landing Page
   Modern, Mobile-First, Fast-Loading Stylesheet
   ========================================================================== */

:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-glow: rgba(79, 70, 229, 0.35);
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.4);
  --success: #10b981;
  --danger: #ef4444;
  --bg-dark: #090d16;
  --bg-card: #111827;
  --bg-card-hover: #1f2937;
  --bg-glass: rgba(17, 24, 39, 0.75);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(99, 102, 241, 0.3);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px rgba(79, 70, 229, 0.4);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 75px; /* Space for mobile sticky CTA */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Typography & Badges
   ========================================================================== */

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: #fbbf24;
}

.text-green {
  color: #34d399;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-glow-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-pill {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   Announcement Bar (Top Urgency)
   ========================================================================== */

.top-bar {
  background: linear-gradient(90deg, #dc2626, #b91c1c, #991b1b);
  color: #ffffff;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #fef08a;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}

/* ==========================================================================
   Header / Brand Bar
   ========================================================================== */

.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), #ec4899);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.header-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 2.5rem 0 3.5rem;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-title {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

.hero-price-box {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.7), rgba(17, 24, 39, 0.9));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #10b981;
  font-family: var(--font-heading);
}

.original-price {
  font-size: 1.25rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 600;
}

.discount-badge {
  background: #dc2626;
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
}

/* Countdown Timer Box */
.timer-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(245, 158, 11, 0.4);
}

.timer-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.timer-digits {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.digit-box {
  background: #1f2937;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  min-width: 32px;
  text-align: center;
}

.timer-sep {
  color: #fbbf24;
  font-weight: 700;
}

/* Benefits Bullet List */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.check-icon {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1.15rem 1.75rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55);
}

.payment-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero Media Column */
.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.product-cover-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.floating-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Demo Reels Section (9:16 Vertical Video Reels)
   ========================================================================== */

.demo-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d131f 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Reels Grid: 4 Vertical cards */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .reels-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.reel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.reel-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
  transition: transform 0.2s ease;
}

.reel-card:hover .play-circle {
  transform: scale(1.1);
}

.reel-controls-bar {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.sound-btn {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.2s;
}

.sound-btn:hover {
  transform: scale(1.1);
}

.reel-views-tag {
  background: rgba(0, 0, 0, 0.7);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.reel-footer {
  padding: 0.75rem;
  text-align: center;
}

.reel-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 0.15rem;
}

.reel-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Pages Built With Our Content (3D Interactive Phone Cards Carousel)
   ========================================================================== */

.showcase-section {
  padding: 5rem 0 6rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.showcase-section .heading {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.phone-area {
  margin-top: 25px;
  height: 720px;
  position: relative;
  perspective: 1800px;
}

.phone-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #6d28d9;
  filter: blur(120px);
  opacity: 0.28;
  pointer-events: none;
}

.phone-track {
  position: absolute;
  inset: 0;
  cursor: grab;
}

.phone-track:active {
  cursor: grabbing;
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 650px;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.65s,
              filter 0.65s;
  user-select: none;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

/* 3D Fan / Stack Positions */
.phone.center {
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  z-index: 10;
  opacity: 1;
}

.phone.left1 {
  transform: translate(calc(-50% - 150px), -50%) rotateY(28deg) rotateZ(-5deg) scale(0.92);
  opacity: 0.85;
  z-index: 8;
  cursor: pointer;
}

.phone.left2 {
  transform: translate(calc(-50% - 270px), -50%) rotateY(40deg) rotateZ(-8deg) scale(0.82);
  opacity: 0.35;
  z-index: 7;
  cursor: pointer;
}

.phone.right1 {
  transform: translate(calc(-50% + 150px), -50%) rotateY(-28deg) rotateZ(5deg) scale(0.92);
  opacity: 0.85;
  z-index: 8;
  cursor: pointer;
}

.phone.right2 {
  transform: translate(calc(-50% + 270px), -50%) rotateY(-40deg) rotateZ(8deg) scale(0.82);
  opacity: 0.35;
  z-index: 7;
  cursor: pointer;
}

@media (max-width: 768px) {
  .phone-area {
    height: 520px;
  }

  .phone {
    width: 230px;
    height: 460px;
    border-radius: 20px;
  }

  .phone.left1 {
    transform: translate(calc(-50% - 80px), -50%) rotateY(24deg) scale(0.84);
  }

  .phone.right1 {
    transform: translate(calc(-50% + 80px), -50%) rotateY(-24deg) scale(0.84);
  }

  .phone.left2 {
    transform: translate(calc(-50% - 150px), -50%) rotateY(38deg) scale(0.72);
  }

  .phone.right2 {
    transform: translate(calc(-50% + 150px), -50%) rotateY(-38deg) scale(0.72);
  }
}


/* ==========================================================================
   Exclusive Creator Bonuses Section
   ========================================================================== */

.bonuses-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0d131f 0%, var(--bg-dark) 100%);
  position: relative;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bonuses-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
}

.bonus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.bonus-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-decoration: line-through;
}

.bonus-img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bonus-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.bonus-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bonus-free-badge {
  margin-top: auto;
  text-align: center;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.4rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
}

/* ==========================================================================
   Features / What You Get Grid
   ========================================================================== */

.features-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #818cf8;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Target Audience ("Who Is This For?")
   ========================================================================== */

.audience-section {
  padding: 4rem 0;
  background: #0b101c;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.audience-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.25s ease;
}

.audience-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
}

.audience-emoji {
  font-size: 2rem;
}

.audience-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e5e7eb;
}

/* ==========================================================================
   Platform Compatibility & Monetization Sections
   ========================================================================== */

.platforms-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s ease;
}

.platform-pill:hover {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.15);
}

.monetize-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .monetize-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.monetize-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.monetize-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fbbf24;
  font-family: var(--font-heading);
}

/* 3-Step Process */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #ec4899);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3.2rem auto 1rem;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* ==========================================================================
   Customer Reviews / Testimonials
   ========================================================================== */

.reviews-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.review-user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.verified-tag {
  font-size: 0.7rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.review-text {
  font-size: 0.9rem;
  color: #d1d5db;
  font-style: italic;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-section {
  padding: 4rem 0;
  background: #0d131f;
  border-top: 1px solid var(--border-color);
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--border-highlight);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 300px;
}

/* ==========================================================================
   Bottom Final Call-To-Action (Hero Reprise)
   ========================================================================== */

.final-cta-section {
  padding: 4rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.25) 0%, var(--bg-dark) 70%);
  text-align: center;
}

.final-cta-box {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  background: #070a12;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Mobile Sticky Bottom CTA Bar
   ========================================================================== */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #10b981;
  font-family: var(--font-heading);
}

.sticky-old-price {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.sticky-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   Live Social Proof Popup Toast
   ========================================================================== */

.live-toast {
  position: fixed;
  bottom: 80px;
  left: 1rem;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 95;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  max-width: 320px;
  transform: translateX(-150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

@media (min-width: 768px) {
  .live-toast {
    bottom: 1.5rem;
  }
}

.live-toast.show {
  transform: translateX(0);
}

.toast-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.toast-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.toast-time {
  font-size: 0.65rem;
  color: #10b981;
}

/* ==========================================================================
   Checkout Modal (Instant 1-Click Buy)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.order-summary-row.total-row {
  border-top: 1px solid var(--border-color);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e5e7eb;
}

.form-input {
  background: #1f2937;
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.payment-radio-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.payment-radio-box.selected {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

/* Success Order View */
.success-view {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  border-radius: 50%;
  color: #10b981;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
