:root {
  --ink: #123438;
  --ink-soft: #527075;
  --teal-950: #073f47;
  --teal-800: #0b6670;
  --teal-700: #0e7980;
  --teal-100: #dff2f0;
  --teal-50: #f0f9f8;
  --blue-50: #f5f9fc;
  --line: #d8e5e6;
  --white: #fff;
  --coral: #eb6548;
  --coral-dark: #cc4f34;
  --focus: #f4a340;
  --shadow: 0 22px 60px rgba(11, 72, 79, .11);
  --shadow-small: 0 8px 24px rgba(11, 72, 79, .09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px;
  padding: 10px 16px; border-radius: 8px; color: #fff; background: var(--teal-950);
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-header {
  position: sticky; z-index: 40; top: 0;
  border-bottom: 1px solid rgba(216, 229, 230, .8);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; min-height: 76px; gap: 36px; }
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--teal-950); font-size: 19px; font-weight: 760; letter-spacing: -.025em; text-decoration: none;
}
.brand-mark {
  position: relative; display: inline-grid; place-items: center;
  width: 34px; height: 34px; flex: 0 0 34px;
  border: 2px solid var(--teal-700); border-radius: 50%;
  background: radial-gradient(circle, transparent 25%, rgba(14,121,128,.16) 26% 31%, transparent 32%);
}
.brand-mark::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-700); }
.brand-mark::after {
  content: ""; position: absolute; width: 14px; height: 2px;
  background: var(--teal-700); transform: translate(6px, -5px) rotate(-35deg); transform-origin: left;
}
.brand-mark span {
  position: absolute; right: -2px; bottom: 2px; width: 8px; height: 8px;
  border: 2px solid #fff; border-radius: 50%; background: var(--coral);
}
.main-nav { display: flex; justify-content: center; gap: 32px; margin-left: auto; }
.main-nav a, .footer-main nav a {
  color: var(--ink-soft); font-size: 14px; font-weight: 650; text-decoration: none;
}
.main-nav a:hover, .footer-main nav a:hover { color: var(--teal-700); }

.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 12px;
  font-weight: 720; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .62; transform: none; }
