/* Breakpoints (keep in sync with :root --bp-md / --bp-lg in app.css):
 *   --bp-md: 600px   mobile → tablet
 *   --bp-lg: 1024px  tablet → desktop
 * See docs/build_specs/archived/css-breakpoint-migration/ for the migration rules.
 */

/* ── Fonts (self-hosted; CSP forbids fonts.gstatic.com) ────────────── */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  --burnt: #C84B20;
  --burnt-light: #E06A3A;
  --burnt-dark: #A33A15;
  --charcoal: #1C1410;
  --teal: #2A9D8F;
  --cream: #FFF5E6;
  --paper: #FFFCF7;
  --golden: #D4A543;
  --text: #2C1810;
  --text-light: #6B5B54;
  --text-muted: #A89E98;
  --border: #E8DDD4;
  --red: #C0392B;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', -apple-system, sans-serif;

  --nav-height: 72px;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, textarea { font-family: inherit; font-size: inherit; }

/* ── Shared Section Styles ─────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--charcoal);
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
  text-wrap: balance;
}

.section-title--light {
  color: var(--paper);
}

/* ── Navigation ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--paper);
  transition: color 0.4s;
}

.nav-logo-star {
  width: 28px;
  height: 28px;
  fill: var(--burnt);
  transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-star {
  transform: rotate(18deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--paper);
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}

.nav-link:hover {
  opacity: 1;
}

.nav.scrolled .nav-link {
  color: var(--charcoal, #232323);
}

.nav-cta {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  background: var(--burnt);
  color: var(--paper);
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--burnt-light);
  transform: translateY(-1px);
}

.nav.scrolled {
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav.scrolled .nav-logo { color: var(--charcoal); }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  user-select: none;
}

.hero-star {
  position: absolute;
  width: min(550px, 80vw);
  height: min(550px, 80vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--burnt);
  opacity: 0.05;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%,
    79% 91%, 50% 70%, 21% 91%, 32% 57%,
    2% 35%, 39% 35%
  );
  animation: star-drift 40s ease-in-out infinite;
}

@keyframes star-drift {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(20deg) scale(1.08); }
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-tiny-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--golden);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '\2605';
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 1.08;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line--accent {
  color: var(--burnt-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  background: var(--burnt);
  color: var(--paper);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(200, 75, 32, 0.35);
}

.hero-cta:hover {
  background: var(--burnt-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 75, 32, 0.45);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.4s;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal 0.8s ease forwards;
}

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Value Props ──────────────────────────────────────────────────── */
.value-props {
  background: var(--cream);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
}

/* ─ Regular Cards ─ */
.prop-card {
  --card-accent: var(--burnt);
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-radius: 16px;
  padding: 1.75rem 2rem 1.75rem 2.5rem;
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.prop-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--card-accent);
  opacity: 0.45;
  border-radius: 16px 0 0 16px;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}

.prop-card:hover::before {
  opacity: 1;
  width: 4px;
}

.prop-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent);
  margin-bottom: 0.55rem;
}

.prop-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  line-height: 1.3;
}

