/* ============================================================================
   PRESELL PAGE STYLESHEET v5.1
   Brand: Sierra Madre Research
   Page Type: Comparison
   Strategy: Benefit-Led
   Generated: 2026-01-21
   ============================================================================ */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-primary: #59FFD9;
  --color-secondary: #13475A;
  --color-accent: #F6A429;
  --color-background: #FFFFFF;
  --color-surface: #F5F5F5;

  /* Text Colors */
  --color-text-primary: #282828;
  --color-text-secondary: #4A4A4A;
  --color-text-muted: #6B6B6B;
  --color-text-inverse: #FFFFFF;

  /* CTA Colors */
  --color-cta-bg: #59FFD9;
  --color-cta-text: #13475A;
  --color-cta-hover: #4DE5C5;
  --color-cta-border: #59FFD9;

  /* Status Colors */
  --color-success: #2E9E7B;
  --color-warning: #F6A429;
  --color-error: #DE2A2A;

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

  --weight-regular: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Type Scale (fluid typography) */
  --font-size-h1: clamp(38px, 5vw, 56px);
  --font-size-h2: clamp(32px, 4vw, 48px);
  --font-size-h3: clamp(24px, 3vw, 36px);
  --font-size-h4: clamp(20px, 2.5vw, 30px);
  --font-size-h5: clamp(18px, 2vw, 24px);
  --font-size-body: clamp(16px, 1.5vw, 18px);
  --font-size-small: clamp(13px, 1.2vw, 14px);

  --line-height-heading: 1.2;
  --line-height-body: 1.6;

  /* Spacing */
  --space-section: 64px;
  --space-component: 32px;
  --space-element: 16px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;

  /* Layout */
  --max-width: 1600px;
  --content-width: 800px;
  --container-padding: 24px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Focus Ring */
  --focus-ring-color: var(--color-primary);
  --focus-ring-width: 2px;
}

/* Mobile Spacing Scale */
@media (max-width: 740px) {
  :root {
    --space-section: 48px;
    --space-component: 24px;
    --space-element: 12px;
    --space-lg: 36px;
    --space-xl: 72px;
  }
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button, input, textarea, select {
  font: inherit;
}

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

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-heading);
  margin-bottom: var(--space-element);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }

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

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

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

em, i {
  font-style: italic;
}

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

/* ==========================================================================
   4. LAYOUT CONTAINERS
   ========================================================================== */

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

.section {
  padding: var(--space-section) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-component);
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.section__intro {
  text-align: center;
  font-size: var(--font-size-h5);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 600px;
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
  position: relative;
  overflow: hidden;
}

.hero--asymmetric .hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 999px) {
  .hero--asymmetric .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-component);
  }

  .hero--asymmetric .hero__image-wrapper {
    order: -1;
  }
}

.hero__pre-headline {
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
}

.hero__headline {
  margin-bottom: var(--space-element);
}

.hero__subheadline {
  font-size: var(--font-size-h5);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-component);
}

