/* ==========================================================================
   HOMIZENA - ULTRA FAST HIGH-CONVERTING FUNNEL LANDING PAGE STYLES
   Optimized for Cloudflare Pages (100% Zero-Dependency Pure CSS)
   ========================================================================== */

:root {
  --primary: #fb5607;
  --primary-hover: #e04b02;
  --primary-glow: rgba(251, 86, 7, 0.35);
  --secondary: #00509d;
  --secondary-hover: #003f7a;
  --accent-green: #10b981;
  --accent-green-bg: #ecfdf5;
  --accent-yellow: #f59e0b;
  
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-focus: #fb5607;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 35px -10px rgba(0,0,0,0.12);
  --shadow-glow: 0 10px 30px rgba(251, 86, 7, 0.35);
  
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */








/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: relative;
  z-index: 900;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.brand-logo .logo-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.header-trust-features {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
}

.header-cta-btn {
  background: var(--dark);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-cta-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO / FUNNEL OFFER SECTION
   ========================================================================== */
.hero-section {
  padding: 30px 0 50px;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Gallery Column */
.gallery-wrapper {
  position: sticky;
  top: 60px;
}

.main-media-container {
  background: #f1f5f9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.main-media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
}

.live-gif-indicator {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.live-gif-indicator span.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb-btn {
  background: #f1f5f9;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  aspect-ratio: 1/1;
  transition: all 0.2s ease;
  position: relative;
}

.thumb-btn.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 10px;
  padding: 2px 0;
  text-align: center;
  font-weight: 600;
}

/* Hero Content Column */
.hero-content {
  display: flex;
  flex-direction: column;
}

.review-summary-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.stars-row {
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.rating-count {
  font-size: 13px;
  color: var(--text-muted);
}

.verified-badge {
  background: var(--accent-green-bg);
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-headline {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.product-subheadline {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Bullet Highlights */
.bullet-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  background: #f8fafc;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.bullet-item svg {
  width: 17px;
  height: 17px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* Scarcity Bar */
.scarcity-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 20px;
}

.scarcity-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 6px;
}

.scarcity-bar {
  height: 6px;
  background: #fee2e2;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.scarcity-fill {
  height: 100%;
  width: 82%;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  border-radius: var(--radius-full);
}

/* Bundle Selector */
.bundle-selector-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bundle-selector-label .step-badge {
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.bundle-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.bundle-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.bundle-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.bundle-card.selected {
  border-color: var(--primary);
  background: #fffbf9;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.bundle-ribbon {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(90deg, #ea580c, #f97316);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.bundle-ribbon.best-value {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.radio-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bundle-card.selected .radio-check {
  border-color: var(--primary);
  background: var(--primary);
}

.radio-check::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.bundle-card.selected .radio-check::after {
  opacity: 1;
  transform: scale(1);
}

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

.bundle-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.bundle-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.bundle-pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.current-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
}

.compare-price {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-light);
}

.savings-tag {
  color: #dc2626;
  font-size: 11.5px;
  font-weight: 800;
}

/* Track Type Selector */
.track-selection-area {
  margin-bottom: 22px;
}

.track-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.track-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.track-chip {
  border: 1px solid var(--border);
  background: #f8fafc;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.track-chip:hover {
  background: #f1f5f9;
}

.track-chip.active {
  border-color: var(--dark);
  background: #ffffff;
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 0 0 1px var(--dark);
}

/* Primary CTA Button */
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-primary-cta {
  background: linear-gradient(180deg, #ff6b1a 0%, #fb5607 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: pulseGlow 2.5s infinite;
  text-decoration: none;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 8px 20px rgba(251, 86, 7, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 14px 30px rgba(251, 86, 7, 0.6); }
  100% { transform: scale(1); box-shadow: 0 8px 20px rgba(251, 86, 7, 0.4); }
}

.btn-primary-cta:hover {
  background: linear-gradient(180deg, #fb5607 0%, #e04b02 100%);
  transform: translateY(-2px);
}

.btn-primary-cta .btn-subtext {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.92;
  margin-top: 3px;
  letter-spacing: 0;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-badges-row svg {
  height: 22px;
  filter: grayscale(20%);
  opacity: 0.85;
}

/* Guarantee Micro Box */
.guarantee-micro-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.guarantee-micro-box svg {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #14532d;
}

.guarantee-text p {
  font-size: 12px;
  color: #166534;
  line-height: 1.35;
}

/* ==========================================================================
   PROBLEM VS SOLUTION SECTION
   ========================================================================== */
.problem-solution-section {
  padding: 70px 0;
  background: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  background: #e2e8f0;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.comparison-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.comparison-card.bad {
  border-top: 5px solid #ef4444;
}

.comparison-card.good {
  border-top: 5px solid #10b981;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.comp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-icon.cross {
  background: #fee2e2;
  color: #dc2626;
}

.comp-icon.check {
  background: #dcfce7;
  color: #16a34a;
}

.comp-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.45;
}

.comp-list li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.comp-list.bad svg {
  color: #ef4444;
}

.comp-list.good svg {
  color: #10b981;
}

/* ==========================================================================
   FEATURE SHOWCASE DEEP DIVE (THE 4 PILLARS)
   ========================================================================== */
.features-deep-section {
  padding: 80px 0;
  background: #ffffff;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reversed {
  direction: rtl;
}

.feature-block.reversed .feature-text-content {
  direction: ltr;
}

.feature-block.reversed .feature-media-box {
  direction: ltr;
}

.feature-media-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.feature-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-media-box:hover img {
  transform: scale(1.02);
}

.feature-text-content {
  display: flex;
  flex-direction: column;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff7ed;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.feature-h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
}

.feature-points li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ==========================================================================
   EASY 3 STEPS HOW IT WORKS
   ========================================================================== */
.steps-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform 0.2s ease;
}

.step-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 18px;
}

.step-box:nth-child(2) .step-number {
  background: var(--primary);
}

.step-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SPECIFICATIONS & IN THE BOX
   ========================================================================== */
.specs-section {
  padding: 70px 0;
  background: #ffffff;
}

.specs-container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.specs-table-card, .box-contents-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
}

.specs-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 0;
  font-size: 14.5px;
}

.specs-table td.spec-key {
  font-weight: 700;
  color: var(--dark);
  width: 45%;
}

.specs-table td.spec-val {
  color: var(--text-muted);
}

.contents-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contents-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.contents-list li span.qty {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   FAST EXPRESS ORDER FORM / FUNNEL CHECKOUT
   ========================================================================== */
.express-checkout-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  position: relative;
}

.checkout-wrapper-box {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.checkout-header-banner {
  background: var(--dark);
  color: #ffffff;
  padding: 24px 30px;
  text-align: center;
}

.checkout-header-banner h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.checkout-header-banner p {
  font-size: 14px;
  color: #cbd5e1;
}

.checkout-body-content {
  padding: 34px 30px;
}

.form-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-step-title .badge-num {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.checkout-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.checkout-inputs-grid .full-col {
  grid-column: span 2;
}

.input-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.input-group input, .input-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  transition: all 0.2s ease;
  background: #fff;
}

.input-group input:focus, .input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
}

/* Order Bump (High AOV Driver) */
.order-bump-box {
  background: #fffbeb;
  border: 2px dashed #f59e0b;
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 24px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.order-bump-box:hover {
  background: #fef3c7;
}

.order-bump-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.order-bump-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  margin-top: 3px;
  cursor: pointer;
}

.order-bump-content h5 {
  font-size: 15px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.order-bump-tag {
  background: #dc2626;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.order-bump-desc {
  font-size: 13px;
  color: #78350f;
  line-height: 1.4;
}

/* Order Summary Box */
.order-summary-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.summary-row.total-row {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.summary-row.savings-row {
  color: #16a34a;
  font-weight: 700;
}

/* Checkout Button */
.checkout-submit-btn {
  width: 100%;
  background: linear-gradient(180deg, #ff6b1a 0%, #fb5607 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.checkout-submit-btn:hover {
  background: linear-gradient(180deg, #fb5607 0%, #e04b02 100%);
  transform: translateY(-2px);
}

.checkout-guarantee-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   CUSTOMER REVIEWS (SOCIAL PROOF)
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: #ffffff;
}

.reviews-summary-bar {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.score-box {
  text-align: center;
}

.score-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.score-stars {
  color: #f59e0b;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 8px 0;
}

.score-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.score-label {
  font-size: 13.5px;
  color: var(--text-muted);
}

.bars-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.bar-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: var(--radius-full);
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--dark);
  font-size: 15px;
}

.reviewer-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--dark);
}

.reviewer-badge {
  font-size: 11.5px;
  color: var(--accent-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.review-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.review-body {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 14px;
}

.review-date {
  font-size: 12px;
  color: var(--text-light);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-list-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  user-select: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

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

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

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 50px 0 30px;
  font-size: 13.5px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-links h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}

/* ==========================================================================
   FLOATING MOBILE STICKY CONVERSION BAR
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  padding: 12px 16px;
  z-index: 999;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
}

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

.sticky-bar-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.sticky-bar-amount {
  font-size: 19px;
  font-weight: 900;
  color: var(--dark);
}

.sticky-bar-cta-btn {
  background: linear-gradient(180deg, #ff6b1a 0%, #fb5607 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 12px var(--primary-glow);
  cursor: pointer;
  text-decoration: none;
}

/* ==========================================================================
   LIVE SOCIAL PROOF PURCHASE TOAST
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 850;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 330px;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.toast-buyer {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.toast-action {
  font-size: 12px;
  color: var(--text-muted);
}

.toast-time {
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 600;
}

/* ==========================================================================
   EXIT INTENT SPECIAL OFFER MODAL
   ========================================================================== */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.exit-modal-overlay.active {
  display: flex;
}

.exit-modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 460px;
  width: 100%;
  padding: 34px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--dark);
}

.exit-modal-badge {
  background: #fef2f2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.exit-modal-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}

.exit-modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.coupon-code-box {
  background: #f8fafc;
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 20px;
}

.coupon-code {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 2px;
}

.exit-modal-cta {
  width: 100%;
  background: linear-gradient(180deg, #ff6b1a 0%, #fb5607 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  display: block;
}

/* Success Modal */
.order-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  padding: 20px;
}

.order-success-modal.active {
  display: flex;
}

.order-success-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 34px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon-badge svg {
  width: 36px;
  height: 36px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIRST FOCUS)
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gallery-wrapper {
    position: static;
  }
  
  .feature-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-block.reversed {
    direction: ltr;
  }
  
  .comparison-columns-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .specs-container-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-summary-bar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .header-trust-features {
    display: none;
  }
  
  .product-headline {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .bullet-highlights {
    grid-template-columns: 1fr;
  }
  
  .checkout-inputs-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-inputs-grid .full-col {
    grid-column: span 1;
  }
  
  .sticky-mobile-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 74px; /* Space for sticky bar */
  }
  
  .social-proof-toast {
    display: none; /* Avoid clashing with mobile bar */
  }
}