.prop-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─ Featured Cards (override base card) ─ */
.prop-card--featured {
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border: none;
  border-radius: 20px;
  padding: 2.75rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.prop-card--featured::before {
  display: none;
}

.prop-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.props-grid > .prop-card--featured:nth-child(1)::after {
  content: "15%";
  position: absolute;
  right: -0.5rem;
  bottom: -2rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

.props-grid > .prop-card--featured:nth-child(2)::after {
  content: "★";
  position: absolute;
  right: 1.5rem;
  bottom: -1.5rem;
  font-size: 9rem;
  line-height: 1;
  color: rgba(212, 165, 67, 0.07);
  pointer-events: none;
  user-select: none;
}

.prop-kicker {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--burnt-light);
}

.prop-kicker--star {
  color: var(--golden);
  font-size: 2.75rem;
}

.prop-card--featured .prop-title {
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: 0;
  line-height: 1.25;
}

.prop-card--featured .prop-desc {
  grid-column: 1 / -1;
  margin-top: 0.85rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
}

/* ── How It Works ─────────────────────────────────────────────────── */
.how-it-works {
  background: var(--paper);
}

.steps {
  max-width: 740px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Comparison ───────────────────────────────────────────────────── */
.comparison {
  background: var(--cream);
}

.compare-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  text-align: center;
}

.compare-subtitle:first-of-type {
  margin-top: 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.compare-col {
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-col--highlight {
  border: 2px solid var(--burnt);
  box-shadow: 0 8px 30px rgba(200, 75, 32, 0.1);
}

.compare-header {
  padding: 1.15rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.compare-col--highlight .compare-header {
  background: var(--charcoal);
  color: var(--paper);
  border-bottom-color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.compare-star {
  width: 16px;
  height: 16px;
  fill: var(--burnt);
}

.compare-row {
  padding: 0.8rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.compare-row:last-child { border-bottom: none; }

.compare-label { color: var(--text-light); }
.compare-value { font-weight: 600; }
.compare-value--bad { color: var(--red); }
.compare-value--bad s { color: var(--text-muted); text-decoration: line-through; margin-right: 0.3em; }
.compare-value--no { color: var(--red); font-size: 1rem; }
.compare-value--neutral { color: var(--text-light); font-weight: 500; }
.compare-value--good { color: var(--teal); }
.compare-value--yes { color: var(--teal); font-size: 1rem; font-weight: 700; }

.compare-disclaimer {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2rem;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.faq-q::before {
  content: '\2605  ';
  color: var(--burnt);
}

.faq-a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────────────────────────────── */
.contact {
  background: var(--charcoal);
}

.contact .section-label { color: var(--golden); }

.contact-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
  max-width: 520px;
  text-align: center;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-input::placeholder { color: rgba(168, 158, 152, 0.6); }

.form-input:focus {
  outline: none;
  border-color: var(--burnt);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(200, 75, 32, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-char-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.35rem;
  transition: color 0.3s;
}

.form-char-count--warn {
  color: var(--burnt-light);
}

.form-char-count--limit {
  color: var(--red);
}

.form-submit {
  margin-top: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  background: var(--burnt);
  color: var(--paper);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.form-submit:hover {
  background: var(--burnt-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 75, 32, 0.3);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Form States ──────────────────────────────────────────────────── */
.form-error {
  align-items: center;
  gap: 1rem;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  max-width: 640px;
  margin: 0 auto;
  color: #e74c3c;
  font-size: 0.92rem;
}

.form-error-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-success {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.15);
  color: var(--teal);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.success-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.footer-star {
  width: 22px;
  height: 22px;
  fill: var(--burnt);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ── Hero Interactive Stars ───────────────────────────────────────── */
.hero-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: sparkle-life 0.8s ease-out forwards;
}

.hero-sparkle svg {
  display: block;
}

@keyframes sparkle-life {
  0% {
    opacity: 0.9;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(90deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(180deg);
  }
}

/* ── Scroll Reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger prop cards */
.prop-card.reveal:nth-child(2)  { transition-delay: 0.06s; }
.prop-card.reveal:nth-child(3)  { transition-delay: 0.12s; }
.prop-card.reveal:nth-child(4)  { transition-delay: 0.18s; }
.prop-card.reveal:nth-child(5)  { transition-delay: 0.24s; }
.prop-card.reveal:nth-child(6)  { transition-delay: 0.30s; }
.prop-card.reveal:nth-child(7)  { transition-delay: 0.36s; }
.prop-card.reveal:nth-child(8)  { transition-delay: 0.42s; }
.prop-card.reveal:nth-child(9)  { transition-delay: 0.48s; }
.prop-card.reveal:nth-child(10) { transition-delay: 0.54s; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .props-grid {
    grid-template-columns: 1fr;
  }

  .prop-card,
  .prop-card--featured {
    grid-column: span 1;
  }

  .prop-card--featured {
    padding: 2.25rem 2.5rem;
  }

  .prop-kicker { font-size: 2.75rem; }
  .prop-kicker--star { font-size: 2.25rem; }

  .prop-card--featured .prop-title { font-size: 1.35rem; }

  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-col--highlight { order: -1; }

  .section-inner { padding: 4rem 1.5rem; }

  .hero-scroll { display: none; }

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

  .form-row { grid-template-columns: 1fr; }

  .step { gap: 1rem; }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 599px) {
  .nav { padding: 0 1rem; }

  .nav-logo { font-size: 1.05rem; }

  .nav-logo-star { width: 24px; height: 24px; }

  .nav-cta {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }

  .hero { padding: 1.5rem; }

  .hero-cta {
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
  }
}