.hero__hook {
  margin-bottom: var(--space-component);
  padding: var(--space-md);
  background: var(--color-background);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.hero__image-wrapper:hover {
  transform: scale(1.02);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   6. CTA BUTTONS
   ========================================================================== */

.cta-primary,
.cta-button,
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-family: var(--font-cta);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  text-align: center;
  text-decoration: none;
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
  border: 2px solid var(--color-cta-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  min-height: 44px;
  white-space: nowrap;
}

.cta-primary:hover,
.cta-button:hover,
.btn:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.cta-primary:focus,
.cta-button:focus,
.btn:focus {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: 4px;
}

.cta-button--large {
  padding: 24px 48px;
  font-size: 20px;
  font-weight: var(--weight-bold);
}

@media (max-width: 740px) {
  .cta-primary,
  .cta-button,
  .btn {
    padding: 16px 28px;
    font-size: 16px;
    width: 100%;
  }

  .cta-button--large {
    padding: 20px 36px;
    font-size: 18px;
  }
}

/* CTA Variants by Temperature */
.btn--warm {
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
}

.btn--cold {
  background-color: var(--color-secondary);
  color: var(--color-text-inverse);
  border-color: var(--color-secondary);
}

.btn--hot {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

/* ==========================================================================
   7. STICKY CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-background);
  border-top: 1px solid var(--color-surface);
  padding: var(--space-element) var(--container-padding);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  text-align: center;
}

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

.sticky-cta .btn {
  margin: 0 auto;
  display: inline-block;
}

@media (max-width: 740px) {
  .sticky-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   8. STAKES / PROBLEM AGITATION
   ========================================================================== */

.section--stakes {
  background-color: var(--color-surface);
}

.story-block {
  max-width: var(--content-width);
  margin: 0 auto var(--space-lg);
  background: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.story-block__setup,
.story-block__conflict,
.story-block__lesson {
  margin-bottom: var(--space-component);
}

.story-block__lesson {
  margin-bottom: 0;
}

.stat-callout {
  max-width: 600px;
  margin: var(--space-lg) auto;
  padding: var(--space-lg);
  background: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stat-callout--danger {
  border: 3px solid var(--color-error);
}

.stat-callout__number {
  font-size: 72px;
  font-weight: var(--weight-bold);
  color: var(--color-error);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-callout__text {
  font-size: var(--font-size-h4);
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
}

.bridge-text {
  max-width: var(--content-width);
  margin: 0 auto var(--space-lg);
  font-size: var(--font-size-h5);
  text-align: center;
}

.testimonial--inline {
  max-width: var(--content-width);
  margin: var(--space-lg) auto;
  padding: var(--space-lg);
  background: var(--color-background);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-style: italic;
}

.testimonial__quote {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-element);
}

.testimonial__author {
  font-style: normal;
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  font-weight: var(--weight-semibold);
}

.closing-text {
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: var(--font-size-h5);
  text-align: center;
}

/* ==========================================================================
   9. CRITERIA FRAMEWORK
   ========================================================================== */

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-component);
  max-width: var(--content-width);
  margin: 0 auto;
}

.criteria-item {
  background: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-surface);
  transition: all var(--transition-base);
}

.criteria-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.criteria-item__number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-size: 24px;
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-element);
}

.criteria-item__icon {
  font-size: 36px;
  margin-bottom: var(--space-element);
}

.criteria-item__title {
  margin-bottom: var(--space-element);
}

.criteria-item__description {
  margin-bottom: var(--space-element);
}

.criteria-item__benchmark,
.criteria-item__test,
.criteria-item__standard {
  background: var(--color-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-element) 0;
}

.criteria-item__proof {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-top: var(--space-element);
}

/* ==========================================================================
   10. PRODUCT COMPARISON
   ========================================================================== */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-component);
  margin-top: var(--space-lg);
}

/* Competitors-only grid: 3 columns max, centered */
.comparison-grid--competitors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-component);
  margin-top: var(--space-lg);
}

.comparison-grid--competitors .product-card {
  flex: 0 1 320px;
  max-width: 340px;
}

@media (max-width: 999px) {
  .comparison-grid--competitors {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .comparison-grid--competitors {
    grid-template-columns: 1fr;
  }
}

/* Winner Section - Featured Below */
.winner-section {
  margin-top: var(--space-xl);
  text-align: center;
}

.winner-section__header {
  margin-bottom: var(--space-component);
}

.winner-section__badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-body);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-element);
}

.winner-section__title {
  font-size: var(--font-size-h2);
  color: var(--color-text-primary);
}

/* Winner Card - Horizontal Layout */
.winner-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-lg);
  background: var(--color-background);
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

.winner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(89, 255, 217, 0.25);
}

.winner-card__image {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.winner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.winner-card:hover .winner-card__image img {
  transform: scale(1.05);
}

.winner-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.winner-card__name {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-element);
  color: var(--color-text-primary);
}

.winner-card__pricing {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-component);
  flex-wrap: wrap;
}

