/* ============================================================
   SOC.GOLF — marketing site (v2, 2026 redesign)
   Single stylesheet. Mobile-first. Brand green kept from v1.
   ============================================================ */

/* ---------- Fonts (all self-hosted) ---------- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-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: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-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: 'Titanium Motors W01 Oblique';
  src: url('/assets/fonts/Titanium-Motors-W01-Oblique.woff2') format('woff2'),
       url('/assets/fonts/Titanium-Motors-W01-Oblique.woff') format('woff');
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --green: #3aa808;
  --green-dark: #2c8506;
  --green-deep: #143407;
  --ink: #17240e;
  --body: #4c5a41;
  --tint: #f1f8ea;
  --tint-strong: #e2f2d4;
  --line: #e2e8da;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 48px -12px rgba(23, 36, 14, 0.18);
  --shadow-sm: 0 4px 16px rgba(23, 36, 14, 0.07);
  --container: 72rem;
  --font: 'Outfit', 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; margin: 0 0 0.75rem; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
a { color: var(--green-dark); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }
.brand { font-family: 'Titanium Motors W01 Oblique', var(--font); letter-spacing: 0.02em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
section { padding-block: clamp(4rem, 9vw, 7rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  background: var(--tint-strong);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.125rem;
}
.section-head { max-width: 44rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.875rem, 4.2vw, 2.75rem); }
.section-head p { font-size: clamp(1rem, 1.6vw, 1.1875rem); margin: 0; }

/* ---------- Buttons ---------- */
.btn, .btn-outline, .btn-ghost, .btn-white, .btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(58, 168, 8, 0.55);
}
.btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: #fff;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--tint); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); padding-inline: 1.25rem; }
.btn-ghost:hover { color: var(--green-dark); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); }
.btn-ghost-white { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(23, 36, 14, 0.06); }
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { width: clamp(10rem, 22vw, 13rem); height: auto; }
.main-nav { display: none; }
.header-actions { display: none; }
.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a.nav-link {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .menu-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 64rem) {
  .menu-toggle, .mobile-menu { display: none !important; }
  .main-nav {
    display: flex;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    margin-inline: auto;
  }
  .main-nav a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .main-nav a:hover { color: var(--green-dark); border-color: var(--green); }
  .header-actions { display: flex; align-items: center; gap: 0.625rem; }
  .header-actions .btn, .header-actions .btn-outline { padding: 0.75rem 1.375rem; font-size: 0.9375rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(50rem 30rem at 85% -10%, var(--tint-strong) 0%, transparent 60%),
    radial-gradient(40rem 26rem at -10% 100%, var(--tint) 0%, transparent 55%),
    var(--white);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.375rem, 6vw, 3.875rem);
  margin-bottom: 1.125rem;
}
.hero h1 .accent {
  color: var(--green-dark);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.16em;
  background: var(--tint-strong);
  z-index: -1;
  border-radius: 3px;
}
.hero .lede { font-size: clamp(1.0625rem, 1.8vw, 1.25rem); max-width: 34rem; margin-bottom: 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 1.5rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--body);
}
.trust-row li { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-row svg { flex-shrink: 0; }

/* Hero visual: photo + floating UI-style chips */
.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.chip-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--ink);
}
.chip-card strong { display: block; font-weight: 700; }
.chip-card small { color: var(--body); font-size: 0.8125rem; }
.chip-card .dot {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--tint-strong);
  display: grid;
  place-items: center;
  color: var(--green-dark);
}
.chip-event { top: 1rem; left: -0.75rem; }
.chip-hcp { bottom: 1.25rem; right: -0.5rem; }

@media (min-width: 56rem) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
  .chip-event { top: 2rem; left: -2rem; }
  .chip-hcp { bottom: 2.5rem; right: -1.75rem; }
}

