/* ========================================================================
   LaundryHub — marketing landing page.
   "Quiet & Precise": warm neutrals, one decisive accent, real light.
   Mirrors the app's design system so the site and product feel as one.
   ===================================================================== */

:root {
  --bg:          #f6f5f2;   /* warm paper */
  --surface:     #ffffff;
  --sunken:      #efede8;
  --ink:         #1c1812;   /* warm near-black */
  --ink-2:       #5d564b;   /* secondary text */
  --ink-3:       #8b8475;   /* muted text */
  --brand:       #6a35ff;
  --brand-press: #5a29e0;
  --brand-soft:  #ece6ff;
  --success:     #2f9469;
  --line:        rgba(28, 24, 18, 0.09);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --sh-1: 0 1px 2px rgba(28, 24, 18, .05), 0 6px 18px rgba(28, 24, 18, .06);
  --sh-2: 0 2px 4px rgba(28, 24, 18, .06), 0 18px 40px rgba(28, 24, 18, .10);
  --sh-brand: 0 12px 32px rgba(106, 53, 255, .30);

  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* subtle grain-free lit feel: a faint top wash */
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 420px;
  background: radial-gradient(
    60% 100% at 70% 0%, rgba(106, 53, 255, .07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- typography --------------------------------------------------------- */
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.15; }
h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0; }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand);
}
.lead { color: var(--ink-2); font-size: 1.06rem; }
.muted { color: var(--ink-3); }

.section { position: relative; z-index: 1; padding: 84px 0; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin-top: 12px; color: var(--ink-2); }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
  --bs-btn-focus-box-shadow: none;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 22px;
  border: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: scale(.97); }
