/* Sierra Madre - Emergency Bivvy Comparison Page */
/* Brand Theme: Turquoise (#59FFD9) + Dark Blue (#13475A) */
/* Strategy: benefit_led | Traffic: warm | Page Type: comparison */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: #59FFD9;
  --color-secondary: #13475A;
  --color-accent: #F6A429;
  --color-cta-bg: #59FFD9;
  --color-cta-text: #13475A;

  /* Neutral Palette */
  --color-neutral-50: #FAFAFA;
  --color-neutral-100: #F5F5F5;
  --color-neutral-200: #E5E5E5;
  --color-neutral-300: #D4D4D4;
  --color-neutral-400: #A3A3A3;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #171717;

  /* Comparison Page Palette (Green Theme) */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;
  --color-winner: #059669;
  --color-winner-bg: #D1FAE5;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Weights */
  --fw-normal: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Font Sizes (Mobile-First) */
  --fs-xs: 0.75rem;      /* 12px */
  --fs-sm: 0.875rem;     /* 14px */
  --fs-base: 1rem;       /* 16px */
  --fs-lg: 1.125rem;     /* 18px */
  --fs-xl: 1.25rem;      /* 20px */
  --fs-2xl: 1.5rem;      /* 24px */
  --fs-3xl: 1.875rem;    /* 30px */
  --fs-4xl: 2.25rem;     /* 36px */
  --fs-5xl: 3rem;        /* 48px */

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max-width: 1200px;
  --content-max-width: 800px;
  --section-padding-y: var(--space-12);
  --section-padding-y-desktop: var(--space-20);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-normal);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-neutral-800);
  background-color: var(--color-neutral-50);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-neutral-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
}

h2 {
  font-size: var(--fs-3xl);
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

h5 {
  font-size: var(--fs-lg);
}

h6 {
  font-size: var(--fs-base);
}

p {
  margin-bottom: var(--space-4);
}

strong, b {
  font-weight: var(--fw-bold);
}

em, i {
  font-style: italic;
}

/* Desktop Typography Scaling */
@media (min-width: 1000px) {
  h1 {
    font-size: var(--fs-5xl);
  }

  h2 {
    font-size: var(--fs-4xl);
  }

  h3 {
    font-size: var(--fs-3xl);
  }

  p {
    font-size: var(--fs-lg);
  }
}

/* ============================================
   LAYOUT SYSTEM
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 740px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1000px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

.content-wrapper {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

@media (min-width: 1000px) {
  section {
    padding-top: var(--section-padding-y-desktop);
    padding-bottom: var(--section-padding-y-desktop);
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background-color: var(--color-secondary);
  color: white;
  padding: var(--space-3) 0;
  border-bottom: 2px solid var(--color-primary);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.badge-icon {
  font-size: var(--fs-lg);
}

@media (min-width: 740px) {
  .trust-badge {
    font-size: var(--fs-base);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0a2e3d 100%);
  color: white;
  text-align: center;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(89, 255, 217, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
}

.hero__headline {
  color: white;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.hero__subheadline {
  font-size: var(--fs-xl);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__image {
  margin: var(--space-8) auto;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image img {
  width: 100%;
  height: auto;
}

.hero--with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero--with-bg .hero__headline {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero--with-bg .hero__subheadline {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1000px) {
  .hero--with-bg {
    min-height: 500px;
  }

  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .hero__subheadline {
    font-size: var(--fs-2xl);
  }
}

/* ============================================
   QUICK VERDICT
   ============================================ */
.quick-verdict {
  background-color: var(--color-winner-bg);
  border-left: 4px solid var(--color-winner);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
}

.quick-verdict__title {
  color: var(--color-winner);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.quick-verdict__content {
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-header__title {
  margin-bottom: var(--space-3);
}

.section-header__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-neutral-600);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  min-width: 600px;
}

.comparison-table thead {
  background-color: var(--color-secondary);
  color: white;
}

.comparison-table th {
  padding: var(--space-4) var(--space-3);
  text-align: left;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  position: relative;
}

.comparison-table th.winner-col {
  background-color: var(--color-winner);
  position: relative;
}

.winner-badge {
  display: block;
  font-size: var(--fs-xs);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-1);
  text-align: center;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.5px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-neutral-200);
}

.comparison-table tbody tr:hover {
  background-color: var(--color-neutral-50);
}

.comparison-table td {
  padding: var(--space-4) var(--space-3);
  font-size: var(--fs-sm);
}

.comparison-table td.feature-col {
  font-weight: var(--fw-semibold);
  color: var(--color-neutral-700);
}

.comparison-table td.winner-col {
  background-color: var(--color-winner-bg);
  font-weight: var(--fw-semibold);
}

