/* ==========================================================================
   Radiology Invest Group — landing site + guides
   Brand tokens sampled from the company logo (navy + graphite grey).
   Supports light and dark colour schemes and works from 320px upwards.
   --------------------------------------------------------------------------
   1. Tokens (light)
   2. Tokens (dark)
   3. Base
   4. Layout
   5. Header & nav
   6. Buttons
   7. Hero
   8. Sections & components
   9. Media / figures
   10. FAQ
   11. Contact & form
   12. Article (guides)
   13. Footer
   14. Motion
   ========================================================================== */

/* ---------- 1. Tokens (light) ---------- */
:root {
  color-scheme: light dark;

  --navy-900: #01152F;
  --navy-800: #012048;
  --navy: #022656;
  --navy-600: #0A3672;
  --navy-400: #3E5B8C;
  --navy-100: #E3E9F1;
  --navy-050: #F4F6FB;

  --graphite: #646464;
  --graphite-300: #B4B4B4;

  --accent: #1F6FEB;
  --accent-dark: #1557C0;
  --accent-soft: #E8F0FE;
  --copper: #B87333;

  /* Semantic surfaces — these are what components reference */
  --bg: #FFFFFF;
  --bg-alt: #FBFCFD;
  --bg-strip: #F4F6FB;
  --surface: #FFFFFF;
  --heading: #01152F;
  --text: #4A5158;
  --text-muted: #646C76;
  --line: #DFE3E9;
  --link: #1F6FEB;
  --link-hover: #1557C0;

  /* Always-dark bands (hero, contact, footer) */
  --band-from: #01152F;
  --band-to: #022656;
  --band-text: rgba(255,255,255,.80);
  --band-heading: #FFFFFF;
  --band-eyebrow: #7FB0FF;
  --band-line: rgba(255,255,255,.14);
  --band-muted: rgba(255,255,255,.55);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1160px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(2,38,86,.06), 0 1px 3px rgba(2,38,86,.04);
  --shadow-md: 0 4px 14px rgba(2,38,86,.07), 0 1px 3px rgba(2,38,86,.05);
  --shadow-lg: 0 18px 48px rgba(1,21,47,.12);
  --ease: cubic-bezier(.22,.61,.36,1);

  --logo-plate: transparent;
  --logo-pad: 0;
}

/* ---------- 2. Tokens (dark) ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0B1016;
    --bg-alt: #101720;
    --bg-strip: #0F1620;
    --surface: #141C26;
    --heading: #EEF3F9;
    --text: #B4C0CE;
    --text-muted: #8A98A8;
    --line: #253140;
    --link: #7FB0FF;
    --link-hover: #A8C9FF;

    --accent: #7FB0FF;
    --accent-dark: #A8C9FF;
    --accent-soft: rgba(127,176,255,.14);
    --navy-050: #101720;
    --navy-100: #1B2836;
    --navy-400: #4E6C9E;

    --band-from: #060B12;
    --band-to: #0D1826;
    --band-text: rgba(232,240,250,.80);
    --band-heading: #F4F8FD;
    --band-eyebrow: #7FB0FF;
    --band-line: rgba(255,255,255,.12);
    --band-muted: rgba(232,240,250,.52);

    --shadow-sm: 0 1px 2px rgba(0,0,0,.5);
    --shadow-md: 0 4px 16px rgba(0,0,0,.45);
    --shadow-lg: 0 20px 52px rgba(0,0,0,.55);

    /* the logo is navy artwork — it needs a light plate on dark surfaces */
    --logo-plate: #FFFFFF;
    --logo-pad: 5px 9px;
  }
}

/* ---------- 3. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 { color: var(--heading); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(1.95rem, 4.4vw, 3.3rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: 1.12rem; letter-spacing: -.01em; }
p  { margin: 0 0 1.1em; }
a  { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }
strong { color: var(--heading); font-weight: 600; }
img, svg, picture { max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--accent); color: #fff; }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 600px) { .container { padding: 0 24px; } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

.eyebrow {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 12px;
}
.lede { font-size: 1.06rem; color: var(--text); max-width: 68ch; }
@media (min-width: 700px) { .lede { font-size: 1.09rem; } }

/* ---------- 5. Header & nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--bg); }
}
.header-inner { display: flex; align-items: center; gap: 14px; min-height: 68px; }
@media (min-width: 900px) { .header-inner { min-height: 76px; gap: 24px; } }

.brand { display: flex; align-items: center; margin-right: auto; flex: none; }
.brand img {
  height: 38px; width: auto; display: block;
  background: var(--logo-plate); padding: var(--logo-pad); border-radius: var(--radius);
}
@media (min-width: 700px) { .brand img { height: 46px; } }

.nav { display: none; align-items: center; gap: 24px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a {
  color: var(--heading); font-size: .92rem; font-weight: 500; letter-spacing: -.01em;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.nav a:hover { color: var(--link); border-bottom-color: var(--link); text-decoration: none; }

/* mobile menu — pure CSS disclosure, no JS dependency */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none;
  background: transparent; border: 1.5px solid var(--line); border-radius: var(--radius);
  color: var(--heading); cursor: pointer;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 20px; height: 20px; }