.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-brand:hover { background: var(--brand-press); color: #fff; }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--sh-1);
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ---- app-store badges --------------------------------------------------- */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .store-row { justify-content: center; margin-top: 18px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-md); padding: 10px 18px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.store-badge:hover {
  transform: translateY(-2px); box-shadow: var(--sh-2); color: #fff;
}
.store-badge i { font-size: 1.55rem; }
.store-badge .sb-t {
  display: flex; flex-direction: column; line-height: 1.18; text-align: left;
}
.store-badge .sb-t small { font-size: .68rem; opacity: .72;
  letter-spacing: .02em; }
.store-badge .sb-t b { font-size: .98rem; font-weight: 600;
  letter-spacing: -.01em; }
.store-badge.light {
  background: var(--surface); color: var(--ink); box-shadow: var(--sh-1);
}
.store-badge.light:hover { color: var(--ink); }
.store-badge.wa-badge { background: #25d366; color: #fff; }
.store-badge.wa-badge:hover { background: #1fb855; color: #fff; }

.soon-note {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: .82rem; color: var(--ink-3); margin-top: 14px;
}
.soon-note i { font-size: .95rem; }
.cta-inner .soon-note { color: rgba(255, 255, 255, .66); }

/* ---- app spotlight ------------------------------------------------------ */
.app-spotlight {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px;
  align-items: center;
}
.app-copy .eyebrow { display: block; margin-bottom: 10px; }
.app-copy h2 { margin-bottom: 12px; }
.app-copy .lead { margin-bottom: 24px; }
.app-points { list-style: none; padding: 0; margin: 0 0 24px; }
.app-points li { display: flex; gap: 12px; margin-bottom: 15px; }
.app-points .pic {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.app-points b { font-weight: 600; font-size: .96rem; }
.app-points p { color: var(--ink-2); font-size: .87rem; margin-top: 1px; }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 280px; background: #14110a; border-radius: 42px; padding: 11px;
  box-shadow: var(--sh-2);
}
.phone-screen {
  background: var(--bg); border-radius: 32px; overflow: hidden;
  height: 552px; display: flex; flex-direction: column;
}
.phone-notch { height: 24px; display: flex; justify-content: center; }
.phone-notch::before {
  content: ""; width: 92px; height: 16px; background: #14110a;
  border-radius: 0 0 12px 12px;
}
.ph-head {
  padding: 8px 18px 14px; display: flex; align-items: baseline;
  justify-content: space-between;
}
.ph-head h4 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em;
  margin: 0; }
.ph-head span { font-size: .76rem; color: var(--ink-3); }
.ph-body {
  padding: 0 14px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.ph-card {
  background: var(--surface); border-radius: 14px; padding: 13px 14px;
  box-shadow: var(--sh-1);
}
.ph-card .r1 { display: flex; align-items: center; gap: 7px; }
.ph-card .nm { font-weight: 600; font-size: .9rem; flex: 1; }
.ph-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ph-card .meta { font-size: .71rem; color: var(--ink-3); margin-top: 3px; }
.ph-card .r2 {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.ph-card .amt { font-weight: 700; font-size: .93rem; }
.ph-card .status {
  font-size: .67rem; font-weight: 600; padding: 3px 9px; border-radius: 999px;
}
.ph-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 13px 0 15px; border-top: 1px solid var(--line);
  background: var(--surface);
}
.ph-nav i { font-size: 1.18rem; color: var(--ink-3); }
.ph-nav i.on { color: var(--brand); }
.ph-nav i.add { color: var(--brand); font-size: 1.7rem; }

@media (max-width: 900px) {
  .app-spotlight { grid-template-columns: 1fr; gap: 36px; }
  .app-spotlight .phone-wrap { order: -1; }
}

/* ---- comparison --------------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--sh-1);
}
.compare-card.good {
  background: linear-gradient(168deg, #ffffff, #f3efff);
  border: 1.5px solid var(--brand); box-shadow: var(--sh-2);
}
.compare-h {
  display: flex; align-items: center; gap: 11px; margin-bottom: 18px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.compare-h .ch-ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.compare-card.bad .ch-ic { background: rgba(194, 71, 59, .12); color: #c2473b; }
.compare-card.good .ch-ic { background: var(--brand-soft); color: var(--brand); }
.compare-h h3 { font-size: 1.08rem; }
.compare-h .ch-sub { font-size: .78rem; color: var(--ink-3); margin-top: 1px; }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  display: flex; gap: 10px; margin-bottom: 13px;
  font-size: .9rem; color: var(--ink-2);
}
.compare-list li:last-child { margin-bottom: 0; }
.compare-list li i { flex-shrink: 0; font-size: 1.02rem; margin-top: 2px; }
.compare-card.bad .compare-list i { color: #c2473b; }
.compare-card.good .compare-list i { color: var(--success); }

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

/* ---- savings calculator ------------------------------------------------- */
.calc {
  max-width: 760px; margin: 0 auto; background: var(--surface);
  border-radius: var(--r-xl); box-shadow: var(--sh-2); padding: 34px 32px;
}
.calc-inputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 26px;
}
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .88rem; font-weight: 500; color: var(--ink-2); margin-bottom: 12px;
}
.calc-field label b { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.calc-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 999px; background: var(--sunken); outline: none; margin: 0;
}
.calc-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--brand); cursor: pointer;
  border: 3px solid #fff; box-shadow: var(--sh-brand);
}
.calc-field input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--brand);
  cursor: pointer; border: 3px solid #fff;
}
.calc-results {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 16px;
}
.calc-stat {
  background: var(--sunken); border-radius: var(--r-md); padding: 16px 14px;
  text-align: center;
}
.calc-stat .v { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.calc-stat .k { font-size: .74rem; color: var(--ink-3); margin-top: 3px; }
.calc-upside {
  background: linear-gradient(160deg, #2a2150, #6a35ff); color: #fff;
  border-radius: var(--r-lg); padding: 20px 24px; text-align: center;
  margin-bottom: 16px;
}
.calc-upside .k { font-size: .8rem; opacity: .8; }
.calc-upside .v {
  font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em; margin-top: 2px;
}
.calc-note {
  font-size: .76rem; color: var(--ink-3); text-align: center;
  line-height: 1.55; margin-bottom: 18px;
}
.calc .btn { display: block; width: 100%; text-align: center; }
@media (max-width: 620px) {
  .calc { padding: 26px 20px; }
  .calc-inputs, .calc-results { grid-template-columns: 1fr; }
}

/* ---- who is it for ------------------------------------------------------ */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .who-grid { grid-template-columns: 1fr; } }

/* ---- legal / policy pages ---------------------------------------------- */
.legal-back { color: var(--ink-2); font-size: .9rem; font-weight: 500;
  margin-left: auto; }
.legal-back:hover { color: var(--brand); }
.draft-banner {
  display: flex; gap: 9px; align-items: flex-start;
  background: rgba(194, 133, 58, .12); color: #8a5e1e;
  border: 1px solid rgba(194, 133, 58, .32); border-radius: var(--r-md);
  padding: 12px 16px; font-size: .85rem; margin: 26px 0 8px;
}
.draft-banner i { font-size: 1rem; margin-top: 1px; }
.legal { max-width: 760px; margin: 0 auto; padding: 18px 0 72px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 6px; }
.legal .updated { color: var(--ink-3); font-size: .85rem; }
.legal h2 { font-size: 1.15rem; margin: 30px 0 10px; letter-spacing: -.01em; }
.legal p { color: var(--ink-2); margin-bottom: 12px; font-size: .95rem; }
.legal ul { color: var(--ink-2); font-size: .95rem; padding-left: 20px;
  margin-bottom: 12px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--brand); }