.value-highlight {
  color: var(--color-winner);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

.check-icon {
  color: var(--color-success);
  font-weight: var(--fw-bold);
}

.x-icon {
  color: var(--color-danger);
  font-weight: var(--fw-bold);
}

@media (min-width: 740px) {
  .comparison-table {
    min-width: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-5) var(--space-4);
    font-size: var(--fs-base);
  }

  .winner-badge {
    font-size: var(--fs-sm);
  }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
  border: 2px solid var(--color-neutral-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-card--featured {
  border-color: var(--color-winner);
  border-width: 3px;
  background: linear-gradient(to bottom, var(--color-winner-bg) 0%, white 120px);
}

.product-card--not-recommended {
  border-color: var(--color-danger);
  opacity: 0.85;
}

.product-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-winner);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.product-card--not-recommended .product-card__badge {
  background-color: var(--color-danger);
}

.product-card__rank {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background-color: var(--color-secondary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
}

.product-card__grid {
  display: grid;
  gap: var(--space-6);
}

.product-card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.product-card__image a:hover img {
  transform: scale(1.05);
}

.product-card__size-comparison {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-neutral-100);
  padding: var(--space-4);
  border-radius: var(--radius-md);
}

.product-card__size-comparison img {
  max-width: 200px;
  height: auto;
  border-radius: var(--radius-sm);
}

.size-comparison__caption {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-winner);
  text-align: center;
}

.product-card__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-2);
  color: var(--color-secondary);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.stars {
  color: var(--color-accent);
  font-size: var(--fs-lg);
  letter-spacing: 2px;
}

.rating-value {
  font-weight: var(--fw-bold);
  color: var(--color-neutral-700);
}

.product-card__description {
  color: var(--color-neutral-700);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.product-card__features {
  margin-bottom: var(--space-5);
}

.product-card__features h4 {
  font-size: var(--fs-base);
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.product-card__features ul {
  list-style: none;
  padding: 0;
}

.product-card__features li {
  padding-left: var(--space-6);
  position: relative;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-700);
}

.product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--fw-bold);
}

