
:root {
  --bg: #0b0d12;
  --bg-alt: #10131a;
  --surface: #14181f;
  --surface-2: #181d26;
  --border: #262c36;
  --border-soft: #1f242d;
  --text: #eceff4;
  --text-muted: #99a2b3;
  --text-faint: #6e7887;
  --accent: #37e0c6;
  --accent-strong: #2bc4ad;
  --accent-soft: rgba(55, 224, 198, 0.12);
  --warm: #ff8f6b;
  --warm-soft: rgba(255, 143, 107, 0.14);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --max: 1160px;
  --shadow-card: 0 12px 30px -18px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; margin: 0; color: var(--text); }
p { margin: 0; }
a { color: var(--accent); }
a:hover { color: #5eead4; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #05080c;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow.warm { color: var(--warm); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 36px); line-height: 1.16; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.section-head.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: var(--radius-s);
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-width: 220px;
  text-align: center;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #5eead4; color: #fff; }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface); color: var(--text); }
.btn-warm { background: var(--warm); color: #fff; }
.btn-warm:hover { background: #ffa98a; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 8, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 64px; width: auto; display: block; }

.nav-desktop { display: flex; align-items: center; gap: 24px; }
.nav-desktop a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-desktop a:hover { color: var(--text); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { min-width: unset; padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--border-soft);
}
.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 8px;
  border-radius: 8px;
}
.nav-mobile a:hover { background: var(--surface); }
.nav-mobile .btn { margin-top: 8px; width: 100%; }

.site-header.menu-open .nav-mobile { display: flex; }

@media (max-width: 860px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

.hero { padding: 56px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr); gap: 56px; align-items: center; }
.hero-media { position: relative; }
.hero-media .hero-img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: contain; }
.hero-rating-chip { position: absolute; bottom: 60px; right: -18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-s); padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--text); box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 8px; text-align: center; }
.hero-rating-chip .stars { color: var(--warm); letter-spacing: 1px; }
.hero-eyebrow { display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.hero-copy h1 { font-size: clamp(32px, 4.4vw, 46px); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.hero-copy > p { font-size: 16.5px; color: var(--text-muted); line-height: 1.6; max-width: 38em; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-price-card { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-s); padding: 10px 16px; margin-bottom: 22px; }
.hero-price-card .price-now { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--text); }
.hero-price-card .price-was { font-size: 14px; color: var(--text-faint); text-decoration: line-through; }
.hero-price-card .price-save { font-size: 12px; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; }
.hero-quick-specs { display: flex; flex-direction: column; gap: 12px; }
.hero-quick-specs li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); font-weight: 600; }
.hero-quick-specs svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-media { max-width: 380px; margin: 0 auto; } .hero-rating-chip { flex-direction: column; gap: 4px; right: 12px; bottom: 20px; padding: 10px 14px; } }
@media (max-width: 640px) { .hero { padding: 40px 0 64px; } .hero-actions { flex-direction: column; } .hero-actions .btn { width: 100%; } section { padding: 60px 0; } .btn { width: 100%; min-width: 0; } }

.problem-quote { font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: clamp(19px, 2.6vw, 25px); text-align: center; max-width: 34em; margin: 0 auto 40px; line-height: 1.45; color: var(--text); }
.problem-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.problem-chip { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-m); padding: 20px; flex: 1 1 260px; max-width: 340px; }
.problem-chip svg { flex: none; width: 26px; height: 26px; color: var(--warm); margin-top: 2px; }
.problem-chip strong { display: block; font-family: var(--font-head); font-size: 15px; margin-bottom: 4px; }
.problem-chip span { color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
.problem-resolution { text-align: center; color: var(--text-muted); font-size: 16px; line-height: 1.7; max-width: 38em; margin: 0 auto; }

.meet .section-head.center { max-width: 700px; }
.meet-features { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin: 36px 0 40px; }
.meet-feature { text-align: center; max-width: 190px; }
.meet-feature svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 12px; }
.meet-feature h3 { font-size: 15px; margin-bottom: 6px; }
.meet-feature p { color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
.meet-banner { position: relative; width: 100%; aspect-ratio: 12 / 7; overflow: hidden; border-radius: var(--radius-l); border: 1px solid var(--border); }
.meet-banner .meet-img { width: 100%; height: 100%; object-fit: cover; }

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.steps::before { content: ""; position: absolute; top: 58px; left: 15%; right: 15%; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 14px); opacity: 0.35; }
.step { position: relative; text-align: center; padding: 32px 24px; border: 1px solid var(--border-soft); border-radius: var(--radius-m); background: var(--surface); box-shadow: var(--shadow-card); }
.step-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--surface);
}
.step-icon svg { width: 24px; height: 24px; }
.step-index { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }

