/* ═══════════════════════════════════════════
   Rewardtactix — Index Page
   (variables & body defined in theme.css)
   ═══════════════════════════════════════════ */

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

/* ── HERO — full-screen video background ───────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0c;
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero__video.is-ready {
  opacity: 1;
}

/* Overlay adapts to theme */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
  transition: background 300ms ease;
}

/* Left-aligned content — sits below the 60px fixed nav */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 64px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__subline {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: #0B0B0B;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,168,76,0.4);
}

/* Features row beneath CTA */
.hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 48px;
  padding-top: 40px;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 128px;
  max-width: none;
  padding: 18px 20px 17px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(135deg, rgba(10, 16, 30, 0.82), rgba(16, 10, 12, 0.72)),
    rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.hero__feature:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(20, 62, 92, 0.88), rgba(10, 18, 35, 0.78)),
    rgba(0, 0, 0, 0.26);
  border-color: rgba(105, 198, 255, 0.28);
}

.hero__feature:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(74, 36, 98, 0.88), rgba(19, 14, 34, 0.78)),
    rgba(0, 0, 0, 0.26);
  border-color: rgba(195, 131, 255, 0.26);
}

.hero__feature:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(86, 42, 12, 0.9), rgba(29, 17, 8, 0.78)),
    rgba(0, 0, 0, 0.26);
  border-color: rgba(255, 184, 92, 0.28);
}

.hero__feature > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,168,76,0.95), rgba(255,214,122,0.7));
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2), 0 10px 22px rgba(200,168,76,0.28);
}

.hero__feature-icon img,
.hero__feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__feature:nth-child(1) .hero__feature-icon {
  background: linear-gradient(135deg, rgba(90, 205, 255, 0.95), rgba(146, 234, 255, 0.72));
  box-shadow: 0 10px 22px rgba(90, 205, 255, 0.28);
}

.hero__feature:nth-child(2) .hero__feature-icon {
  background: linear-gradient(135deg, rgba(194, 116, 255, 0.95), rgba(231, 166, 255, 0.72));
  box-shadow: 0 10px 22px rgba(194, 116, 255, 0.28);
}

.hero__feature:nth-child(3) .hero__feature-icon {
  background: linear-gradient(135deg, rgba(255, 176, 84, 0.95), rgba(255, 220, 132, 0.72));
  box-shadow: 0 10px 22px rgba(255, 176, 84, 0.28);
}

.hero__feature strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero__feature span {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ── PLAN SECTION — side-by-side ───────────────── */

.plan {
  padding: 80px 64px 100px;
  display: flex;
  justify-content: center;
}

/* Two-column wrapper: input card + snapshot */
.plan__layout {
  width: 100%;
  max-width: 1380px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 32px;
  align-items: stretch;
}

.plan__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 48px 40px;
}

.plan__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-bottom: 36px;
}

.plan__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan__label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.82;
}

/* Select */
.plan__select-wrap { position: relative; }

.plan__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  padding: 14px 44px 14px 16px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.plan__select option,
.plan__select optgroup { background: var(--surface); color: var(--text); }

.plan__select optgroup { color: var(--muted); font-size: 0.75rem; }

.plan__select:focus,
.plan__select:hover {
  border-color: rgba(200,168,76,0.5);
  background: var(--input-bg-hover);
}

.plan__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 1.1rem;
}

/* Chips */
.plan__chips { display: flex; flex-wrap: wrap; gap: 8px; }

.plan__chips--sm .chip {
  padding: 10px 20px;
  min-width: 60px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.chip:hover { border-color: rgba(200,168,76,0.4); color: var(--text); }

.chip--active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 500;
}

/* ── ADVANCED ──────────────────────────────────── */

.plan__advanced { margin-bottom: 32px; }

.plan__adv-toggle {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.plan__adv-toggle:hover { color: var(--gold); }

.adv-arrow {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.plan__adv-toggle[aria-expanded="true"] .adv-arrow { transform: rotate(180deg); }

.plan__adv-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 320ms ease, opacity 250ms ease;
}

.plan__adv-panel.open { max-height: 300px; opacity: 1; }

.adv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding-top: 24px;
}

.adv-field { display: flex; flex-direction: column; gap: 12px; }

.adv-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: linear-gradient(to right, var(--gold) var(--pct, 20%), var(--slider-track) var(--pct, 20%));
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.adv-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.adv-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(200,168,76,0.15);
}