/* ---- navbar ------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 245, 242, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--sh-1); }
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700;
  font-size: 1.12rem; letter-spacing: -0.02em; }
.brand img { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--ink-2); font-size: .94rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; margin-left: auto; background: var(--surface);
  border: none; border-radius: var(--r-sm); width: 42px; height: 42px;
  box-shadow: var(--sh-1); font-size: 1.1rem; color: var(--ink);
}

/* ---- hero --------------------------------------------------------------- */
.hero { padding: 72px 0 36px; text-align: center; position: relative;
  z-index: 1; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); box-shadow: var(--sh-1);
  border-radius: 999px; padding: 7px 14px; font-size: .82rem;
  font-weight: 500; color: var(--ink-2); margin-bottom: 22px;
}
.hero .pill .dot { width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); }
.hero h1 { max-width: 880px; margin: 0 auto; }
.hero h1 .accent { color: var(--brand); }
.hero .lead { max-width: 560px; margin: 20px auto 0; }
.hero-cta { display: flex; gap: 12px; justify-content: center;
  margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: .82rem; color: var(--ink-3); }

.hero-shot {
  margin: 56px auto 0; max-width: 940px;
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--sh-2); padding: 14px;
}
.hero-shot-inner {
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, #1c1830, #2a2150);
  min-height: 320px; display: flex;
}
/* a lightweight "app preview" composed in CSS, no image dependency */
.preview { display: flex; width: 100%; color: #fff; }
.preview-side {
  width: 188px; padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 14px;
}
.preview-logo { font-weight: 700; letter-spacing: -.02em; opacity: .95; }
.preview-nav { display: flex; flex-direction: column; gap: 9px; }
.preview-nav span {
  font-size: .8rem; color: rgba(255,255,255,.55); padding: 7px 10px;
  border-radius: 8px;
}
.preview-nav span.on {
  background: rgba(106,53,255,.35); color: #fff;
}
.preview-main { flex: 1; padding: 22px; display: flex; flex-direction: column;
  gap: 14px; }
.preview-h { font-size: .78rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .06em; }
.preview-hero-num { font-size: 2.2rem; font-weight: 800;
  letter-spacing: -.03em; }
.preview-row { display: flex; gap: 12px; }
.preview-stat {
  flex: 1; background: rgba(255,255,255,.06); border-radius: 12px;
  padding: 12px 14px;
}
.preview-stat b { font-size: 1.15rem; font-weight: 700; }
.preview-stat small { display: block; font-size: .72rem;
  color: rgba(255,255,255,.5); margin-top: 2px; }
.preview-bars { display: flex; gap: 8px; align-items: flex-end; height: 78px;
  margin-top: 4px; }
.preview-bars i { flex: 1; background: rgba(106,53,255,.55);
  border-radius: 5px 5px 0 0; }

/* ---- stat strip --------------------------------------------------------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center; margin-top: 60px;
}
.stat-strip .n { font-size: 1.9rem; font-weight: 700; letter-spacing: -.03em; }
.stat-strip .l { font-size: .85rem; color: var(--ink-3); margin-top: 2px; }

/* ---- feature cards ------------------------------------------------------ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.fcard {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--sh-1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fcard:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.fcard .ic {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px;
}
.fcard h3 { margin-bottom: 7px; }
.fcard p { color: var(--ink-2); font-size: .92rem; }

/* ---- how it works ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--surface); border-radius: var(--r-lg); padding: 28px 26px;
  box-shadow: var(--sh-1); position: relative;
}
.step .num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: .92rem; }

/* ---- pricing ------------------------------------------------------------ */
.toggle {
  display: flex; gap: 6px; background: var(--sunken);
  border-radius: var(--r-md); padding: 5px; width: max-content;
  margin: 0 auto 40px;
}
.toggle button {
  border: none; background: transparent; border-radius: 10px;
  padding: 9px 20px; font-size: .9rem; font-weight: 500;
  color: var(--ink-3); cursor: pointer; font-family: inherit;
  transition: all .15s ease;
}
.toggle button.on {
  background: var(--surface); color: var(--ink); font-weight: 600;
  box-shadow: var(--sh-1);
}
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: start; }
.pcard {
  background: var(--surface); border-radius: var(--r-lg); padding: 28px 26px;
  box-shadow: var(--sh-1); border: 1.5px solid transparent;
}
.pcard.featured {
  border-color: var(--brand); box-shadow: var(--sh-2); position: relative;
}
.pcard .tag {
  position: absolute; top: -12px; left: 26px;
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
}
.pcard .pname { display: flex; align-items: center; gap: 9px;
  font-size: 1.15rem; font-weight: 600; }
