/* ═══════════════════════════════════════════════════════════════
   SpecZap v3 Design System — Apple/Nike/Linear Hybrid
   Loaded AFTER persona.css + landing.css to override
   ═══════════════════════════════════════════════════════════════ */

/* ── Premium typography: replace Bebas/Outfit with Inter Tight ── */
body, h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .p-btn, .nav-link,
button, input, textarea, select {
  font-family: 'Inter Tight', 'IBM Plex Sans Thai', system-ui, -apple-system, sans-serif !important;
}

/* Numbers in mono for tabular alignment (spec tables, scores) */
.font-mono, .lb-score-big, .qs-row, .product-price, .ipanel-pct {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-variant-numeric: tabular-nums;
}

/* ── Override aggressive font weights — Apple uses 400-700, never 900 ── */
.section-title, .hero-title, h1, h2 {
  font-weight: 700 !important;
  letter-spacing: -0.03em;
}
.p-btn, .hero-cta-btn, .compare-btn, .hcf-btn {
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

/* ── Hero refinement (Apple Vision Pro / Linear style) ── */
.hero-section, .compare-section, .how-section {
  padding-top: var(--sp-3xl, 96px) !important;
  padding-bottom: var(--sp-3xl, 96px) !important;
}

/* ── Premium card system (Linear glass) ── */
.product-slot, .blog-card, .how-step, .verdict-banner,
.sidebar-card, .product-header-card, .lb-row {
  background: var(--p-gradient-glass, linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01))) !important;
  border: 1px solid var(--p-border, rgba(255,255,255,0.08)) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg, 20px) !important;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.product-slot:hover, .blog-card:hover, .how-step:hover {
  border-color: rgba(255,255,255,0.16) !important;
  transform: translateY(-2px);
}

/* ── Primary CTA — Nike-bold but Apple-restrained ── */
.p-btn, .compare-btn, .hero-cta-btn, .fof-btn-primary {
  background: var(--p-red) !important;
  border-radius: var(--r-full, 9999px) !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 8px 24px -8px rgba(239, 68, 68, 0.5);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.p-btn:hover, .compare-btn:hover, .hero-cta-btn:hover, .fof-btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 12px 32px -6px rgba(239, 68, 68, 0.6);
  background: #f87171 !important;
}