.center-cta { text-align: center; margin-top: 44px; }

.eng-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.eng-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-m); padding: 26px; }
.eng-card svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 16px; }
.eng-card h3 { font-size: 16px; margin-bottom: 8px; }
.eng-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

.benefits-banner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m); padding: 16px 24px; margin-bottom: 40px; text-align: center; font-size: 14px; color: var(--text-muted); }
.benefits-banner .stars { color: var(--warm); letter-spacing: 1px; }
.benefits-banner strong { color: var(--text); font-family: var(--font-head); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-m); padding: 26px; box-shadow: var(--shadow-card); border-top: 3px solid var(--accent); }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .benefit-grid { grid-template-columns: 1fr; } }

.spec-kv-wrap { border: 1px solid var(--border); border-radius: var(--radius-m); padding: 28px; margin-bottom: 44px; background: var(--surface); }
.spec-kv-wrap h3 { font-size: 17px; text-align: center; margin-bottom: 22px; }
.spec-kv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; }
.spec-kv { text-align: center; padding: 16px; border-radius: var(--radius-s); background: var(--bg-alt); border: 1px solid var(--border-soft); }
.spec-kv dt { font-size: 12.5px; color: var(--text-muted); margin-bottom: 6px; }
.spec-kv dd { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--accent); }
@media (max-width: 860px) { .spec-kv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .spec-kv-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .spec-kv { padding: 12px; } .spec-kv dd { font-size: 14.5px; } }

.feature-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-icon-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-m); padding: 22px; }
.feature-icon-card svg { width: 24px; height: 24px; color: var(--accent); margin-bottom: 12px; }
.feature-icon-card h3 { font-size: 15px; margin-bottom: 6px; }
.feature-icon-card p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
@media (max-width: 860px) { .feature-icon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .feature-icon-grid { grid-template-columns: 1fr; } }

