:root {
  --ink: #13251d;
  --forest: #173d2f;
  --forest-2: #0e2e23;
  --moss: #dce7d5;
  --cream: #f4f1e7;
  --paper: #fbfaf5;
  --coral: #ff775b;
  --line: rgba(19, 37, 29, .16);
  --white-line: rgba(255,255,255,.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  height: 76px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,250,245,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--ink); font-size: 20px; }
nav { display: flex; gap: 36px; font-size: 14px; font-weight: 700; }
nav a:hover { color: var(--coral); }
.header-cta { padding: 11px 18px; border: 1px solid var(--ink); border-radius: 50px; font-size: 13px; font-weight: 800; }

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(7,25,18,.93) 0%, rgba(7,25,18,.72) 43%, rgba(7,25,18,.05) 78%), linear-gradient(0deg, rgba(7,25,18,.6), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(820px, 78%); margin-left: clamp(22px, 7vw, 120px); padding: 70px 0 48px; color: #fff; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 23px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.eyebrow span { width: 32px; height: 2px; background: var(--coral); }
.eyebrow.light { color: #fff; }
h1, h2 { font-family: "Unbounded", sans-serif; letter-spacing: -.045em; line-height: 1.12; margin: 0; }
h1 { font-size: clamp(35px, 4.3vw, 70px); max-width: 1040px; }
.hero-content > p { max-width: 680px; margin: 28px 0 34px; font-size: clamp(17px, 1.4vw, 21px); color: rgba(255,255,255,.78); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 17px 22px; border-radius: 4px; border: 0; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 21px; }
.button-primary { background: var(--coral); color: var(--ink); }
.button-primary:hover { background: #ff8b73; }
.button-dark { background: var(--ink); color: white; }
.hero-facts { display: flex; gap: 38px; margin-top: 48px; }
.hero-facts div { display: flex; flex-direction: column; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.35); }
.hero-facts strong { font-size: 22px; }
.hero-facts span { color: rgba(255,255,255,.62); font-size: 12px; }
.hero-note { position: absolute; z-index: 2; right: 3vw; bottom: 36px; color: white; text-align: right; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.section { padding: 120px clamp(22px, 7vw, 120px); }
.section-heading { margin-bottom: 52px; }
.section-heading.split { display: grid; grid-template-columns: 1.6fr .7fr; gap: 9vw; align-items: end; }
h2 { font-size: clamp(32px, 4.2vw, 62px); max-width: 950px; }
.section-heading > p { margin: 0 0 8px; color: #637068; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pain-card { min-height: 370px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.pain-card .number { color: #879189; font-size: 12px; }
.icon-box { width: 70px; height: 70px; margin: 48px 0 34px; display: grid; place-items: center; border-radius: 50%; background: var(--moss); font-size: 30px; }
.pain-card h3 { margin: 0 0 12px; font-size: 21px; }
.pain-card p { margin: 0; color: #66736b; }
.accent-card { background: var(--coral); }
.accent-card .icon-box { background: var(--ink); color: white; }
.accent-card p { color: rgba(19,37,29,.72); }

.solution { color: white; background: var(--forest); }
.solution-intro { max-width: 920px; margin-bottom: 70px; }
.solution-intro p { max-width: 690px; color: rgba(255,255,255,.68); font-size: 19px; margin-top: 24px; }
.support-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-left: 1px solid var(--white-line); }
.support-grid article { padding: 30px 23px; min-height: 245px; border: 1px solid var(--white-line); border-left: 0; }
.support-grid strong { display: block; color: var(--coral); font-family: "Unbounded"; font-size: 40px; }
.support-grid h3 { margin: 45px 0 8px; font-size: 16px; }
.support-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }

.programs { background: var(--cream); }
.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 42px; }
.tariff { min-height: 600px; padding: 32px; background: var(--paper); border: 1px solid var(--line); position: relative; display: flex; flex-direction: column; }
.tariff.featured { color: white; background: var(--forest); transform: translateY(-12px); }
.popular { position: absolute; right: 22px; top: 0; transform: translateY(-50%); padding: 6px 12px; border-radius: 30px; background: var(--coral); color: var(--ink); text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.tariff-top { display: flex; justify-content: space-between; color: #8b948e; font-size: 12px; }
.duration { padding: 6px 10px; border: 1px solid currentColor; border-radius: 30px; }
.tariff h3 { margin: 70px 0 20px; font-family: "Unbounded"; font-size: clamp(21px, 2vw, 30px); line-height: 1.2; }
.tariff > p { min-height: 76px; color: #657069; }
.featured > p { color: rgba(255,255,255,.62); }
.tariff ul { padding: 25px 0 0; margin: 15px 0 28px; border-top: 1px solid var(--line); list-style: none; }
.featured ul { border-color: var(--white-line); }
.tariff li { margin: 10px 0; padding-left: 23px; position: relative; font-size: 14px; }
.tariff li::before { content: "✓"; position: absolute; left: 0; color: var(--coral); font-weight: 800; }
.tariff > a { margin-top: auto; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 800; font-size: 13px; }
.featured > a { border-color: var(--white-line); }
.center { text-align: center; }

.advantages { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; background: var(--forest-2); color: white; }
.adv-copy > p { max-width: 480px; color: rgba(255,255,255,.62); font-size: 18px; }
.route-line { display: flex; align-items: center; margin-top: 55px; }
.route-line div { display: flex; flex-direction: column; }
.route-line b { font-size: 26px; color: var(--coral); }
.route-line span { font-size: 11px; color: rgba(255,255,255,.53); }
.route-line i { width: 60px; margin: 0 15px; border-top: 1px dashed rgba(255,255,255,.45); }
.adv-list article { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 27px 0; border-top: 1px solid var(--white-line); }
.adv-list article:last-child { border-bottom: 1px solid var(--white-line); }
.adv-list > article > span { color: var(--coral); font-size: 12px; }
.adv-list h3 { margin: 0 0 8px; font-size: 19px; }
.adv-list p { margin: 0; color: rgba(255,255,255,.57); }

.safety { background: var(--moss); }
.stat { display: flex; align-items: center; gap: 16px; }
.stat strong { font-family: "Unbounded"; font-size: 72px; color: var(--coral); }
.stat span { max-width: 150px; font-size: 13px; font-weight: 700; }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.safety-grid article { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.safety-grid span { color: var(--coral); font-weight: 800; font-size: 12px; }
.safety-grid h3 { margin: 78px 0 12px; }
.safety-grid p { color: #58665e; font-size: 14px; }
.fineprint { color: #738078; font-size: 11px; margin-top: 18px; }

.cases { background: var(--paper); }
.case-nav { display: flex; gap: 8px; justify-content: flex-end; }
.case-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.logos { display: grid; grid-template-columns: repeat(5, 1fr); margin: 30px 0 60px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos > span { text-align: center; padding: 23px 5px; font-weight: 800; color: #718078; }
.logos > span span { color: var(--coral); }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
blockquote { margin: 0; padding: 32px; min-height: 340px; display: flex; flex-direction: column; background: var(--cream); }
.quote-mark { color: var(--coral); font-family: Georgia, serif; font-size: 70px; line-height: 1; }
blockquote > p { font-size: clamp(18px, 1.7vw, 25px); line-height: 1.45; margin: 10px 0 35px; }
blockquote footer { margin-top: auto; display: flex; flex-direction: column; font-size: 13px; }
blockquote footer span { color: #7a857f; }

.process { background: var(--forest); color: white; }
.process .section-heading { text-align: center; }
.process .eyebrow { justify-content: center; }
.process h2 { margin: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.steps article { min-height: 350px; padding: 28px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); position: relative; }
.steps > article > span { color: rgba(255,255,255,.42); font-size: 11px; }
.step-icon { width: 64px; height: 64px; margin: 55px 0 35px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--coral); color: var(--coral); font-size: 26px; }
.steps h3 { margin: 0 0 12px; }
.steps p { color: rgba(255,255,255,.56); max-width: 300px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro p { max-width: 320px; color: #68746c; margin-top: 28px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 27px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 19px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--coral); font-size: 24px; }
details p { margin: -5px 0 28px; padding-right: 50px; color: #647169; }

.contact { padding: 120px clamp(22px, 7vw, 120px); display: grid; grid-template-columns: 1fr .78fr; gap: 8vw; background: var(--forest-2); color: white; }
.contact-copy > p { max-width: 600px; color: rgba(255,255,255,.64); font-size: 18px; }
.messengers { display: flex; gap: 26px; margin: 36px 0; }
.messengers a { color: var(--coral); font-weight: 800; }
.map-card { max-width: 600px; min-height: 110px; padding: 22px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; background: #264838; border: 1px solid var(--white-line); }
.map-pin { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--ink); }
.map-card span { display: flex; flex-direction: column; }
.map-card small { color: rgba(255,255,255,.56); }
.map-card b { font-size: 11px; color: var(--coral); }
.lead-form { padding: 36px; background: var(--paper); color: var(--ink); }
.form-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.form-title span { font-family: "Unbounded"; font-size: 21px; }
.form-title small { color: #77837c; }
.lead-form label { display: flex; flex-direction: column; margin-top: 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.lead-form input { padding: 11px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; outline: none; font-size: 16px; text-transform: none; }
.lead-form input:focus { border-color: var(--coral); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lead-form .button { width: 100%; margin-top: 32px; }
.consent { display: block; margin-top: 12px; color: #849088; font-size: 9px; text-align: center; }

footer { min-height: 110px; padding: 25px clamp(22px, 7vw, 120px); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--white-line); background: var(--forest-2); color: white; font-size: 11px; }
footer p { color: rgba(255,255,255,.42); }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 30; max-width: 360px; padding: 16px 20px; background: var(--coral); color: var(--ink); box-shadow: 0 15px 50px rgba(0,0,0,.25); transform: translateY(150%); transition: transform .3s; font-weight: 700; }
.toast.show { transform: translateY(0); }

@media (max-width: 1000px) {
  nav { display: none; }
  .hero-content { width: 88%; margin-left: 6vw; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid article:last-child { grid-column: span 2; }
  .tariff-grid { grid-template-columns: 1fr; }
  .tariff { min-height: auto; }
  .tariff.featured { transform: none; }
  .advantages, .faq, .contact { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .site-header { height: 66px; }
  .header-cta { display: none; }
  .section, .contact { padding: 78px 20px; }
  .hero { min-height: calc(100svh - 66px); align-items: flex-end; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,25,18,.97) 4%, rgba(7,25,18,.72) 60%, rgba(7,25,18,.15)); }
  .hero-content { width: auto; margin: 0; padding: 90px 20px 35px; }
  h1 { font-size: clamp(31px, 9.5vw, 44px); }
  .hero-facts { gap: 14px; justify-content: space-between; }
  .hero-facts div { padding-left: 8px; }
  .hero-facts strong { font-size: 17px; }
  .hero-facts span { font-size: 9px; }
  .hero-note { display: none; }
  .section-heading.split { grid-template-columns: 1fr; gap: 22px; }
  .pain-grid, .steps { grid-template-columns: 1fr; }
  .pain-card { min-height: 300px; }
  .icon-box { margin: 30px 0 26px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid article:last-child { grid-column: auto; }
  .support-grid article { min-height: 190px; }
  .support-grid h3 { margin-top: 25px; }
  .advantages { gap: 50px; }
  .route-line { align-items: flex-start; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-grid article { min-height: 220px; }
  .safety-grid h3 { margin-top: 45px; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .logos > span:last-child { grid-column: span 2; }
  .quotes { grid-template-columns: 1fr; }
  .process .section-heading { text-align: left; }
  .process .eyebrow { justify-content: flex-start; }
  .map-card { grid-template-columns: 42px 1fr; }
  .map-card b { display: none; }
  .lead-form { padding: 25px 20px; }
  .form-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