.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--bg);
  padding: 8px 0 14px;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 940px) { .mobile-nav { display: none !important; } }
.mobile-nav a {
  display: block; padding: 12px 4px; font-size: 1rem; font-weight: 500;
  color: var(--heading); border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: .93rem; font-weight: 600; letter-spacing: -.01em;
  padding: 12px 20px; min-height: 46px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
@media (min-width: 700px) { .btn { padding: 13px 24px; font-size: .94rem; } }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-600); border-color: var(--navy-600); color: #fff; box-shadow: var(--shadow-md); }
@media (prefers-color-scheme: dark) {
  .btn-primary { background: var(--accent); border-color: var(--accent); color: #06111F; }
  .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #06111F; }
}
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy-400); background: var(--bg-alt); color: var(--heading); }
.btn-light { background: #fff; color: #01152F; border-color: #fff; }
.btn-light:hover { background: #E3E9F1; border-color: #E3E9F1; color: #01152F; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.10); color: #fff; }
.btn-wa { background: #25D366; border-color: #25D366; color: #06331A; }
.btn-wa:hover { background: #1FBE5B; border-color: #1FBE5B; color: #06331A; }
.btn-sm { padding: 9px 15px; min-height: 40px; font-size: .86rem; }
.btn-block { width: 100%; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--band-from) 0%, var(--band-to) 55%, var(--band-from) 100%);
  color: var(--band-text);
  padding: clamp(44px, 7vw, 92px) 0 clamp(44px, 6vw, 84px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(62% 62% at 82% 18%, rgba(31,111,235,.24), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.04fr .96fr; gap: clamp(36px, 5vw, 64px); } }

.hero .eyebrow { color: var(--band-eyebrow); }
.hero h1 { color: var(--band-heading); }
.hero-lede { font-size: 1.06rem; color: var(--band-text); max-width: 56ch; }
@media (min-width: 700px) { .hero-lede { font-size: 1.13rem; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 28px; }
.hero-actions .btn { flex: 1 1 auto; min-width: 190px; }
@media (min-width: 560px) { .hero-actions .btn { flex: 0 0 auto; } }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags li {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.22);
  padding: 6px 11px; border-radius: 100px;
}
.hero-note {
  margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--band-line);
  font-size: .85rem; color: var(--band-muted);
}
.hero-art { order: -1; }
@media (min-width: 940px) { .hero-art { order: 0; } }
.hero-art img {
  width: 100%; display: block; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}

/* ---------- 8. Sections & components ---------- */
.section { padding: clamp(46px, 6.5vw, 90px) 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 72ch; margin-bottom: 36px; }
@media (min-width: 700px) { .section-head { margin-bottom: 44px; } }

.strip { background: var(--bg-strip); border-bottom: 1px solid var(--line); padding: 22px 0; }
.strip-grid { display: grid; grid-template-columns: 1fr; gap: 16px 24px; }
@media (min-width: 560px) { .strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .strip-grid { grid-template-columns: repeat(4, 1fr); } }
.strip-item .k {
  display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px;
}
.strip-item .v { font-weight: 600; color: var(--heading); font-size: .95rem; line-height: 1.4; }

.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 22px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card:hover { border-color: var(--navy-400); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .num { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--accent); display: block; margin-bottom: 12px; }
.card-icon { width: 42px; height: 42px; margin-bottom: 14px; display: block; color: var(--accent); flex: none; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .94rem; margin: 0; color: var(--text); }
.card a.more { display: inline-block; margin-top: 12px; font-size: .88rem; font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); } }

.checklist li {
  position: relative; padding: 9px 0 9px 28px; font-size: .96rem;
  border-bottom: 1px solid var(--line); color: var(--text);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: ""; position: absolute; left: 3px; top: 17px; width: 9px; height: 9px;
  border-radius: 2px; background: var(--accent);
}

.steps { counter-reset: step; display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 18px; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; color: var(--accent);
  display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .92rem; margin: 0; }

.note {
  margin-top: 30px; padding: 16px 18px; border-left: 3px solid var(--copper);
  background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem; color: var(--text-muted); max-width: 84ch;
}
.note strong { color: var(--heading); }

