:root {
  --ink: #001f1f;
  --ink-70: #3b4a4a;
  --ink-50: #5c7070;
  --ink-40: #6a7878;
  --ink-30: #889494;
  --bg: #f7f6f2;
  --accent: #1f8a45;
  --accent-dark: #176b35;
  --mint: #cdface;
  --lime: #f8fbe7;
  --lime-2: #eff5ce;
  --aqua: #e4f7f9;
  --lilac: #e1e1fa;
  --rose: #fcf2fe;
  --star: #ffb400;
  --radius: 14px;
  --radius-lg: 43px;
  --pill: 29px;
  --shadow-card: rgba(0,31,31,0.07) 0 18px 28px -14px, rgba(0,31,31,0.06) 0 5px 10px -5px, rgba(0,31,31,0.09) 0 0 0 1px;
  --shadow-tint: rgba(0,31,31,0.07) 0 18px 28px -14px, rgba(0,31,31,0.06) 0 5px 10px -5px, rgba(0,31,31,0.06) 0 0 0 1px;
  --shadow-big: rgba(0,31,31,0.10) 0 32px 48px -20px, rgba(0,31,31,0.07) 0 12px 20px -10px, rgba(0,31,31,0.08) 0 2px 4px -2px, rgba(0,31,31,0.09) 0 0 0 1px;
  --cta-gradient: linear-gradient(100deg, #1f8a45 0%, #1f8a45 38%, #47c274 50%, #1f8a45 62%, #1f8a45 100%);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--bg); }

body {
  font-family: 'Onest', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: #2a4e1c; text-decoration: underline; }

h1, h2, h3 { font-family: inherit; font-weight: 700; font-size:40px; margin: 0; }

h2{
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.024em;
  line-height: 1;}

h3{
  margin: 20px 0 8px;
  font-weight: 500;
  font-size: 22px;
}


img { max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- типографика ---------- */
.h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.2;
}
.h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.024em;
  line-height: 1;
}
.h2--mt { margin-top: 20px; }
.h2--light { color: #fff; }
.h3 { margin: 36px 0 12px; font-size: 22px; font-weight: 600; }
.h3--light { margin: 20px 0 8px; font-weight: 500; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(0,31,31,0.10);
  border-radius: 8px;
  background: var(--lime-2);
  color: #56685a;
  box-shadow: rgba(0,31,31,0.05) 0 6px 12px -8px;
}
.badge__label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #8aa07f; }
.note {
  position: relative;
  /* max-width: 620px; */
  margin: 0;
  padding: 8px 0 8px 32px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink-70);
}
.note::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(180deg, #1f8a45 0%, #8fd6a4 100%);
  -webkit-mask: url('../images/note-lines.svg') left center / auto 100% no-repeat;
  mask: url('../images/note-lines.svg') left center / auto 100% no-repeat;
}
.note--sm::before {
  -webkit-mask: url('../images/note-lines.svg') left center / auto 42px no-repeat;
  mask: url('../images/note-lines.svg') left center / auto 42px no-repeat;
}
.btn {
  display: inline-block;
  padding: 13px 18px;
  border: none;
  border-radius: 15px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.btn--cta {
  color: #fff;
  background: var(--cta-gradient);
  background-size: 260% 100%;
  animation: ctaShine 1.6s linear infinite;
}
.btn--cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.btn--block { width: 100%; padding: 16px 18px; font-size: 16px; }
.btn--mint {
  flex: 1 1 200px;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: var(--pill);
  color: var(--ink);
  background: linear-gradient(100deg, #cdface 0%, #cdface 38%, #f2ffdc 50%, #cdface 62%, #cdface 100%);
  background-size: 260% 100%;
  animation: ctaShine 1.6s linear infinite;
}
.btn--mint:hover { filter: brightness(0.96); }

@keyframes ctaShine {
  0% { background-position: 140% 0; }
  100% { background-position: -40% 0; }
}
.topbar { background: #eef2ea; border-bottom: 1px solid rgba(0,31,31,0.08); }
.topbar__inner {
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar__city { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #4a5a52; }
.topbar__hours { font-size: 12px; font-weight: 600; color: #4a5a52; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,31,31,0.1);
  box-shadow: rgba(0,31,31,0.06) 0 8px 20px -12px;
}
.header__row {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #e4f7f9 0 6px, #cdface 6px 12px);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
}
.logo__text { display: flex; flex-direction: column; gap: 4px; }
.logo__brand { font-size: 19px; font-weight: 500; line-height: 1; }
.logo__slogan { font-size: 12px; color: var(--ink-40); line-height: 1; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 12px; min-width: 0; }
.nav__links { display: flex; align-items: center; gap: 20px; }
.nav__links a { font-size: 14px; font-weight: 500; color: #455252; }
.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); }

.mobile-menu {
  border-top: 1px solid rgba(0,31,31,0.1);
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}
.section { padding: 72px 0 0; }
.section--first { padding: 48px 0 0; display: flex; flex-direction: column; gap: 20px; }
.section--last { padding: 72px 0; }
.section--faq{ padding-bottom:150px;}

.head-stack { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

.grid { display: grid; gap: 12px; }
.grid--240 { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid--300 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.hero { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 36px; }
.cabinet-hero-copy { flex: 1 1 480px; min-width: 0; display: flex; flex-direction: column; justify-content: normal; align-items: flex-start; gap: 24px; overflow-wrap: anywhere; }
.calc { flex: 1 1 480px; box-shadow: var(--shadow-big); }
.calc__field { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.calc__field-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.calc__label { font-size: 14px; color: var(--ink-50); }
.calc__value { font-size: 30px; font-weight: 600; }
.calc__limits { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-30); }
.calc__form { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

.range { width: 100%; height: 24px; -webkit-appearance: none; appearance: none; background: transparent; }
.range::-webkit-slider-runnable-track { height: 6px; border-radius: 7px; background: #dfe4e0; }
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px; width: 24px;
  margin-top: -9px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--mint);
  cursor: pointer;
}
.range::-moz-range-track { height: 6px; border-radius: 7px; background: #dfe4e0; }
.range::-moz-range-thumb {
  height: 20px; width: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--mint);
  cursor: pointer;
}

.day-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.day-btn {
  flex: 1 1 76px;
  min-width: 0;
  padding: 12px 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid rgba(0,31,31,0.15);
  border-radius: 15px;
  cursor: pointer;
}
.day-btn:hover { filter: brightness(0.96); }
.day-btn.is-active { background: var(--mint); border-color: var(--accent); }

.total {
  margin-top: 20px;
  background: var(--aqua);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.total__label { font-size: 16px; }
.total__value { font-size: 24px; font-weight: 600; letter-spacing: -0.024em; line-height: 1; }
.total__note { flex: 1 1 100%; font-size: 12px; color: var(--ink-50); }

.input {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(0,31,31,0.15);
  border-radius: 12px;
}
.input--pill {
  flex: 1 1 160px;
  min-width: 140px;
  padding: 16px;
  background: #fff;
  border: none;
  border-radius: var(--pill);
}

.check {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--ink-50);
  cursor: pointer;
}
.check + .check { margin-top: 8px; }
.check input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 1.5px solid rgba(0,31,31,0.18);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: background 160ms ease, border-color 160ms ease;
}
.check input[type=checkbox]:checked { background: #a8d8b6; border-color: rgba(31,138,69,0.35); }
.check input[type=checkbox]:checked::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid #2f5f3f;
  border-bottom: 2px solid #2f5f3f;
  transform: translateY(-1px) rotate(-45deg);
}

.disclaimer { margin: 20px 0 0; font-size: 12px; line-height: 1.3; color: var(--ink-30); }

.hero__media {
  flex: 1 1 480px;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle, rgb(191,241,245) 32%, rgb(169,235,169) 64%, rgb(103,226,235));
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
}

.hero__media_img{
display: block;
border-radius: 29px;
}

.placeholder {
  width: 100%; height: 100%;
  min-height: 340px;
  border-radius: 29px;
  background: repeating-linear-gradient(135deg, #ffffff 0 10px, #f2f6f4 10px 20px);
  border: 1px solid rgba(0,31,31,0.12);
  display: flex; align-items: center; justify-content: center;
  box-shadow: rgba(0,31,31,0.08) 0 12px 24px -8px;
}
.placeholder span {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--ink-50);
  text-align: center;
  padding: 20px;
}
.stats { margin-top: 36px; }
.stat {
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-tint);
  display: flex; flex-direction: column; gap: 8px;
}
.stat--lime { background: var(--lime); }
.stat--aqua { background: var(--aqua); }
.stat--lilac { background: var(--lilac); }
.stat--rose { background: var(--rose); }
.stat__num { font-size: clamp(28px, 3vw, 47px); font-weight: 700; letter-spacing: -0.024em; line-height: 1; }
.stat__cap { font-size: 14px; color: var(--ink-50); }

.docs { margin-top: 12px; }
.docs__list { margin-top: 12px; gap: 8px; }
.doc {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg);
  font-size: 14px;
  font-weight: 500;
}
.doc:hover { background: var(--lime-2); text-decoration: none; }
.doc img { flex-shrink: 0; width: 22px; height: 27px; display: block; }
.apps { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px; }
.terms { flex: 1 1 380px; display: flex; flex-direction: column; gap: 8px; }
.terms__title { font-size: 19px; font-weight: 500; margin-bottom: 12px; }
.terms__row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,31,31,0.08);
  font-size: 14px;
}
.terms__row span { color: var(--ink-50); }
.terms__row b { font-weight: 500; }
.terms__row--last { border-bottom: none; }
.terms__note { margin: 8px 0 0; font-size: 13px; line-height: 1.45; color: var(--ink-40); text-wrap: pretty; }

.apps__window { flex: 1 1 480px; height: 520px; overflow: hidden; }
.apps__track { display: flex; flex-direction: column; gap: 12px; }
.app-card {
  height: 64px;
  flex: 0 0 64px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 8px;
}
.app-card__head { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; }
.app-card__name { font-size: 15px; font-weight: 600; }
.app-card__city { font-size: 12px; color: var(--ink-40); }
.app-card__date { font-size: 12px; color: var(--ink-30); }
.app-card__status {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 22px;
  border: 1px solid rgba(0,31,31,0.15);
}
.app-card__sum { font-size: 18px; font-weight: 700; letter-spacing: -0.024em; }
.app-bar { height: 5px; border-radius: 7px; background: #e8ecea; overflow: hidden; }
.app-bar__fill {
  height: 100%;
  border-radius: 7px;
  background-size: 260% 100%;
  animation: ctaShine 1.6s linear infinite;
  transition: width 400ms ease;
}
.app-bar__fill--new { background: linear-gradient(100deg, #e0a83c 0%, #e0a83c 38%, #ffe0a1 50%, #e0a83c 62%, #e0a83c 100%); }
.app-bar__fill--review { background: linear-gradient(100deg, #3aa6bd 0%, #3aa6bd 38%, #b7ecf7 50%, #3aa6bd 62%, #3aa6bd 100%); }
.app-bar__fill--paid { background: linear-gradient(100deg, #2a7d3c 0%, #2a7d3c 38%, #96e6ab 50%, #2a7d3c 62%, #2a7d3c 100%); }
.steps { margin-top: 36px; }
.step {
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-tint);
  display: flex; flex-direction: column; gap: 12px;
}
.step--aqua { background: var(--aqua); }
.step--lime { background: var(--lime); }
.step--lilac { background: var(--lilac); }
.step__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.step__title { font-size: 22px; font-weight: 500; }
.step__text { margin: 0; font-size: 16px; line-height: 1.3; color: var(--ink-50); }
.band {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 72px);
  background:
    radial-gradient(circle at 88% 12%, rgba(72,194,116,0.55) 0%, rgba(72,194,116,0) 46%),
    radial-gradient(circle at 10% 90%, rgba(103,226,235,0.35) 0%, rgba(103,226,235,0) 52%),
    linear-gradient(118deg, #001f1f 0%, #04352b 52%, #0a4a33 100%);
  box-shadow: rgba(0,31,31,0.10) 0 32px 48px -24px, rgba(0,31,31,0.06) 0 8px 16px -8px;
  display: flex; flex-wrap: wrap; gap: 20px 48px; align-items: center;
}
.band__text { flex: 1 1 320px; display: flex; flex-direction: column; gap: 12px; }
.band__sub { margin: 0; font-size: 16px; line-height: 1.3; color: var(--mint); }
.band__form { flex: 1 1 460px; display: flex; flex-wrap: wrap; gap: 8px; }
.reviews__head {
  margin-top: 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  text-align: center;
}
.rating-plate {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 16px;
  background: #fff;
  border: 1px solid rgba(0,31,31,0.10);
  border-radius: 22px;
  padding: 14px 24px;
  box-shadow: rgba(0,31,31,0.08) 0 14px 24px -14px, rgba(0,31,31,0.05) 0 4px 8px -4px;
}
.rating-plate__score { display: flex; align-items: baseline; gap: 6px; }
.rating-plate__score b { font-size: 30px; font-weight: 700; letter-spacing: -0.024em; line-height: 1; }
.rating-plate__score span { font-size: 22px; color: var(--ink-30); }
.rating-plate__sep { width: 1px; height: 24px; background: rgba(0,31,31,0.12); }
.rating-plate__text { font-size: 13px; color: var(--ink-50); text-align: left; }
.rating-plate__text b { font-weight: 600; color: var(--ink-70); }

.stars {
  color: var(--star);
  font-size: 16px;
  letter-spacing: 2px;
  text-shadow: rgba(180,110,0,0.35) 0 1px 2px;
}
.stars--lg { font-size: 24px; letter-spacing: 2px; }

.slider { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.slider__nav {
  width: 120px; height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #a3b0b0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.slider__nav:hover { color: var(--ink-50); }
.slider__window { align-self: stretch; overflow: hidden; height: 474px; border-radius: var(--radius); }
.slider__track {
  width: 60%;
  min-width: min(300px, 100%);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 420ms cubic-bezier(0.22,1,0.36,1);
}

.review {
  height: 150px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-tint);
  display: flex; flex-direction: column; gap: 12px;
}
.review__head { display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; min-width: 0; }
.review__avatar {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lilac);
  border: 1px solid rgba(0,31,31,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600;
}
.review__who { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.review__name,
.review__meta { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review__name { font-size: 16px; font-weight: 500; }
.review__meta { font-size: 12px; color: var(--ink-50); }
.review__rating {
  margin-left: auto;
  flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
}
.review__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink-70);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.partners { margin-top: 36px; }
.partner {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
}
.partner__head { align-items: center; gap: 12px; }
.partner__logo {
  height: 100px;
  padding-bottom: 15px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
}
.partner__title { display: flex; flex-direction: column; gap: 4px; }
.partner__name { font-size: 19px; font-weight: 500; }
.partner__rating { margin-left: auto; font-size: 14px; font-weight: 500; }
.partner__specs { display: flex; flex-direction: column; gap: 4px; }
.partner__row {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,31,31,0.06);
}
.partner__row:last-child { border-bottom: none; }
.partner__row span { color: var(--ink-50); }
.partner__row b { font-weight: 500; }
.partner__btn { margin-top: auto; border-radius: var(--pill); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 22px;
  background: var(--lime-2);
  border: 1px solid rgba(0,31,31,0.15);
}
.table-card { padding: 0; overflow: hidden; }
.table-scroll { overflow-x: auto; }
.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.compare th {
  padding: 14px 16px;
  background: var(--mint);
  border-bottom: 1px solid rgba(31,138,69,0.28);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #33513a;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  text-align: left;
}
.compare th:hover { background: #b8f199; }
.compare th.is-num { text-align: right; }
.compare th.is-sorted { color: #0f5c2c; }
.compare tbody tr { border-bottom: 1px solid rgba(0,31,31,0.06); cursor: pointer; }
.compare tbody tr:hover { background: var(--lime); }
.compare td { padding: 0; white-space: nowrap; }
.compare td a { display: block; padding: 14px 16px; color: var(--ink-70); }
.compare td a:hover { color: var(--accent); text-decoration: none; }
.compare td.is-num a { text-align: right; }
.compare td.is-strong a { font-weight: 600; color: var(--ink); }
.card.table-card { padding: 0; min-width: 0; max-width: 100%; }
.compare--api th { cursor: default; }
.compare--api thead th:hover { background: var(--mint); }
.compare--api thead th:has(.compare__sort) { padding: 0; }
.compare__sort {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; min-height: 44px; padding: 14px 16px; border: 0;
  background: transparent; color: inherit; font: inherit;
  letter-spacing: inherit; text-transform: inherit; text-align: left; cursor: pointer;
}
.compare__sort:not(:disabled):hover { background: var(--lime); }
.compare__sort:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.compare__sort:disabled { cursor: default; }
.compare__sort:disabled [data-sort-indicator] { visibility: hidden; }
.compare--api th[aria-sort="ascending"], .compare--api th[aria-sort="descending"] { color: var(--accent); }
.compare--api tbody tr { cursor: pointer; }
.compare--api tbody tr:focus-within { background: var(--lime); outline: 2px solid var(--accent); outline-offset: -2px; }
.compare--api td { padding: 14px 16px; }
.compare--api .compare__company {
  min-width: 190px; max-width: 260px; background: transparent;
  font-size: 14px; letter-spacing: normal; text-transform: none;
  white-space: normal; overflow-wrap: anywhere; border-bottom: 0;
}
.compare--api .compare__company:hover { background: transparent; }
.compare__legal { display: grid; gap: 3px; margin-top: 5px; color: var(--ink-50); font-size: 11px; font-weight: 400; }
.compare__empty { margin: 0; padding: 24px; color: var(--ink-50); }
.table-card .table-scroll:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.seo { display: flex; flex-wrap: wrap; gap: 20px 48px; }
.seo__main { flex: 1 1 560px; max-width: 900px; }
.seo__main p { font-size: 16px; line-height: 1.5; color: var(--ink-50); text-wrap: pretty; }
.seo__main ul,
.seo__main ol {
  margin: 12px 0;
  padding-left: 20px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 16px; line-height: 1.4;
  color: var(--ink-50);
}
.aside {
  flex: 1 1 300px;
  align-self: flex-start;
  position: sticky;
  top: 100px;
  background: var(--lime);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-tint);
  display: flex; flex-direction: column; gap: 12px;
}
.aside p { margin: 0; font-size: 16px; line-height: 1.4; }
.aside__btn { align-self: flex-start; }
.faq { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 28px;
  font: inherit;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq__sign {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.faq__a {
  margin: 0;
  padding: 0 28px 20px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-50);
  max-width: 900px;
}
.faq__a[hidden] { display: none; }
.promo {
  background: var(--aqua);
  border-radius: var(--radius-lg);
  box-shadow: rgba(0,31,31,0.10) 0 32px 48px -24px, rgba(0,31,31,0.06) 0 8px 16px -8px;
  padding: clamp(28px, 4vw, 72px);
  display: flex; flex-wrap: wrap; gap: 20px 48px; align-items: center;
}
.promo__text { flex: 1 1 420px; display: flex; flex-direction: column; gap: 12px; }
.promo__text p { margin: 0; font-size: 16px; line-height: 1.4; color: var(--ink-50); max-width: 640px; text-wrap: pretty; }
.stores { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.store {
  display: flex; align-items: center;
  height: 56px;
  padding: 0 22px;
  background: #fff;
  border: 1px solid rgba(0,31,31,0.12);
  border-radius: 15px;
  box-shadow: rgba(0,31,31,0.08) 0 10px 18px -12px;
}
.store:hover { border-color: rgba(31,138,69,0.45); text-decoration: none; }
.store img { height: 26px; width: auto; display: block; }
.promo__shot {
  flex: 0 1 280px;
  min-height: 320px;
  border-radius: 29px;
  background: repeating-linear-gradient(135deg, #ffffff 0 10px, #f2f6f4 10px 20px);
  border: 1px solid rgba(0,31,31,0.12);
  display: flex; align-items: center; justify-content: center;
}
.promo__shot span {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-50);
  text-align: center;
  padding: 20px;
}
.footer { background: var(--ink); color: #fff; }
.footer__grid {
  padding: 72px 20px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 36px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col:first-child { gap: 12px; }
.footer__col a { font-size: 14px; color: #fff; }
.footer__col a:hover { color: var(--mint); }
.footer__mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #003d3d 0 6px, #cdface 6px 12px);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink);
}
.footer__brand { font-size: 19px; font-weight: 500; }
.footer__about { margin: 0; font-size: 12px; line-height: 1.4; color: var(--ink-30); max-width: 320px; }
.footer__title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 4px;
}
.footer__pay {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 8px;
  padding-top: 12px;
}
.pay {
  height: 40px;
  padding: 0 14px;
  border-radius: 7px;
  background: #fff;
  display: flex; align-items: center;
}
.pay__img { width: auto; display: block; }
.pay__img--22 { height: 22px; }
.pay__img--18 { height: 18px; }
.pay__img--16 { height: 16px; }
.footer__bottom {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.footer__bottom span { font-size: 12px; color: var(--ink-30); }
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .burger { display: flex; }
}

@media (max-width: 700px) {
  .review { height: 248px; }
  .review__text { -webkit-line-clamp: 9; }
  .slider__window { height: 768px; }
}

@media (max-width: 620px) {
  .logo__slogan { display: none; }
  .header__cta { padding: 11px 13px; font-size: 13px; }
  .logo__brand { font-size: 17px; }
}

@media (max-width: 430px) {
  .logo__brand { display: none; }
  .header__cta { padding: 10px 12px; font-size: 12px; }
  .logo__mark { width: 38px; height: 38px; }
  .header__row { padding: 10px 12px; gap: 8px; }
  .burger { width: 40px; height: 40px; }
}
.card,
.faq__item,
.partner,
.review,
.app-card { background: var(--surface, #fff); }

.logo__image {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  flex: 0 0 auto;
}

.footer__logo { color: #fff; }
.footer__logo .logo__slogan { color: var(--ink-30); }
.footer__logo .logo__image { max-width: none; }

.lead-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.stat__title {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.stat__cap,
.partner__legal { margin: 0; }
.green-section-note { margin-top: 12px; }
.band__check { flex: 1 1 100%; color: var(--mint); }
.band__check input[type=checkbox] { background: #fff; }

.partner__logo--image { overflow: hidden; background: #fff; }
.partner__logo--image img { width: 100%; height: 100%; object-fit: contain; }
.partner__name { margin: 0; }
.partner__legal {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--ink-40);
}
.partners__empty { grid-column: 1 / -1; color: var(--ink-50); }

.promo__copy,
.promo__copy p { font-size: 18px; line-height: 1.4; color: var(--ink-50); padding-bottom: 20px;}
.promo__copy > :first-child { margin-top: 0; }
.promo__copy > :last-child { margin-bottom: 0; }

.green-contact-card { display: flex; flex-direction: column; gap: 14px; }
.green-contact-value { margin: 0; font-size: clamp(18px, 3vw, 26px); font-weight: 600; overflow-wrap: anywhere; }

.faq__a { display: block; }
.faq__a[hidden] { display: none; }

@media (max-width: 700px) {
  .section { padding-top: 52px; }
  .section--first { padding-top: 32px; }
  .section--last { padding-bottom: 52px; }
  .card { padding: 22px; }
  .slider__track { width: 100%; }
}