.winner-card__price {
  font-size: var(--font-size-h1);
  font-weight: var(--weight-bold);
  color: var(--color-success);
  line-height: 1;
}

.winner-card__original {
  font-size: var(--font-size-h4);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.winner-card__discount {
  display: inline-block;
  background: var(--color-error);
  color: var(--color-text-inverse);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-small);
  font-weight: var(--weight-bold);
}

.winner-card__features {
  list-style: none;
  margin-bottom: var(--space-component);
}

.winner-card__features li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  font-size: var(--font-size-body);
}

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

.winner-card__guarantee {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-element);
  font-size: var(--font-size-small);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
}

.winner-card__limitation {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-component);
}

.winner-card__cta {
  display: inline-block;
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-pill);
  font-weight: var(--weight-semibold);
  font-size: var(--font-size-body);
  transition: all var(--transition-base);
  align-self: flex-start;
}

.winner-card:hover .winner-card__cta {
  background: var(--color-cta-hover);
}

@media (max-width: 999px) {
  .winner-card {
    grid-template-columns: 1fr;
  }

  .winner-card__image {
    max-height: 350px;
  }

  .winner-card__content {
    padding: var(--space-component);
  }

  .winner-card__price {
    font-size: var(--font-size-h2);
  }
}

@media (max-width: 600px) {
  .winner-card__pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .winner-card__guarantee {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

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

.product-card {
  background: var(--color-background);
  border: 2px solid var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.product-card--winner {
  border-color: var(--color-primary);
  border-width: 3px;
  box-shadow: var(--shadow-lg);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-small);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.product-card__header {
  padding: var(--space-md);
  background: var(--color-surface);
  text-align: center;
}

.product-card__name {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
}

.product-card__price {
  font-size: var(--font-size-h5);
  color: var(--color-text-secondary);
  font-weight: var(--weight-semibold);
}

.product-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.product-card__price--current {
  font-size: var(--font-size-h2);
  color: var(--color-success);
}

.product-card__price--original {
  font-size: var(--font-size-h5);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__discount {
  display: inline-block;
  background: var(--color-error);
  color: var(--color-text-inverse);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-small);
  font-weight: var(--weight-bold);
}

.product-card__image-wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__content {
  padding: var(--space-lg);
}

.product-card__pros-header,
.product-card__cons-header {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
}

.product-card__pros-header {
  color: var(--color-success);
}

.product-card__cons-header {
  color: var(--color-error);
}

.product-card__pros,
.product-card__cons {
  list-style-position: inside;
  margin-bottom: var(--space-component);
}

.product-card__pros li {
  margin-bottom: var(--space-xs);
}

.product-card__cons li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
}

.product-card__limitation {
  background: var(--color-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-component) 0;
}

.product-card__limitation h5 {
  color: var(--color-warning);
  margin-bottom: var(--space-sm);
}

.product-card__verdict {
  font-style: italic;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-surface);
  padding-top: var(--space-element);
  margin-top: var(--space-component);
}

/* ==========================================================================
   11. COMPARISON TABLE
   ========================================================================== */

.comparison-table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-background);
}

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

.comparison-table th {
  padding: var(--space-md);
  text-align: left;
  font-weight: var(--weight-semibold);
  font-size: var(--font-size-h5);
}

.comparison-table__winner {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.comparison-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-surface);
}

.comparison-table__concern {
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.rating--poor {
  color: var(--color-error);
}

.rating--moderate {
  color: var(--color-warning);
}

.rating--excellent {
  color: var(--color-success);
  font-weight: var(--weight-semibold);
}

@media (max-width: 740px) {
  .comparison-table {
    font-size: var(--font-size-small);
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-sm);
  }
}

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-component);
  margin: var(--space-lg) 0;
}

.testimonial-card {
  background: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-surface);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__rating {
  margin-bottom: var(--space-element);
}

.star {
  color: var(--color-accent);
  font-size: 20px;
}

.testimonial-card__quote {
  font-size: var(--font-size-h5);
  line-height: 1.5;
  margin-bottom: var(--space-component);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-element);
}

