/* ============================================
   DESIGN SYSTEM - compare-electrolytes.storeziller.com
   "Instant Hydration Purple" Theme
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --pearl: #F8F8FC;
  --ivory: #EFECF8;
  --charcoal: #0D0D0D;
  --slate: #5C5C6E;
  --gold: #574cd5;
  --gold-dark: #3d35b5;
  --gold-light: #ede9ff;
  --coral: #E85D4A;
  --sage: #4CAF82;
  --blush: #D4838A;

  /* Typography */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  /* Spacing */
  --section-gap: 100px;
  --container-max: 1140px;
  --radius: 16px;
  --radius-sm: 10px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-gold: 0 4px 20px rgba(87, 76, 213, 0.30);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--pearl);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gold-dark);
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

.section-subtitle {
  font-size: 18px;
  color: var(--slate);
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 22px;
}

.btn-lg {
  font-size: 18px;
  padding: 18px 40px;
}

/* CTA Pulse animation */
.btn-pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.btn-pulse:hover {
  animation: none;
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
  transition: all 0.3s ease;
}

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

/* --- Star Ratings --- */
.star-rating {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 16px;
}

.star-rating .star {
  width: 18px;
  height: 18px;
}

.star-rating .star.filled { color: var(--gold); }
.star-rating .star.half { color: var(--gold); }
.star-rating .star.empty { color: #D4D0C8; }

/* --- Score Bars --- */
.score-bar {
  width: 100%;
  height: 10px;
  background: var(--ivory);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 5px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.score-bar-fill.animated {
  /* width set via inline style */
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* --- Image Placeholders --- */
.img-placeholder {
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero image */
.hero-image {
  max-width: 520px;
  margin: 0 auto 40px;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
}

/* Review card product image */
.review-card-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-sm);
}

.review-card.winner .review-card-image {
  aspect-ratio: 16 / 8;
  border: 2px solid rgba(87, 76, 213, 0.2);
}

/* Deep review showcase */
.deep-review-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

/* VS brand image */
.vs-brand-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

/* Verdict image */
.verdict-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(87, 76, 213, 0.15);
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 76, 213, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-badge .badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
}

.trust-badge .badge-number {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}

.trust-badge .badge-label {
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  transition: all 0.25s ease;
}

.hero-nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

/* ============================================
   SECTION 2: COMPARISON TABLE
   ============================================ */
.comparison-section {
  background: var(--ivory);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  min-width: 900px;
}

.comparison-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  padding: 20px 16px;
  text-align: center;
  background: var(--pearl);
  border-bottom: 2px solid var(--ivory);
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  text-align: left;
  padding-left: 24px;
}

.comparison-table tbody td {
  padding: 20px 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--ivory);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Winner row */
.comparison-table tbody tr.winner-row {
  background: var(--gold-light);
}

.comparison-table tbody tr.winner-row td {
  border-bottom-color: rgba(87, 76, 213, 0.2);
}

.comparison-table tbody tr.winner-row td:first-child {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.winner-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.rating-cell {
  font-weight: 700;
  font-size: 18px;
}

.rating-cell.high { color: var(--gold-dark); }

.price-cell {
  letter-spacing: 2px;
  color: var(--slate);
}

.table-cta {
  font-size: 13px;
  padding: 8px 16px;
}

/* ============================================
   SECTION 3: BRAND REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  gap: 32px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Winner card */
.review-card.winner {
  border: 2px solid var(--gold);
  padding: 48px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
}

.rank-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--charcoal);
}

.review-card.winner .rank-badge {
  background: var(--gold);
  width: 56px;
  height: 56px;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.review-card-header h3 {
  font-size: 24px;
}

.review-card.winner .review-card-header h3 {
  font-size: 28px;
}

.review-card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card-rating .rating-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.review-overview {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-list h4,
.cons-list h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pros-list h4 { color: var(--sage); }
.cons-list h4 { color: var(--blush); }

.pros-list li,
.cons-list li {
  font-size: 15px;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--charcoal);
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.cons-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-weight: 700;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--ivory);
}

/* ============================================
   SECTION 4: DEEP REVIEW
   ============================================ */
.deep-review {
  background: var(--ivory);
}

.deep-review-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.deep-review-main h3 {
  margin-bottom: 24px;
}

