@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('quiz.css');
@import url('editorial.css');

:root {
  /* Solid Modern Color Tokens - No Gradients */
  --color-brand-red: #dc2626;
  --color-brand-red-hover: #b91c1c;
  --color-brand-red-dark: #991b1b;
  --color-brand-red-light: #fef2f2;
  --color-brand-red-border: #fecaca;
  
  --color-ink-black: #0f172a;
  --color-graphite: #1e293b;
  --color-slate: #334155;
  --color-mid-gray: #64748b;
  --color-steel: #94a3b8;
  --color-mist: #cbd5e1;
  --color-fog: #e2e8f0;
  --color-cloud: #f8fafc;
  --color-paper: #ffffff;
  
  --color-emerald: #059669;
  --color-emerald-light: #ecfdf5;
  --color-amber: #d97706;
  --color-amber-light: #fffbeb;

  /* Typography */
  --font-satoshi: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale */
  --text-caption: 14px;
  --leading-caption: 1.5;
  --text-body-sm: 16px;
  --leading-body-sm: 1.55;
  --text-body: 18px;
  --leading-body: 1.65;
  --text-subheading: 20px;
  --leading-subheading: 1.45;
  --text-heading-sm: 24px;
  --leading-heading-sm: 1.35;
  --text-heading: 32px;
  --leading-heading: 1.3;
  --text-heading-lg: 40px;
  --leading-heading-lg: 1.25;
  --text-display: 46px;
  --leading-display: 1.2;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Layout */
  --page-max-width: 1200px;
  --radius-badges: 6px;
  --radius-buttons: 8px;
  --radius-inputs: 8px;
  --radius-cards: 12px;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-dropdown: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--color-brand-red);
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-satoshi);
  color: var(--color-slate);
  background-color: #fcfcfd;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-weight: var(--font-weight-regular);
}

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-ink-black);
  font-family: var(--font-satoshi);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-size: var(--text-display);
  line-height: var(--leading-display);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--text-heading-lg);
  line-height: var(--leading-heading-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: 14px;
}

h3 {
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}

h4 {
  font-size: var(--text-heading-sm);
  line-height: var(--leading-heading-sm);
  font-weight: var(--font-weight-semibold);
}

/* Announcement Bar */
.top-notice-bar {
  background-color: var(--color-graphite);
  color: #ffffff;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  padding: 10px 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-notice-bar a {
  color: #fca5a5;
  text-decoration: underline;
  font-weight: var(--font-weight-bold);
}

.affiliate-disclosure-tag {
  background-color: rgba(255, 255, 255, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-badges);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Navbar & Premium Dropdowns */
.top-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-fog);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: var(--font-weight-bold);
  color: var(--color-ink-black);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-brand-red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item {
  position: relative;
  padding: 10px 0;
}

.nav-link {
  color: var(--color-slate);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--color-brand-red);
  background-color: var(--color-brand-red-light);
  border-color: var(--color-brand-red-border);
}

.nav-chevron {
  font-size: 10px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-dropdown);
  padding: 8px;
  min-width: 270px;
  max-height: 75vh;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 1050;
}

.nav-dropdown a {
  padding: 10px 14px;
  color: var(--color-slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dropdown a:hover {
  background-color: var(--color-brand-red-light);
  color: var(--color-brand-red-dark);
  font-weight: 600;
  padding-left: 18px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: flex;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-buttons);
  font-family: var(--font-satoshi);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-brand-red);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-brand-red-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-paper);
  color: var(--color-ink-black);
  border: 1px solid var(--color-mist);
}

.btn-secondary:hover {
  background-color: var(--color-cloud);
  border-color: var(--color-steel);
}

.btn-coupon {
  background-color: var(--color-brand-red-light);
  color: var(--color-brand-red-dark);
  border: 1px dashed var(--color-brand-red);
  padding: 8px 14px;
  border-radius: var(--radius-buttons);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-caption);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-coupon:hover {
  background-color: #fee2e2;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 32px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-fog);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-badges);
  background-color: var(--color-brand-red-light);
  color: var(--color-brand-red-dark);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: fit-content;
  border: 1px solid var(--color-brand-red-border);
}

.trust-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 4px 0;
  font-size: 15px;
}

.stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Edward Sturm Executive Summary / Direct Answer Box */
.executive-summary-box {
  background-color: #ffffff;
  border: 1px solid var(--color-brand-red-border);
  border-left: 4px solid var(--color-brand-red);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 20px 0;
  box-shadow: var(--shadow-subtle);
}

.executive-summary-box h3 {
  font-size: 18px;
  color: var(--color-brand-red-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.executive-summary-box p {
  font-size: 17px;
  color: var(--color-ink-black);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Quick Verdict Card */
.quick-verdict-box {
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-top: 4px solid var(--color-brand-red);
  border-radius: var(--radius-cards);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.verdict-score-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-fog);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.verdict-score-big {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-brand-red);
  line-height: 1;
}

.verdict-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.pros-list, .cons-list {
  list-style: none;
  font-size: var(--text-caption);
  line-height: 1.5;
}

.pros-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
  color: var(--color-slate);
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-emerald);
  font-weight: bold;
}

.cons-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
  color: var(--color-slate);
}

.cons-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--color-brand-red);
  font-weight: bold;
}

/* Table of Contents Box */
.toc-box {
  background-color: var(--color-cloud);
  border: 1px solid var(--color-fog);
  border-radius: var(--radius-cards);
  padding: 20px 24px;
  margin: 28px 0;
}

.toc-box h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--color-ink-black);
}

.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.toc-list a {
  color: var(--color-slate);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
}

.toc-list a:hover {
  color: var(--color-brand-red);
  text-decoration: underline;
}

