/* ── Real Helper Website — Shared Styles ───────────────────────────────── */

:root {
  --navy:   #47426E;   /* muted slate-purple, desaturated from app purple */
  --gold:   #C9A84C;
  --gold-light: #e8c97a;
  --light:  #f3f2f8;   /* very soft purple-grey tint */
  --white:  #ffffff;
  --text:   #1e1c2e;
  --muted:  #5e5a72;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(71,66,110,.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* height of sticky nav + breathing room */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;   /* prevent horizontal scroll on narrow viewports */
}

/* ── Typography ─────────────────────────────────────────────────────────── */

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 600; }

/* ── Layout ──────────────────────────────────────────────────────────────── */

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* ── Navigation ─────────────────────────────────────────────────────────── */

nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-brand span {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .5px;
}

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

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); text-decoration: none; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Animate hamburger → X when menu is open */
nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown panel */
.nav-mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

nav.open .nav-mobile-panel { display: flex; }

.nav-mobile-panel a {
  display: block;
  padding: 15px 24px;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: color .2s, background .2s;
}

.nav-mobile-panel a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.nav-mobile-panel .nav-mobile-cta {
  margin: 16px 24px 20px;
  padding: 13px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  border-bottom: none;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); text-decoration: none; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover { border-color: var(--white); }

.appstore-btn {
  display: inline-block;
  margin-top: 8px;
}