.adv-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  cursor: pointer;
}

.adv-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: -4px;
}

/* ── CTA ───────────────────────────────────────── */

.plan__cta {
  width: 100%;
  padding: 18px 32px;
  background: var(--gold);
  color: #0B0B0B;
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  margin-bottom: 24px;
}

.plan__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(200,168,76,0.3);
}

.plan__cta:active  { transform: translateY(0); }
.plan__cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── TRUST STRIP ───────────────────────────────── */

.plan__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.plan__trust span {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan__trust span::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── MISSION SNAPSHOT — right column ───────────── */

.snapshot {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1a21;
  border: 1px solid rgba(255,255,255,0.08);
  /* stretch to full height of the input card */
  align-self: stretch;
  min-height: 480px;
}

/* Corner brackets */
.snapshot__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.snap-corner {
  position: absolute;
  width: 16px;
  height: 16px;
}

.snap-corner--tl { top: 10px; left: 10px;   border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.snap-corner--tr { top: 10px; right: 10px;  border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.snap-corner--bl { bottom: 10px; left: 10px;  border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.snap-corner--br { bottom: 10px; right: 10px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* Header */
.snapshot__header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.snapshot__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.snapshot__dots { display: flex; gap: 6px; }

.snap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transition: background 400ms ease;
}

.snap-dot--idle   { background: var(--dot-idle); }
.snap-dot--active { background: var(--gold); }
.snap-dot--pulse  {
  background: var(--gold);
  animation: dot-pulse 1.6s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Background image */
.snapshot__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 40%, #0f2535 0%, #091420 60%, #050d14 100%);
  background-size: cover;
  background-position: center;
  transition: background-image 600ms ease;
  filter: brightness(1.2) saturate(1.15);
}

.snapshot__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(5,13,20,0.25) 50%,
    rgba(5,13,20,0.78) 100%
  );
}

/* Body */
.snapshot__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.snapshot__dest {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: opacity 300ms ease;
}

.snapshot__meta {
  font-size: 0.78rem;
  color: #f0d98a;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 1.2em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transition: opacity 300ms ease;
}

.snapshot__badge {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  transition: color 300ms ease, border-color 300ms ease;
}

.snapshot__badge--ready {
  color: var(--gold);
  border-color: rgba(200,168,76,0.4);
}

.snapshot--updating .snapshot__dest,
.snapshot--updating .snapshot__meta { opacity: 0.3; }

/* ── FOOTER ────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ── INTENT CHIPS ──────────────────────────────── */

.plan__field--intent {
  margin-bottom: 28px;
}

.plan__label--primary {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0.88;
}

.plan__chips--intent {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Default chip color: gold active */
.chip--intent-air.chip--active {
  background: rgba(74,158,255,0.12);
  border-color: #4A9EFF;
  color: #4A9EFF;
}

.chip--intent-hotel.chip--active {
  background: rgba(232,162,58,0.12);
  border-color: #E8A23A;
  color: #E8A23A;
}

.chip--intent-hybrid.chip--active {
  background: rgba(155,111,245,0.12);
  border-color: #9B6FF5;
  color: #9B6FF5;
}

/* ── PLAN LABEL VALUE ───────────────────────────── */

.plan__label-val {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  text-transform: none;
  letter-spacing: 0;
}

/* ── FULL-WIDTH FIELD ───────────────────────────── */

.plan__field--full {
  grid-column: 1 / -1;
}

/* ── NUMBER INPUT ───────────────────────────────── */

.adv-number {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  -moz-appearance: textfield;
}

.adv-number::-webkit-outer-spin-button,
.adv-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.adv-number:focus {
  border-color: rgba(200,168,76,0.5);
}

.adv-number::placeholder {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

/* ── HINT TEXT ──────────────────────────────────── */

.adv-hint {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: -4px;
}

/* ── ADVANCED PANEL EXPANDED HEIGHT ────────────── */

.plan__adv-panel.open {
  max-height: 700px !important;
  opacity: 1;
}

/* ── CATEGORY SPLIT ─────────────────────────────── */

.adv-field--full {
  grid-column: 1 / -1;
}

.cat-split {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}

.cat-split__row {
  display: grid;
  grid-template-columns: 90px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.cat-split__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cat-split__label--travel  { color: #4A9EFF; }
.cat-split__label--dining  { color: #E8A23A; }
.cat-split__label--online  { color: #9B6FF5; }
.cat-split__label--retail  { color: #2ECFB0; }
.cat-split__label--fuel    { color: var(--gold); }

.cat-split__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: linear-gradient(to right, var(--gold) var(--pct, 50%), rgba(255,255,255,0.1) var(--pct, 50%));
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.cat-split__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 150ms, box-shadow 150ms;
}

.cat-split__slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(200,168,76,0.18);
}

.cat-split__slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  cursor: pointer;
}

.cat-split__pct {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text);
  text-align: right;
  opacity: 0.8;
  min-width: 36px;
}

.cat-split__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--muted);
}

.cat-split__total-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: color 200ms;
}

/* ── SNAPSHOT INTENT BADGE ──────────────────────── */

.snapshot__intent {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200,168,76,0.1);
  border: 1px solid rgba(200,168,76,0.25);
  color: var(--gold);
  transition: color 300ms, border-color 300ms, background 300ms;
}

.snapshot__intent--air {
  background: rgba(74,158,255,0.1);
  border-color: rgba(74,158,255,0.3);
  color: #4A9EFF;
}

.snapshot__intent--hotel {
  background: rgba(232,162,58,0.1);
  border-color: rgba(232,162,58,0.3);
  color: #E8A23A;
}

.snapshot__intent--hybrid {
  background: rgba(155,111,245,0.1);
  border-color: rgba(155,111,245,0.3);
  color: #9B6FF5;
}

@media (hover: hover) {
  .plan__card,
  .snapshot {
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 280ms ease,
      border-color 280ms ease;
  }

  .plan__card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,168,76,0.22);
    box-shadow: 0 20px 48px rgba(0,0,0,0.24), 0 0 0 1px rgba(200,168,76,0.08);
  }

  .snapshot:hover {
    transform: translateY(-5px);
    border-color: rgba(200,168,76,0.24);
    box-shadow: 0 24px 54px rgba(0,0,0,0.28), 0 0 0 1px rgba(200,168,76,0.08);
  }

  .snapshot:hover .snapshot__bg {
    transform: scale(1.03);
    filter: brightness(1.26) saturate(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan__card,
  .snapshot,
  .snapshot__bg {
    transition: none !important;
  }
}

/* ── RESPONSIVE ────────────────────────────────── */

/* Tablet: stack snapshot below card */
@media (max-width: 1024px) {
  .plan {
    padding: 64px 32px 80px;
  }

  .plan__layout {
    grid-template-columns: 1fr;
  }

  .snapshot {
    min-height: 320px;
    aspect-ratio: 16 / 7;
  }
}

/* Mobile hero */
@media (max-width: 768px) {
  .hero__content {
    padding: 60px 24px 0;
    align-items: center;
    text-align: center;
  }

  .hero__eyebrow { justify-content: center; }
  .hero__subline { max-width: 100%; }
  .hero__features { grid-template-columns: 1fr; }

  .topnav { padding: 0 20px; }
}

/* Mobile plan */
@media (max-width: 680px) {
  .plan {
    padding: 48px 16px 64px;
  }

  .plan__card {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

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

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

  .chip { padding: 12px 16px; font-size: 0.88rem; }

  .plan__cta { font-size: 1rem; padding: 16px 24px; }

  .plan__trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .snapshot { min-height: 260px; aspect-ratio: 4 / 3; }
}

/* Small phones ≤480px */
@media (max-width: 480px) {
  .topnav { padding: 0 12px; }

  .hero__content { padding: 40px 16px 0; }

  .hero__features {
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
  }
  .hero__feature {
    max-width: 100%;
    min-height: 0;
    padding: 16px 16px 15px;
    text-align: left;
  }
  .hero__feature-icon {
    width: 52px;
    height: 52px;
  }
  .hero__feature-icon img,
  .hero__feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .hero__feature strong { font-size: 0.98rem; }
  .hero__feature span { font-size: 0.86rem; }

  .snapshot { aspect-ratio: auto; min-height: 200px; }
}

/* iPhone SE and narrower ≤375px */
@media (max-width: 375px) {
  .plan__card { padding: 20px 14px 18px; }
  .brand__name { font-size: 1rem; }
}