.score-category {
  margin-bottom: 20px;
}

.score-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.score-category-label {
  font-weight: 600;
  font-size: 15px;
}

.score-category-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}

.best-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.best-for h4,
.not-ideal h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.best-for h4 { color: var(--sage); }
.not-ideal h4 { color: var(--blush); }

.best-for li,
.not-ideal li {
  font-size: 15px;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.best-for li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.not-ideal li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-weight: 700;
}

.deep-review-sidebar {
  position: sticky;
  top: 32px;
}

.sidebar-cta-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}

.sidebar-cta-box h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.sidebar-cta-box p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.sidebar-cta-box .btn {
  background: #fff;
  color: var(--gold-dark);
  border-color: #fff;
  width: 100%;
}

.sidebar-cta-box .btn:hover {
  background: var(--pearl);
  transform: translateY(-2px);
}

.sidebar-score {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

.sidebar-score-label {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* ============================================
   SECTION 5: VS COMPARISON
   ============================================ */
.vs-section {
  position: relative;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
}

.vs-brand {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
}

.vs-brand.winner-brand {
  border: 2px solid var(--gold);
}

.vs-brand h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
}

.vs-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(232, 93, 74, 0.3);
}

.vs-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--ivory);
}

.vs-category:last-child {
  border-bottom: none;
}

.vs-category-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

.vs-category-value {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vs-trophy {
  color: var(--gold);
  font-size: 16px;
}

/* ============================================
   SECTION 6: VERDICT
   ============================================ */
.verdict-section {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
}

.verdict-section h2 {
  color: #fff;
}

.verdict-section .section-label {
  color: var(--gold);
}

.verdict-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 680px;
  margin: 48px auto 0;
}

.verdict-score {
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.verdict-score-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.verdict-brand {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 16px;
}

.verdict-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.verdict-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  font-size: 24px;
  color: var(--gold);
}

/* ============================================
   SECTION 7: DISCLAIMERS / FOOTER
   ============================================ */
.disclaimers {
  background: var(--ivory);
  padding: 48px 0;
}

.disclaimers-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimers-content h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
  margin-bottom: 16px;
}

