/* ══════════════════════════════════════════════════════════════
   Evo Creative Studio — Standalone pages (Support / Privacy / Terms)
   Shares the design tokens of index.php. Self-contained.
   ══════════════════════════════════════════════════════════════ */

:root {
  --bg:           #0A0A0A;
  --surface:      #111111;
  --card:         #141414;
  --white:        #FFFFFF;
  --gray-1:       #CCCCCC;
  --gray-2:       #BBBBBB;
  --gray-3:       #888888;
  --border:       rgba(255,255,255,0.12);
  --border-hover: rgba(255,255,255,0.35);
  --accent:       #00fac8;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:        100px;
  --gutter:       clamp(24px, 5vw, 64px);
  --max-w:        1400px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #2a2a2a transparent; }
body {
  font-family: 'Bai Jamjuree', sans-serif;
  background: var(--bg); color: var(--white);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #2a2a2a; }

/* ─── SKIP LINK (ADA) ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  padding: 12px 20px; background: var(--accent); color: #000;
  font-size: 14px; font-weight: 700; z-index: 100000;
  border-radius: 4px; transition: top 0.2s;
}
.skip-link:focus { top: 16px; outline: 3px solid #000; outline-offset: 2px; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background .3s;
}
.site-nav.scrolled { background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); }
.nav-logo img { height: 80px; width: auto; display: block; }
.nav-links { display: none; align-items: center; gap: 44px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { font-size: 15px; letter-spacing: 0.04em; color: var(--gray-2); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); color: #000;
  border-radius: 100px; padding: 14px 28px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--white);
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-dot { font-size: 14px; }

.nav-hamburger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
@media (max-width: 767px) { .nav-hamburger { display: flex; } .nav-links { display: none !important; } }
.ham-bar { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform .3s var(--ease), opacity .3s; }
.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-mobile { position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(10,10,10,.98); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 28px var(--gutter) 36px; display: flex; flex-direction: column; }
.nav-mobile[hidden] { display: none; }
.nav-mobile-link { font-size: 16px; color: var(--gray-2); padding: 16px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-cta { margin-top: 24px; padding: 16px 0; border: 1.5px solid rgba(255,255,255,.25); text-align: center; color: var(--white); font-weight: 500; border-radius: 100px; transition: background .2s, color .2s; }
.nav-mobile-cta:hover { background: var(--white); color: #000; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(56px, 8vw, 104px));
  padding-bottom: clamp(40px, 5vw, 64px);
  padding-inline: var(--gutter);
  max-width: var(--max-w); margin-inline: auto;
  border-bottom: 1px solid var(--border);
}
.page-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.page-eyebrow::before { content:''; width: 36px; height: 1px; background: var(--accent); flex-shrink: 0; }
.page-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 400; letter-spacing: -0.04em;
  line-height: 0.95; text-transform: uppercase;
  margin-bottom: 24px;
}
.page-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--gray-1); line-height: 1.65;
  max-width: 62ch;
}
.page-updated {
  margin-top: 28px; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-3);
}

/* ─── LAYOUT: sticky TOC + content ─── */
.page-body {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(48px, 6vw, 88px);
  display: grid; grid-template-columns: 240px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .page-body { grid-template-columns: 1fr; gap: 32px; } }
/* Grid items default to min-width:auto, which refuses to shrink below their
   min-content width. Without this the 560px policy tables widen the whole
   page and the viewport zooms out on phones. */
.page-body > * { min-width: 0; }

.page-toc { position: sticky; top: calc(var(--nav-h) + 32px); }
@media (max-width: 900px) {
  .page-toc {
    position: static;
    border: 1px solid var(--border); border-radius: 4px; padding: 20px 24px;
  }
}
.page-toc-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray-3);
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.page-toc ol { display: flex; flex-direction: column; gap: 2px; counter-reset: toc; }
.page-toc a {
  display: block; padding: 7px 0;
  font-size: 14px; color: var(--gray-2);
  line-height: 1.4; transition: color .2s;
}
.page-toc a:hover { color: var(--accent); }

/* ─── SECTIONS ─── */
.doc-section {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.doc-section:first-child { padding-top: 0; }
.doc-section:last-child { border-bottom: none; }
.doc-section > * { min-width: 0; }
@media (max-width: 600px) { .doc-section { grid-template-columns: 36px 1fr; gap: 16px; padding: 24px 0; } }
.doc-num { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.15em; padding-top: 4px; }
.doc-h {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
/* Direct children only. A bare `.doc-section p` outranks every component
   class inside a section (0,1,1 vs 0,1,0) and silently flattens .doc-num,
   .biz-label, .spec-num and friends back to body text. */
.doc-section > div > p { font-size: 16px; line-height: 1.8; color: var(--gray-2); }
.doc-section > div > p + p { margin-top: 14px; }
.doc-section > div > p strong { color: var(--white); font-weight: 600; }
.doc-section a:not(.btn-pill):not(.chan-card) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.doc-section a:not(.btn-pill):not(.chan-card):hover { color: var(--white); }

.doc-h3 {
  font-size: 14px; font-weight: 600;
  color: var(--white); margin: 24px 0 10px;
  letter-spacing: 0.02em;
}

.doc-list { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 0; }
.doc-list li { font-size: 15px; color: var(--gray-2); line-height: 1.7; padding-left: 18px; position: relative; }
.doc-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 12px; top: 4px; }
.doc-list li strong { color: var(--white); font-weight: 600; }

/* ─── CALLOUT ─── */
.callout {
  border: 1px solid rgba(0,250,200,0.35);
  background: rgba(0,250,200,0.05);
  border-radius: 4px; padding: 22px 26px; margin: 22px 0 0;
}
.callout-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.callout p { font-size: 15px; line-height: 1.7; color: var(--gray-1); }
.callout.is-warn { border-color: rgba(255,180,80,0.4); background: rgba(255,180,80,0.05); }
.callout.is-warn .callout-title { color: #FFB450; }

/* ─── POLICY TABLE ─── */
.policy-table-wrap { overflow-x: auto; margin: 22px 0 0; -webkit-overflow-scrolling: touch; }
.policy-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.policy-table caption { text-align: left; font-size: 13px; color: var(--gray-3); padding-bottom: 12px; }
.policy-table th, .policy-table td {
  text-align: left; padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.policy-table th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray-3);
  border-bottom-color: var(--border-hover);
}
.policy-table td { font-size: 15px; line-height: 1.7; color: var(--gray-2); }
.policy-table td:first-child { color: var(--white); font-weight: 600; width: 30%; padding-right: 28px; }

/* Narrow screens: stack each row into a labelled block. Side-scrolling a
   refund policy hides exactly the text people need to read. */
@media (max-width: 720px) {
  .policy-table-wrap { overflow-x: visible; }
  .policy-table { min-width: 0; display: block; }
  .policy-table thead { display: none; }
  .policy-table tbody, .policy-table tr, .policy-table td { display: block; width: 100%; }
  .policy-table tr { padding: 20px 0; border-bottom: 1px solid var(--border); }
  .policy-table tr:last-child { border-bottom: none; }
  .policy-table td { border: none; padding: 0; }
  .policy-table td:first-child {
    width: 100%; padding-right: 0; margin-bottom: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent);
  }
  .policy-table td:first-child span {
    display: block; margin-top: 4px;
    letter-spacing: 0.02em; text-transform: none; font-weight: 400;
  }
}

/* ─── SUPPORT CHANNEL CARDS ─── */
.chan-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px; margin: 24px 0 0;
}
.chan-card {
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border); border-radius: 4px;
  padding: 26px 24px 24px;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.chan-card:hover { border-color: var(--accent); background: rgba(0,250,200,0.04); transform: translateY(-2px); }
