/* ============================================
   CPX Starter Set — CRO Landing Page
   White theme, CPX Orange (#FF5B02) accent
   ============================================ */

:root {
  /* Typography */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — White theme with CPX Orange */
  --color-bg: #ffffff;
  --color-surface: #f9f9f9;
  --color-surface-2: #f2f2f2;
  --color-surface-warm: #FFF8F4;
  --color-border: #e8e8e8;
  --color-border-light: #f0f0f0;

  --color-text: #0E0F0C;
  --color-text-secondary: #444444;
  --color-text-muted: #777777;
  --color-text-faint: #aaaaaa;

  --color-accent: #FF5B02;
  --color-accent-hover: #E84F00;
  --color-accent-light: #FFEEE6;
  --color-accent-border: #FFDDCC;
  --color-accent-glow: rgba(255, 91, 2, 0.15);

  --color-dark: #0E0F0C;
  --color-dark-surface: #1a1a1a;
  --color-dark-text: #f5f5f5;
  --color-dark-muted: #999999;

  --color-green: #16a34a;
  --color-gold: #d97706;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 10px var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.urgency-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.urgency-bar span {
  position: relative;
  z-index: 1;
}

.urgency-bar .countdown {
  font-weight: 700;
  margin-left: var(--space-2);
}

/* ============================================
   STICKY NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,91,2,0.25);
}

.nav-cta:active { transform: translateY(0); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(var(--space-10), 6vw, var(--space-20)) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  min-height: 75vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.hero-badge svg {
  display: inline;
  width: 14px; height: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

/* Hero Bundle Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.hero-pill svg {
  color: var(--color-accent);
  flex-shrink: 0;
  display: inline;
}

.hero-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}

.hero-price .current {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
}

.hero-price .original {
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  text-decoration: line-through;
}

.hero-price .save {
  background: rgba(22, 163, 74, 0.1);
  color: var(--color-green);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: btn-shimmer 2.5s infinite;
}

@keyframes btn-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,91,2,0.3);
}

.btn-primary:active { transform: translateY(0); }

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.hero-guarantee svg {
  width: 16px; height: 16px;
  color: var(--color-green);
  flex-shrink: 0;
  display: inline;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(255,91,2,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5) var(--space-6);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  display: inline;
}

.trust-item strong {
  color: var(--color-text);
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-6);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-10);
}

/* Dark section variant */
.section-dark {
  background: var(--color-dark);
  color: var(--color-dark-text);
}
.section-dark .section-title { color: var(--color-dark-text); }
.section-dark .section-desc { color: var(--color-dark-muted); }

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.included-section {
  background: var(--color-surface-warm);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.included-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #ff8c47);
}

.included-card-icon {
  width: 56px; height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.included-card-icon svg {
  width: 28px; height: 28px;
  color: var(--color-accent);
  display: inline;
}

.included-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.included-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.included-card .value-tag {
  display: inline-block;
  margin-top: var(--space-3);
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ============================================
   MID-PAGE CTA
   ============================================ */
.mid-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
}

.mid-cta .btn-primary {
  padding: 14px 36px;
}

.mid-cta-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.included-section .mid-cta {
  border-top-color: var(--color-accent-border);
}

.section-dark .mid-cta {
  border-top-color: rgba(255,255,255,0.1);
}
.section-dark .mid-cta-note {
  color: var(--color-dark-muted);
}

/* ============================================
   FREE GIFTS STRIP
   ============================================ */
.gifts-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.gift-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gift-item .gift-free {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--color-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gift-item svg {
  width: 28px; height: 28px;
  color: var(--color-text-muted);
  margin: 0 auto var(--space-2);
  display: inline;
}

.gift-item .gift-name {
  font-size: var(--text-xs);
  color: var(--color-text);
  font-weight: 600;
}

.gift-item .gift-value {
  font-size: 11px;
  color: var(--color-text-faint);
  margin-top: 2px;
}

/* ============================================
   LIFESTYLE PHOTO BANNER
   ============================================ */
.lifestyle-banner {
  padding: 0;
  overflow: hidden;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.lifestyle-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px; height: 24px;
  color: var(--color-accent);
  display: inline;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.feature-text p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   WHO IS THIS FOR
   ============================================ */
.whos-it-for {
  background: #FFF8F4;
}

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

@media (max-width: 1100px) and (min-width: 769px) {
  .wif-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
  .wif-card {
    padding: 36px 32px 32px;
  }
}

.wif-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FF5B02;
}

.wif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Featured card */
.wif-pop {
  border-color: #FF5B02;
  box-shadow: 0 4px 24px rgba(255, 91, 2, 0.12);
}

.wif-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #FF5B02;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wif-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #FFEEE6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wif-title {
  font-family: 'Clash Display', 'Arial Black', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0E0F0C;
  margin-bottom: 12px;
}

.wif-text {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: #6b6b6b;
  line-height: 1.65;
  margin-bottom: 20px;
}

.wif-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  width: 100%;
}

.wif-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  color: #0E0F0C;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.wif-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5B02' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================
   SPECS — dark section with lifestyle photo
   ============================================ */
.specs-section {
  background: var(--color-dark);
}

.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.specs-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.specs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 480px;
}

.specs-table {
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.spec-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.spec-label {
  font-size: var(--text-sm);
  color: var(--color-dark-muted);
  font-weight: 500;
}

.spec-value {
  font-size: var(--text-sm);
  color: var(--color-dark-text);
  font-weight: 600;
  text-align: right;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
}

.review-stars svg {
  width: 16px; height: 16px;
  color: var(--color-accent);
  fill: var(--color-accent);
  display: inline;
}

.review-text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.review-author {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--color-green);
  font-weight: 500;
  margin-top: var(--space-1);
}