.disclaimers-content p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --section-gap: 80px;
  }

  section {
    padding: 80px 0;
  }

  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }

  .deep-review-grid {
    grid-template-columns: 1fr;
  }

  .deep-review-sidebar {
    position: static;
  }

  .vs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vs-circle {
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --section-gap: 60px;
  }

  section {
    padding: 60px 0;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .trust-badges {
    gap: 24px;
  }

  .hero-nav {
    gap: 10px;
  }

  .hero-nav a {
    font-size: 13px;
    padding: 6px 14px;
  }

  /* Table: reflow to stacked cards on mobile */
  .table-wrapper {
    box-shadow: none !important;
    background: transparent !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  /* Force every table element out of table layout */
  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .comparison-table {
    min-width: 0 !important;
  }

  .comparison-table thead {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .comparison-table tbody tr {
    background: #fff !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
    margin-bottom: 16px !important;
    padding: 20px !important;
    border-left: none !important;
  }

  .comparison-table tbody tr.winner-row {
    border: 2px solid var(--gold) !important;
    background: var(--gold-light) !important;
  }

  /* All cells: label on left, value on right */
  .comparison-table tbody td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--ivory) !important;
    font-size: 14px !important;
    text-align: right !important;
    min-height: 40px !important;
  }

  /* Brand name cell — full-width header inside card */
  .comparison-table tbody td:first-child {
    display: block !important;
    text-align: left !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 0 0 12px 0 !important;
    margin-bottom: 4px !important;
    border-bottom: 2px solid rgba(0,0,0,0.08) !important;
    white-space: normal !important;
  }

  .comparison-table tbody tr.winner-row td:first-child {
    border-bottom-color: rgba(87, 76, 213, 0.3) !important;
  }

  /* CTA cell — full-width button */
  .comparison-table tbody td:last-child,
  .comparison-table tbody td.mobile-cta-cell {
    border-bottom: none !important;
    padding-top: 14px !important;
    display: block !important;
  }

  .comparison-table tbody td:last-child .btn,
  .comparison-table tbody td.mobile-cta-cell .btn {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  /* Show data-label as the left label on each row */
  .comparison-table tbody td::before {
    content: attr(data-label) !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: var(--slate) !important;
    text-align: left !important;
    flex-shrink: 0 !important;
    margin-right: 12px !important;
  }

  /* No label for brand name or CTA cells */
  .comparison-table tbody td:first-child::before,
  .comparison-table tbody td.mobile-cta-cell::before {
    display: none !important;
    content: none !important;
  }

  /* ---- Make all cards visible on mobile ---- */
  .overview-item {
    border: 1px solid rgba(87, 76, 213, 0.25) !important;
    margin-bottom: 12px !important;
    padding: 16px !important;
  }

  .overview-item.top-pick {
    border-color: var(--gold) !important;
  }

  /* Steps */
  .step-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 0;
  }

  /* How-it-works FAQ mini cards */
  .hiw-faq-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 12px;
  }

  /* Who should / shouldn't */
  .who-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 16px;
  }

  .who-card.should { border-top: 4px solid var(--sage); }
  .who-card.shouldnt { border-top: 4px solid var(--blush); }

  /* General pros / cons */
  .general-pros,
  .general-cons {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 16px;
  }

  .general-pros { border-top: 4px solid var(--sage); }
  .general-cons { border-top: 4px solid var(--blush); }

  /* Foods */
  .foods-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 16px;
  }

  .foods-card.safe { border-top: 4px solid var(--sage); }
  .foods-card.avoid { border-top: 4px solid var(--blush); }

  /* Materials */
  .material-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 12px;
  }

  .material-card.featured {
    border: 2px solid var(--gold) !important;
  }

  /* Alternatives */
  .alternative-item {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 12px;
  }

  /* Review cards */
  .review-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
  }

  /* Testimonials */
  .testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 16px;
  }

  /* Why features */
  .why-feature {
    margin-bottom: 12px;
  }

  /* Review cards */
  .review-card {
    padding: 28px 20px;
  }

  .review-card.winner {
    padding: 32px 24px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .review-card-footer .btn {
    width: 100%;
    text-align: center;
  }

  /* Best for grid */
  .best-for-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* VS section */
  .vs-brand {
    padding: 28px 20px;
  }

  /* Verdict */
  .verdict-card {
    padding: 40px 24px;
  }

  .verdict-score {
    font-size: 56px;
  }

  .verdict-brand {
    font-size: 26px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  /* List item spacing on mobile */
  .who-list li,
  .general-pros li,
  .general-cons li,
  .foods-card li,
  .pros-list li,
  .cons-list li,
  .best-for li,
  .not-ideal li {
    padding: 10px 0 10px 28px;
    line-height: 1.5;
  }

  /* New sections mobile */
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .how-it-works-faqs { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr !important; }
  .general-pros-cons { grid-template-columns: 1fr !important; }
  .foods-grid { grid-template-columns: 1fr !important; }
  .materials-grid { grid-template-columns: 1fr !important; }
  .alternative-item { grid-template-columns: 1fr !important; gap: 8px !important; padding: 20px !important; max-width: 100% !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; max-width: 100% !important; overflow: hidden !important; }
  .reviews-grid { grid-template-columns: 1fr !important; max-width: 100% !important; overflow: hidden !important; }
  .why-features-grid { grid-template-columns: 1fr; }
  .why-cta-box { padding: 32px 20px; }
  .why-cta-box h3 { font-size: 22px; }
  .page-intro { padding: 24px 20px; }
  /* sticky bar handled globally */
  .alt-cost, .alt-badge { display: none; }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.88);
  text-align: center;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 200;
}

.announcement-bar a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-bar a:hover { color: #fff; }

/* ============================================
   PAGE INTRO / TOC
   ============================================ */
.updated-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

.page-intro {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-top: 32px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  box-shadow: var(--shadow-card);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.page-intro p { margin-bottom: 12px; }
.page-intro p:last-child { margin-bottom: 0; }

.section-prose {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
}

.section-prose p { margin-bottom: 16px; }
.section-prose p:last-child { margin-bottom: 0; }

.callout-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin: 24px 0;
}

.callout-box p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0;
}

.callout-box strong { color: var(--gold-dark); }

/* ============================================
   OVERVIEW LIST (9 Brands Quick Look)
   ============================================ */