/* Content Body */
.feature-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--color-fog);
}

.content-body {
  max-width: 900px;
  margin: 0 auto;
}

.content-body h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-fog);
}

.content-body h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-body p {
  margin-bottom: 16px;
  color: var(--color-slate);
  font-size: 17px;
  line-height: 1.65;
}

.content-body ul, .content-body ol {
  margin: 14px 0 20px 24px;
  color: var(--color-slate);
}

.content-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-callout {
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-left: 4px solid var(--color-brand-red);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  box-shadow: var(--shadow-subtle);
}

.info-callout h4 {
  color: var(--color-ink-black);
  margin-bottom: 6px;
}

.info-callout p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Card Grids */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-radius: var(--radius-cards);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-steel);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-ink-black);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-badges);
  z-index: 2;
}

.product-badge.popular {
  background-color: var(--color-brand-red);
}

.product-image-wrap {
  position: relative;
  background-color: #f8fafc;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.product-body p {
  font-size: var(--text-caption);
  color: var(--color-mid-gray);
  margin-bottom: 14px;
  flex-grow: 1;
}

.product-specs-list {
  background-color: var(--color-cloud);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  color: var(--color-slate);
}

.spec-row strong {
  color: var(--color-ink-black);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.price-current {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-ink-black);
}

.price-discounted {
  font-size: 13px;
  color: var(--color-brand-red);
  font-weight: 700;
}

/* Tables */
.table-container {
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-radius: var(--radius-cards);
  overflow-x: auto;
  box-shadow: var(--shadow-subtle);
  margin: 20px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--text-caption);
}

.comparison-table th {
  background-color: var(--color-graphite);
  color: #ffffff;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
}

.comparison-table th.highlight-col {
  background-color: var(--color-brand-red);
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-fog);
  color: var(--color-slate);
}

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

.comparison-table td.highlight-td {
  background-color: var(--color-brand-red-light);
  font-weight: 600;
  color: var(--color-ink-black);
}

/* Interactive Quiz */
.quiz-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-radius: var(--radius-cards);
  padding: 32px;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.quiz-btn {
  background-color: var(--color-cloud);
  border: 1px solid var(--color-fog);
  padding: 16px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-satoshi);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink-black);
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quiz-btn span {
  font-size: 13px;
  color: var(--color-mid-gray);
  font-weight: 400;
}

.quiz-btn:hover {
  border-color: var(--color-brand-red);
  background-color: var(--color-brand-red-light);
}

.quiz-result {
  background-color: var(--color-brand-red-light);
  border: 1px solid var(--color-brand-red-border);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  margin-top: 18px;
}

/* Accordion FAQ */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--color-fog);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 18px;
  color: var(--color-brand-red);
  transition: transform 0.15s ease;
}

.faq-answer {
  padding: 0 20px 16px;
  display: none;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-slate);
}

.faq-item.open {
  border-color: var(--color-brand-red-border);
}

.faq-item.open .faq-answer {
  display: block;
}

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

/* Sticky Bottom Floating Bar */
.sticky-coupon-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-graphite);
  color: #ffffff;
  padding: 10px 24px;
  z-index: 999;
  border-top: 3px solid var(--color-brand-red);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.sticky-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.coupon-badge {
  background-color: var(--color-brand-red);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 10px 0;
  font-size: 13px;
  color: var(--color-mid-gray);
  border-bottom: 1px solid var(--color-fog);
  background-color: #ffffff;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-list a {
  color: var(--color-slate);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--color-brand-red);
}

.breadcrumb-separator {
  color: var(--color-steel);
}

/* Footer */
.footer {
  background-color: var(--color-graphite);
  color: var(--color-mist);
  padding: 48px 0 28px;
  font-size: var(--text-caption);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  color: var(--color-mist);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer a:hover {
  color: #fca5a5;
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--color-steel);
}

/* Mobile Responsive Overhaul */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card-grid-3, .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    display: none;
  }
}

@media (max-width: 680px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }

  /* Compact Mobile Announcement */
  .top-notice-bar {
    padding: 8px 12px;
    font-size: 12px;
    gap: 8px;
  }

  .top-notice-bar .btn-coupon {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* Clean Mobile Header */
  .nav-container {
    height: 60px;
  }

  .logo {
    font-size: 15px;
    gap: 8px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .nav-cta .btn-primary {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }

  /* Typography */
  h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  h2 {
    font-size: 21px;
    line-height: 1.3;
  }

  h3 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 16px !important;
  }

  /* Full-width Stacked Hero Buttons */
  .hero-content div[style*="display: flex"] {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-content div[style*="display: flex"] .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px 16px !important;
  }

  /* Clean 2-column Geo-Trust Grid */
  .geo-trust-strip {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 14px !important;
    padding-top: 12px !important;
  }

  .geo-trust-strip > div {
    font-size: 11px !important;
    gap: 6px !important;
  }

  /* Table Smooth Horizontal Scrolling */
  .table-container {
    margin: 16px -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 540px;
    font-size: 12px;
  }

  .comparison-table th, .comparison-table td {
    padding: 10px 12px;
  }

  /* Real Photos 2-Column Grid on Mobile */
  .real-photo-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .card-grid-3, .card-grid-2, .card-grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quiz-options-grid {
    grid-template-columns: 1fr;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .info-callout {
    padding: 14px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Sticky Floating Discount Bar */
  .sticky-coupon-bar {
    padding: 8px 12px;
    gap: 8px;
    flex-direction: row;
    justify-content: space-between;
  }

  .sticky-text {
    font-size: 11px;
    gap: 4px;
  }

  .sticky-coupon-bar .btn-coupon {
    display: none;
  }

  .sticky-coupon-bar .btn-primary {
    padding: 7px 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}