.review-verified svg {
  width: 12px; height: 12px;
  display: inline;
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-section {
  background: var(--color-surface-warm);
}

.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--color-accent), transparent 50%, var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.guarantee-icon {
  width: 72px; height: 72px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.guarantee-icon svg {
  width: 36px; height: 36px;
  color: var(--color-accent);
  display: inline;
}

.guarantee-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.guarantee-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--space-6);
}

.guarantee-perks {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.guarantee-perk {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.guarantee-perk svg {
  width: 18px; height: 18px;
  color: var(--color-green);
  display: inline;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question svg {
  width: 20px; height: 20px;
  color: var(--color-text-muted);
  transition: transform 300ms var(--ease-out);
  flex-shrink: 0;
  display: inline;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 var(--space-5) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA — dark section
   ============================================ */
.final-cta {
  text-align: center;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,91,2,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .section-label { color: var(--color-accent); position: relative; }
.final-cta .section-title { color: var(--color-dark-text); position: relative; }

.final-cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  position: relative;
}

.final-cta-price .current {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-dark-text);
}

.final-cta-price .original {
  font-size: var(--text-lg);
  color: var(--color-dark-muted);
  text-decoration: line-through;
}

.final-cta .btn-primary {
  font-size: var(--text-lg);
  padding: 18px 52px;
}

.final-cta .hero-guarantee {
  color: var(--color-dark-muted);
  justify-content: center;
}

/* ============================================
   STICKY CTA BAR (mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 400ms var(--ease-out);
}

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

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-cta-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.sticky-cta-price {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.sticky-cta-price strong {
  color: var(--color-text);
  font-weight: 700;
}

.sticky-cta .btn-primary {
  padding: 12px 28px;
  font-size: var(--text-sm);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-8) var(--space-6);
  text-align: center;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: var(--text-xs);
  color: var(--color-dark-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--color-dark-text); }

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-2);
}

.footer-attribution a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}

.footer-attribution a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notification {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  transform: translateX(-120%);
  transition: transform 500ms var(--ease-out);
  max-width: 320px;
}

.purchase-notification.show { transform: translateX(0); }

.purchase-notification-dot {
  width: 8px; height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

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

.purchase-notification-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.purchase-notification-text strong {
  color: var(--color-text);
}

/* ============================================
   GSAP ANIMATION BASE STATES
   ============================================ */

/* Hero entrance elements — hidden until GSAP animates */
.hero-badge,
.hero h1,
.hero-pill,
.hero-sub,
.hero-price,
.hero-cta-group,
.hero-image {
  opacity: 0;
}

/* Section elements — hidden until ScrollTrigger fires */
.anim-section { opacity: 0; }
.anim-card { opacity: 0; }
.anim-row { opacity: 0; }

/* Lifestyle parallax container */
.lifestyle-grid {
  overflow: hidden;
}

.lifestyle-grid img {
  will-change: transform;
}

/* Feature card hover lift */
.feature-card {
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive),
              border-color var(--transition-interactive);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-border);
}

/* Included card hover */
.included-card {
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Review card hover */
.review-card {
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Gift item hover */
.gift-item {
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.gift-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero image float animation */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-image.floating img {
  animation: hero-float 4s ease-in-out infinite;
}

/* CTA attention pulse */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 91, 2, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 91, 2, 0); }
}

.btn-primary.pulse {
  animation: cta-pulse 2.5s ease-in-out infinite;
}

/* Guarantee glow on scroll */
@keyframes guarantee-glow {
  0% { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
  50% { box-shadow: 0 8px 40px rgba(255, 91, 2, 0.12), 0 4px 16px rgba(0,0,0,0.06); }
  100% { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
}

.guarantee-card.glowing {
  animation: guarantee-glow 3s ease-in-out infinite;
}

/* Trust bar number styling for count-up */
.trust-item .count-num {
  display: inline;
  font-variant-numeric: tabular-nums;
}

/* Nav shadow on scroll */
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Spec row highlight on hover */
.spec-row {
  transition: background var(--transition-interactive),
              padding var(--transition-interactive);
}
.spec-row:hover {
  background: rgba(255,255,255,0.03);
  padding-left: var(--space-2);
  padding-right: var(--space-2);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-badge, .hero h1, .hero-pill, .hero-sub, .hero-price, .hero-cta-group, .hero-image,
  .anim-section, .anim-card, .anim-row {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    min-height: auto;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-badge { margin: 0 auto; }
  .hero-pills { justify-content: center; }
  .hero-sub { margin: 0 auto; text-align: center; }
  .hero-image { order: -1; }
  .hero-guarantee { justify-content: center; text-align: center; font-size: 11px; line-height: 1.4; }

  .trust-bar-inner { gap: var(--space-4); justify-content: center; }

  .included-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lifestyle-grid img { height: 200px; }

  .specs-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .specs-image img { min-height: 300px; }

  .wif-grid { grid-template-columns: 1fr; }
  .wif-card { padding: 32px 24px 28px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .guarantee-card { padding: var(--space-8) var(--space-6); }
  .guarantee-perks { flex-direction: column; align-items: center; gap: var(--space-4); }

  .gifts-strip { grid-template-columns: repeat(2, 1fr); }
  .gifts-strip .gift-item:last-child {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }

  .sticky-cta { display: flex; }
  .purchase-notification { display: none; }

  .final-cta .btn-primary {
    font-size: var(--text-base);
    padding: 16px 36px;
    width: 100%;
  }

  footer { padding-bottom: calc(var(--space-8) + 70px); }
}

@media (max-width: 480px) {
  .hero-price { flex-wrap: wrap; justify-content: center; }
}