.overview-list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.overview-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.overview-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.overview-item.top-pick {
  border: 2px solid var(--gold);
  background: var(--gold-light);
}

.overview-number {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
  min-width: 32px;
  line-height: 1.4;
}

.overview-item.top-pick .overview-number { color: var(--gold-dark); }

.overview-content h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.overview-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   HOW IT WORKS STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.how-it-works-faqs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.hiw-faq-card {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.hiw-faq-card h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.hiw-faq-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ============================================
   WHO SHOULD / SHOULDN'T
   ============================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.who-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.who-card.should { border-top: 4px solid var(--sage); }
.who-card.shouldnt { border-top: 4px solid var(--blush); }

.who-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.who-card.should h3 { color: var(--sage); }
.who-card.shouldnt h3 { color: var(--blush); }

.who-list li {
  font-size: 15px;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--ivory);
}

.who-list li:last-child { border-bottom: none; }

.who-card.should .who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.who-card.shouldnt .who-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-weight: 700;
}

/* ============================================
   GENERAL PROS / CONS
   ============================================ */
.general-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.general-pros, .general-cons {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.general-pros { border-top: 4px solid var(--sage); }
.general-cons { border-top: 4px solid var(--blush); }

.general-pros h3, .general-cons h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.general-pros h3 { color: var(--sage); }
.general-cons h3 { color: var(--blush); }

.general-pros li, .general-cons li {
  font-size: 15px;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--ivory);
}

.general-pros li:last-child, .general-cons li:last-child { border-bottom: none; }

.general-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.general-cons li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-weight: 700;
}

/* ============================================
   DAILY HYDRATION GRID (replaces foods grid)
   ============================================ */
.foods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.foods-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.foods-card.safe { border-top: 4px solid var(--sage); }
.foods-card.avoid { border-top: 4px solid var(--blush); }

.foods-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.foods-card.safe h3 { color: var(--sage); }
.foods-card.avoid h3 { color: var(--blush); }

.foods-card li {
  font-size: 15px;
  padding: 7px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--ivory);
}

.foods-card li:last-child { border-bottom: none; }

.foods-card.safe li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.foods-card.avoid li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-weight: 700;
}

/* ============================================
   INGREDIENTS / MATERIALS GRID
   ============================================ */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.material-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.material-card.featured {
  border: 2px solid var(--gold);
  background: var(--gold-light);
}

.material-card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.material-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.material-tag.good { background: rgba(76,175,130,0.15); color: var(--sage); }
.material-tag.mid { background: rgba(87,76,213,0.15); color: var(--gold-dark); }
.material-tag.ok { background: var(--ivory); color: var(--slate); }
.material-tag.premium { background: rgba(87,76,213,0.2); color: var(--gold-dark); }

.material-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ============================================
   ALTERNATIVES
   ============================================ */
.alternatives-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.alternative-item {
  display: grid;
  grid-template-columns: 180px 1fr 150px 110px;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}

.alt-name { font-weight: 700; font-size: 16px; }
.alt-summary { font-size: 14px; color: var(--slate); line-height: 1.6; }
.alt-cost { font-family: var(--font-mono); font-size: 13px; color: var(--slate); }

.alt-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  text-align: center;
}

.alt-badge.permanent { background: rgba(212,131,138,0.15); color: var(--blush); }
.alt-badge.temp { background: rgba(76,175,130,0.15); color: var(--sage); }

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

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  transition: background 0.2s ease;
}

.faq-question:hover { background: var(--pearl); }

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 4px 28px 22px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 48px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  display: block;
}

.testimonial-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--ivory);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-location { font-size: 13px; color: var(--slate); }

/* ============================================
   WHY INSTANT HYDRATION SECTION
   ============================================ */