.use-tile-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.use-tile { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-m); padding: 26px 20px; text-align: center; }
.use-tile svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 14px; }
.use-tile h3 { font-size: 15.5px; margin-bottom: 8px; }
.use-tile p { color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
@media (max-width: 860px) { .use-tile-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .use-tile-row { grid-template-columns: 1fr; } }

.compare-table-wrap { border: 1px solid var(--border); border-radius: var(--radius-m); overflow: hidden; }
table.compare { width: 100%; border-collapse: collapse; table-layout: fixed; }
table.compare th, table.compare td { padding: 15px 16px; font-size: 14px; text-align: left; word-wrap: break-word; }
table.compare th:first-child, table.compare td:first-child { width: 58%; }
table.compare th:nth-child(2), table.compare th:nth-child(3),
table.compare td:nth-child(2), table.compare td:nth-child(3) { width: 21%; text-align: center; }
table.compare thead th { background: #05080c; color: var(--text); font-weight: 700; font-size: 13.5px; }
table.compare thead th.col-brand { background: var(--accent); color: #05080c; }
table.compare thead th.col-other { color: var(--text-faint); font-weight: 700; }
table.compare tbody tr { border-top: 1px solid var(--border-soft); }
table.compare tbody tr:nth-child(even) { background: var(--surface); }
table.compare tbody td.check { background: var(--accent-soft); }
table.compare tbody td.cross { color: var(--text-faint); }
table.compare .icon-check, table.compare .icon-cross { width: 18px; height: 18px; }
table.compare .icon-check { color: var(--accent); }
table.compare .icon-cross { color: var(--text-faint); }
@media (max-width: 640px) { table.compare th, table.compare td { padding: 11px 10px; font-size: 12.5px; } table.compare .icon-check, table.compare .icon-cross { width: 15px; height: 15px; } }
@media (max-width: 420px) { table.compare th, table.compare td { padding: 9px 7px; font-size: 11.5px; } }

.tip-timeline { max-width: 640px; margin: 0 auto; }
.tip-node { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.tip-node:last-child { padding-bottom: 0; }
.tip-node::before { content: ""; position: absolute; left: 14px; top: 30px; bottom: 0; width: 1px; background: var(--border); }
.tip-node:last-child::before { display: none; }
.tip-dot { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 13px; z-index: 1; }
.tip-node p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; padding-top: 4px; margin: 0; }

.expert-card { display: flex; gap: 32px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: clamp(24px, 4vw, 40px); flex-wrap: wrap; }
.expert-card .expert-img { flex: none; width: 84px; height: 84px; border-radius: 50%; object-fit: cover; }
.expert-quote { flex: 1 1 320px; min-width: 0; }
.expert-quote p.quote { font-family: var(--font-head); font-style: italic; font-size: clamp(14.5px, 2.2vw, 18px); line-height: 1.55; margin: 10px 0 14px; word-break: break-word; }
@media (max-width: 480px) { .expert-card { padding: 20px; gap: 18px; } .expert-card .expert-img { width: 64px; height: 64px; } .expert-quote p.quote { font-size: 14.5px; } }
.expert-quote .name { font-weight: 700; font-size: 13.5px; }
.expert-quote .role { color: var(--text-faint); font-size: 12.5px; }
.disclaimer { text-align: center; font-size: 11.5px; color: var(--text-faint); margin: 16px auto 0; max-width: 40em; }

.reviews-head { text-align: center; margin-bottom: 44px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.review-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-m); padding: 24px; display: flex; flex-direction: column; }
@media (max-width: 480px) { .review-grid { grid-template-columns: 1fr; gap: 14px; } .review-card { padding: 18px; } }
.review-card .stars { color: var(--warm); letter-spacing: 1px; margin-bottom: 10px; }
.review-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.review-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.review-meta { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; }
.review-meta .verified { color: var(--accent); font-weight: 700; font-size: 12.5px; }

.guarantee-card { display: flex; align-items: center; gap: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 40px; flex-wrap: wrap; }
.guarantee-badge {
  flex: none; width: 116px; height: 116px; border-radius: 50%;
  border: 3px dashed var(--accent); color: var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.guarantee-badge .num { font-family: var(--font-head); font-weight: 700; font-size: 30px; line-height: 1; }
.guarantee-badge .word { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.guarantee-text { flex: 1 1 300px; min-width: 0; }
.guarantee-text h2 { font-size: 26px; margin-bottom: 8px; }
.guarantee-text p { color: var(--text-muted); font-size: 15px; line-height: 1.55; margin-bottom: 6px; }
@media (max-width: 480px) { .guarantee-card { padding: 22px; gap: 20px; } .guarantee-badge { width: 92px; height: 92px; } .guarantee-badge .num { font-size: 24px; } .guarantee-text h2 { font-size: 21px; } .guarantee-text p { font-size: 13.5px; } }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 13px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; color: var(--text);
  font-size: 15.5px; font-weight: 700; text-align: left; cursor: pointer;
}
.faq-q .sign { color: var(--accent); font-size: 20px; flex: none; }
.faq-a { padding: 0 22px 20px; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

.final-cta { text-align: center; }
.final-cta .badge {
  display: inline-block; background: var(--warm-soft); color: var(--warm);
  font-weight: 700; font-size: 13px; padding: 7px 15px; border-radius: 999px; margin-bottom: 20px;
}
.final-cta h2 { font-size: clamp(30px, 4.5vw, 42px); margin-bottom: 16px; line-height: 1.1; }
.final-cta p { color: var(--text-muted); font-size: 17px; max-width: 32em; margin: 0 auto 30px; line-height: 1.55; }
.final-cta-meta { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 22px; font-size: 13px; color: var(--text-faint); flex-wrap: wrap; }

.site-footer { background: #05080c; color: var(--text-faint); border-top: 1px solid #1b2028; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links button { background: none; border: none; color: var(--text-muted); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; font-size: 12px; padding: 0; }
.footer-links button:hover { color: var(--text); }
.site-footer p { font-size: 11.5px; line-height: 1.6; margin: 0 0 8px; }
.site-footer .shout { color: var(--text-muted); font-weight: 600; }

.modal { position: fixed; inset: 0; z-index: 200; background: rgba(5,8,9,0.7); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-card { background: var(--bg-alt); width: 100%; max-width: 640px; max-height: 84vh; border-radius: 20px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; border-bottom: 1px solid var(--border); background: var(--surface); }
.modal-head h2 { font-size: 22px; }
.modal-close { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text-muted); font-size: 18px; cursor: pointer; }
.modal-body { padding: 22px 28px; overflow-y: auto; }
.modal-body h3 { font-size: 14.5px; color: var(--accent); margin: 18px 0 6px; }
.modal-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0 0 10px; white-space: pre-line; }