.chan-icon { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.6; fill: none; margin-bottom: 6px; }
.chan-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-3); }
.chan-value { font-size: 17px; font-weight: 600; color: var(--white); word-break: break-word; line-height: 1.35; }
.chan-meta { font-size: 13px; color: var(--gray-2); line-height: 1.6; margin-top: 2px; }
.chan-card:hover .chan-value { color: var(--accent); }

/* ─── BUSINESS INFO ─── */
.biz-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0; margin: 22px 0 0;
  border-top: 1px solid var(--border);
}
.biz-item { padding: 20px 24px 20px 0; border-bottom: 1px solid var(--border); }
.biz-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 6px; }
.biz-value { font-size: 15px; color: var(--white); line-height: 1.6; font-style: normal; }
.biz-value a { color: var(--accent); }

/* ─── FAQ ─── */
.doc-faq { border-top: 1px solid var(--border); margin-top: 18px; }
.doc-faq-item { border-bottom: 1px solid var(--border); }
.doc-faq-q {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; text-align: left;
  padding: 20px 0; font-size: 16px; color: var(--gray-1);
  transition: color .2s;
}
.doc-faq-q:hover { color: var(--white); }
.doc-faq-item.open .doc-faq-q { color: var(--accent); }
.doc-faq-icon { font-size: 24px; font-weight: 300; line-height: 1; flex-shrink: 0; transition: transform .3s var(--ease); }
.doc-faq-item.open .doc-faq-icon { transform: rotate(45deg); }
.doc-faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.doc-faq-a p { padding-bottom: 22px; font-size: 15px; line-height: 1.75; color: var(--gray-2); }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--accent); color: #000;
  padding: clamp(48px, 7vw, 84px) var(--gutter);
  text-align: center;
}
.cta-strip-inner { max-width: 620px; margin-inline: auto; }
.cta-strip-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px;
}
.cta-strip p { font-size: 16px; color: rgba(0,0,0,0.72); margin-bottom: 28px; line-height: 1.65; }
.cta-btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: var(--accent);
  border: 1.5px solid #000; border-radius: 100px;
  padding: 16px 34px; font-size: 15px; font-weight: 600;
  transition: background .2s, color .2s, transform .2s;
}
.cta-btn-dark:hover { background: transparent; color: #000; transform: translateY(-1px); }
.cta-btn-dark:focus-visible { outline: 2px solid #000; outline-offset: 3px; }

/* ─── LANDING PAGE COMPONENTS ─── */
.crumb { font-size: 12px; letter-spacing: 0.06em; color: var(--gray-3); margin-bottom: 22px; }
.crumb a { color: var(--gray-2); transition: color .2s; }
.crumb a:hover { color: var(--accent); }
.crumb span[aria-hidden] { padding: 0 6px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn-solid, .btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 100px; padding: 15px 30px;
  font-size: 15px; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn-solid { background: var(--accent); color: #000; border: 1.5px solid var(--accent); }
.btn-solid:hover { background: transparent; color: var(--accent); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--border-hover); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); transform: translateY(-1px); }

/* Accessibility spec cards */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px; margin: 26px 0 0;
}
.spec-item { border: 1px solid var(--border); border-radius: 4px; padding: 24px 22px; }
.spec-num {
  font-size: clamp(30px, 4vw, 42px); font-weight: 300;
  color: var(--accent); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.spec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.spec-body { font-size: 14px; line-height: 1.65; color: var(--gray-2); }

/* Work mini-grid */
.mini-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px; margin: 26px 0 0;
}
.mini-card { display: block; overflow: hidden; }
.mini-card img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
  border-radius: 3px; transition: transform .45s var(--ease), filter .45s;
}
.mini-card:hover img { transform: scale(1.04); filter: brightness(.85); }
.mini-tag {
  display: block; margin-top: 12px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.mini-title { display: block; margin-top: 4px; font-size: 16px; font-weight: 600; color: var(--white); }

/* Numbered process */
.step-list { display: flex; flex-direction: column; margin: 22px 0 0; }
.step-list li {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.step-list li:last-child { border-bottom: none; }
.step-list li > * { min-width: 0; }
.step-n { font-size: 24px; font-weight: 300; color: var(--accent); line-height: 1.1; letter-spacing: -0.02em; }
.step-t { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.step-b { font-size: 15px; line-height: 1.75; color: var(--gray-2); }
.step-b a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) { .step-list li { grid-template-columns: 38px 1fr; gap: 14px; } .step-n { font-size: 20px; } }

.cta-strip .cta-alt { margin: 20px 0 0; font-size: 14px; color: rgba(0,0,0,0.65); }
.cta-alt a { color: #000; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ─── FOOTER ─── */
.site-footer { border-top: 1px solid var(--border); padding-block: 40px; }
.footer-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: auto 1fr auto 1fr;
  column-gap: clamp(24px, 4vw, 56px); align-items: center;
}
.footer-logo img { height: 28px; width: auto; opacity: .6; transition: opacity .2s; }
.footer-logo:hover img { opacity: 1; }
.footer-copy { font-size: 13px; letter-spacing: 0.1em; color: var(--gray-3); text-transform: uppercase; }
.footer-inner address { display: flex; flex-direction: column; justify-content: space-between; align-self: stretch; font-style: normal; }
.footer-inner address a { color: var(--accent); transition: color .2s; }
.footer-inner address a:hover { color: #798994; }
.footer-wcag {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,250,200,0.4); border-radius: 4px;
  padding: 9px 14px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--accent);
  text-transform: uppercase; white-space: nowrap; align-self: center;
}
.footer-wcag svg { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; }
.footer-links-col { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; align-self: stretch; }
.footer-social { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }
.footer-sep { color: var(--gray-3); font-size: 13px; pointer-events: none; user-select: none; }
.footer-social a { font-size: 13px; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; transition: color .2s; }
.footer-social a:hover { color: #798994; }
.footer-legal-links { display: flex; gap: 10px; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
.footer-link-btn { font-size: 12px; letter-spacing: 0.08em; color: var(--gray-3); text-transform: uppercase; transition: color .2s; }
.footer-link-btn:hover, .footer-link-btn[aria-current="page"] { color: var(--accent); }

/* Overrides móviles: van DESPUÉS de las reglas base o pierden por orden
   (misma especificidad, gana la última declarada). */
@media (max-width: 900px) {
  .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-inner address { align-items: center; justify-content: flex-start; gap: 2px; }
  .footer-links-col { align-self: auto; align-items: center; gap: 8px; }
  .footer-social, .footer-legal-links { justify-content: center; }
}

/* ─── LEGAL DROPDOWN ───
   <details>/<summary> so it works with no JS and ships keyboard +
   screen-reader support for free. Links stay in the DOM, so crawlers
   still see them. */
.legal-dd { position: relative; }
.legal-dd > summary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border: 1px solid var(--border); border-radius: 100px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-3); cursor: pointer; list-style: none;
  transition: color .2s, border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.legal-dd > summary::-webkit-details-marker { display: none; }
.legal-dd > summary::marker { content: ''; }
.legal-dd > summary:hover { color: var(--accent); border-color: rgba(0,250,200,.45); background: rgba(0,250,200,.05); }
.legal-dd[open] > summary { color: var(--accent); border-color: rgba(0,250,200,.45); background: rgba(0,250,200,.05); }
.legal-dd-ico { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.7; flex-shrink: 0; }
.legal-dd-caret { font-size: 9px; line-height: 1; transition: transform .25s var(--ease); }
.legal-dd[open] .legal-dd-caret { transform: rotate(180deg); }

.legal-dd-menu {
  position: absolute; bottom: calc(100% + 10px); right: 0;
  min-width: 210px; max-width: calc(100vw - 32px); z-index: 60;
  display: flex; flex-direction: column;
  background: #121212; border: 1px solid var(--border-hover);
  border-radius: 6px; padding: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.legal-dd-menu a {
  padding: 11px 14px; border-radius: 4px;
  font-size: 13px; letter-spacing: 0.04em; color: var(--gray-1);
  white-space: nowrap; text-align: left;
  transition: color .18s, background .18s;
}
.legal-dd-menu a:hover { color: var(--accent); background: rgba(255,255,255,.06); }
.legal-dd-menu a[aria-current="page"] { color: var(--accent); }

/* Botón centrado en móvil → menú centrado con él (simétrico) */
@media (max-width: 900px) {
  .legal-dd-menu { right: auto; left: 50%; transform: translateX(-50%); }
}

@media (pointer: coarse) {
  .legal-dd > summary { min-height: 44px; }
  .legal-dd-menu a { min-height: 44px; display: flex; align-items: center; }
}
@media print { .legal-dd { display: none; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  :root { --nav-h: 76px; }
  .nav-logo img { height: 54px; }
  .nav-cta { padding: 10px 20px; font-size: 13px; }
  .footer-copy { font-size: 11px; }
  .footer-wcag { font-size: 11px; padding: 5px 10px; }
  .policy-table th, .policy-table td { padding: 13px 16px 13px 0; }
}
@media (max-width: 600px) and (min-width: 481px) {
  :root { --nav-h: 84px; }
  .nav-logo img { height: 60px; }
}

/* Touch targets — WCAG 2.5.5 */
@media (pointer: coarse) {
  .nav-hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .nav-mobile-link, .nav-mobile-cta { min-height: 44px; display: flex; align-items: center; }
  .nav-mobile-cta { justify-content: center; }
  .footer-social a, .footer-link-btn { min-height: 44px; display: inline-flex; align-items: center; }
  .doc-faq-q { min-height: 48px; }
  .page-toc a { min-height: 36px; display: flex; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── PRINT (legal pages must be printable/archivable) ─── */
@media print {
  .site-nav, .nav-mobile, .page-toc, .cta-strip, .skip-link, .footer-social, .footer-wcag { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .page-body { display: block; padding-block: 0; }
  .doc-section { break-inside: avoid; border-bottom: 1px solid #ccc; }
  .doc-section p, .doc-list li, .policy-table td { color: #222; }
  .doc-h, .doc-num, .page-title, .chan-value, .biz-value { color: #000; }
  .page-hero { padding-top: 0; }
  .doc-faq-a { max-height: none !important; }
  a { color: #000; text-decoration: underline; }
  .callout { border: 1px solid #999; background: #f6f6f6; }
}
