/* ============ Tokens ============ */
:root {
  --brand: #FFD400;
  --ink: #141414;
  --ink-soft: #444444;
  --muted: #5e5e5e;
  --muted-2: #6b6b6b;
  --card: #ECECEC;
  --line: #e2e2e2;
  --bg: #ffffff;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --container: 1200px;
  --pad-x: 28px;
}

/* ============ Fonts (Onest, variable, self-hosted) ============ */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/onest-cyr-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/onest-cyr.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/onest-lat-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: 'Onest';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/onest-lat.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;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 100;
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus-visible { top: 12px; }

/* ============ Buttons and links ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 17px;
  padding: 15px 32px; min-height: 48px;
  border-radius: 999px; border: 0;
  text-decoration: none; cursor: pointer;
  font-family: inherit;
  transition: transform .2s, background-color .2s;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-lg { padding: 17px 38px; }
.btn-sm { font-size: 14px; padding: 11px 20px; min-height: 44px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px;
  color: var(--ink); text-decoration: none;
  min-height: 44px;
  border-bottom: 2px solid transparent;
}
.link-arrow::after { content: '→'; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 72px;
}
.logo {
  font-size: 21px; font-weight: 800; letter-spacing: -.02em;
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; min-height: 44px;
}
.site-nav { display: flex; gap: 8px; align-items: center; }
.site-nav a {
  font-size: 16px; font-weight: 600; text-decoration: none;
  padding: 10px 12px; min-height: 44px;
  display: inline-flex; align-items: center;
  border-radius: 10px;
  transition: opacity .2s;
}
.site-nav a:hover { opacity: .55; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-header { font-size: 15px; padding: 12px 24px; min-height: 44px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: var(--card); border: 0; border-radius: 12px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle-bar {
  width: 20px; height: 2px; background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { padding: 24px 0 56px; }
.hero-card {
  background: var(--brand);
  border-radius: 36px;
  padding: clamp(30px, 3.6vw, 56px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.58fr;
  gap: clamp(24px, 2.6vw, 44px);
  align-items: stretch;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
h1 {
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 800; line-height: 1.02; letter-spacing: -.025em;
  margin-bottom: 22px; text-wrap: balance;
}
.hero-sub {
  font-size: clamp(18px, 1.7vw, 21px); font-weight: 500;
  color: #1c1c1c; max-width: 46ch; margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-photo { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-photo img {
  width: 100%; height: auto;
  border-radius: 24px;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 16px; margin-top: 16px;
}
.stat-card { background: var(--card); border-radius: var(--radius-md); padding: 30px 30px 28px; }
.stat-num { font-size: clamp(40px, 4.4vw, 58px); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stat-label { font-size: 16px; color: var(--muted-2); margin-top: 10px; font-weight: 500; }

/* ============ Sections ============ */
.section { padding: 48px 0; }
.section-last { padding-bottom: 80px; }
.section-title {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 20px; color: var(--muted-2); max-width: 58ch;
  font-weight: 500; margin-bottom: 34px;
}
.section-cta { margin-top: 32px; }

.banner-brand {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 56px);
  margin-bottom: 16px;
}
.banner-brand h2 {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  text-wrap: balance;
}

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }

.pain-card {
  background: var(--card); border-radius: var(--radius-md);
  padding: 32px 30px;
  font-size: 20px; font-weight: 600; line-height: 1.4;
}
.lede {
  margin-top: 36px;
  font-size: clamp(24px, 2.8vw, 34px); font-weight: 600;
  max-width: 26ch; line-height: 1.25; letter-spacing: -.01em;
}
.lede-wide { max-width: 30ch; font-size: clamp(22px, 2.4vw, 30px); margin-top: 0; margin-bottom: 34px; }
.hl {
  background: var(--brand); color: inherit;
  padding: 2px 8px; border-radius: 4px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

/* ============ Formats ============ */
.format-card {
  background: var(--card); border-radius: 28px;
  padding: 38px 34px;
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.format-card:hover { transform: translateY(-3px); }
.format-num {
  font-size: 17px; font-weight: 800;
  background: var(--brand);
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.format-card h3 {
  font-size: 27px; font-weight: 700; letter-spacing: -.01em; line-height: 1.12;
  margin: 20px 0 12px;
}
.format-card p { color: var(--muted); font-size: 17px; font-weight: 500; margin-bottom: 22px; flex: 1; }
.format-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.format-price {
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============ Process ============ */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
  counter-reset: step;
}
.process-step {
  background: var(--card); border-radius: var(--radius-md);
  padding: 30px 28px;
  position: relative;
}
.process-num {
  font-size: 17px; font-weight: 800;
  background: var(--brand);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 16px; font-weight: 500; }

/* ============ Skills ============ */
.skills {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 0 56px;
  margin-top: 24px;
  counter-reset: skill;
}
.skills li {
  counter-increment: skill;
  display: flex; gap: 18px; align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 19px; font-weight: 500;
}
.skills li::before {
  content: counter(skill, decimal-leading-zero);
  font-weight: 800; font-size: 17px; min-width: 28px;
}

/* ============ Experience ============ */
.chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.chips li {
  background: var(--card);
  padding: 11px 22px; border-radius: 999px;
  font-size: 16px; font-weight: 600;
}
.experience-text {
  margin-top: 30px; color: var(--muted-2);
  max-width: 70ch; font-size: 18px; font-weight: 500;
}

/* ============ Case ============ */
.case-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(30px, 3.6vw, 52px);
  display: grid;
  grid-template-columns: minmax(min(240px, 100%), 1fr) 2fr;
  gap: clamp(26px, 3vw, 48px);
}
.case-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.08;
  max-width: 16ch;
}
.case-row { padding-bottom: 22px; border-bottom: 1px solid #d8d8d8; margin-bottom: 22px; }
.case-row:last-child { padding-bottom: 0; border-bottom: 0; margin-bottom: 0; }
.case-label {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 8px;
}
.case-row p { color: var(--ink-soft); font-size: 18px; font-weight: 500; }

/* ============ Reviews ============ */
.reviews-group {
  font-size: 15px; font-weight: 700; letter-spacing: .02em;
  color: #6e6e6e; margin: 38px 0 18px;
  text-transform: uppercase;
}
.review-card {
  background: var(--card); border-radius: 28px;
  padding: 34px 32px;
  display: flex; flex-direction: column;
}
.review-card blockquote {
  font-size: 18px; line-height: 1.45; font-weight: 500;
  color: #222; margin-bottom: 24px; flex: 1;
}
.review-card figcaption { display: flex; gap: 14px; align-items: center; }
.avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: #d2d2d2; color: #777;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; flex: none;
}
.review-author { display: flex; flex-direction: column; }
.review-author strong { font-weight: 700; font-size: 16px; }
.review-author span { font-size: 14px; color: #616161; font-weight: 500; margin-top: 2px; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item {
  background: var(--card); border-radius: 20px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 24px 60px 24px 28px;
  font-size: 19px; font-weight: 700;
  position: relative;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 26px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; font-weight: 600; line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 28px 26px;
  color: var(--muted); font-size: 17px; font-weight: 500;
  max-width: 68ch;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 16px; align-items: stretch;
}
.contact-card {
  background: var(--brand); border-radius: var(--radius-lg);
  padding: clamp(34px, 4vw, 56px);
  display: flex; flex-direction: column;
}
.contact-card h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  margin-bottom: 16px; text-wrap: balance;
}
.contact-card > p { font-size: 19px; font-weight: 500; color: #1c1c1c; margin-bottom: 30px; max-width: 34ch; }
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: auto; }
.contact-link {
  background: var(--ink); border-radius: 20px;
  padding: 20px 26px; min-height: 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-decoration: none;
  transition: transform .2s;
}
.contact-link:hover { transform: translateY(-2px); }
.contact-link-label {
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: #9a9a9a; font-weight: 600;
}
.contact-link-value { font-size: 19px; font-weight: 700; color: #fff; }

.form-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(34px, 4vw, 56px);
}
.form-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.form-note { font-size: 16px; color: var(--muted); font-weight: 500; margin-bottom: 22px; max-width: 44ch; }
#lead-form { display: flex; flex-direction: column; gap: 16px; }
.field label {
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: #565656; font-weight: 700;
  display: block; margin-bottom: 8px;
}
.optional { text-transform: none; letter-spacing: 0; font-weight: 500; color: #6b6b6b; }
.field input, .field textarea {
  background: #fff; border: 1px solid #d6d6d6;
  color: var(--ink); font-family: inherit; font-size: 16px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  width: 100%; min-height: 48px;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 0; border-color: transparent;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field-error { font-size: 14px; color: #c0392b; font-weight: 600; margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
#submit-btn { align-self: flex-start; margin-top: 4px; }
.form-consent { font-size: 13px; color: #5e5e5e; font-weight: 500; max-width: 46ch; }
.form-status-error { font-size: 15px; color: #c0392b; font-weight: 600; }
.form-status-error a { color: inherit; }

.form-success { display: flex; flex-direction: column; justify-content: center; min-height: 300px; }
.form-success[hidden] { display: none; }
.success-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; margin-bottom: 20px;
}
.form-success h3 { font-size: 30px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 18px; font-weight: 500; max-width: 40ch; }
.form-success a { color: var(--ink); font-weight: 700; }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: #fff; padding: 42px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-logo { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.footer-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-nav a {
  color: #bdbdbd; text-decoration: none;
  font-size: 15px; font-weight: 500;
  padding: 10px 8px; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color .2s;
}
.footer-nav a:hover { color: #fff; }
.footer-nav a:focus-visible { outline-color: #fff; }
.footer-copy { font-size: 14px; color: #8a8a8a; }

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed; left: 20px; bottom: 20px; z-index: 60;
  max-width: 400px;
  background: #fff; border: 1px solid #e4e4e4;
  padding: 18px 20px; border-radius: 20px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 16px 48px rgba(0,0,0,.16);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ============ Mobile ============ */
@media (max-width: 900px) {
  .site-nav a { padding: 10px 8px; font-size: 15px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .header-inner { height: 64px; gap: 12px; }
  .logo { font-size: 19px; }
  .nav-toggle { display: flex; }
  .btn-header { font-size: 14px; padding: 11px 18px; }

  .site-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-direction: column; align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    box-shadow: 0 24px 40px rgba(0,0,0,.10);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .2s, opacity .2s, visibility .2s;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a {
    font-size: 18px; padding: 14px 4px; min-height: 48px;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0;
  }
  .site-nav a:last-child { border-bottom: 0; }

  .hero { padding-top: 16px; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-photo { min-height: 0; }
  .hero-actions { gap: 18px; }

  .case-card { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

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

/* ============ 404 ============ */
.nf-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
    .nf-card { background: var(--brand); border-radius: 36px; padding: clamp(40px, 6vw, 80px); max-width: 720px; text-align: left; }
    .nf-code { font-size: clamp(64px, 12vw, 120px); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
    .nf-card h1 { font-size: clamp(26px, 3.4vw, 40px); margin: 16px 0 14px; }
    .nf-card p { font-size: 19px; font-weight: 500; color: #1c1c1c; margin-bottom: 30px; max-width: 40ch; }

/* very narrow screens */
@media (max-width: 400px) {
  .btn-header { display: none; }
  .logo { font-size: 18px; }
}

/* ============ Blog ============ */
.page-head { padding: 40px 0 8px; }
.page-head h1 { font-size: clamp(36px, 4.6vw, 62px); margin-bottom: 14px; }
.page-head p { font-size: 20px; color: var(--muted-2); font-weight: 500; max-width: 60ch; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 16px; padding: 34px 0 70px; }
.post-card {
  background: var(--card); border-radius: 28px; padding: 34px 32px;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .2s;
}
.post-card:hover { transform: translateY(-3px); }
.post-tag { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--brand); border-radius: 999px; padding: 7px 14px; align-self: flex-start; }
.post-card h2 { font-size: 24px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; margin: 18px 0 12px; }
.post-card p { color: var(--muted); font-size: 16px; font-weight: 500; flex: 1; }
.post-card .post-more { margin-top: 20px; font-weight: 700; font-size: 15px; }
.post-card .post-more::after { content: ' →'; }

.breadcrumbs { padding: 26px 0 0; font-size: 14px; font-weight: 600; color: var(--muted-2); }
.breadcrumbs a { color: var(--muted-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { margin: 0 8px; }

.article { max-width: 760px; margin: 0 auto; padding: 18px 0 40px; }
.article h1 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.08; margin-bottom: 18px; }
.article-meta { font-size: 14px; color: var(--muted-2); font-weight: 600; margin-bottom: 26px; }
.article .lead { font-size: 21px; font-weight: 600; line-height: 1.45; margin-bottom: 28px; }
.article h2 { font-size: clamp(25px, 2.8vw, 34px); font-weight: 800; letter-spacing: -.015em; line-height: 1.15; margin: 40px 0 16px; }
.article h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; margin: 28px 0 12px; }
.article p { font-size: 18px; line-height: 1.6; font-weight: 450; margin-bottom: 18px; color: #1e1e1e; }
.article a { color: var(--ink); font-weight: 600; text-decoration-color: var(--brand); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.article ul, .article ol { margin: 0 0 18px 22px; font-size: 18px; line-height: 1.6; }
.article li { margin-bottom: 10px; font-weight: 450; }
.article blockquote {
  background: var(--card); border-radius: 24px; padding: 30px 32px;
  margin: 28px 0; font-size: 19px; line-height: 1.5; font-weight: 500;
}
.article blockquote footer { margin-top: 14px; font-size: 15px; color: var(--muted-2); font-weight: 600; }
.article-cta {
  background: var(--brand); border-radius: 28px; padding: 38px 36px; margin: 44px 0 10px;
}
.article-cta h2 { margin: 0 0 12px; font-size: 27px; }
.article-cta p { margin-bottom: 24px; font-size: 18px; font-weight: 500; }
.article .faq { margin-top: 8px; }
.article .faq-item summary { font-size: 18px; }
@media (max-width: 768px) {
  .article p, .article ul, .article ol { font-size: 17px; }
}