/* Ghost button — Linear style */
.p-chip, .fof-btn-ghost, .cat-btn, .focus-chip, .usecase-chip {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--r-full, 9999px) !important;
  color: var(--p-text-dim, #a1a1aa) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.p-chip:hover, .fof-btn-ghost:hover, .cat-btn:hover, .focus-chip:hover, .usecase-chip:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color: var(--p-text, #fafafa) !important;
}
.p-chip.active, .cat-btn.active, .focus-chip.active, .usecase-chip.active {
  background: var(--p-red-subtle, rgba(239,68,68,0.06)) !important;
  border-color: var(--p-red, #ef4444) !important;
  color: var(--p-red, #ef4444) !important;
}

/* ── URL Input — Apple Spotlight style ── */
.p-input, input[type="url"], input[type="text"] {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: var(--r-md, 12px) !important;
  padding: 14px 16px !important;
  font-size: 0.95rem !important;
  color: var(--p-text, #fafafa) !important;
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1),
              background 0.2s cubic-bezier(0.4,0,0.2,1) !important;
}
.p-input:focus, input[type="url"]:focus, input[type="text"]:focus {
  outline: none !important;
  border-color: var(--p-red, #ef4444) !important;
  background: rgba(255,255,255,0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.p-input::placeholder { color: rgba(255,255,255,0.30) !important; }

/* ── Sticky header — Apple frosted glass ── */
.p-header, .results-header, header.p-header {
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* ── Section spacing — Apple generous ── */
.container { max-width: 1200px; padding-left: 24px; padding-right: 24px; }
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--p-red, #ef4444) !important;
  display: inline-block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 16px !important;
}
.section-subtitle {
  font-size: 1.05rem !important;
  color: var(--p-text-dim, #a1a1aa) !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero — bold typography ── */
.hero-title, h1.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.0 !important;
}

/* ── Footer ── */
.p-footer, footer {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: var(--sp-2xl, 64px) 0 var(--sp-xl, 40px) !important;
  background: transparent !important;
}

/* ── Quick Scores / sidebar — refined ── */
.sidebar-card, .quick-scores-content {
  border-radius: var(--r-lg, 20px) !important;
  padding: 24px !important;
}
.sidebar-card-title {
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  font-size: 0.9rem !important;
  color: var(--p-text-dim, #a1a1aa) !important;
  text-transform: uppercase;
}

/* ── Spec Battle table — Notion style ── */
.spec-table-row, .lb-row {
  border-radius: var(--r-md, 12px) !important;
  padding: 16px !important;
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1);
}
.spec-table-row:hover { background: rgba(255,255,255,0.03); }

/* ── Disable all gaming effects globally ── */
.glitch, .scanlines::after, .clip-corner {
  animation: none !important;
}
.scanlines::after { content: none !important; }
[class*="glitch"] { text-shadow: none !important; }

/* Persona-style skewed cards — flatten */
[style*="transform: skew"], [style*="skew("] {
  transform: none !important;
}
.skewed, .skew { transform: none !important; }

/* ── Trust bar refinement ── */
.trust-bar-section {
  border-color: rgba(255,255,255,0.06) !important;
  background: rgba(255,255,255,0.01) !important;
  padding: var(--sp-xl, 40px) 0 var(--sp-lg, 24px) !important;
}
.trust-item svg { color: var(--p-text-dim, #a1a1aa) !important; opacity: 1 !important; }
.trust-title { font-weight: 600 !important; letter-spacing: -0.01em !important; }

/* ── Logo lockup — refined ── */
.p-logo {
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  font-size: 1.05rem !important;
}
.p-logo .kana {
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  font-size: 0.62rem !important;
  color: var(--p-text-dim, #a1a1aa) !important;
  text-transform: uppercase;
}

/* ── Quota badge — refined ── */
.quota-badge {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--r-full, 9999px) !important;
  padding: 6px 14px !important;
  color: var(--p-text-dim, #a1a1aa) !important;
  font-weight: 500 !important;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1) !important;
}
.quota-badge:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--p-text, #fafafa) !important;
}
.quota-badge.quota-low {
  background: var(--p-red-subtle, rgba(239,68,68,0.06)) !important;
  border-color: var(--p-red, #ef4444) !important;
  color: var(--p-red, #ef4444) !important;
}

/* ── Mobile refinements ── */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2rem, 12vw, 4rem) !important; }
  .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED PRODUCTS — JIB/Samsung-style showcase with Shopee aff
   ═══════════════════════════════════════════════════════════════ */
.fp-section {
  padding: var(--sp-3xl, 96px) 0;
  position: relative;
}
.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.fp-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.fp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,68,68,0.4);
  box-shadow: 0 20px 60px -10px rgba(239,68,68,0.25), 0 8px 24px rgba(0,0,0,0.5);
}
.fp-img-wrap {
  position: relative;
  aspect-ratio: 1.2 / 1;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fp-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(239,68,68,0.10), transparent 70%);
  pointer-events: none;
}
.fp-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.4));
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.fp-card:hover .fp-img { transform: scale(1.06); }
.fp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--p-text);
  text-transform: uppercase;
}
.fp-badge.hot {
  background: rgba(239,68,68,0.92);
  border-color: rgba(239,68,68,0.5);
  color: #fff;
}
.fp-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.fp-brand {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p-text-dim);
}
.fp-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--p-text);
}
.fp-tagline {
  font-size: 0.82rem;
  color: var(--p-text-dim);
  line-height: 1.5;
  margin-bottom: 8px;
}
.fp-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fp-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--p-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.fp-price-from {
  font-size: 0.7rem;
  color: var(--p-text-dim);
  font-weight: 400;
  margin-right: 4px;
}
.fp-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--p-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s cubic-bezier(0.4,0,0.2,1);
}
.fp-card:hover .fp-cta { gap: 8px; }
@media (max-width: 600px) {
  .fp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fp-name { font-size: 0.92rem; }
  .fp-body { padding: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST SIGNALS — Stats Bar, FAQ, Testimonials
   ═══════════════════════════════════════════════════════════════ */

/* Stats Counter Bar — large numbers with descriptions */
.stats-section {
  padding: var(--sp-2xl, 64px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.015) 50%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--p-text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* FAQ Section */
.faq-section { padding: var(--sp-3xl, 96px) 0; }
.faq-grid {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1);
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item[open] { border-color: rgba(239,68,68,0.25); background: rgba(255,255,255,0.03); }
.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--p-text);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--p-text-dim);
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); color: var(--p-red); }
.faq-a {
  padding: 0 24px 22px;
  color: var(--p-text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Testimonials */
.testi-section { padding: var(--sp-3xl, 96px) 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.testi-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.testi-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--p-text);
  margin-bottom: 18px;
  font-weight: 400;
}
.testi-quote::before { content: '\201C'; font-size: 1.4rem; color: var(--p-red); margin-right: 4px; }
.testi-quote::after  { content: '\201D'; font-size: 1.4rem; color: var(--p-red); margin-left: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-red) 0%, #b91c1c 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--p-text); letter-spacing: -0.01em; }
.testi-role { font-size: 0.76rem; color: var(--p-text-dim); margin-top: 2px; }

/* Footer enhancements */
footer.p-footer-v3 {
  padding: 80px 0 32px !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--p-text-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--p-text);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 5px 0;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--p-red); }
