/* =============================================================
   VJP Development — minimal, centered, Inter throughout
   ============================================================= */

:root {
  /* Palette */
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-strong: #050505;
  --ink-muted: #6b7280;
  --ink-soft: #9ca3af;
  --ink-hair: rgba(10, 10, 10, 0.08);
  --ink-faint: rgba(10, 10, 10, 0.04);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --t-small: 0.875rem;
  --t-body: 1rem;
  --t-sub: clamp(1.0625rem, 1.5vw, 1.25rem);
  --t-h2: clamp(1.625rem, 2.6vw, 2rem);
  --t-hero: clamp(2.75rem, 8.4vw, 5.5rem);

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;
  --s-10: 176px;

  /* Layout */
  --container: 56rem;
  --gutter: clamp(1.25rem, 4vw, 2rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms var(--ease-out);
  --t-base: 260ms var(--ease-out);
}

/* -------- Reset -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--ink);
  color: var(--bg);
}
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -------- Skip link -------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-2) var(--s-3);
  font-size: var(--t-small);
  z-index: 100;
}
.skip-link:focus {
  left: var(--s-3);
  top: var(--s-3);
}

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* -------- Page-load fade -------- */
.page-in {
  opacity: 0;
  animation: pageIn 620ms var(--ease-out) 60ms forwards;
}
@keyframes pageIn {
  to {
    opacity: 1;
  }
}

/* -------- Scroll-driven reveal -------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .about-title,
    .about-body,
    .footer-cols,
    .footer-meta {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }
  }
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================
   NAV
   ============================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: var(--s-4) 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.brand {
  font-weight: 600;
  font-size: var(--t-small);
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color var(--t-fast);
}
.brand:hover,
.brand:focus-visible {
  color: var(--ink-muted);
}
.nav-links {
  display: flex;
  gap: var(--s-5);
  font-size: var(--t-small);
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right var(--t-base);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink-muted);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  padding: var(--s-9) 0 var(--s-8);
  text-align: center;
}
.hero-title {
  font-weight: 700;
  font-size: var(--t-hero);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink-strong);
}
.hero-sub {
  margin-top: var(--s-4);
  font-size: var(--t-sub);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: -0.005em;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  padding: var(--s-7) 0 var(--s-9);
  text-align: center;
}
.about-title {
  font-weight: 700;
  font-size: var(--t-h2);
  letter-spacing: -0.022em;
  color: var(--ink-strong);
  margin-bottom: var(--s-5);
}
.about-body {
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 auto;
}

/* Quiet anchor target for nav (no visible content) */
.anchor-pad {
  height: 0;
  scroll-margin-top: 96px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  padding: var(--s-9) 0 var(--s-8);
}
.footer-inner {
  text-align: center;
}
.footer-cols {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: var(--s-7);
  text-align: left;
  margin-bottom: var(--s-7);
}
.footer-heading {
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--ink-strong);
  margin-bottom: var(--s-3);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.footer-list a {
  font-size: var(--t-small);
  color: var(--ink-muted);
  transition: color var(--t-fast);
}
.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--ink-strong);
}
.footer-meta {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 640px) {
  .hero {
    padding: var(--s-8) 0 var(--s-7);
  }
  /* Keep all three footer columns in a single row, just tighter */
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-5);
  }
}
@media (max-width: 420px) {
  .nav-links {
    gap: var(--s-4);
  }
  /* Only stack at very narrow widths */
  .footer-cols {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-5);
  }
  .footer-list {
    align-items: center;
  }
}

/* =============================================================
   THREAD PAGE
   ============================================================= */
.thread-page,
.privacy-page,
.support-page {
  /* Thread brand navy — replaces the page's near-black accents */
  --thread-navy: #040b26;
  --thread-navy-hover: #0a1747;
}
.thread-page main {
  position: relative;
  overflow-x: clip;
}
.thread-page .container {
  max-width: 78rem;
}


/* Phone images (shared) */
.phone-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(10, 10, 10, 0.18));
  transition: transform 600ms var(--ease-out);
}
.phone-hero {
  /* Hero phone — gentle upright, faint perspective */
  animation: phoneFloat 7s ease-in-out infinite;
}
.phone-tilt-right {
  transform: rotate(8deg);
}
.phone-tilt-left {
  transform: rotate(-8deg);
}
@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .phone-hero {
    animation: none;
  }
}

/* ---- Hero ---- */
.thread-hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-8);
}
.thread-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
.thread-hero-text {
  position: relative;
  z-index: 2;
}
.thread-hero-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink-strong);
  max-width: 14ch;
  margin-bottom: var(--s-5);
}
.thread-hero-sub {
  font-size: clamp(1.0625rem, 1.55vw, 1.375rem);
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: 42ch;
  margin-bottom: var(--s-6);
}
.thread-hero-phone {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  margin-left: auto;
}