.pcard .pname i { color: var(--ink-3); font-size: 1.2rem; }
.pcard.featured .pname i { color: var(--brand); }
.pcard .ptag { color: var(--ink-3); font-size: .88rem; margin: 6px 0 18px; }
.pcard .price { display: flex; align-items: baseline; gap: 5px; }
.pcard .price .amt { font-size: 2.3rem; font-weight: 700;
  letter-spacing: -.03em; }
.pcard .price .per { color: var(--ink-3); font-size: .9rem; }
.pcard .billed { font-size: .78rem; color: var(--success); font-weight: 600;
  margin-top: 4px; min-height: 1rem; }
.pcard ul { list-style: none; padding: 0; margin: 18px 0;
  border-top: 1px solid var(--line); padding-top: 16px; }
.pcard li { display: flex; gap: 9px; font-size: .9rem; color: var(--ink-2);
  margin-bottom: 9px; }
.pcard li i { color: var(--success); font-size: 1rem; flex-shrink: 0;
  margin-top: 2px; }
.pcard .wa {
  display: flex; gap: 8px; align-items: center; background: var(--sunken);
  border-radius: var(--r-sm); padding: 9px 11px; font-size: .8rem;
  color: var(--ink-2); margin-bottom: 18px;
}
.pcard .wa i { color: var(--ink-3); }
.pcard .btn { width: 100%; }
.price-note { text-align: center; max-width: 540px; margin: 32px auto 0;
  font-size: .82rem; color: var(--ink-3); }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq .accordion-item {
  background: var(--surface); border: none; border-radius: var(--r-md) !important;
  box-shadow: var(--sh-1); margin-bottom: 12px; overflow: hidden;
}
.faq .accordion-button {
  background: var(--surface); color: var(--ink); font-weight: 600;
  font-size: .98rem; padding: 18px 20px; box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--brand); }
.faq .accordion-button:focus { box-shadow: none; }
.faq .accordion-body { color: var(--ink-2); font-size: .92rem;
  padding: 0 20px 18px; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; z-index: 1; padding: 0 20px 84px; }
.cta-inner {
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  background: linear-gradient(155deg, #2a2150, #6a35ff);
  border-radius: var(--r-xl); padding: 64px 32px; color: #fff;
  box-shadow: var(--sh-2);
}
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.78); margin: 12px auto 26px;
  max-width: 460px; }

/* ---- footer ------------------------------------------------------------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line);
  padding: 44px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: flex-start; }
.footer .brand { margin-bottom: 8px; }
.footer .ftag { color: var(--ink-3); font-size: .88rem; max-width: 260px; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--ink-3); margin: 0 0 12px;
  font-weight: 600; }
.footer-col a, .footer-col span { display: block; color: var(--ink-2);
  font-size: .9rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--brand); }
.copyright { margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-3); }
.copyright a { color: var(--ink-2); }
.copyright a:hover { color: var(--brand); }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .feature-grid, .steps, .price-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links, .nav .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-1);
  }
  .nav.open .nav-links a { padding: 10px 0; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .feature-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .pcard.featured { order: -1; }
  .preview-side { display: none; }
  .footer-inner { flex-direction: column; }
}

/* ---- reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