/* ---------- 9. Media / figures ---------- */
figure { margin: 0; }
.media {
  display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center;
}
@media (min-width: 880px) {
  .media { grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); }
  .media.reverse .media-art { order: 2; }
}
.media-art img {
  width: 100%; display: block; border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
figcaption {
  margin-top: 10px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
}
.band-media { margin-top: 36px; }
.band-media img { border-radius: var(--radius-lg); width: 100%; display: block; }

/* ---------- 10. FAQ ---------- */
.faq { max-width: 82ch; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 34px 16px 0; position: relative;
  font-weight: 600; color: var(--heading); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { margin: 0 0 16px; font-size: .96rem; }

/* ---------- 11. Contact & form ---------- */
.contact { background: linear-gradient(165deg, var(--band-from), var(--band-to)); color: var(--band-text); }
.contact h2, .contact h3 { color: var(--band-heading); }
.contact .eyebrow { color: var(--band-eyebrow); }
.contact a { color: #9CC2FF; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 64px); } }

.detail-list li { padding: 13px 0; border-bottom: 1px solid var(--band-line); }
.detail-list li:last-child { border-bottom: 0; }
.detail-list .k {
  display: block; font-family: var(--font-mono); font-size: .67rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--band-muted); margin-bottom: 3px;
}
.detail-list .v { color: #fff; font-weight: 500; }
.detail-list .v a { color: #fff; }

.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg); color: var(--text);
}
@media (min-width: 700px) { .form-card { padding: clamp(26px, 3.5vw, 34px); } }
.form-card h3 { color: var(--heading); margin-bottom: 4px; }
.form-card .form-note { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; }

.field { margin-bottom: 15px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; gap: 15px; } }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.field .req { color: var(--copper); }
@media (prefers-color-scheme: dark) { .field .req { color: #E0A46A; } }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; /* 16px prevents iOS zoom on focus */
  color: var(--heading); padding: 11px 13px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--bg); transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--text-muted); margin: 4px 0 18px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--accent); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- 12. Article (guides) ---------- */
.article-head { background: linear-gradient(165deg, var(--band-from), var(--band-to)); color: var(--band-text); padding: clamp(36px, 5vw, 68px) 0; }
.article-head h1 { color: var(--band-heading); max-width: 24ch; }
.article-head .eyebrow { color: var(--band-eyebrow); }
.article-head .lede { color: var(--band-text); }
.crumbs { font-size: .82rem; color: var(--band-muted); margin-bottom: 18px; }
.crumbs a { color: var(--band-muted); }
.crumbs a:hover { color: #fff; }

.article { padding: clamp(40px, 5vw, 72px) 0; }
.article-body { max-width: 74ch; }
.article-body h2 { margin-top: 2em; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 1.6em; }
.article-body ul { margin: 0 0 1.3em; }
.article-body ul li { position: relative; padding: 5px 0 5px 24px; }
.article-body ul li::before {
  content: ""; position: absolute; left: 3px; top: 15px; width: 7px; height: 7px;
  border-radius: 2px; background: var(--accent);
}
.article-body ol { margin: 0 0 1.3em; padding-left: 22px; }
.article-body ol li { padding: 5px 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; font-size: .93rem; display: block; overflow-x: auto; }
.article-body th, .article-body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-body th { color: var(--heading); font-weight: 600; white-space: nowrap; }
.toc {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 22px; margin-bottom: 34px;
}
.toc h2 { font-size: .78rem !important; margin: 0 0 10px !important; font-family: var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.toc li { padding: 5px 0; }
.cta-box {
  margin-top: 44px; padding: 26px; border-radius: var(--radius-lg);
  background: var(--bg-alt); border: 1px solid var(--line);
}
.cta-box h3 { margin-bottom: 8px; }
.cta-box .btn { margin-top: 8px; margin-right: 8px; }

.guide-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .guide-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 22px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.guide-card:hover { border-color: var(--navy-400); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.guide-card .cat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.guide-card h3 { margin-bottom: 8px; }
.guide-card p { font-size: .93rem; color: var(--text); margin: 0; }

/* ---------- 13. Footer ---------- */
.site-footer { background: var(--band-from); color: rgba(255,255,255,.62); padding: 40px 0 28px; font-size: .87rem; }
.footer-top { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-top img { height: 48px; width: auto; background: #fff; padding: 7px 12px; border-radius: var(--radius); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.74); }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 20px; display: grid; gap: 10px; }
@media (min-width: 880px) { .footer-bottom { grid-template-columns: auto 1fr; gap: 24px; align-items: start; } }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.46); font-size: .8rem; }

/* ---------- 14. Motion ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .guide-card:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-nav, .hero-actions, .form-card, .site-footer { display: none !important; }
  body { color: #000; background: #fff; }
}
