:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --ink: #10141f;
  --ink-soft: #5c6677;
  --muted: #8a94a5;
  --line: #e8edf3;
  --line-strong: #dce3ec;
  --accent: #ff5a1f;
  --accent-dark: #e64912;
  --navy: #07111d;
  --navy-2: #121a13;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --max: 1320px;
  --header-h: 86px;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.layout {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(0, 1fr) minmax(210px, auto);
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  color: var(--ink);
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.nav-open .site-header {
  top: 12px;
  height: 72px;
  padding: 0 18px;
  border: 1px solid rgba(220, 227, 236, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand__copy strong {
  font-size: 18px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__copy small {
  max-width: 240px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: grid;
  justify-items: end;
  gap: 3px;
  color: var(--ink);
  white-space: nowrap;
}

.header-phone strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.header-phone span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-h) + 58px) 0 36px;
  overflow: hidden;
  background: #fbfcff;
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  filter: none;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__wash {
  background:
    linear-gradient(90deg, #fbfcff 0%, rgba(251, 252, 255, 0.93) 30%, rgba(251, 252, 255, 0.22) 56%, rgba(251, 252, 255, 0) 78%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.04) 0%, rgba(246, 248, 251, 0.22) 100%);
}

.hero__grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 78px;
  align-items: start;
}

.hero__content {
  max-width: 700px;
  padding-top: 20px;
}

.badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 30px;
  padding: 0 20px;
  border: 1.5px solid rgba(255, 90, 31, 0.72);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.08), 0 14px 28px rgba(15, 23, 42, 0.07);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.12);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(41px, 4.75vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.hero-payout {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: inline-grid;
  width: min(100%, 500px);
  gap: 7px;
  margin-top: 26px;
  padding: 16px 22px 18px 26px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 245, 0.96));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12), 0 10px 24px rgba(255, 90, 31, 0.10);
  backdrop-filter: blur(14px);
}

.hero-payout::before {
  display: none;
}

.hero-payout::after {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: var(--accent);
}