.footer-brand-desc {
  color: var(--p-text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 320px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--p-text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile UX compression: keep the primary compare flow close and prevent sideways page drift. */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body,
  .p-page,
  main,
  section {
    max-width: 100%;
  }

  .p-container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto !important;
    padding-top: 74px !important;
    padding-bottom: 18px !important;
  }

  .hero-content {
    padding: 22px 0 16px !important;
    gap: 16px !important;
  }

  .hero-brand {
    gap: 12px !important;
  }

  .hero [class*="fade-in-up"] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-title {
    font-size: clamp(2.75rem, 17vw, 4.35rem) !important;
    line-height: 0.92 !important;
  }

  .hero-kana {
    font-size: 0.68rem !important;
    letter-spacing: 5px !important;
    line-height: 1.8 !important;
  }

  .hero-tagline {
    max-width: 28rem !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  html[data-theme="light"] .hero-title,
  html[data-theme="light"] .hero-tagline strong {
    color: #111827 !important;
  }

  html[data-theme="light"] .hero-tagline {
    color: #3f3f46 !important;
  }

  html[data-theme="light"] .hero-kana {
    color: #71717a !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: 320px;
  }

  .hero-stat-num {
    font-size: 1.55rem !important;
  }

  .hero-stat-label {
    font-size: 0.66rem !important;
    line-height: 1.25 !important;
  }

  .hero .p-btn {
    width: auto !important;
    min-width: 0 !important;
    padding: 13px 24px !important;
    font-size: 0.96rem !important;
  }

  .fp-section,
  .testi-section,
  .faq-section,
  .supported-section,
  .how-section {
    padding: 40px 0 !important;
  }

  .section-header {
    margin-bottom: 24px !important;
  }

  .section-title {
    font-size: clamp(1.55rem, 8vw, 2.2rem) !important;
    line-height: 1.18 !important;
  }

  .section-subtitle {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
  }

  .fp-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(160px, 46vw) !important;
    grid-template-columns: none !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 22px !important;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .fp-card {
    min-width: 0;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .fp-img-wrap {
    aspect-ratio: 1.15 / 1 !important;
  }

  .fp-img {
    width: 78% !important;
    height: 78% !important;
  }

  .fp-body {
    padding: 13px 14px 15px !important;
    gap: 6px !important;
  }

  .fp-name {
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
  }

  .fp-tagline {
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .fp-price-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  .stats-section {
    padding: 34px 0 !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 10px !important;
  }

  .stat-num {
    font-size: 2rem !important;
    line-height: 1 !important;
  }

  .stat-label {
    font-size: 0.78rem !important;
  }

  .testi-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(260px, 78vw) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    margin-top: 22px !important;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testi-card {
    scroll-snap-align: start;
    padding: 20px 18px !important;
  }

  .testi-quote {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }

  .compare-section {
    padding: 34px 0 44px !important;
  }

  .compare-section .section-header {
    margin-bottom: 22px !important;
  }

  .multi-arena-grid {
    gap: 14px !important;
  }

  .product-slot {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .slot-header {
    margin-bottom: 12px !important;
  }

  .p-input {
    min-width: 0;
    font-size: 16px !important;
    padding: 13px 14px !important;
  }

  .add-product-row {
    margin: 16px 0 18px !important;
  }

  .usecase-section,
  .focus-section,
  .scan-mode-section {
    margin-top: 18px !important;
  }

  .cta-section {
    margin-top: 22px !important;
    gap: 12px !important;
  }

  #compare-btn {
    width: min(100%, 320px) !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
  }
}