.why-section { background: var(--charcoal); }
.why-section h2 { color: #fff; text-align: center; }
.why-section .section-label { color: var(--gold); }

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(87,76,213,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.why-feature-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.why-feature h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.why-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.why-cta-box {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

.why-cta-box h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

.why-cta-box p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.why-cta-box .btn {
  background: #fff;
  color: var(--gold-dark);
  border-color: #fff;
}

.why-cta-box .btn:hover {
  background: var(--pearl);
  transform: translateY(-2px);
}

/* ============================================
   STICKY BOTTOM BAR
   ============================================ */
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 100%);
  z-index: 9999;
  box-shadow: 0 -6px 32px rgba(0,0,0,0.45);
  border-top: 3px solid var(--gold);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.sticky-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 72px;
}

/* --- Badge --- */
.sticky-bar-badge {
  background: linear-gradient(160deg, #f09030 0%, #d4690a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  min-width: 72px;
  flex-shrink: 0;
  gap: 1px;
}

.sticky-badge-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.sticky-badge-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* --- Content --- */
.sticky-bar-content {
  flex: 1;
  padding: 12px 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.sticky-bar-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.sticky-bar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sticky-bar-score {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.sticky-bar-stars {
  font-size: 13px;
  color: #f5a623;
  letter-spacing: 1px;
  line-height: 1;
}

.sticky-bar-pill {
  background: rgba(87,76,213,0.2);
  color: var(--gold);
  border: 1px solid rgba(87,76,213,0.4);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.sticky-bar-divider {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}

.sticky-bar-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- CTA Button --- */
.sticky-bar-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 36px;
  flex-shrink: 0;
  transition: filter 0.2s ease, transform 0.15s ease;
  position: relative;
  overflow: hidden;
}

.sticky-bar-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sticky-bar-btn:hover::before { opacity: 1; }
.sticky-bar-btn:hover { filter: brightness(1.1); color: #fff; }
.sticky-bar-btn:active { transform: scale(0.98); }

.sticky-btn-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.sticky-btn-arrow {
  font-size: 18px;
  color: #fff;
  animation: arrowBounce 1.6s ease-in-out infinite;
  display: inline-block;
}

/* --- Body offset --- */
body { padding-bottom: 75px; }

/* --- Mobile --- */
@media (max-width: 767px) {
  .sticky-bottom-bar { border-top-width: 3px; }

  .sticky-bar-inner { min-height: 62px; }

  .sticky-bar-badge {
    min-width: 56px;
    padding: 0 14px;
  }

  .sticky-badge-num { font-size: 18px; }
  .sticky-badge-label { font-size: 8px; }

  .sticky-bar-content { padding: 10px 12px; gap: 4px; }

  .sticky-bar-name { font-size: 14px; }

  .sticky-bar-score { font-size: 14px; }
  .sticky-bar-stars { font-size: 11px; }
  .sticky-bar-pill { font-size: 9px; padding: 2px 6px; }
  .sticky-bar-divider,
  .sticky-bar-desc { display: none; }

  .sticky-bar-btn { padding: 0 18px; gap: 6px; }
  .sticky-btn-text { font-size: 13px; }
  .sticky-btn-arrow { font-size: 15px; }

  body { padding-bottom: 65px; }
}

/* Tablet responsive for new sections */
@media (max-width: 1023px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-faqs { grid-template-columns: 1fr 1fr; }
  .why-features-grid { grid-template-columns: repeat(2, 1fr); }
  .alternative-item { grid-template-columns: 160px 1fr 110px; }
  .alt-badge { display: none; }
}

/* ============================================
   PROMO POPUP
   ============================================ */
@keyframes popupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: popupFadeIn 0.3s ease forwards;
}

.popup-overlay.active {
  display: flex;
}

.popup-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: popupSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  border-top: 4px solid var(--gold);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--ivory);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.popup-close:hover {
  background: var(--charcoal);
  color: #fff;
}

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.popup-stars {
  font-size: 22px;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 12px;
}

.popup-subtitle {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}

.popup-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  display: inline-block;
}

.popup-benefits li {
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-benefits li::first-letter {
  color: var(--gold);
  font-weight: 700;
}

.popup-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  margin-bottom: 14px;
  transition: filter 0.2s ease, transform 0.15s ease;
  box-shadow: 0 6px 20px rgba(87,76,213,0.35);
}

.popup-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #fff;
}

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

.popup-note {
  font-size: 12px;
  color: var(--slate);
  margin: 0;
}

/* Mobile popup */
@media (max-width: 767px) {
  .popup-card {
    padding: 36px 24px 28px;
    border-radius: 16px;
  }

  .popup-title {
    font-size: 22px;
  }

  .popup-subtitle {
    font-size: 13px;
  }

  .popup-btn {
    font-size: 15px;
    padding: 15px 24px;
  }
}