.hero-payout span {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 90, 31, 0.08);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-payout strong {
  font-size: 42px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-points div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.hero-points svg {
  width: 40px;
  height: 40px;
  padding: 7px;
  border: 1px solid #ffd3c0;
  border-radius: 50%;
  background: #fff7f3;
  color: var(--accent);
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-points span {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #ff6a27 0%, var(--accent) 100%);
  box-shadow: 0 18px 34px rgba(255, 90, 31, 0.24);
}

.button--primary:hover {
  background: linear-gradient(180deg, #ff7434 0%, var(--accent-dark) 100%);
  box-shadow: 0 22px 44px rgba(255, 90, 31, 0.30);
}

.button--secondary {
  color: var(--ink);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.78);
}

.button--secondary:hover {
  background: #fff4ef;
}

.hero-card {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 32px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
}

.hero-card p {
  margin: -4px 0 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-card label {
  display: grid;
  gap: 7px;
}

.hero-card > label > span {
  color: var(--muted);
  font-size: 0;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.js select.is-enhanced-region {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.region-select {
  position: relative;
  width: 100%;
}

.region-select.is-open,
.hero-card label:has(.region-select.is-open) {
  z-index: 45;
}

.region-select__button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.region-select__button:hover,
.region-select.is-open .region-select__button {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.region-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.region-select__chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.82;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.region-select.is-open .region-select__chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.region-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 326px;
  padding: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.region-select.is-open .region-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.region-select__menu::-webkit-scrollbar {
  width: 9px;
}

.region-select__menu::-webkit-scrollbar-track {
  background: #f3f6fa;
  border-radius: 999px;
}

.region-select__menu::-webkit-scrollbar-thumb {
  border: 2px solid #f3f6fa;
  border-radius: 999px;
  background: #ffb195;
}

.region-select__option {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.region-select__option:hover,
.region-select__option:focus-visible {
  color: var(--accent-dark);
  background: #fff3ed;
  outline: none;
}

.region-select__option[aria-selected="true"] {
  color: #fff;
  background: var(--accent);
}

.region-select__option[aria-selected="true"]:hover,
.region-select__option[aria-selected="true"]:focus-visible {
  color: #fff;
  background: var(--accent-dark);
}

.hero-card .button,
.cta-form .button {
  width: 100%;
  min-height: 58px;
}

.consent-list {
  display: grid;
  gap: 8px;
}

.consent-switch {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  cursor: pointer;
}

.consent-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.switch-ui {
  position: relative;
  width: 38px;
  height: 22px;
  border: 1px solid #d9e1eb;
  border-radius: 999px;
  background: #eef3f8;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.switch-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.16);
  transition: transform 160ms ease;
}

.consent-switch input:checked + .switch-ui {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.1);
}

.consent-switch input:checked + .switch-ui::after {
  transform: translateX(16px);
}

.consent-switch input:focus-visible + .switch-ui {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.consent-switch a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-switch a:hover {
  color: var(--accent);
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.benefit-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.benefit-strip article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.round-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #ffd8c9;
  border-radius: 50%;
  background: #fff7f3;
}

.round-icon svg,
.step-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.benefit-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head a,
.faq-card__head a {
  color: #273b75;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.section-head span {
  margin-left: 8px;
}

.specialties {
  padding-top: 84px;
  background: var(--surface);
}

.section-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  color: var(--accent-dark);
  background: #fff5ef;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.specialties-head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.specialties-head p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.specialty-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.specialty-filterbar button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.specialty-filterbar button:hover,
.specialty-filterbar button.is-active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(255, 90, 31, 0.2);
}

.specialty-filterbar span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.specialty-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.specialty-card[hidden] {
  display: none;
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.specialty-card__media {
  position: relative;
  display: grid;
  min-height: 176px;
  place-items: center;
  overflow: hidden;
  color: var(--accent);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.11) 0%, rgba(255, 255, 255, 0.84) 52%, rgba(90, 103, 122, 0.1) 100%),
    #f7f9fc;
}

.specialty-card__media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 90, 31, 0.16);
  border-radius: 8px;
}

.specialty-card__media img {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 76px;
  height: 76px;
  opacity: 0.1;
}

.specialty-card__media.has-image img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.specialty-card__media b {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 800;
}

.specialty-card__media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.specialty-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.specialty-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specialty-card__meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: #f2f5f8;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.specialty-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 800;
}

.specialty-card p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.specialty-card__place {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.specialty-card__footer {
  display: grid;
  gap: 7px;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.specialty-card strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.specialty-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.specialty-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.specialty-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.specialty-more .button {
  width: auto;
  min-width: 220px;
}

.process {
  background: #fff;
}

.process h2 {
  margin-bottom: 48px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 70px;
  right: 70px;
  height: 1px;
  background: var(--line-strong);
}

.process-step {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 14px;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.process-step small {
  position: absolute;
  top: 30px;
  left: 94px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.documents-faq {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.docs-card,
.faq-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.docs-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 70%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.docs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 58%, rgba(255,255,255,0.58) 100%);
}

.docs-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.docs-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 36px;
}

.docs-columns div {
  padding: 24px;
  border: 1px solid rgba(232, 237, 243, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.docs-columns h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
}

.docs-columns ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding-left: 0 !important;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.faq-card {
  padding: 32px;
}

.faq-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.faq-list {
  min-width: 0;
  overflow-x: hidden;
  border-top: 1px solid var(--line);
}

.faq-list details {
  min-width: 0;
  overflow-x: hidden;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  list-style: none;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--ink);
  transition: transform 160ms ease, color 160ms ease;
}

.faq-list details[open] summary::after {
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-list p {
  margin: -4px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.cta {
  padding-top: 36px;
  background: #f6f8fb;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
  padding: 52px 46px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 18, 15, 0.97) 0%, rgba(20, 29, 19, 0.96) 100%);
  box-shadow: var(--shadow);
}

.cta-panel:has(.region-select.is-open) {
  overflow: visible;
}

.cta-panel__watermark {
  position: absolute;
  right: 48px;
  top: 28px;
  width: 340px;
  opacity: 0.08;
  filter: grayscale(1) brightness(2.2);
}

.cta-copy,
.cta-form {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.16;
  font-weight: 800;
}

.cta-copy p {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cta-form input,
.cta-form select {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.cta-form .region-select__button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.cta-form .region-select__button:hover,
.cta-form .region-select.is-open .region-select__button {
  border-color: rgba(255, 90, 31, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.18);
}

.cta-form .region-select__menu {
  max-height: 280px;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.cta-form option {
  color: var(--ink);
}

.cta-form select[name="contact"] {
  grid-column: 1 / -1;
}

.cta-form .button,
.cta-form .consent-list,
.cta-form .form-status {
  grid-column: 1 / -1;
}

.cta-form .consent-switch {
  color: rgba(255, 255, 255, 0.62);
}

.cta-form .switch-ui {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 58px 0 34px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-brand .brand {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
}

.footer-brand .brand__mark,
.footer-brand .brand__copy {
  margin: 0;
}

.footer-brand .brand__copy {
  display: grid;
  gap: 4px;
  color: var(--ink);
}

.footer-brand .brand__copy strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.footer-brand .brand__copy small {
  display: block;
  max-width: 230px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.thanks-page {
  min-height: 100svh;
  background: #f4f7fb;
}

.thanks-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.thanks-header {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(calc(100% - 64px), var(--max));
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 18px 0;
}

.thanks-header .brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.thanks-header .button {
  width: auto;
  min-width: 150px;
  padding: 0 22px;
  white-space: nowrap;
}

.thanks-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 86px);
  align-items: center;
  padding: 58px 0 86px;
}

.thanks-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.thanks-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fbfcff 0%, rgba(251, 252, 255, 0.92) 42%, rgba(251, 252, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.26) 0%, rgba(244, 247, 251, 0.88) 100%);
}

.thanks-hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--max));
  max-width: 680px;
  margin: 0 auto;
  margin-left: max(32px, calc((100% - var(--max)) / 2));
}

.thanks-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.thanks-hero p:not(.badge) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 700;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.thanks-actions .button {
  width: auto;
  min-width: 210px;
}

.legal-page {
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.legal-header .brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.legal-header .button {
  width: auto;
  min-width: 150px;
  padding: 0 22px;
  white-space: nowrap;
}

.legal-document {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-document h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.legal-document h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.legal-meta {
  display: grid;
  gap: 6px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-requisites {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.legal-requisites span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 620px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.cookie-banner .button {
  min-height: 44px;
  padding: 0 22px;
  white-space: nowrap;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.05) translate3d(-1%, -0.8%, 0);
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto auto;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 32px;
    right: 32px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .header-phone {
    grid-column: 3;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialties-head {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line::before {
    display: none;
  }

  .split-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 980px) and (max-height: 520px) and (orientation: landscape) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    max-width: 500px;
  }

  .hero-points div {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .hero-points svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 74px;
  }

  .layout,
  .site-header {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    height: 74px;
  }

  .site-header.is-scrolled,
  .nav-open .site-header {
    top: 8px;
    height: 66px;
    padding: 0 10px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .brand__copy small {
    max-width: 170px;
    font-size: 10px;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 40px;
  }

  .hero__image {
    object-position: 76% center;
    opacity: 0.92;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, #fbfcff 0%, rgba(251, 252, 255, 0.9) 54%, rgba(251, 252, 255, 0.24) 100%),
      linear-gradient(180deg, rgba(251, 252, 255, 0.28) 0%, rgba(246, 248, 251, 0.82) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 0;
  }

  .badge {
    margin-bottom: 26px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero-payout {
    margin-top: 22px;
    padding: 16px 14px 18px 20px;
  }

  .hero-payout strong {
    font-size: 32px;
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-points div {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .hero-points svg {
    width: 40px;
    height: 40px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-card {
    padding: 24px 18px;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .benefit-strip article {
    min-height: auto;
  }

  .section {
    padding: 58px 0;
  }

  .section-head,
  .faq-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .specialties-head {
    margin-bottom: 24px;
  }

  .specialties-head p {
    font-size: 14px;
  }

  .specialty-filterbar {
    flex-wrap: nowrap;
    width: min(calc(100% - 28px), var(--max));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .specialty-filterbar button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card__media {
    min-height: 154px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0 18px;
  }

  .process-step small {
    position: static;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 8px;
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .step-icon {
    grid-row: 1 / span 3;
  }

  .docs-card__content,
  .faq-card {
    padding: 24px 18px;
  }

  .docs-columns,
  .cta-form {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .docs-card img {
    width: 100%;
    height: 45%;
  }

  .cta-panel {
    gap: 34px;
    padding: 34px 18px;
  }

  .cta-panel__watermark {
    right: -30px;
    width: 230px;
  }

  .legal-shell {
    width: min(calc(100% - 28px), 920px);
    padding: 22px 0 48px;
  }

  .legal-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
  }

  .legal-header .brand {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
  }

  .legal-header .brand__copy {
    min-width: 0;
  }

  .legal-header .brand__copy strong {
    font-size: 15px;
  }

  .legal-header .button {
    width: auto;
    min-width: 128px;
    min-height: 54px;
    padding: 0 16px;
    font-size: 13px;
  }

  .thanks-header {
    width: min(calc(100% - 28px), var(--max));
    min-height: 74px;
    gap: 12px;
    padding: 12px 0;
  }

  .thanks-header .brand {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
  }

  .thanks-header .brand__copy {
    min-width: 0;
  }

  .thanks-header .brand__copy strong {
    font-size: 15px;
  }

  .thanks-header .button {
    width: auto;
    min-width: 126px;
    min-height: 52px;
    padding: 0 14px;
    font-size: 13px;
  }

  .thanks-hero {
    min-height: calc(100svh - 74px);
    padding: 44px 0 62px;
  }

  .thanks-hero__image {
    object-position: 76% center;
  }

  .thanks-hero__wash {
    background:
      linear-gradient(90deg, #fbfcff 0%, rgba(251, 252, 255, 0.93) 58%, rgba(251, 252, 255, 0.32) 100%),
      linear-gradient(180deg, rgba(251, 252, 255, 0.22) 0%, rgba(244, 247, 251, 0.9) 100%);
  }

  .thanks-hero__content {
    width: min(calc(100% - 28px), var(--max));
    margin: 0 auto;
  }

  .thanks-hero h1 {
    font-size: 40px;
  }

  .thanks-hero p:not(.badge) {
    font-size: 16px;
  }

  .thanks-actions {
    gap: 12px;
  }

  .thanks-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand__copy small {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-payout strong {
    font-size: 28px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .legal-header {
    gap: 10px;
  }

  .legal-header .button {
    min-width: 118px;
    padding: 0 14px;
  }
}

@media (max-width: 360px) {
  .hero-payout strong {
    font-size: 25px;
  }

  .legal-header .brand {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .legal-header .brand__mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .legal-header .brand__copy strong {
    font-size: 14px;
  }

  .legal-header .button {
    min-width: 110px;
    min-height: 50px;
    padding: 0 12px;
    font-size: 12px;
  }
}