/* ---- Download button ---- */
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--thread-navy);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  transition: transform var(--t-base), background var(--t-base),
    box-shadow var(--t-base);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 24px rgba(4, 11, 38, 0.28);
}
.download-button:hover,
.download-button:focus-visible {
  background: var(--thread-navy-hover);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 14px 32px rgba(4, 11, 38, 0.38);
}
.download-button:active {
  transform: translateY(0);
}
.apple-glyph {
  display: inline-block;
  flex-shrink: 0;
}

/* ---- How / 3 Steps ---- */
.thread-how {
  padding: var(--s-9) 0;
  position: relative;
}
.thread-how-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
.thread-how-eyebrow {
  font-weight: 700;
  font-size: clamp(1.0625rem, 1.4vw, 1.3rem);
  line-height: 1.35;
  color: var(--ink-strong);
  max-width: 38ch;
  margin-bottom: var(--s-6);
  letter-spacing: -0.012em;
}
.thread-steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.35;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
}
.step-num {
  font-weight: 500;
  color: var(--ink-soft);
  padding-top: 0.05em;
  min-width: 2.5ch;
}
.step-num::after {
  content: " /";
  color: var(--ink-soft);
}
.step-content {
  display: inline;
}
.step-word {
  font-weight: 700;
  color: var(--ink-strong);
}
.step-desc {
  color: var(--ink-muted);
}
.thread-how-phone {
  max-width: 28rem;
  margin-left: auto;
}

/* ---- Free ---- */
.thread-free {
  padding: var(--s-9) 0;
}
.thread-free-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
.thread-free-phone {
  max-width: 26rem;
}
.thread-free-text {
  max-width: 44ch;
}
.thread-free-title {
  font-weight: 700;
  font-size: clamp(1.875rem, 3.4vw, 2.625rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  margin-bottom: var(--s-4);
}
.thread-free-body {
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ---- Video ---- */
.thread-video {
  padding: var(--s-9) 0 var(--s-10);
}
.thread-video-inner {
  text-align: center;
}
.thread-video-title {
  font-weight: 700;
  font-size: clamp(1.875rem, 3.4vw, 2.625rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  margin-bottom: var(--s-3);
}
.thread-video-sub {
  font-size: var(--t-sub);
  font-weight: 500;
  color: var(--ink-muted);
  max-width: 48ch;
  margin: 0 auto var(--s-7);
}
.thread-video-frame {
  max-width: 30rem;
  margin: 0 auto;
  background: var(--thread-navy);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(4, 11, 38, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.thread-video-player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  background: var(--thread-navy);
}

/* ---- Scroll reveal targets for Thread page ---- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .thread-how-inner,
    .thread-free-inner,
    .thread-video-inner {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }
  }
}

/* ---- Thread page responsive ---- */
@media (max-width: 880px) {
  .thread-hero {
    padding: var(--s-7) 0 var(--s-6);
  }
  .thread-hero-inner,
  .thread-how-inner,
  .thread-free-inner {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  /* Center the hero so text + button + phone share a vertical axis */
  .thread-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .thread-hero-title,
  .thread-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .thread-hero-phone {
    max-width: 17rem;
    margin: 0 auto;
  }
  /* How / Free phones */
  .thread-how-text,
  .thread-free-text {
    text-align: center;
    margin: 0 auto;
  }
  .thread-how-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .thread-steps {
    max-width: 22rem;
    margin: 0 auto;
    text-align: left;
  }
  .thread-how-phone,
  .thread-free-phone {
    max-width: 15rem;
    margin: 0 auto;
  }
  .thread-video-frame {
    max-width: 19rem;
  }
}
@media (max-width: 480px) {
  .thread-hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.02;
  }
  .thread-hero-phone {
    max-width: 15rem;
  }
  .thread-how-phone,
  .thread-free-phone {
    max-width: 13rem;
  }
  .download-button {
    padding: 13px 22px;
    font-size: 0.9375rem;
  }
}

/* =============================================================
   PRIVACY / LEGAL PAGE
   ============================================================= */
.privacy-page main {
  padding: var(--s-7) 0 var(--s-9);
}
.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-head {
  margin-bottom: var(--s-8);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--ink-hair);
}
.legal-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-4);
}
.legal-title {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink-strong);
  margin-bottom: var(--s-5);
}
.legal-lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 38ch;
}
.legal-section {
  margin-bottom: var(--s-7);
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink-strong);
  margin-bottom: var(--s-4);
}
.legal-section p {
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: var(--s-4);
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-list {
  margin: 0 0 var(--s-4) 0;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding-left: var(--s-4);
  margin-bottom: var(--s-3);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
}
.legal-list li:last-child {
  margin-bottom: 0;
}
.legal-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 10px;
  height: 1px;
  background: var(--ink-muted);
}
.legal-list-numbered {
  counter-reset: legal-num;
}
.legal-list-numbered > li {
  counter-increment: legal-num;
  padding-left: var(--s-5);
}
.legal-list-numbered > li::before {
  content: counter(legal-num, decimal-leading-zero);
  background: transparent;
  width: auto;
  height: auto;
  top: 0.05em;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}
