/* ============================================================
   Lyons Solutions - landing page
   Palette: deep navy, warm ivory, muted forest green, copper
   One family: DM Sans
   ============================================================ */

:root {
  --navy: #14213D;
  --navy-2: #1B2C4F;
  --navy-deep: #0D162B;
  --ivory: #F8F7F3;
  --ivory-2: #F1EFE8;
  --white: #FFFFFF;
  --text: #172033;
  --text-2: #566174;
  --green: #0E5A43;
  --green-2: #0A4735;
  --green-soft: #EDF5F1;
  --copper: #C68A4A;
  --copper-2: #B0763A;
  --border: #DDE2E8;
  --border-2: #E9EDF2;
  --error: #B42318;
  --error-bg: #FEF3F2;
  --success: #067647;
  --success-bg: #ECFDF3;

  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(23,32,51,.05), 0 4px 12px rgba(23,32,51,.05);
  --shadow-md: 0 2px 4px rgba(23,32,51,.05), 0 12px 32px rgba(23,32,51,.09);
  --shadow-lg: 0 4px 8px rgba(13,22,43,.10), 0 24px 64px rgba(13,22,43,.24);
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 2px; }

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

:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 100;
  background: var(--navy); color: var(--white); padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 768px) { .container { padding-inline: 32px; } }

/* icon system ------------------------------------------------ */
.ico { width: 20px; height: 20px; flex: none; color: inherit; }

/* ============================ HEADER ============================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-2);
  position: sticky; top: 0; z-index: 40;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: 11px;
  background: var(--navy); color: var(--copper);
}
.brand-footer .brand-mark { width: 38px; height: 38px; background: rgba(255,255,255,.09); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-size: 19px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em;
}
.brand-tag { font-size: 12px; color: var(--text-2); letter-spacing: .01em; }
@media (max-width: 420px) { .brand-tag { display: none; } }

.header-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 11px 18px; border-radius: 999px;
  font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.header-call:hover { background: var(--navy-2); }
@media (max-width: 560px) { .header-call .call-label { display: none; } }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  background-color: var(--navy);   /* solid fallback if gradients fail */
  background-image:
    radial-gradient(120% 90% at 85% 0%, rgba(198,138,74,.14) 0%, rgba(198,138,74,0) 55%),
    linear-gradient(168deg, var(--navy-2) 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 22px 0 44px;
  overflow: hidden;
}
@media (min-width: 960px) { .hero { padding: 68px 0 84px; } }

.hero-art {
  position: absolute; right: 0; bottom: 0;
  width: 78%; height: auto; max-width: 900px;
  color: rgba(198,138,74,.30);
  pointer-events: none;
}
@media (max-width: 959px) { .hero-art { width: 100%; right: 0; opacity: .45; } }

.hero-grid { position: relative; z-index: 1; display: grid; gap: 18px; }

/* Desktop: two columns via explicit grid areas.
   DOM order stays intro -> form -> cards -> benefits, so keyboard and
   screen-reader order remain logical. No visual reordering tricks. */
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 54% minmax(0, 1fr);
    grid-template-areas:
      "intro    form"
      "cards    form"
      "benefits form";
    align-content: start;
    column-gap: 44px;
    row-gap: 26px;
  }
  .hero-intro    { grid-area: intro; }
  .hero-form     { grid-area: form; }
  .clarity-cards { grid-area: cards; }
  .hero-benefits { grid-area: benefits; }
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 10px;
}
.eyebrow-dark { color: var(--green); }

.hero h1 {
  font-size: clamp(33px, 5.1vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin-bottom: 12px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 16.5px; color: #C3CCDC; max-width: 52ch; margin-bottom: 14px;
}
@media (min-width: 960px) { .hero-sub { font-size: 18.5px; } }

.hero-cost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(198,138,74,.42);
  border-radius: 999px;
  padding: 8px 16px 8px 13px;
  font-size: 14.5px;
}
.hero-cost .ico { color: var(--copper); width: 18px; height: 18px; }
.hero-cost strong { font-weight: 700; }