.product-card__pros-cons {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.pros-list, .cons-list {
  list-style: none;
  padding: 0;
}

.pros-list li, .cons-list li {
  padding-left: var(--space-6);
  position: relative;
  margin-bottom: var(--space-2);
  font-size: var(--fs-sm);
}

.pros-list li::before {
  content: '👍';
  position: absolute;
  left: 0;
}

.cons-list li::before {
  content: '👎';
  position: absolute;
  left: 0;
}

.product-card__pricing {
  background-color: var(--color-neutral-50);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.current-price {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-winner);
}

.original-price {
  font-size: var(--fs-lg);
  color: var(--color-neutral-500);
  text-decoration: line-through;
}

.discount-badge {
  background-color: var(--color-danger);
  color: white;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
}

.price-note {
  font-size: var(--fs-sm);
  color: var(--color-neutral-600);
}

@media (min-width: 740px) {
  .product-card__grid {
    grid-template-columns: 300px 1fr;
  }

  .product-card__pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-button {
  display: inline-block;
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}

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

.cta-button--large {
  font-size: var(--fs-xl);
  padding: var(--space-5) var(--space-10);
}

.cta-button--full {
  width: 100%;
  display: block;
}

.cta-button--secondary {
  background-color: var(--color-secondary);
  color: white;
}

.cta-arrow {
  margin-left: var(--space-2);
  transition: transform var(--transition-base);
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Alias .btn classes to match HTML */
.btn {
  display: inline-block;
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: #4DE5C5;
}

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

.btn--primary {
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn--secondary:hover {
  background-color: #0a3545;
}

.btn--large {
  font-size: var(--fs-xl);
  padding: var(--space-5) var(--space-10);
}

.btn--xlarge {
  font-size: var(--fs-2xl);
  padding: var(--space-6) var(--space-12);
}

.btn--sticky {
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-base);
}

/* ============================================
   CTA SECTION (Final CTA)
   ============================================ */
.section--final-cta {
  background-color: var(--color-neutral-100);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.cta-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__headline {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
  color: var(--color-secondary);
}

.cta-section__product {
  margin-bottom: var(--space-6);
}

.cta-section__product-name {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.cta-section__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cta-section__price {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-winner);
}

.cta-section__original-price {
  font-size: var(--fs-xl);
  color: var(--color-neutral-500);
  text-decoration: line-through;
}

.cta-section__discount {
  background-color: var(--color-danger);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.cta-section__button {
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}

.value-stack {
  text-align: left;
  background-color: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.value-stack ul {
  list-style: none;
}

.value-stack li {
  padding: var(--space-2) 0;
  font-size: var(--fs-base);
}

.trust-elements {
  text-align: center;
}

.trust-elements p {
  margin-bottom: var(--space-2);
  font-size: var(--fs-base);
  color: var(--color-neutral-600);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--color-neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.testimonial-card__meta h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-1);
  color: var(--color-secondary);
}

.testimonial-card__verified {
  font-size: var(--fs-sm);
  color: var(--color-success);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.testimonial-card__rating {
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.testimonial-card__quote {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-neutral-700);
  font-style: italic;
}

@media (min-width: 740px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   OBJECTION HANDLERS
   ============================================ */
.objections {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}

.objection-item {
  padding: var(--space-5);
  border-bottom: 1px solid var(--color-neutral-200);
}

.objection-item:last-child {
  border-bottom: none;
}

.objection-item__question {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-danger);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.objection-item__answer {
  color: var(--color-neutral-700);
  line-height: 1.7;
  padding-left: var(--space-6);
}

/* ============================================
   WHO SHOULD BUY
   ============================================ */
.who-should-buy__grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.buyer-persona {
  background-color: white;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.buyer-persona h3 {
  font-size: var(--fs-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.buyer-persona p {
  color: var(--color-neutral-700);
  margin-bottom: 0;
}

@media (min-width: 740px) {
  .who-should-buy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .who-should-buy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   GUARANTEE BOX
   ============================================ */
.guarantee-box {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0a2e3d 100%);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-8) 0;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(89, 255, 217, 0.1) 0%, transparent 70%);
  animation: guaranteeGlow 4s ease-in-out infinite;
}

@keyframes guaranteeGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.guarantee-box__icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
}

.guarantee-box__title,
.guarantee-box__headline {
  color: white;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.guarantee-box__text {
  font-size: var(--fs-lg);
  max-width: 700px;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.guarantee-box__secondary {
  font-size: var(--fs-base);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.guarantee-box__subtext {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-5);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  background-color: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-item__question:hover {
  background-color: var(--color-neutral-50);
}

.faq-item__icon {
  font-size: var(--fs-xl);
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item__answer-content {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-neutral-700);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--color-winner) 0%, #047857 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  color: white;
  margin-bottom: var(--space-4);
}

.final-cta__subtitle {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

.value-stack {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-stack__title {
  color: white;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
}

.value-stack__items {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.value-stack__items li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.value-stack__items li:last-child {
  border-bottom: none;
}

.value-stack__items li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  flex-shrink: 0;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-cta-bg);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

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

.sticky-cta .cta-button {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

@media (min-width: 740px) {
  .sticky-cta {
    display: none;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--delay-1 {
  transition-delay: 0.1s;
}

.scroll-reveal--delay-2 {
  transition-delay: 0.2s;
}

.scroll-reveal--delay-3 {
  transition-delay: 0.3s;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-success {
  color: var(--color-success);
}

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

/* ============================================
   OBJECTION HANDLERS / COMMON QUESTIONS
   ============================================ */
.section--objections .section__headline {
  margin-bottom: var(--space-10);
}

.objection-block {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-neutral-200);
}

.objection-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.objection__question {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

.objection__response {
  color: var(--color-neutral-700);
  line-height: 1.8;
}

.objection__response p {
  margin-bottom: var(--space-5);
}

.objection__response p:last-child {
  margin-bottom: 0;
}

.objection__response ul,
.proof-list {
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.objection__response ul li,
.proof-list li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

.proof-list {
  list-style: none;
  padding-left: 0;
}

.proof-list li {
  padding-left: var(--space-6);
  position: relative;
}

.proof-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-winner);
  font-weight: var(--fw-bold);
}

/* ============================================
   RICH TEXT SECTIONS
   ============================================ */
.rich-text h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: var(--space-8);
  margin-top: var(--space-4);
}

.rich-text h2:first-child {
  margin-top: 0;
}

.rich-text h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.rich-text p {
  margin-bottom: var(--space-5);
  line-height: 1.8;
  color: var(--color-neutral-700);
}

.rich-text ul {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.rich-text ul li {
  margin-bottom: var(--space-3);
  line-height: 1.7;
  color: var(--color-neutral-700);
}

.highlight-box {
  background-color: var(--color-winner-bg);
  border-left: 4px solid var(--color-winner);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  margin: var(--space-6) 0;
}

.highlight-box strong {
  color: var(--color-secondary);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .sticky-cta,
  .cta-button,
  .trust-bar {
    display: none;
  }

  body {
    background-color: white;
  }

  section {
    page-break-inside: avoid;
  }
}
