:root {
  --color-bg: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-text-primary: #0F172A;
  --color-text-secondary: #334155;
  --color-border: #CBD5E1;
  --color-primary: #0B5FFF;
  --color-primary-hover: #084CD1;
  --color-primary-active: #063A9F;
  --color-success: #0F766E;
  --color-warning: #B45309;
  --color-error: #B91C1C;
  --color-focus: #0B5FFF;
  --color-link: #0B5FFF;
  --color-link-visited: #6D28D9;

  --font-family-base: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --text-h1-size: 28px;
  --text-h1-line: 34px;
  --text-h1-weight: 700;
  --text-h2-size: 22px;
  --text-h2-line: 30px;
  --text-h2-weight: 700;
  --text-h3-size: 18px;
  --text-h3-line: 26px;
  --text-h3-weight: 600;
  --text-body-size: 16px;
  --text-body-line: 24px;
  --text-body-weight: 400;
  --text-body-strong-size: 16px;
  --text-body-strong-line: 24px;
  --text-body-strong-weight: 600;
  --text-small-size: 14px;
  --text-small-line: 20px;
  --text-small-weight: 400;
  --text-caption-size: 12px;
  --text-caption-line: 16px;
  --text-caption-weight: 400;
  --text-button-size: 16px;
  --text-button-line: 20px;
  --text-button-weight: 600;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  --section-py: 24px;
  --component-p: 16px;
  --cta-gap: 12px;
  --touch-min: 44px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --container-max: 720px;
  --text-measure: 68ch;
}

* { box-sizing: border-box; }
html { font-size: 16px; }
body { margin: 0; background: var(--color-bg); color: var(--color-text-primary); font-family: var(--font-family-base); font-size: var(--text-body-size); line-height: var(--text-body-line); font-weight: var(--text-body-weight); }
a { color: var(--color-link); text-underline-offset: 2px; }
a:visited { color: var(--color-link-visited); }
a:hover { color: var(--color-primary-hover); }
a:active { color: var(--color-primary-active); }
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; }
img { max-width: 100%; height: auto; }
.site-header,.site-main,.site-footer { width: 100%; }
.container { width: min(100% - (var(--space-4) * 2), var(--container-max)); margin-inline: auto; }
.section { padding-block: var(--section-py); }
.card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--component-p); }
.hero-title { margin: 0 0 var(--space-3); font-size: var(--text-h1-size); line-height: var(--text-h1-line); font-weight: var(--text-h1-weight); max-width: 20ch; }
.text-body { margin: 0 0 var(--space-4); max-width: var(--text-measure); }
.section-title { margin: 0 0 var(--space-3); font-size: var(--text-h2-size); line-height: var(--text-h2-line); font-weight: var(--text-h2-weight); }
.block-title { margin: 0 0 var(--space-2); font-size: var(--text-h3-size); line-height: var(--text-h3-line); font-weight: var(--text-h3-weight); }
.text-small { font-size: var(--text-small-size); line-height: var(--text-small-line); color: var(--color-text-secondary); }
.legal-text { font-size: var(--text-caption-size); line-height: var(--text-caption-line); color: var(--color-text-secondary); }
.cta-group { display: grid; gap: var(--cta-gap); margin-top: var(--space-4); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: var(--touch-min); min-width: var(--touch-min); padding: 12px var(--space-4); border-radius: var(--radius-md); border: 1px solid transparent; text-decoration: none; font-size: var(--text-button-size); line-height: var(--text-button-line); font-weight: var(--text-button-weight); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-secondary { background: var(--color-bg); color: var(--color-primary); border-color: var(--color-primary); }
.phone-display { margin-top: var(--space-2); font-size: var(--text-small-size); }
.sticky-call { position: sticky; bottom: var(--space-2); z-index: 50; margin-top: var(--space-4); }
.sticky-call .btn { width: 100%; }
.list { margin: 0; padding-left: 1.2rem; }
.faq-item + .faq-item { margin-top: var(--space-3); }
.notice-success { color: var(--color-success); }
.notice-warning { color: var(--color-warning); }
.site-footer { border-top: 1px solid var(--color-border); padding-block: var(--space-6); margin-top: var(--space-8); }
.legal-links { display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (min-width: 414px) { .cta-group { grid-template-columns: 1fr 1fr; } .sticky-call .btn { width: auto; min-width: 220px; } }