/* clarity cards */
.clarity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 620px) { .clarity-cards { grid-template-columns: 1fr; } }
.clarity-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-md);
  padding: 15px 14px;
}
.clarity-card .ico { color: var(--copper); margin-bottom: 9px; }
.clarity-card h2 {
  font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: #93A5C4; margin-bottom: 3px;
}
.clarity-card p { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
@media (max-width: 620px) {
  .clarity-card { display: grid; grid-template-columns: auto 1fr; column-gap: 13px; align-items: center; padding: 13px 15px; }
  .clarity-card .ico { grid-row: span 2; margin: 0; }
  .clarity-card h2 { margin: 0; }
}

/* benefits */
.hero-benefits { display: grid; gap: 9px; font-size: 15px; color: #D3DAE7; }
@media (min-width: 620px) { .hero-benefits { grid-template-columns: 1fr 1fr; column-gap: 22px; } }
@media (min-width: 960px) { .hero-benefits { grid-template-columns: 1fr 1fr; } }
.hero-benefits li { display: flex; gap: 10px; align-items: flex-start; }
.hero-benefits .ico { color: var(--copper); margin-top: 2px; width: 18px; height: 18px; }

/* ============================ FORM ============================ */
.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-head {
  background-color: var(--green);
  background-image: linear-gradient(150deg, var(--green) 0%, var(--green-2) 100%);
  color: var(--white);
  padding: 15px 18px 14px;
}
@media (min-width: 480px) { .form-head { padding: 20px 22px 18px; } }
.form-head h2 { font-size: 20px; letter-spacing: -0.02em; line-height: 1.2; }
@media (min-width: 480px) { .form-head h2 { font-size: 22px; } }
.form-head p { font-size: 13px; color: #C6E2D6; margin-top: 4px; line-height: 1.4; }
.form-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 11px;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 10px;
}
.form-facts li { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.form-facts span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #A6CEBD; font-weight: 700; }
.form-facts strong { font-size: 13.5px; font-weight: 700; line-height: 1.25; }

.form-body { padding: 19px; }
@media (min-width: 480px) { .form-body { padding: 26px; } }

.progress { display: flex; gap: 5px; margin-bottom: 11px; }
.progress span { height: 4px; flex: 1; border-radius: 3px; background: var(--border); transition: background .2s ease; }
.progress span.active { background: var(--green); }
.step-label { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }

.form-step h3 { font-size: 20px; letter-spacing: -0.018em; line-height: 1.25; margin-bottom: 5px; color: var(--navy); }
.form-step .step-sub { font-size: 14px; color: var(--text-2); margin-bottom: 14px; line-height: 1.45; }

.field { margin-bottom: 13px; }
.field label { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 6px; }
.field .optional { font-weight: 400; color: var(--text-2); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%; font: inherit; font-size: 16.5px; line-height: 1.4;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white); color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #97A1B0; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14,90,67,.15);
}
.field .helper { font-size: 13px; color: var(--text-2); margin-top: 6px; line-height: 1.45; }
.field.has-error input { border-color: var(--error); background: var(--error-bg); }
.field-error { font-size: 13px; color: var(--error); margin-top: 6px; font-weight: 600; line-height: 1.45; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; min-height: 54px; padding: 0 22px;
  font: inherit; font-size: 17px; font-weight: 700; letter-spacing: -0.005em;
  border: 0; border-radius: var(--r-md); cursor: pointer;
  background: var(--green); color: var(--white);
  transition: background .15s ease, transform .08s ease;
}
.btn:hover { background: var(--green-2); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn .ico { width: 18px; height: 18px; }
.btn-copper { background: var(--copper); color: #21160A; }
.btn-copper:hover { background: var(--copper-2); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 9px 4px;
  font: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--text-2); cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-ghost:hover { color: var(--text); }
.btn-ghost .ico { width: 16px; height: 16px; }

.form-micro { text-align: center; font-size: 13px; color: var(--text-2); margin-top: 12px; }
.back-row { margin-top: 10px; text-align: center; }

/* choice cards */
.choice-cards { display: grid; gap: 9px; margin-bottom: 14px; }
.choice-card {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 15px 16px; text-align: left;
  font: inherit; font-size: 16px; font-weight: 600;
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.choice-card:hover { border-color: var(--green); background: var(--green-soft); }
.choice-card[aria-pressed="true"] { border-color: var(--green); background: var(--green-soft); }
.choice-card .radio {
  width: 20px; height: 20px; flex: none;
  border: 2px solid var(--border); border-radius: 50%;
  display: grid; place-items: center;
}
.choice-card[aria-pressed="true"] .radio { border-color: var(--green); }
.choice-card[aria-pressed="true"] .radio::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green);
}

/* confirm card */
.confirm-card {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--green-soft);
  border: 1.5px solid rgba(14,90,67,.22);
  border-radius: var(--r-md);
  padding: 16px; margin-bottom: 16px;
}
.confirm-ico { color: var(--green); width: 22px; height: 22px; margin-top: 2px; }
.confirm-card address {
  font-style: normal; font-size: 16px; font-weight: 600; line-height: 1.5; color: var(--navy);
}

/* consent */
.consent {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 13px; color: var(--text-2); line-height: 1.5;
  margin: 15px 0 4px; cursor: pointer;
}
.consent input {
  width: 20px; height: 20px; flex: none; margin-top: 1px;
  accent-color: var(--green); cursor: pointer;
}

.form-status:empty { display: none; }
.form-status { margin-top: 12px; }
.alert { border-radius: var(--r-md); padding: 12px 14px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.alert-error { background: var(--error-bg); color: var(--error); border: 1px solid #FDA29B; }
.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid #A6F4C5; }

.disqualified h3 { color: var(--navy); }
.disqualified p { color: var(--text-2); font-size: 15px; }

/* ============================ SECTIONS ============================ */
section { padding: 56px 0; }
@media (min-width: 960px) { section { padding: 92px 0; } }

.band-ivory { background: var(--ivory); }
.band-navy { background: var(--navy); color: var(--white); }
.band-navy h2 { color: var(--white); }
.band-navy p { color: #C3CCDC; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(27px, 3.6vw, 39px);
  line-height: 1.14; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 12px; text-wrap: balance;
}
.section-head p { color: var(--text-2); font-size: 16.5px; }

.section-note {
  margin-top: 26px; text-align: center;
  font-size: 15px; color: var(--text-2); max-width: 62ch; margin-inline: auto;
}

/* info cards */
.cards-3 { display: grid; gap: 16px; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.info-card .stat {
  display: block; font-size: 34px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--green); line-height: 1.05; margin-bottom: 10px;
}
.info-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.info-card p { font-size: 15px; color: var(--text-2); }

/* steps */
.steps { display: grid; gap: 16px; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--copper);
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 15px;
}
.step-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 7px; letter-spacing: -0.012em; }
.step-card p { font-size: 15px; color: var(--text-2); }

/* split */
.split { display: grid; gap: 30px; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; column-gap: 60px; } }
.split h2 {
  font-size: clamp(26px, 3.3vw, 35px); line-height: 1.16;
  letter-spacing: -0.024em; color: var(--navy); margin-bottom: 14px; text-wrap: balance;
}
.split p { color: var(--text-2); margin-bottom: 14px; }

.plain-list { display: grid; gap: 11px; }
.plain-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.plain-list .ico { color: var(--copper); margin-top: 3px; width: 18px; height: 18px; }
.dark-list .ico { color: var(--green); }
.dark-list li { color: var(--text); }

/* situations */
.situation-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .situation-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .situation-grid { grid-template-columns: repeat(3, 1fr); } }
.situation-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.situation-card .ico {
  width: 40px; height: 40px; padding: 9px; margin-bottom: 13px;
  border-radius: 11px; background: var(--green-soft); color: var(--green);
}
.situation-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.012em; }
.situation-card p { font-size: 14.5px; color: var(--text-2); }