.button-primary { color: #fff; background: var(--coral); box-shadow: 0 8px 20px rgba(235, 101, 72, .22); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 10px 25px rgba(204, 79, 52, .27); }
.button-secondary { color: var(--teal-800); border-color: var(--teal-800); background: #fff; }
.button-secondary:hover { background: var(--teal-50); }
.button-ghost { color: var(--ink); border-color: var(--line); background: #fff; box-shadow: none; }
.button-ghost:hover { border-color: #9ebbbd; background: #f9fbfb; }
.button-small { min-height: 43px; padding: 10px 17px; font-size: 14px; }
.button-wide { width: 100%; min-height: 56px; }
.button-link {
  border: 0; color: var(--teal-800); background: transparent; font-weight: 700;
  text-decoration: underline; text-underline-offset: 4px; cursor: pointer;
}

.hero {
  overflow: hidden; padding: 90px 0 0;
  background:
    linear-gradient(90deg, rgba(11,102,112,.035) 1px, transparent 1px),
    linear-gradient(rgba(11,102,112,.035) 1px, transparent 1px),
    var(--blue-50);
  background-size: 44px 44px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .8fr; align-items: center; gap: 80px; padding-bottom: 72px; }
.eyebrow {
  margin: 0 0 14px; color: var(--teal-700); font-size: 13px; font-weight: 800;
  letter-spacing: .09em; line-height: 1.3; text-transform: uppercase;
}
.hero .eyebrow { display: flex; align-items: center; gap: 9px; }
.hero .eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(235,101,72,.12); }
.hero h1 {
  max-width: 750px; margin: 0; color: var(--teal-950);
  font-size: clamp(44px, 5.4vw, 72px); font-weight: 790; letter-spacing: -.055em; line-height: 1.04;
}
.hero h1 span { color: var(--teal-700); }
.hero-lead { max-width: 670px; margin: 28px 0 0; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 35px; }
.text-link { color: var(--teal-800); font-weight: 720; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.radar-visual { position: relative; display: grid; place-items: center; min-height: 400px; }
.radar {
  position: relative; width: min(380px, 86vw); aspect-ratio: 1;
  border: 1px solid #b9d7d7; border-radius: 50%; background: rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 34px rgba(223,242,240,.45), var(--shadow);
}
.radar::before, .radar::after {
  content: ""; position: absolute; top: 50%; left: 8%; width: 84%; height: 1px; background: #c3dcdd;
}
.radar::after { transform: rotate(90deg); }
.radar-ring { position: absolute; inset: 50%; border: 1px solid #a9ccce; border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 35%; height: 35%; }.ring-two { width: 66%; height: 66%; }.ring-three { width: 100%; height: 100%; }
.radar-line {
  position: absolute; z-index: 2; top: 50%; left: 50%; width: 42%; height: 3px;
  border-radius: 4px; background: var(--teal-700); transform: rotate(-38deg); transform-origin: left;
}
.radar-line::after { content: ""; position: absolute; right: -4px; top: -3px; width: 9px; height: 9px; border-radius: 50%; background: var(--teal-700); }
.radar-dot { position: absolute; z-index: 2; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: var(--coral); box-shadow: 0 3px 8px rgba(11,80,86,.25); }
.dot-one { top: 24%; right: 22%; }.dot-two { bottom: 22%; left: 28%; width: 10px; height: 10px; background: var(--teal-700); }
.calendar-card {
  position: absolute; z-index: 4; right: 4%; bottom: 6%; display: grid; width: 96px; height: 104px;
  place-content: center; overflow: hidden; border: 5px solid #fff; border-radius: 18px;
  color: var(--teal-950); background: #fff; text-align: center; box-shadow: 0 16px 35px rgba(7,63,71,.18);
}
.calendar-card .calendar-top { position: absolute; top: 0; left: 0; width: 100%; height: 22px; background: var(--teal-700); }
.calendar-card strong { margin-top: 14px; font-size: 34px; line-height: 1; }.calendar-card small { margin-top: 5px; color: var(--coral); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.signal-card {
  position: absolute; z-index: 5; left: -5px; bottom: 46px; display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border: 1px solid #d4e7e7; border-radius: 14px; background: #fff; box-shadow: var(--shadow-small);
}
.signal-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: #fff; background: var(--teal-700); font-weight: 800; }
.signal-card strong, .signal-card small { display: block; }.signal-card strong { font-size: 13px; }.signal-card small { color: var(--ink-soft); font-size: 11px; }

.steps-strip {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1.3fr; align-items: center; gap: 24px;
  padding: 24px 34px; border: 1px solid var(--line); border-bottom: 0;
  border-radius: 20px 20px 0 0; background: #fff; box-shadow: 0 -5px 30px rgba(11,72,79,.05);
}
.steps-strip div { display: flex; align-items: center; gap: 12px; }
.steps-strip span { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 50%; color: var(--teal-800); background: var(--teal-100); font-size: 13px; font-weight: 800; }
.steps-strip strong { font-size: 14px; line-height: 1.35; }.steps-strip i { width: 38px; height: 1px; background: var(--line); }

.builder-section { padding: 100px 0; background: #fff; }
.builder-shell { max-width: 900px; }
.section-heading h2 { margin: 0; color: var(--teal-950); font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p:last-child { max-width: 650px; margin: 18px 0 0; color: var(--ink-soft); font-size: 17px; }
.centered { text-align: center; }.centered > p:last-child { margin-inline: auto; }
.builder-heading { margin-bottom: 36px; text-align: center; }.builder-heading > p:last-child { margin-inline: auto; }
.wizard-card { scroll-margin-top: 100px; overflow: visible; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.progress-wrap { padding: 25px 42px 23px; border-bottom: 1px solid var(--line); border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: #f8fbfb; }
.progress-copy { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; font-weight: 750; }
.progress-copy span:first-child { color: var(--teal-700); }.progress-copy span:last-child { color: var(--ink-soft); }
.progress-track { height: 5px; overflow: hidden; border-radius: 4px; background: #dce9e9; }
.progress-track span { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--teal-700); transition: width .35s ease; }
.progress-steps { display: flex; justify-content: space-between; padding: 0; margin: 18px 0 0; list-style: none; }
.progress-steps li { display: flex; align-items: center; gap: 7px; color: #82999c; font-size: 12px; font-weight: 650; }
.progress-steps li span { display: grid; width: 23px; height: 23px; place-items: center; border: 1px solid #cbdadb; border-radius: 50%; font-size: 11px; }
.progress-steps li.is-active { color: var(--teal-800); }.progress-steps li.is-active span { color: #fff; border-color: var(--teal-700); background: var(--teal-700); }
.progress-steps li.is-complete { color: var(--teal-700); }.progress-steps li.is-complete span { border-color: var(--teal-100); background: var(--teal-100); }
.wizard-alert { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 24px 42px 0; padding: 16px 18px; border: 1px solid #f2b5a8; border-radius: var(--radius-sm); background: #fff5f2; }
.wizard-alert strong { color: #9f3925; }.wizard-alert p { margin: 2px 0 0; color: #753e34; font-size: 14px; }
.wizard-panel { min-height: 370px; padding: 48px 54px 30px; animation: panel-in .25s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(6px); } }
.step-kicker { margin: 0 0 8px; color: var(--teal-700); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.wizard-panel h3 { margin: 0; color: var(--teal-950); font-size: clamp(27px, 4vw, 36px); line-height: 1.2; letter-spacing: -.03em; outline: none; }
.step-intro { max-width: 620px; margin: 10px 0 32px; color: var(--ink-soft); }
.field { position: relative; }
.municipality-field { max-width: 560px; }
.field label, .field-label-row label { display: block; margin-bottom: 8px; color: var(--ink); font-size: 14px; font-weight: 750; }
.field label span { color: var(--coral); }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; top: 50%; right: 18px; width: 8px; height: 8px; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
select, .combobox-wrap input {
  width: 100%; min-height: 54px; border: 1px solid #bfd1d3; border-radius: var(--radius-sm);
  color: var(--ink); background: #fff; outline: 0; transition: border-color .18s, box-shadow .18s;
}
select { padding: 12px 48px 12px 16px; appearance: none; }
.combobox-wrap input { padding: 12px 46px; }
select:hover, .combobox-wrap input:hover { border-color: #8eafb2; }
select:focus, .combobox-wrap input:focus { border-color: var(--teal-700); box-shadow: 0 0 0 4px rgba(14,121,128,.13); }
select:disabled { color: #809598; background: #f4f7f7; cursor: wait; }
.field-status, .field-hint { margin: 7px 0 0; color: var(--ink-soft); font-size: 12px; }
.inline-retry { min-height: 38px; margin-top: 8px; padding: 6px 0; border: 0; color: var(--teal-800); background: none; font-size: 13px; font-weight: 750; text-decoration: underline; cursor: pointer; }
.method-fieldset, .choice-grid { padding: 0; border: 0; margin: 0; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.method-card {
  position: relative; display: flex; min-height: 82px; align-items: center; gap: 14px; padding: 15px;
  border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: #fff; text-align: left; cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.method-card:hover { border-color: #99babc; background: #fbfdfd; }.method-card.is-selected { border-color: var(--teal-700); background: var(--teal-50); box-shadow: inset 0 0 0 1px var(--teal-700); }
.method-icon { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 12px; color: var(--teal-800); background: var(--teal-100); font-size: 20px; font-weight: 750; }
.method-card strong, .method-card small { display: block; }.method-card strong { font-size: 15px; }.method-card small { margin-top: 2px; color: var(--ink-soft); font-size: 12px; }
.method-card i { display: none; position: absolute; top: 10px; right: 11px; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; background: var(--teal-700); font-size: 11px; font-style: normal; }
.method-card.is-selected i { display: grid; }
.criteria-area { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.criteria-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.criteria-heading h4 { margin: 0; color: var(--teal-950); font-size: 18px; }.criteria-heading p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 20px; }
.field-label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.field-requirement { margin-bottom: 8px; color: #748b8e; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.field-requirement.is-required { color: var(--coral-dark); }
.combobox-wrap { position: relative; }
.search-glyph { position: absolute; z-index: 2; top: 18px; left: 17px; width: 14px; height: 14px; border: 2px solid #728e91; border-radius: 50%; pointer-events: none; }
.search-glyph::after { content: ""; position: absolute; right: -5px; bottom: -3px; width: 6px; height: 2px; background: #728e91; transform: rotate(45deg); }
.clear-selection { position: absolute; top: 7px; right: 7px; width: 40px; height: 40px; border: 0; border-radius: 9px; color: var(--ink-soft); background: transparent; font-size: 23px; cursor: pointer; }
.clear-selection:hover { background: #edf5f4; }
.search-results {
  position: absolute; z-index: 20; top: calc(100% - 17px); width: 100%; max-height: 280px;
  overflow-y: auto; padding: 6px; border: 1px solid #b9ced0; border-radius: 13px; margin: 0;
  background: #fff; box-shadow: 0 18px 40px rgba(7,63,71,.17); list-style: none;
}
.search-results li { padding: 11px 12px; border-radius: 8px; cursor: pointer; }
.search-results li:hover, .search-results li.is-active { background: var(--teal-50); }
.search-results strong, .search-results small { display: block; }.search-results strong { font-size: 13px; }.search-results small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }

.choice-grid { display: grid; gap: 14px; }.three-options { grid-template-columns: repeat(3, 1fr); }.two-options { grid-template-columns: 1fr 1fr; }
.choice-card {
  position: relative; display: flex; min-height: 120px; align-items: center; gap: 15px; padding: 20px;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.choice-card:hover { border-color: #98b9bc; }.choice-card:has(input:checked) { border-color: var(--teal-700); background: var(--teal-50); box-shadow: inset 0 0 0 1px var(--teal-700); }
.choice-card input { position: absolute; top: 15px; right: 15px; width: 18px; height: 18px; accent-color: var(--teal-700); }
.choice-icon { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 50%; color: var(--teal-800); background: var(--teal-100); font-weight: 800; }
.choice-card strong, .choice-card small { display: block; }.choice-card strong { font-size: 15px; }.choice-card small { margin-top: 3px; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.recommended { padding-top: 30px; }.recommendation { position: absolute; top: -10px; left: 18px; padding: 3px 9px; border-radius: 20px; color: #fff; background: var(--teal-700); font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.info-note { display: flex; align-items: center; gap: 10px; margin: 24px 0 0; padding: 14px 16px; border-radius: 12px; color: var(--ink-soft); background: #f4f8f8; font-size: 13px; }
.info-note span { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border: 1px solid #9bb8ba; border-radius: 50%; color: var(--teal-700); font-weight: 800; }
.wizard-controls { position: sticky; z-index: 10; bottom: 0; display: flex; justify-content: space-between; gap: 15px; padding: 20px 42px; border-top: 1px solid var(--line); border-radius: 0 0 var(--radius-lg) var(--radius-lg); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.wizard-controls .button-primary { margin-left: auto; }
.privacy-under-form { display: flex; justify-content: center; align-items: center; gap: 9px; margin: 18px auto 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.privacy-under-form span { color: var(--teal-700); font-weight: 800; }
.confirmation-panel { max-width: 680px; margin-inline: auto; text-align: center; }
.confirmation-check { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; margin: 0 auto 15px; color: #fff; background: var(--teal-700); font-size: 22px; font-weight: 800; }
.confirmation-panel .step-intro { margin-inline: auto; }
.summary-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); margin: 28px 0; background: #fbfdfd; text-align: left; }
.summary-card div { display: grid; grid-template-columns: 155px 1fr; gap: 20px; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.summary-card div:last-child { border-bottom: 0; }.summary-card dt { color: var(--ink-soft); font-size: 13px; }.summary-card dd { margin: 0; font-size: 14px; font-weight: 700; }
.confirmation-actions { display: grid; gap: 12px; max-width: 420px; margin-inline: auto; }
.telegram-note { max-width: 490px; margin: 16px auto 0; color: var(--ink-soft); font-size: 13px; }
.telegram-fallback { margin: 20px 0 0; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--teal-50); }
.telegram-fallback p { margin: 0 0 10px; font-size: 14px; }

.content-section, .comparison-section, .pricing-section, .privacy-section, .faq-section { padding: 105px 0; }
.content-section { background: var(--teal-50); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.feature-grid article { min-height: 245px; padding: 30px; border: 1px solid #d4e8e6; border-radius: var(--radius-md); background: #fff; box-shadow: 0 10px 25px rgba(11,72,79,.04); }
.feature-number { color: var(--coral); font-size: 13px; font-weight: 850; letter-spacing: .08em; }
.feature-grid h3 { margin: 54px 0 10px; color: var(--teal-950); font-size: 20px; line-height: 1.3; }
.feature-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.comparison-section { background: #fff; }
.comparison-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.comparison-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.comparison-cards article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.comparison-cards .highlighted { color: #fff; border-color: var(--teal-800); background: var(--teal-800); box-shadow: var(--shadow); }
.comparison-label { display: inline-block; padding: 4px 9px; border-radius: 20px; color: var(--teal-800); background: var(--teal-100); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.highlighted .comparison-label { color: var(--teal-950); background: #fff; }.comparison-cards h3 { margin: 40px 0 10px; font-size: 23px; }.comparison-cards p { margin: 0; color: var(--ink-soft); font-size: 14px; }.comparison-cards .highlighted p { color: #dcebec; }
.pricing-section { padding-block: 55px; background: var(--blue-50); }
.pricing-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 45px 55px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.pricing-card h2 { margin: 0; color: var(--teal-950); font-size: 38px; }.pricing-card p:last-child { max-width: 650px; margin: 8px 0 0; color: var(--ink-soft); }
.pricing-card .button { flex: 0 0 auto; }
.privacy-section { background: #fff; }
.privacy-card { display: grid; grid-template-columns: auto 1fr; gap: 30px; max-width: 920px; padding: 45px 50px; border-radius: var(--radius-lg); color: #fff; background: var(--teal-950); }
.privacy-symbol { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 18px; color: var(--teal-950); background: #fff; font-size: 25px; }
.privacy-card .eyebrow { color: #7fe0d9; }.privacy-card h2 { margin: 0; font-size: 32px; line-height: 1.2; }.privacy-card p:not(.eyebrow) { max-width: 720px; color: #d0e0e2; }
.legal-links { display: flex; gap: 24px; margin-top: 22px; }.legal-links a { font-size: 13px; font-weight: 700; text-underline-offset: 4px; }
.faq-section { background: var(--blue-50); }
.faq-shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; color: var(--teal-950); font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--teal-700); font-size: 22px; font-weight: 400; }
.faq-list details p { max-width: 680px; margin: -3px 45px 22px 0; color: var(--ink-soft); font-size: 14px; }
.site-footer { padding-top: 58px; color: #d9e6e7; background: #062f35; }
.brand-light { color: #fff; }.brand-light .brand-mark { border-color: #91cbcb; }.brand-light .brand-mark::before, .brand-light .brand-mark::after { background: #91cbcb; }
.footer-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-bottom: 45px; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; }.footer-main nav a { color: #b8cdcf; }
.footer-bottom { padding-block: 20px 28px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { max-width: 900px; margin: 0; color: #8fabaf; font-size: 11px; }

@media (max-width: 880px) {
  .main-nav { display: none; }.header-inner { min-height: 68px; }.header-inner .button { margin-left: auto; }
  .hero { padding-top: 62px; }.hero-grid { grid-template-columns: 1fr; gap: 45px; padding-bottom: 55px; }.hero-copy { text-align: center; }.hero .eyebrow, .hero-actions { justify-content: center; }.hero-lead { margin-inline: auto; }
  .radar-visual { min-height: 350px; }.radar { width: 330px; }.signal-card { left: calc(50% - 190px); }
  .steps-strip { grid-template-columns: 1fr; gap: 12px; }.steps-strip i { display: none; }
  .steps-strip div { justify-content: flex-start; }
  .comparison-grid, .faq-shell { grid-template-columns: 1fr; gap: 45px; }
  .three-options { grid-template-columns: 1fr; }.feature-grid { grid-template-columns: 1fr; }.feature-grid article { min-height: auto; }.feature-grid h3 { margin-top: 30px; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { gap: 12px; }.brand { font-size: 16px; }.brand-mark { width: 31px; height: 31px; flex-basis: 31px; }
  .header-inner .button { min-height: 40px; padding: 9px 12px; font-size: 12px; }
  .hero { padding-top: 46px; }.hero h1 { font-size: 39px; }.hero-lead { margin-top: 22px; font-size: 17px; }.hero-actions { flex-direction: column; gap: 18px; }.hero-actions .button { width: 100%; }
  .radar-visual { min-height: 300px; }.radar { width: 275px; }.signal-card { left: 0; bottom: 15px; }
  .steps-strip { padding: 20px; border-radius: 16px 16px 0 0; }
  .builder-section, .content-section, .comparison-section, .privacy-section, .faq-section { padding: 72px 0; }
  .builder-heading { text-align: left; }.builder-heading > p:last-child { margin-inline: 0; }
  .wizard-card { margin-inline: -5px; border-radius: 20px; }.progress-wrap { padding: 21px 20px; border-radius: 20px 20px 0 0; }
  .progress-steps small { display: none; }.progress-steps li span { width: 26px; height: 26px; }
  .wizard-alert { align-items: flex-start; flex-direction: column; margin: 18px 18px 0; }
  .wizard-panel { min-height: 390px; padding: 36px 22px 25px; }.step-intro { margin-bottom: 25px; }
  .method-grid, .criteria-grid, .two-options, .comparison-cards { grid-template-columns: 1fr; }
  .method-card { min-height: 74px; }.criteria-heading { display: block; }.criteria-heading p { margin-top: 5px; }
  .search-results { position: relative; top: 4px; max-height: 235px; }
  .choice-card { min-height: 94px; }.recommended { margin-top: 7px; }
  .wizard-controls { padding: 15px 18px calc(15px + env(safe-area-inset-bottom)); border-radius: 0 0 20px 20px; }
  .wizard-controls .button { flex: 1; padding-inline: 15px; }
  .summary-card div { grid-template-columns: 1fr; gap: 2px; }.summary-card dd { overflow-wrap: anywhere; }
  .pricing-card { align-items: flex-start; flex-direction: column; padding: 32px 25px; }.pricing-card .button { width: 100%; }
  .privacy-card { grid-template-columns: 1fr; padding: 35px 26px; }.privacy-card h2 { font-size: 28px; }
  .footer-main { flex-direction: column; }.footer-main nav { justify-content: flex-start; gap: 16px 22px; }
}

@media (max-width: 400px) {
  .header-inner { gap: 8px; }
  .brand { gap: 7px; font-size: 14px; }
  .brand-mark { width: 28px; height: 28px; flex-basis: 28px; }
  .header-inner .button { padding-inline: 8px; font-size: 11px; }
  .hero h1 { font-size: 35px; }
}

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