.testimonial-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-style: normal;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-h5);
  display: block;
  margin-bottom: var(--space-xs);
}

.testimonial-card__context {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
}

.authority-statement {
  max-width: var(--content-width);
  margin: var(--space-lg) auto 0;
  text-align: center;
  font-size: var(--font-size-h5);
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   13. VERDICT SECTION
   ========================================================================== */

.section--verdict {
  background: var(--color-surface);
}

.verdict__subheader {
  text-align: center;
  margin-bottom: var(--space-component);
}

.verdict__reasons {
  max-width: var(--content-width);
  margin: 0 auto var(--space-lg);
  list-style-position: inside;
}

.verdict__reasons li {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h5);
  padding-left: var(--space-md);
}

.verdict__dramatic-close {
  text-align: center;
  max-width: var(--content-width);
  margin: var(--space-lg) auto;
  padding: var(--space-lg);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-h3);
}

.verdict__softener {
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: var(--font-size-h5);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   14. CTA SECTION
   ========================================================================== */

.section--cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-text-inverse);
}

.section--cta .section__header {
  color: var(--color-text-inverse);
}

.cta-content {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.future-pacing {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  backdrop-filter: blur(10px);
}

.future-pacing__payoff {
  font-size: var(--font-size-h3);
  font-weight: var(--weight-bold);
  margin-top: var(--space-component);
}

.cta-pricing {
  margin: var(--space-lg) 0;
}

.cta-pricing__current {
  font-size: 72px;
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.cta-pricing__original {
  font-size: var(--font-size-h5);
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xs);
}

.cta-pricing__savings {
  font-size: var(--font-size-h4);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
}

.guarantees-list {
  list-style: none;
  margin: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.guarantees-list li {
  font-size: var(--font-size-h5);
  font-weight: var(--weight-semibold);
}

.urgency-text {
  margin: var(--space-component) 0;
  font-size: var(--font-size-h5);
  font-weight: var(--weight-semibold);
}

.multiplier-text {
  font-size: var(--font-size-h5);
}

/* ==========================================================================
   15. FOOTER / TRUST SIGNALS
   ========================================================================== */

.footer {
  background: var(--color-surface);
  padding: var(--space-lg) 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-component);
  margin-bottom: var(--space-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.trust-badge__icon {
  font-size: 36px;
}

.trust-badge__text {
  font-weight: var(--weight-semibold);
  font-size: var(--font-size-body);
}

.brand-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.brand-info__name {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-xs);
}

.brand-info__tagline {
  font-size: var(--font-size-h5);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-element);
  font-style: italic;
}

.brand-info__reviews {
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   16. PSYCHOLOGICAL HOOKS
   ========================================================================== */

.hook--curiosity {
  position: relative;
}

.hook--social-proof {
  position: relative;
}

.hook--scarcity {
  position: relative;
}

.hook--authority {
  position: relative;
}

.hook--contrast {
  position: relative;
}

/* ==========================================================================
   17. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

[data-scroll-reveal] {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-scroll-reveal].revealed {
  opacity: 1;
}

[data-scroll-reveal="fade-up"] {
  transform: translateY(30px);
}

[data-scroll-reveal="fade-up"].revealed {
  transform: translateY(0);
}

[data-scroll-reveal="slide-left"] {
  transform: translateX(30px);
}

[data-scroll-reveal="slide-left"].revealed {
  transform: translateX(0);
}

[data-scroll-reveal="slide-right"] {
  transform: translateX(-30px);
}

[data-scroll-reveal="slide-right"].revealed {
  transform: translateX(0);
}

[data-scroll-reveal="scale-up"] {
  transform: scale(0.95);
}

[data-scroll-reveal="scale-up"].revealed {
  transform: scale(1);
}

[data-scroll-reveal="slide-up"] {
  transform: translateY(30px);
}

[data-scroll-reveal="slide-up"].revealed {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   18. ACCESSIBILITY
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: 4px;
}

/* ==========================================================================
   19. RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 740px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 741px) {
  .hide-desktop {
    display: none;
  }
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