/* ---------- Feature bento grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card .icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--tint-strong);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1.125rem;
}
.feature-card h3 { font-size: 1.1875rem; margin-bottom: 0.375rem; }
.feature-card p { font-size: 0.984375rem; margin: 0; }
.feature-card.photo-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 17rem;
  display: flex;
  align-items: flex-end;
}
.feature-card.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card.photo-card .overlay {
  position: relative;
  width: 100%;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(20, 52, 7, 0.88) 55%);
  color: #fff;
}
.feature-card.photo-card h3 { color: #fff; }
.feature-card.photo-card p { color: rgba(255, 255, 255, 0.85); }

@media (min-width: 40rem) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- How it works ---------- */
.how { background: var(--tint); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.step .num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.1875rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.125rem;
  box-shadow: 0 6px 14px -4px rgba(58, 168, 8, 0.6);
}
.step h3 { font-size: 1.1875rem; margin-bottom: 0.375rem; }
.step p { font-size: 0.984375rem; margin: 0; }
@media (min-width: 48rem) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Pricing ---------- */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 58rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.plan.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-lg);
}
.plan-flag {
  position: absolute;
  top: -0.875rem;
  left: clamp(1.75rem, 3vw, 2.25rem);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
}
.plan-name {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.plan-price { font-size: clamp(2.75rem, 5vw, 3.25rem); font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.02em; margin: 0 0 0.375rem; }
.plan-price small { font-size: 1.0625rem; font-weight: 600; color: var(--body); letter-spacing: 0; }
.plan-sub { font-size: 0.984375rem; margin-bottom: 1.375rem; }
.plan-list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; flex-direction: column; gap: 0.6875rem; }
.plan-list li { position: relative; padding-left: 1.75rem; font-size: 0.984375rem; }
.plan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.125rem;
  height: 1.125rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%233aa808' d='M6.2 12.6 1.8 8.2l1.4-1.4 3 3 6.6-6.6 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.plan-list li.soon { color: #77836c; }
.plan-list li.soon::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2377836c' d='M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1zm0 12.6A5.6 5.6 0 1 1 8 2.4a5.6 5.6 0 0 1 0 11.2zM8.7 4.5H7.3v4.2l3.3 2 .7-1.2-2.6-1.6z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.soon-chip {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  background: var(--tint-strong);
  border-radius: 999px;
  padding: 0.1875rem 0.5625rem;
  margin-left: 0.25rem;
  white-space: nowrap;
  vertical-align: middle;
}
.plan .btn, .plan .btn-outline { width: 100%; margin-top: auto; }
.pricing-note { text-align: center; max-width: 40rem; margin: 1.75rem auto 0; font-size: 0.984375rem; }
@media (min-width: 48rem) {
  .pricing-cards { grid-template-columns: 1fr 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 46rem; margin: clamp(2rem, 4vw, 3rem) auto 0; display: flex; flex-direction: column; gap: 0.875rem; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: var(--green); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '';
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232c8506' stroke-width='2.2' stroke-linecap='round' d='M2 5.5 8 11l6-5.5'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list .answer { padding: 0 1.375rem 1.25rem; font-size: 0.984375rem; }
.faq-list .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(40rem 24rem at 90% 0%, rgba(58, 168, 8, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, var(--green-deep) 0%, #1d5407 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.875rem, 4.2vw, 2.75rem); }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: clamp(1rem, 1.6vw, 1.1875rem); max-width: 38rem; margin-inline: auto; }
.cta-band .cta-row { justify-content: center; margin-top: 1.75rem; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #101b09;
  color: rgba(255, 255, 255, 0.75);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img { width: 13rem; height: auto; margin-bottom: 1rem; }
.footer-brand p { margin: 0; max-width: 20rem; }
.footer-col h4 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

/* ---------- Contact page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-aside .photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
}
.contact-aside .photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-field { display: block; margin-bottom: 1.125rem; font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
.form-field input, .form-field textarea {
  display: block;
  width: 100%;
  margin-top: 0.4375rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: #fbfdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8125rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58, 168, 8, 0.18);
}
.form-field textarea { min-height: 8.5rem; resize: vertical; }
.contact-card .btn { width: 100%; border: 0; }
.output_message { display: block; margin-bottom: 0.75rem; font-weight: 600; }
@media (min-width: 56rem) {
  .contact-wrap { grid-template-columns: 0.9fr 1.1fr; }
}

/* ---------- Legal pages (Terms / Privacy) ---------- */
.legal-page { max-width: 42rem; margin-inline: auto; }
.legal-page .updated { color: var(--body); font-size: 0.9375rem; margin-bottom: 2.5rem; }
.legal-page h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin-top: 2.5rem; }
.legal-page h3 { font-size: 1.0625rem; margin-top: 1.5rem; }
.legal-page ul, .legal-page ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal-page li { margin-bottom: 0.375rem; }
.legal-page a { text-decoration: underline; text-underline-offset: 2px; }
.legal-note {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  margin: 1.25rem 0;
}
.legal-note strong { color: var(--ink); }
.legal-toc {
  background: #fbfdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
}
.legal-toc h2 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-dark); margin: 0 0 0.75rem; }
.legal-toc ol { columns: 1; margin: 0; padding-left: 1.25rem; }
@media (min-width: 40rem) {
  .legal-toc ol { columns: 2; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .btn-outline:hover, .btn-white:hover, .feature-card:hover { transform: none; }
}
