/* ========================================
   OpsGenie Alternatives: styles.css
   Decision-focused: minimal, scannable, dark
   ======================================== */

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

:root {
  --bg-primary: #0d0f11;
  --bg-secondary: #12161d;
  --bg-card: #1a1f29;
  --bg-card-hover: #222838;
  --text-primary: #e8eaed;
  --text-secondary: #b8bdc6;
  --text-muted: #9ca3af;
  --accent: #e85d3a;
  --accent-light: #ff7a57;
  --accent-glow: rgba(232, 93, 58, 0.12);
  --spike-highlight: rgba(232, 93, 58, 0.06);
  --border: #242a35;
  --border-light: #353b48;
  --success: #34d399;
  --warn: #fbbf24;
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

/* Screen-reader-only helper (visually hidden, accessible to assistive tech) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }

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

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-cta-ghost {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.nav-cta-ghost:hover { color: var(--accent); }

/* --- Sections --- */
section { padding: 90px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 640px;
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: 140px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(232, 93, 58, 0.08) 0%, rgba(232, 93, 58, 0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-disclosure {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero-disclosure a {
  color: var(--text-secondary);
  font-weight: 600;
}
.hero-disclosure a:hover { color: var(--accent); }

.hero h1 {
  margin-bottom: 48px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}
.hero .countdown {
  margin-bottom: 40px;
}
.hero-stat {
  font-size: 1.1rem;
  color: var(--text-primary);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-weight: 500;
}
.hero-stat strong {
  color: var(--accent);
  font-weight: 700;
}
.hero-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Post-shutdown state */
.post-shutdown {
  display: inline-block;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 20px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  margin-bottom: 40px;
}
.post-shutdown strong {
  color: var(--accent);
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight { color: var(--accent); }
.countdown {
  display: inline-flex;
  gap: 56px;
  justify-content: center;
  padding: 44px 64px;
  background: linear-gradient(to bottom, rgba(232, 93, 58, 0.1), rgba(232, 93, 58, 0.02));
  border: 1px solid rgba(232, 93, 58, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(232, 93, 58, 0.05), 0 30px 80px -20px rgba(232, 93, 58, 0.25);
}
.countdown-item { text-align: center; min-width: 88px; }
.countdown-value {
  font-size: clamp(1.9rem, 6.5vw, 5rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.countdown-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --- TL;DR --- */
.tldr { background: var(--bg-secondary); padding: 80px 0; }
.tldr-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 30px auto 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 820px;
}
.tldr .section-label,
.tldr h2,
.tldr-note { text-align: center; }
.tldr-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.tldr-row:last-child { border-bottom: none; }
.tldr-row:hover { background: var(--bg-card-hover); }
.tldr-row.spike { background: var(--spike-highlight); }
.tldr-row.spike:hover { background: rgba(232, 93, 58, 0.1); }
.tldr-scenario {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.tldr-scenario strong {
  color: var(--text-primary);
  font-weight: 700;
}
.tldr-answer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.tldr-row.spike .tldr-answer {
  border-color: rgba(232, 93, 58, 0.5);
  color: var(--accent-light);
}
.tldr-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #ffffff;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.tldr-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tldr-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
}

/* --- Picker (Best for X cards) --- */
.picker { background: var(--bg-primary); }
.picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.picker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.picker-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.picker-card.spike {
  border-color: rgba(232, 93, 58, 0.35);
  background: linear-gradient(to bottom, var(--spike-highlight), var(--bg-card));
}
.picker-card.spike:hover { border-color: rgba(232, 93, 58, 0.55); }

.picker-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.picker-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.picker-logo,
.tool-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #111;
  flex-shrink: 0;
  overflow: hidden;
}
.picker-logo img,
.tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.picker-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.picker-parent {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.picker-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.picker-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.picker-price {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}
.picker-price span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
}
.picker-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* --- Comparison Table --- */
.compare { background: var(--bg-secondary); }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  position: relative;
  /* Scroll hint: subtle right-edge fade so users know there's more on mobile */
  -webkit-overflow-scrolling: touch;
  background-image:
    linear-gradient(to right, var(--bg-card), var(--bg-card)),
    linear-gradient(to right, var(--bg-card), var(--bg-card)),
    linear-gradient(to right, rgba(232, 93, 58, 0.15), rgba(232, 93, 58, 0)),
    linear-gradient(to left, rgba(232, 93, 58, 0.15), rgba(232, 93, 58, 0));
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-size: 20px 100%, 20px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  background: var(--bg-secondary);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  position: sticky;
  top: 0;
  z-index: 1;
}
.compare-table th.feature-col,
.compare-table td.feature-col {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
  min-width: 180px;
  position: sticky;
  left: 0;
  background: var(--bg-card);
  z-index: 2;
}
.compare-table th.feature-col {
  background: var(--bg-secondary);
  z-index: 3;
}
.compare-table tr:hover td.feature-col { background: var(--bg-card); }
.compare-table th .th-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.compare-table th .th-logo {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #ffffff;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.compare-table th .th-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.compare-table th .th-parent {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.compare-table th.spike-col {
  background: linear-gradient(to bottom, rgba(232, 93, 58, 0.12), var(--bg-secondary));
  color: var(--accent-light);
}
.compare-table td.spike-col {
  background: var(--spike-highlight);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table tr:hover td.spike-col { background: rgba(232, 93, 58, 0.09); }

.icon-yes { color: var(--success); font-size: 18px; font-weight: 700; }
.icon-no { color: var(--danger); font-size: 18px; font-weight: 700; opacity: 0.55; }
.icon-partial {
  color: var(--warn);
  font-size: 13px;
  font-weight: 600;
}
.cell-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.cell-text.spike-price {
  color: var(--accent-light);
  font-weight: 700;
}
.table-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* --- Cost Calculator --- */
.calculator { background: var(--bg-primary); }
.calc-input-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.calc-input-row label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 260px;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--accent);
}
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--accent);
}
.calc-number {
  width: 80px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  text-align: center;
}
.calc-number:focus { outline: none; border-color: var(--accent); }
.calc-users-label { color: var(--text-muted); font-size: 14px; }

.discount-banner {
  background: linear-gradient(135deg, var(--accent-glow), rgba(232, 93, 58, 0.04));
  border: 1px solid rgba(232, 93, 58, 0.3);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.discount-badge {
  background: var(--accent);
  color: #0d0f11;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.discount-text { font-size: 15px; color: var(--text-primary); }
.discount-text strong { color: var(--accent-light); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.price-card.spike {
  border-color: rgba(232, 93, 58, 0.4);
  background: linear-gradient(to bottom, var(--spike-highlight), var(--bg-card));
}
.price-card-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.price-card-plan {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-card-amount {
  font-size: 1.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-card-amount .currency { font-size: 0.9rem; vertical-align: super; color: var(--text-muted); }
.price-card-period {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.price-card-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  min-height: 16px;
}
.price-card.spike .price-card-note {
  color: var(--success);
  font-weight: 600;
}

/* --- Migration Checklist --- */
.checklist { background: var(--bg-secondary); }
.checklist-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  max-width: 760px;
  counter-reset: step;
}
.checklist-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.checklist-list li:last-child { border-bottom: none; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Further Reading (pricing deep-dives) --- */
.reading { background: var(--bg-secondary); }
.reading .section-intro { margin-bottom: 0; }
.reading-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.reading-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.reading-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.reading-tool {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.reading-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.reading-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.reading-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}

/* --- FAQ --- */
.faq { background: var(--bg-primary); }
.faq-list { max-width: 760px; margin: 30px auto 0; }
.faq .section-label,
.faq h2 { text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-answer-inner ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 12px;
}
.faq-answer-inner li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.faq-answer-inner li:last-child { margin-bottom: 0; }
.faq-answer-inner li::marker { color: var(--accent); }

/* --- CTA Footer --- */
.cta-footer {
  text-align: center;
  padding: 90px 0 110px;
  background: var(--bg-secondary);
}
.cta-footer h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-footer p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0f11;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  background: var(--accent-light);
  color: #0d0f11;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.3);
}
.cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}
.cta-button-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* --- Calendar (Calendly) --- */
.calendar-section {
  background: var(--bg-primary);
  padding: 90px 0 110px;
}
.calendar-section .section-label,
.calendar-section h2 { text-align: center; }
.calendar-section .section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.calendly-wrap {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(232, 93, 58, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(232, 93, 58, 0.06);
}
.calendly-inline-widget {
  min-width: 320px !important;
}
@media (max-width: 768px) {
  .calendar-section { padding: 60px 0 70px; }
  .calendly-wrap { border-radius: 8px; }
  .calendly-inline-widget { height: 820px !important; }
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 36px 0 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-line {
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}
.footer-line a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-line + .footer-line {
  margin-top: 6px;
}
.footer-meta {
  font-size: 12px;
  opacity: 0.75;
}
.footer-copyright {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 18px !important;
  letter-spacing: 0.1px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 90px 0 80px; }
  .hero h1 { margin-bottom: 36px; }
  .hero .countdown { margin-bottom: 40px; }
  .countdown { gap: 24px; padding: 28px 24px; }
  .countdown-item { min-width: 56px; }
  .countdown-unit { margin-top: 10px; }
  .picker-grid { grid-template-columns: 1fr; }
  .picker-card { padding: 24px 22px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .calc-slider { width: 200px; }
  .discount-banner { flex-direction: column; text-align: center; gap: 10px; }
  .tldr-row { grid-template-columns: 1fr; gap: 10px; padding: 16px 18px; }
  .tldr-answer { justify-self: start; }
  .checklist-list li { gap: 14px; }

  /* Compact comparison table cells on mobile */
  .compare-table { min-width: 680px; }
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 13px; }
  .compare-table th.feature-col,
  .compare-table td.feature-col { min-width: 150px; font-size: 13px; }
  .compare-table th .th-logo { width: 28px; height: 28px; padding: 3px; }
  .icon-yes, .icon-no { font-size: 16px; }
  .cell-text { font-size: 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero .countdown { padding: 18px 12px; gap: 10px; }
  .countdown-item { min-width: 44px; }
  .countdown-unit { font-size: 9px; letter-spacing: 1.5px; margin-top: 8px; }
  .nav-logo { font-size: 11px; letter-spacing: 1px; }
  .picker-card { padding: 22px 20px; }
  .picker-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .price-grid { grid-template-columns: 1fr; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }
  .compare-table th.feature-col,
  .compare-table td.feature-col { min-width: 130px; }
  .faq-question { font-size: 15px; padding: 20px 0; }
  .faq-answer-inner { font-size: 14px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-button, .cta-button-ghost { justify-content: center; }
}
@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
  .countdown { gap: 14px; padding: 16px 20px; }
  .calc-input-row { flex-direction: column; align-items: flex-start; }
  .calc-slider { width: 100%; }
}