.legal-section code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  padding: 1px 6px;
  background: rgba(10, 10, 10, 0.05);
  border: 1px solid var(--ink-hair);
  border-radius: 4px;
  color: var(--ink-strong);
  letter-spacing: -0.005em;
  word-break: break-word;
}
.legal-section strong {
  font-weight: 600;
  color: var(--ink-strong);
}
.legal-link {
  color: var(--ink-strong);
  border-bottom: 1px solid var(--ink-faint);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.legal-link:hover,
.legal-link:focus-visible {
  color: var(--thread-navy);
  border-bottom-color: var(--thread-navy);
}

@media (max-width: 640px) {
  .privacy-page main {
    padding: var(--s-6) 0 var(--s-8);
  }
  .legal-head {
    margin-bottom: var(--s-7);
    padding-bottom: var(--s-5);
  }
  .legal-section {
    margin-bottom: var(--s-6);
  }
}

/* =============================================================
   SUPPORT PAGE
   ============================================================= */
.support-page main {
  padding: var(--s-8) 0 var(--s-9);
}

/* Hero — giant centered "Support." */
.support-hero {
  text-align: center;
  margin-bottom: var(--s-8);
}
.support-title {
  font-weight: 700;
  font-size: clamp(3rem, 9.4vw, 7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-strong);
}

/* Intro — subhead + lede, centered */
.support-intro {
  text-align: center;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--ink-hair);
  margin-bottom: var(--s-7);
}
.support-subhead {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--ink-strong);
  margin-bottom: var(--s-3);
}
.support-lede {
  font-size: var(--t-sub);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0 auto;
}

/* FAQ list */
.faq {
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--ink-hair);
  margin-bottom: var(--s-8);
}
.faq-inner {
  max-width: 36rem;
}
.faq-item {
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid transparent;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.faq-item:hover {
  background: rgba(10, 10, 10, 0.07);
}
.faq-item[open] {
  background: rgba(10, 10, 10, 0.05);
  border-color: var(--ink-hair);
}
.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.005em;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::marker {
  content: "";
}
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ink-muted);
  transition: transform var(--t-base), color var(--t-fast);
}
.faq-item[open] .faq-icon {
  /* '+' rotates 45° into '×' */
  transform: rotate(45deg);
  color: var(--thread-navy);
}
.faq-question {
  flex: 1;
}
.faq-answer {
  padding: 4px 20px 18px 52px;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.faq-answer p {
  margin-bottom: var(--s-3);
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer a {
  color: var(--ink-strong);
  border-bottom: 1px solid var(--ink-faint);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: var(--thread-navy);
  border-bottom-color: var(--thread-navy);
}
.faq-answer em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink-strong);
}

/* Still stuck — closer with contact email */
.support-still {
  text-align: center;
}
.support-still-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-4);
}
.support-still-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-faint);
  transition: color var(--t-base), border-color var(--t-base);
}
.support-still-link:hover,
.support-still-link:focus-visible {
  color: var(--thread-navy);
  border-bottom-color: var(--thread-navy);
}
.support-still-arrow {
  transition: transform var(--t-base);
}
.support-still-link:hover .support-still-arrow,
.support-still-link:focus-visible .support-still-arrow {
  transform: translate(3px, -3px);
}

/* Scroll-reveal on Support page */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .faq-item,
    .support-still-inner {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }
  }
}

/* Support page responsive */
@media (max-width: 640px) {
  .support-page main {
    padding: var(--s-7) 0 var(--s-8);
  }
  .support-hero {
    margin-bottom: var(--s-6);
  }
  .support-intro {
    padding-bottom: var(--s-6);
    margin-bottom: var(--s-6);
  }
  .faq {
    padding-bottom: var(--s-6);
    margin-bottom: var(--s-7);
  }
  .faq-summary {
    padding: 13px 18px;
    gap: 12px;
    font-size: 0.9375rem;
  }
  .faq-answer {
    padding: 2px 18px 16px 44px;
  }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