.appstore-btn img { height: 48px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(145deg, #221e38 0%, var(--navy) 60%, #5a5580 100%);
  color: var(--white);
  padding: 88px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 48px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text .eyebrow {
  display: inline-block;
  background: rgba(201,168,76,.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-text h1 { color: var(--white); margin-bottom: 16px; }

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

.hero-text .tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-ctas .fine-print {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

.hero-screenshot {
  display: flex;
  justify-content: center;
}

.phone-frame {
  background: #0d0820;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.1);
  width: 220px;
}

.phone-frame img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

/* ── "Not Zillow" Differentiator ─────────────────────────────────────────── */

.differentiator { background: var(--light); }

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

.diff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.diff-card.theirs {
  border-top: 4px solid #c0c0c0;
  opacity: .75;
}

.diff-card.ours {
  border-top: 4px solid var(--gold);
}

.diff-card h3 { margin-bottom: 14px; }
.diff-card.ours h3 { color: var(--navy); }

.diff-card ul {
  list-style: none;
  padding: 0;
}

.diff-card ul li {
  padding: 7px 0;
  font-size: .92rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.diff-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.diff-card.theirs ul li::before {
  content: '—';
  color: #bbb;
}

/* ── How it works ────────────────────────────────────────────────────────── */

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

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step h3 { margin-bottom: 10px; color: var(--navy); }

/* ── Feature Sections ────────────────────────────────────────────────────── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text .label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

.feature-text h2 { color: var(--navy); margin-bottom: 14px; }
.feature-text p  { margin-bottom: 20px; }

.feature-text ul {
  list-style: none;
  padding: 0;
}

.feature-text ul li {
  padding: 6px 0 6px 1.4em;
  font-size: .93rem;
  color: var(--muted);
  position: relative;
}

.feature-text ul li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.screenshot-wrap {
  display: flex;
  justify-content: center;
}

.screenshot-wrap img {
  max-width: 240px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(71,66,110,.2);
}

/* ── Feature-row screenshot gallery ─────────────────────────────────────── */

.feature-gallery {
  width: 240px;
  position: relative;
}

.feature-gallery-track {
  display: flex;
  overflow: hidden;          /* arrows handle navigation; no manual scroll */
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(71,66,110,.2);
}

.feature-gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  border-radius: 24px;
  display: block;
  transition: transform .35s ease;
}

.fg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.88);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s, opacity .15s;
}

.fg-arrow:hover  { background: #fff; }
.fg-arrow:disabled { opacity: .25; cursor: default; }
.fg-prev { left:  8px; }
.fg-next { right: 8px; }

/* ── Premium Section ─────────────────────────────────────────────────────── */

.premium-section {
  background: linear-gradient(160deg, #221e38 0%, var(--navy) 100%);
  color: var(--white);
}

.premium-section h2 { color: var(--white); margin-bottom: 12px; }
.premium-section .section-sub { color: rgba(255,255,255,.7); margin-bottom: 48px; font-size: 1.05rem; }

/* .premium-grid now lives in the carousel block below */

.premium-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.premium-card img {
  width: 100%;
  display: block;
}

.premium-card-body {
  padding: 20px;
}

.premium-card-body h3 { color: var(--gold); margin-bottom: 6px; }
.premium-card-body p  { font-size: .88rem; color: rgba(255,255,255,.65); }

/* ── Pricing ─────────────────────────────────────────────────────────────── */

.pricing-section { background: var(--light); }

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0;
}

.price-amount .dollar { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.price-amount .number { font-size: 3.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount .period { font-size: 1rem; color: var(--muted); }

.pricing-card h3 { color: var(--navy); font-size: 1.3rem; }

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: .93rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--light);
}

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

.pricing-card ul li .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

.pricing-pitch {
  padding: 32px;
  background: var(--navy);
  border-radius: 20px;
  color: var(--white);
}

.pricing-pitch h3 { color: var(--gold); margin-bottom: 14px; font-size: 1.3rem; }
.pricing-pitch p  { color: rgba(255,255,255,.75); margin-bottom: 16px; font-size: .95rem; }

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

.cta-banner {
  background: var(--gold);
  text-align: center;
  padding: 56px 24px;
}

.cta-banner h2 { color: var(--navy); margin-bottom: 10px; }
.cta-banner p  { color: rgba(71,66,110,.7); margin-bottom: 28px; font-size: 1.05rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */

footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logos img {
  height: 32px;
  opacity: .7;
  filter: brightness(10);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-links a:hover { color: var(--gold); }

/* ── Section headers ─────────────────────────────────────────────────────── */

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 { color: var(--navy); margin-bottom: 12px; }
.section-header p  { max-width: 560px; margin: 0 auto; }

/* ── Premium groups ─────────────────────────────────────────────────────── */

.premium-group {
  margin-bottom: 56px;
}

.premium-group:last-of-type {
  margin-bottom: 24px;
}

/* ── Premium carousel ────────────────────────────────────────────────────── */

.premium-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;     /* Firefox */
  margin-bottom: 0;
}

.premium-grid::-webkit-scrollbar { display: none; }

.premium-grid .premium-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

/* ── Carousel dots ───────────────────────────────────────────────────────── */

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  min-height: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.premium-group-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.premium-group-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 56px;
  opacity: .6;
}

.premium-group-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}

.premium-group-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.promo-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: .8rem;
  text-align: center;
  line-height: 1.6;
}

/* ── Plans grid (Free vs Premium) ───────────────────────────────────────── */

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.plan-card.plan-premium {
  border: 2px solid var(--gold);
}

.plan-badge-top {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px;
}

.plan-badge-free {
  background: var(--navy);
  color: var(--gold);
}

.plan-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--light);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.plan-period { font-size: .9rem; color: var(--muted); }

.plan-subtitle { font-size: .85rem; color: var(--muted); }

.plan-features {
  list-style: none;
  padding: 20px 28px;
  margin: 0 0 20px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid #f0f4f9;
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li .dim { color: var(--muted); }

.plan-features li .pi {
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
  color: var(--muted);
  margin-top: 1px;
}
.plan-features li .pi.gold  { color: var(--gold);  line-height: 1; }
.plan-features li .pi.cross { color: #e53935; font-size: 1.1rem; line-height: 1; }

.plan-card .btn { margin: 0 28px 28px; width: calc(100% - 56px) !important; }

@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
}

/* ── Guide-specific ──────────────────────────────────────────────────────── */

.guide-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.guide-toc {
  position: sticky;
  top: 72px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
}

.guide-toc h4 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guide-toc ul { list-style: none; padding: 0; }

.guide-toc ul li { margin-bottom: 2px; }

.guide-toc ul li a {
  color: var(--muted);
  font-size: .88rem;
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}

.guide-toc ul li a:hover {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}

.guide-toc ul li.sub a { padding-left: 20px; font-size: .82rem; }

.guide-content section {
  padding: 0 0 56px;
  border-bottom: 1px solid #e8edf4;
  margin-bottom: 56px;
}

.guide-content section:last-child { border-bottom: none; }

.guide-content h2 {
  color: var(--navy);
  margin-bottom: 6px;
  padding-top: 8px;
}

.guide-content .section-intro {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.guide-content h3 {
  color: var(--navy);
  margin: 28px 0 10px;
}

.guide-content p { margin-bottom: 14px; }

.guide-content ol, .guide-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.guide-content li {
  margin-bottom: 8px;
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.65;
}

.guide-content strong { color: var(--text); }

.tip-box {
  background: rgba(201,168,76,.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.tip-box p { margin: 0; font-size: .9rem; color: var(--text); }
.tip-box strong { color: var(--navy); }

.guide-screenshot {
  margin: 24px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.guide-screenshot img {
  max-width: 200px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(71,66,110,.18);
}

.step-list { list-style: none !important; padding: 0 !important; }

.step-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f3f7;
}

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

.step-badge {
  background: var(--navy);
  color: var(--gold);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.free-badge, .premium-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.free-badge    { background: #e8f4ee; color: #2a7a4f; }
.premium-badge { background: rgba(201,168,76,.15); color: #8a6a10; }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-screenshot   { display: none; }
  .diff-grid         { grid-template-columns: 1fr; }
  .steps             { grid-template-columns: 1fr; }
  .feature-row       { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .pricing-wrap      { grid-template-columns: 1fr; }
  .guide-layout      { grid-template-columns: 1fr; }
  .guide-toc         { display: none; }
}

/* Carousel: 2 cards visible at tablet width */
@media (max-width: 860px) {
  .premium-grid .premium-card { flex: 0 0 calc(50% - 12px); }
}

/* Carousel: 1 card visible on phones */
@media (max-width: 540px) {
  .premium-grid .premium-card { flex: 0 0 100%; }
}

@media (max-width: 700px) {
  .nav-links      { display: none; }   /* hide inline links — replaced by panel */
  .nav-desktop-cta { display: none; }  /* hide desktop CTA button */
  .nav-hamburger  { display: flex; }   /* show hamburger */
}
