/* ================================
   WonderCRM Landing — stylesheet
   Aesthetic: warm editorial, soft cream + duck yellow,
   serif display + grotesque body, generous whitespace.
================================ */

:root {
  --cream: #fef8eb;
  --cream-2: #fcf1d9;
  --paper: #fffdf7;
  --ink: #1a2238;
  --ink-2: #2a3454;
  --ink-soft: #4a5478;
  --duck: #fbbf24;
  --duck-light: #fcd34d;
  --duck-soft: #fde68a;
  --orange: #f97316;
  --green: #16a34a;
  --line: #e8dfc7;
  --line-soft: #f0e6ce;
  --shadow: 0 1px 3px rgba(26, 34, 56, 0.06), 0 10px 30px -10px rgba(26, 34, 56, 0.12);
  --shadow-lg: 0 4px 6px rgba(26, 34, 56, 0.04), 0 30px 60px -20px rgba(26, 34, 56, 0.18);
  --radius: 14px;
  --radius-lg: 24px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain across whole page */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.7 0 0 0 0 0.6 0 0 0 0 0.4 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--ink); text-decoration: none; }

.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;
}

em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--orange); }

/* ================================
   Buttons
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.link-quiet {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
}
.link-quiet:hover { color: var(--ink); }

/* ================================
   Navigation
================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 248, 235, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo img { height: 36px; }

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--duck);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 18px; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s, opacity .2s;
}

/* ================================
   Hero
================================ */
.hero {
  position: relative;
  padding: 80px 32px 0;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  animation: fadeUp .8s .1s ease both;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18); }
  50% { box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.08); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp .8s .2s ease both;
}

.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp .8s .35s ease both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp .8s .5s ease both;
}
.hero__cta-meta {
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 2px;
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  animation: fadeUp .8s .65s ease both;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero art block */
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
  animation: fadeUp 1s .2s ease both;
}
.hero__art-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--duck-soft), var(--duck-light) 55%, var(--duck) 100%);
  filter: blur(0px);
  transform: rotate(-6deg);
  box-shadow: var(--shadow-lg);
}
.hero__art-bg::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(26, 34, 56, 0.25);
  border-radius: 50%;
  animation: rotate 80s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero__duckling {
  position: relative;
  width: 75%;
  margin: 0 auto;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 24px rgba(26, 34, 56, 0.18));
}
@keyframes float {
  0%, 100% { transform: translateY(-52%); }
  50% { transform: translateY(-48%); }
}

.hero__stamp {
  position: absolute;
  bottom: 6%;
  right: -4%;
  width: 110px;
  height: 110px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding: 12px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-lg);
}
.hero__stamp span:first-child { font-size: 22px; font-weight: 600; }
.hero__stamp span:last-child { font-size: 11px; color: var(--duck-light); letter-spacing: 0.04em; }

/* Marquee */
.marquee {
  margin-top: 80px;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 20px 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.marquee__track span:nth-child(even) { color: var(--orange); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ================================
   Trust
================================ */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
}
.trust__lede {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
}

/* ================================
   Section header (shared)
================================ */
.section-header {
  max-width: 800px;
  margin-bottom: 64px;
}
.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.section-header__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-header__lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 560px;
}
.section-header--center .section-header__lede { margin-left: auto; margin-right: auto; }

/* ================================
   Features grid
================================ */
.features {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.card--accent {
  background: var(--duck-light);
  border-color: var(--ink);
}
.card--accent:hover { background: var(--duck); }

.card--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.card--dark h3 { color: var(--cream); }
.card--dark p { color: rgba(254, 248, 235, 0.7); }
.card--dark .card__num { color: var(--duck-light); border-color: rgba(254, 248, 235, 0.2); }

.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}

.card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  opacity: 0.85;
}
.card--dark .card__icon svg { stroke: var(--cream); }

/* ================================
   Workflow
================================ */
.workflow {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.workflow .section-header__title { color: var(--cream); }
.workflow .section-header__eyebrow { color: var(--duck-light); }
.workflow .section-header em { color: var(--duck-light); }

.workflow__steps {
  max-width: var(--max);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  border-top: 1.5px solid rgba(254, 248, 235, 0.2);
  padding-top: 24px;
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  color: var(--duck-light);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(254, 248, 235, 0.65);
}

/* ================================
   Quote
================================ */
.quote {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 32px;
  text-align: center;
}
.quote__mark {
  margin: 0 auto 28px;
  opacity: 0.9;
}
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.quote figcaption {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote figcaption strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

/* ================================
   Pricing
================================ */
.pricing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px 120px;
  text-align: center;
}

.price-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 8px 8px 0 var(--ink);
  text-align: left;
  position: relative;
}

.price-card__label {
  display: inline-block;
  padding: 5px 12px;
  background: var(--duck-light);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.price-card__amount {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
  color: var(--ink);
}
.price-card__currency {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-top: 14px;
}
.price-card__number {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.price-card__period {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 32px;
  margin-left: 8px;
}

.price-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.price-card__list {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.price-card__list li {
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0 8px 28px;
  position: relative;
}
.price-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.price-card__foot {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ================================
   FAQ
================================ */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 32px;
}
.faq__list {
  border-top: 1.5px solid var(--ink);
}
.faq details {
  border-bottom: 1.5px solid var(--ink);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--orange);
  transition: transform .25s;
  font-family: var(--font-body);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--orange); }

.faq details p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ================================
   Final CTA
================================ */
.cta {
  padding: 120px 32px;
  background: var(--duck-light);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--duck);
  border-radius: 50%;
  opacity: 0.4;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.18;
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta p {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 36px;
  opacity: 0.75;
}
.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.cta__form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: box-shadow .2s;
}
.cta__form input:focus { box-shadow: 4px 4px 0 var(--ink); }
.cta__form-msg {
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink);
  font-style: italic;
  font-family: var(--font-display);
}

/* ================================
   Footer
================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 32px 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(254, 248, 235, 0.15);
}
.footer__brand img {
  height: 32px;
  margin-bottom: 18px;
  filter: invert(1) brightness(1.2) saturate(0.6);
}
.footer__brand p {
  font-size: 14px;
  color: rgba(254, 248, 235, 0.6);
  line-height: 1.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--duck-light);
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: rgba(254, 248, 235, 0.7);
  padding: 5px 0;
  transition: color .2s;
}
.footer__cols a:hover { color: var(--cream); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(254, 248, 235, 0.5);
}

/* ================================
   Animations
================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   Responsive
================================ */
@media (max-width: 1000px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .workflow__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__inner { padding: 16px 20px; }
  .nav__links, .nav__cta .link-quiet { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn { padding: 10px 18px; font-size: 14px; }

  .hero { padding: 48px 20px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero__art { max-width: 320px; margin: 0 auto; }
  .marquee__track { font-size: 24px; gap: 24px; }
  .marquee { margin-top: 56px; }

  .trust { padding: 40px 20px; }
  .trust__logos { font-size: 18px; gap: 12px 18px; }

  .features { padding: 72px 20px; }
  .features__grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }

  .workflow { padding: 72px 20px; }
  .workflow__steps { grid-template-columns: 1fr; gap: 32px; }

  .quote { padding: 72px 20px; }

  .pricing { padding: 56px 20px 80px; }
  .price-card { padding: 32px 24px; box-shadow: 5px 5px 0 var(--ink); }
  .price-card__number { font-size: 72px; }

  .faq { padding: 72px 20px; }
  .faq summary { font-size: 18px; padding-right: 32px; }

  .cta { padding: 72px 20px; }
  .footer { padding: 56px 20px 24px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}