/* comparison */
.compare-wrap {
  overflow-x: auto; border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); background: var(--white);
  -webkit-overflow-scrolling: touch;
}
table.compare { width: 100%; min-width: 540px; border-collapse: collapse; font-size: 15px; }
table.compare th, table.compare td {
  padding: 14px 18px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border-2);
}
table.compare thead th { font-size: 14.5px; letter-spacing: -0.005em; }
table.compare thead th:first-child { background: var(--navy); color: var(--white); }
table.compare thead th:last-child { background: var(--ivory-2); color: var(--text); }
table.compare td:first-child { font-weight: 600; color: var(--text); }
table.compare td:last-child { color: var(--text-2); }
table.compare tbody tr:last-child td { border-bottom: 0; }
.compare-note {
  margin-top: 18px; font-size: 15px; color: var(--text-2);
  background: var(--white); border-left: 3px solid var(--copper);
  padding: 14px 18px; border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* FAQ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 9px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 18px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .18s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq-item .faq-body { padding: 0 18px 17px; color: var(--text-2); font-size: 15px; }

/* final CTA */
.final-cta {
  background-color: var(--navy);
  background-image:
    radial-gradient(110% 130% at 50% 0%, rgba(198,138,74,.18) 0%, rgba(198,138,74,0) 60%),
    linear-gradient(160deg, var(--navy-2), var(--navy-deep));
  color: var(--white); text-align: center;
}
.final-cta h2 {
  font-size: clamp(29px, 4.2vw, 44px); line-height: 1.1;
  letter-spacing: -0.028em; margin-bottom: 14px; text-wrap: balance;
}
.final-cta p { color: #C3CCDC; max-width: 56ch; margin: 0 auto 26px; }
.final-cta .btn { width: auto; min-width: 262px; }
.final-cta .form-micro { color: #93A5C4; margin-top: 14px; }

/* footer */
.site-footer { background: var(--navy-deep); color: #A7B4CB; padding: 46px 0 34px; font-size: 14px; }
.footer-grid { display: grid; gap: 24px; margin-bottom: 26px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-mark { color: var(--copper); }
.brand-footer { margin-bottom: 10px; }
.site-footer a { color: #C9D3E4; }
.site-footer p + p { margin-top: 5px; }
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,.11);
  padding-top: 20px; font-size: 12.5px; line-height: 1.65; color: #8A99B4;
}
.footer-disclosure p + p { margin-top: 9px; }

/* ============================ THANK YOU ============================ */
.ty-hero {
  background-color: var(--navy);
  background-image: linear-gradient(160deg, var(--navy-2), var(--navy-deep));
  color: var(--white); padding: 48px 0 56px;
}
.ty-hero h1 {
  font-size: clamp(29px, 4.4vw, 44px); letter-spacing: -0.028em;
  line-height: 1.1; margin: 8px 0 12px; text-wrap: balance;
}
.ty-hero > .container > p { color: #C3CCDC; max-width: 58ch; }
.ty-card {
  background: var(--white); color: var(--text);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 24px; margin-top: 26px;
}
.ty-card dl { display: grid; gap: 15px; }
@media (min-width: 620px) { .ty-card dl { grid-template-columns: 1fr 1fr; } }
.ty-card dt {
  font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-2); font-weight: 700; margin-bottom: 3px;
}
.ty-card dd { font-size: 16.5px; font-weight: 600; color: var(--navy); }
.enrich-wrap { max-width: 720px; margin-inline: auto; }

/* ============================ PRIVACY ============================ */
.legal-hero { background: var(--navy); color: var(--white); padding: 46px 0; }
.legal-hero h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.026em; line-height: 1.12; margin-bottom: 10px; }
.legal-hero p { color: #C3CCDC; font-size: 15.5px; }
.legal-body { max-width: 780px; margin-inline: auto; }
.legal-body h2 {
  font-size: 21px; color: var(--navy); letter-spacing: -0.018em;
  margin: 34px 0 10px; padding-top: 6px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text-2); font-size: 16px; }
.legal-body p + p { margin-top: 11px; }
.legal-body ul { display: grid; gap: 8px; margin-top: 11px; }
.legal-body ul li { display: flex; gap: 11px; align-items: flex-start; }
.legal-body ul .ico { color: var(--green); margin-top: 3px; width: 17px; height: 17px; }
.legal-note {
  background: #FFF8EC; border: 1px solid #F0D9B5; border-left: 3px solid var(--copper);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 15px 18px; margin-bottom: 30px;
  font-size: 14.5px; color: #6B4E22;
}
.legal-note strong { color: #4A3514; }
