:root {
  --bg: #f6f8fc;
  --paper: #ffffff;
  --ink: #101828;
  --muted: #5d667a;
  --line: #e4e9f2;
  --dark: #18191f;
  --dark-2: #242632;
  --blue: #0788f5;
  --blue-2: #0058ff;
  --cyan: #17d4c1;
  --magenta: #ff2bbf;
  --yellow: #ffd93d;
  --shadow: 0 16px 42px rgba(13, 32, 71, 0.1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

.nowrap {
  white-space: nowrap;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(24, 25, 31, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: #0b1830;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(7, 136, 245, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.header-nav a:hover,
.email-link:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.email-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 88, 255, 0.24);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

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

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.button-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
}

.mail-icon {
  position: relative;
  width: 18px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.mail-icon::before {
  left: 0;
  transform: rotate(33deg);
  transform-origin: left center;
}

.mail-icon::after {
  right: 0;
  transform: rotate(-33deg);
  transform-origin: right center;
}

.section {
  padding: 80px 0;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 43, 191, 0.22), transparent 26%),
    radial-gradient(circle at 18% 86%, rgba(23, 212, 193, 0.18), transparent 30%),
    var(--dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 76px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -190px;
  width: 62vw;
  height: 330px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-2));
  border-radius: 52% 0 0 0;
  opacity: 0.62;
}

.hero-grid,
.hero-cards {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 50px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.section-dark .eyebrow,
.section-blue .eyebrow {
  color: var(--cyan);
}

h1 {
  max-width: 720px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.variant-hero h1 {
  font-size: clamp(30px, 3.36vw, 46px);
}

h2 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.hero-copy .lead {
  white-space: pre-line;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-facts span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.contact-note a {
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.microcopy {
  max-width: 570px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 32, 71, 0.12);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(7, 136, 245, 0.28), transparent 38%, rgba(255, 43, 191, 0.18));
  mix-blend-mode: screen;
}

.visual-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.compact-card,
.feature-card,
.list-card,
.result-item,
.step-card {
  border-radius: 8px;
}

.compact-card {
  padding: 20px;
  color: #fff;
  background: rgba(24, 25, 31, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.compact-card p,
.feature-card p,
.step-card p,
.result-item p,
.list-card li,
.section-heading p,
.text-stack p {
  color: var(--muted);
}

.compact-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.section-mission {
  background: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 14px;
  font-size: 16px;
}

.callout,
.accent-line {
  padding: 18px 20px;
  color: #0f2346;
  background: linear-gradient(90deg, rgba(23, 212, 193, 0.13), rgba(7, 136, 245, 0.09));
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 750;
}

.callout-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--magenta);
}

.section-blue {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(23, 212, 193, 0.94), rgba(7, 136, 245, 0.95) 46%, rgba(0, 88, 255, 0.96)),
    var(--blue);
}

.section-blue .section-heading p,
.section-blue .list-card li,
.section-blue .step-card p {
  color: rgba(255, 255, 255, 0.76);
}

.section-blue .feature-card {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.section-blue .feature-card p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p {
  font-size: 16px;
}

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

.list-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-blue .list-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.list-card h3 {
  margin-bottom: 16px;
}

.list-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-card li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
}

.list-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.section-blue .list-card li::before {
  border-color: var(--yellow);
}

.list-card-accent {
  border-top: 5px solid var(--magenta);
}

.list-card-dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.list-card-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.list-card-dark li::before {
  border-color: var(--magenta);
}

.accent-line {
  margin-top: 22px;
  box-shadow: none;
}

.section-blue .accent-line {
  color: #fff;
  background: rgba(24, 25, 31, 0.18);
  border-left-color: var(--yellow);
}

.section-mission .step-card,
.section-muted .step-card {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(13, 32, 71, 0.07);
}

.section-mission .step-card p,
.section-muted .step-card p {
  color: var(--muted);
}

.section-mission .step-card span,
.section-muted .step-card span {
  color: var(--blue);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 100%;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(13, 32, 71, 0.07);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card::before {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
  border-radius: 999px;
}

.feature-card-blue {
  color: #fff;
  background: var(--blue-2);
  border-color: var(--blue-2);
}

.feature-card-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.section-muted {
  background: #eef3fb;
}

.review-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-slide {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 32, 71, 0.08);
  scroll-snap-align: start;
}

.review-slide picture,
.review-slide img,
.review-slide object {
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f9fc;
}

.review-slide img,
.review-slide object {
  object-fit: contain;
}

.review-slide object {
  min-height: 360px;
  border: 0;
}

.review-slide figcaption {
  padding: 12px 14px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-head {
  color: #fff;
  background: var(--dark);
  font-weight: 900;
}

.comparison-head div,
.comparison-row div {
  padding: 18px 20px;
}

.comparison-row div {
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.comparison-row div + div,
.comparison-head div + div {
  border-left: 1px solid var(--line);
}

.comparison-head div + div {
  border-left-color: rgba(255, 255, 255, 0.16);
}

.comparison-mobile {
  display: none;
}

.section-legal {
  position: relative;
  overflow: hidden;
}

.section-legal::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(255, 217, 61, 0.18);
  border-radius: 50%;
}

.section-dark .text-stack p {
  color: rgba(255, 255, 255, 0.74);
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.result-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.result-item p {
  margin-top: 8px;
}

.section-illustration {
  width: 100%;
  max-width: 1060px;
  margin: 28px auto 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(13, 32, 71, 0.1);
}

.section-blue .section-illustration {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 52px rgba(0, 48, 120, 0.16);
}

.section-illustration--perimeter {
  max-width: 980px;
}

.section-layout-perimeter {
  padding: 48px 0;
}

.section-layout-perimeter .section-heading {
  gap: 8px;
  margin-bottom: 20px;
}

.section-layout-perimeter .variant-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.section-layout-perimeter .feature-card {
  padding: 18px;
}

.section-layout-perimeter .feature-card::before {
  width: 26px;
  margin-bottom: 12px;
}

.section-layout-perimeter .feature-card h3 {
  margin-bottom: 8px;
}

.section-layout-perimeter .section-illustration--perimeter {
  max-width: 620px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.section-layout-perimeter .accent-line {
  margin-top: 18px;
}

.section-illustration--result {
  max-width: 860px;
}

.section-illustration--comparison {
  max-width: 100%;
  position: relative;
}

.section-layout-comparison {
  padding: 50px 0 56px;
}

.section-layout-comparison .section-heading {
  margin-bottom: 22px;
}

.section-layout-comparison .section-illustration--comparison {
  margin-top: 20px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.comparison-overlay {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: -1px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-top: 1px solid var(--line);
}

.comparison-overlay__panel {
  display: grid;
  align-content: start;
  padding: 11px 12px;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 32, 71, 0.08);
}

.comparison-overlay__panel--manual {
  background: linear-gradient(135deg, rgba(230, 255, 252, 0.94), rgba(232, 244, 255, 0.94));
  border-color: rgba(7, 136, 245, 0.24);
}

.comparison-overlay strong {
  display: block;
  margin-bottom: 6px;
  color: #101828;
  font-size: 14.5px;
  line-height: 1.2;
}

.comparison-overlay__panel--auto strong {
  color: #5d667a;
}

.comparison-overlay__panel--manual strong {
  color: var(--blue);
}

.comparison-overlay ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-overlay li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.22;
}

.comparison-overlay li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.comparison-overlay__panel--auto li::before {
  content: "×";
  color: #7a8496;
}

.comparison-overlay__panel--manual li {
  color: #101828;
}

.comparison-overlay__panel--manual li::before {
  content: "✓";
  color: var(--blue);
}

.section-layout-result {
  padding: 48px 0;
}

.section-layout-result > .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px 28px;
  align-items: center;
}

.section-layout-result .section-heading {
  grid-column: 1 / -1;
  gap: 8px;
  margin-bottom: 2px;
}

.section-layout-result .variant-card-grid {
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: stretch;
}

.section-layout-result .feature-card {
  padding: 16px 18px;
}

.section-layout-result .feature-card::before {
  width: 26px;
  margin-bottom: 12px;
}

.section-layout-result .feature-card h3 {
  margin-bottom: 8px;
}

.section-layout-result .section-illustration--result {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  align-self: center;
}

.section-layout-result .accent-line {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.section-illustration--process {
  max-width: 980px;
}

.section-layout-process {
  padding: 56px 0 58px;
}

.section-layout-process .section-heading {
  margin-bottom: 28px;
}

.section-illustration picture,
.section-illustration img {
  display: block;
  width: 100%;
}

.section-illustration img {
  height: auto;
}

.section-illustration figcaption {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -15px;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 12px;
}

.process-steps {
  gap: 34px;
}

.process-steps .step-card {
  min-height: 260px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 54px rgba(13, 32, 71, 0.14);
}

.process-steps .step-card:not(:last-child)::after {
  content: "→";
  top: 48%;
  right: -28px;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.process-steps .step-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.process-steps .step-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.43;
}

.process-step-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 98px;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(7, 136, 245, 0.1), transparent 38%),
    #fff;
}

.process-step-number {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 999px;
  font-size: 15px !important;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(7, 136, 245, 0.22);
}

.process-icon {
  width: min(86px, 52%);
  height: auto;
  overflow: visible;
}

.process-icon [stroke] {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-icon [stroke="#26384c"] {
  stroke: #2f4358;
  stroke-width: 4.2;
}

.process-icon [stroke="#1987ff"] {
  stroke-width: 4;
}

.process-icon [stroke="#b8c4d4"],
.process-icon [stroke="#d5dce6"] {
  stroke-width: 4.2;
}

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

.trust-grid .feature-card:nth-child(5) {
  grid-column: span 2;
}

.fit-card {
  margin: 0;
}

.accent-line.inside {
  margin-top: 24px;
  font-size: 16px;
}

.final-cta {
  padding: 88px 0;
}

.final-inner {
  max-width: 760px;
  text-align: center;
}

.final-inner .eyebrow {
  display: block;
  width: auto;
  color: #3ee181;
  margin-left: auto;
  margin-right: auto;
}

.final-inner h2 {
  margin: 0 auto;
}

.final-inner p {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.lead-form {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 30px auto 0;
  padding: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

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

.lead-field,
.lead-check {
  display: grid;
  gap: 7px;
}

.lead-field span,
.lead-check span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font: inherit;
  outline: 0;
}

.lead-field textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.lead-field select {
  appearance: none;
}

.lead-field small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(23, 212, 193, 0.16);
}

.lead-form__checks {
  display: grid;
  gap: 10px;
}

.lead-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.lead-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.lead-check span {
  line-height: 1.4;
}

.lead-check a,
.cookie-banner__text a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form__submit {
  width: fit-content;
  min-width: 190px;
}

.lead-form__status {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.lead-form__status[hidden] {
  display: none;
}

.lead-form__status.is-success {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  color: #dffdf8;
  background:
    radial-gradient(circle at 100% 0%, rgba(62, 225, 129, 0.2), transparent 34%),
    rgba(23, 212, 193, 0.12);
  border: 1px solid rgba(62, 225, 129, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.lead-form__status-icon {
  position: relative;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--cyan), #3ee181);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(23, 212, 193, 0.22);
}

.lead-form__status-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 8px;
  height: 14px;
  border: solid #071526;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.lead-form__status-copy {
  display: grid;
  gap: 4px;
}

.lead-form__status-copy strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.lead-form__status-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.lead-form__status.is-error,
.lead-field__error {
  color: #ff8c8c;
}

.lead-form__status.is-error {
  padding: 12px 14px;
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 140, 140, 0.28);
  border-radius: 8px;
}

.lead-field.has-error input,
.lead-field.has-error select,
.lead-field.has-error textarea {
  border-color: #ff8c8c;
}

.lead-field__error {
  font-size: 13px;
  font-weight: 700;
}

.lead-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.useful-materials {
  margin-top: 44px;
}

.useful-materials__heading {
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
}

.useful-materials__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 5vw, 42px);
}

.useful-materials__heading p {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.useful-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(174px, 12.8vw, 188px);
  align-items: start;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.useful-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  scroll-snap-align: start;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  scroll-snap-stop: always;
}

.useful-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(23, 212, 193, 0.48);
}

.useful-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.useful-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.useful-card strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.22;
  min-height: 36px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.email-display {
  display: block;
  margin: 26px auto 20px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0d0e13;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr) minmax(240px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.footer-brand,
.footer-requisites,
.footer-docs {
  display: grid;
  gap: 8px;
}

.footer-brand p,
.footer-requisites p {
  margin: 0;
}

.footer-copy {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-docs span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-docs a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
  line-height: 1.35;
}

.footer-docs a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 14px;
}

.legal-hero {
  padding: 82px 0 74px;
}

.legal-hero h1 {
  max-width: 920px;
}

.legal-content-section {
  background: var(--bg);
  padding: 50px 0 68px;
}

.legal-content {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.legal-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-card-muted {
  background: #f9fbff;
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.legal-card p + p {
  margin-top: 8px;
}

.legal-text-card h2 {
  margin-bottom: 16px;
}

.legal-document-text {
  color: #253044;
  font-size: 14px;
  line-height: 1.56;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: anywhere;
}

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

.legal-document-text h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
}

.legal-document-title {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  text-align: left;
}

.legal-bullet {
  position: relative;
  padding-left: 18px;
}

.legal-bullet::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
}

.legal-document-text a {
  overflow-wrap: anywhere;
}

.privacy-goals {
  display: grid;
  gap: 18px;
  margin: 20px 0 24px;
}

.privacy-goal {
  display: grid;
  gap: 10px;
}

.privacy-goal h3 {
  margin-bottom: 0;
}

.privacy-goal-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.privacy-goal-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.privacy-goal-table th,
.privacy-goal-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: #253044;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.privacy-goal-table tr:first-child th,
.privacy-goal-table tr:first-child td {
  border-top: 0;
}

.privacy-goal-table th {
  width: 30%;
  background: #f6f8fc;
  color: var(--ink);
  font-weight: 850;
}

.privacy-goal-table p {
  margin: 0 0 8px;
}

.privacy-goal-table p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--blue-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-hero {
  padding: 82px 0 74px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
}

.content-hero h1 {
  max-width: 920px;
}

.content-dates {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 750;
}

.content-page-section {
  background: var(--bg);
  padding: 50px 0 72px;
}

.content-page-layout {
  max-width: 920px;
}

.content-page-card {
  padding: 34px;
  color: #253044;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 17px;
  line-height: 1.68;
}

.content-page-card h2 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.content-page-card h2:first-child {
  margin-top: 0;
}

.content-page-card h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.content-page-card p,
.content-page-card ul,
.content-page-card ol {
  margin: 0 0 16px;
}

.content-page-card ul,
.content-page-card ol {
  padding-left: 22px;
}

.content-page-card li + li {
  margin-top: 8px;
}

.content-page-card strong {
  color: var(--ink);
}

.content-page-card a {
  color: var(--blue-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-page-card blockquote {
  margin: 20px 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #eef7ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
}

.content-updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.content-related,
.content-cta {
  margin-top: 34px;
  padding: 24px;
  background: #f4f8ff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-summary {
  margin: 18px 0 28px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #eefcff 0%, #f3f7ff 100%);
  border: 1px solid #cfe7ff;
  border-radius: 8px;
}

.content-summary h2 {
  margin-top: 0;
}

.content-summary ul {
  margin-bottom: 0;
}

.content-related h2,
.content-cta h2 {
  margin-top: 0;
}

.content-cta {
  display: grid;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, #141720 0%, #153432 42%, #43203a 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.content-cta h2,
.content-cta p {
  color: #fff;
}

.content-cta p {
  max-width: 720px;
}

.content-cta .button {
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.legal-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.legal-card dl div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.legal-card dl div:first-child {
  border-top: 0;
}

.legal-card dt {
  color: var(--muted);
  font-weight: 800;
}

.legal-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: min(520px, calc(100% - 44px));
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: #fff;
  background: rgba(24, 25, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.cookie-banner__text {
  display: grid;
  gap: 6px;
}

.cookie-banner__text strong {
  color: var(--cyan);
}

.cookie-banner__text p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.variant-overview h1 {
  max-width: 880px;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.version-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 32, 71, 0.07);
}

.version-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.version-card p {
  color: var(--muted);
}

.version-framework {
  min-height: 48px;
  color: var(--ink) !important;
  font-weight: 800;
}

.variant-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.variant-pas .section-dark {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 43, 191, 0.28), transparent 28%),
    radial-gradient(circle at 14% 90%, rgba(255, 217, 61, 0.16), transparent 26%),
    #16171e;
}

.variant-pas .button {
  background: linear-gradient(135deg, #ff2bbf, #0058ff);
}

.variant-pas .feature-card::before {
  background: linear-gradient(90deg, var(--yellow), var(--magenta));
}

.variant-story .section-dark {
  background:
    radial-gradient(circle at 78% 22%, rgba(23, 212, 193, 0.18), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255, 217, 61, 0.14), transparent 28%),
    #102033;
}

.variant-story .button {
  background: linear-gradient(135deg, #17d4c1, #0058ff);
}

.variant-story .feature-card::before {
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
}

.variant-aida .section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 88, 255, 0.28), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255, 43, 191, 0.18), transparent 28%),
    #18191f;
}

.calc-hero {
  padding: 72px 0 78px;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.calc-copy h1 {
  max-width: 780px;
}

.calc-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.calc-ban-alert {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  color: #ffe8e8;
  background: rgba(185, 28, 28, 0.22);
  border: 1px solid rgba(255, 180, 180, 0.34);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.calc-ban-alert strong {
  color: #fff;
  font-size: 15px;
}

.calc-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.calc-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font: inherit;
  outline: 0;
}

.calc-field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(23, 212, 193, 0.16);
}

.calc-field select option {
  color: var(--ink);
}

.calc-check.has-error span {
  color: #ffb1b1;
}

.calc-form__submit {
  width: fit-content;
}

.calc-form__note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.calc-result-section {
  padding: 52px 0;
  background: #eef3fb;
}

.calc-result-card {
  display: grid;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calc-result-card--failed {
  border-color: rgba(255, 82, 82, 0.28);
}

.calc-delivery-notice,
.calc-form-errors {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.calc-delivery-notice {
  position: relative;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: #07524a;
  background:
    radial-gradient(circle at 96% 10%, rgba(62, 225, 129, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(23, 212, 193, 0.16), rgba(7, 136, 245, 0.08)),
    #f5fffc;
  border: 1px solid rgba(23, 212, 193, 0.34);
  box-shadow: 0 16px 34px rgba(13, 32, 71, 0.08);
}

.calc-delivery-notice::before {
  content: "";
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
  background: linear-gradient(135deg, var(--cyan), #3ee181);
  border-radius: 50%;
}

.calc-delivery-notice::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 29px;
  width: 9px;
  height: 16px;
  border: solid #063a35;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.calc-delivery-notice strong {
  color: #062f2b;
  font-size: 17px;
  line-height: 1.2;
}

.calc-delivery-notice span {
  color: #45605d;
}

.calc-form-errors {
  color: #8a1717;
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.22);
}

.calc-result-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding-bottom: 4px;
}

.calc-result-card .eyebrow {
  margin-bottom: 8px;
}

.calc-result-lead {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.calc-result-badge {
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 136, 245, 0.2);
}

.calc-result-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.calc-result-badge strong {
  font-size: 18px;
  line-height: 1.1;
}

.calc-result-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.calc-result-list div {
  position: relative;
  min-height: 96px;
  padding: 16px 18px 16px 20px;
  background:
    linear-gradient(90deg, rgba(23, 212, 193, 0.09), transparent 46%),
    #f7faff;
  border: 1px solid #dfe7f3;
  border-radius: 8px;
  overflow: hidden;
}

.calc-result-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.calc-result-list .calc-result-list__primary {
  background:
    radial-gradient(circle at 92% 12%, rgba(23, 212, 193, 0.18), transparent 34%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
}

.calc-result-list .calc-result-list__status dd {
  color: #07524a;
}

.calc-result-list dt {
  margin-bottom: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 850;
}

.calc-result-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.calc-result-list--teaser dd {
  font-size: 18px;
}

.calc-result-gate {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: 20px;
  background: #f7faff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calc-result-gate__copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 4px 4px 4px 8px;
}

.calc-result-gate__eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.calc-result-gate h3 {
  max-width: 340px;
  font-size: 23px;
  line-height: 1.18;
}

.calc-result-gate p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.calc-result-benefits {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.calc-result-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.calc-result-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 50%;
}

.calc-result-benefits li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calc-email-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(13, 32, 71, 0.08);
}

.calc-email-form .lead-field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.calc-email-form .lead-field input {
  min-height: 52px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.calc-email-form .lead-field input::placeholder {
  color: #98a2b3;
}

.calc-email-form .lead-field input:focus {
  border-color: var(--blue);
  box-shadow:
    0 0 0 3px rgba(7, 136, 245, 0.14),
    0 1px 2px rgba(16, 24, 40, 0.04);
}

.calc-email-form .lead-field.has-error input {
  border-color: #e5484d;
}

.calc-email-form .lead-check {
  color: var(--ink);
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
  font-weight: 650;
}

.calc-email-form .lead-check input {
  margin-top: 3px;
}

.calc-email-form .lead-check span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.calc-email-form .calc-check.has-error span {
  color: #8a1717;
}

.calc-email-form .lead-check a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calc-email-form .calc-form__submit {
  width: 100%;
  margin-top: 2px;
}

.calc-result-disclaimer {
  max-width: 780px;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .calc-form {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 680px;
  }

  .hero {
    padding: 56px 0 66px;
  }

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

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

  .process-steps {
    gap: 16px;
  }

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

  .section-layout-result > .container {
    grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
    gap: 16px 22px;
  }

  .section-layout-result .variant-card-grid {
    grid-template-columns: 1fr;
  }

  .section-layout-perimeter .variant-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-carousel {
    grid-auto-columns: minmax(280px, 48%);
  }

  .useful-carousel {
    grid-auto-columns: clamp(166px, 23vw, 184px);
  }

  .step-card::after {
    display: none;
  }

  .calc-result-list {
    grid-template-columns: 1fr;
  }

  .calc-result-header {
    grid-template-columns: 1fr;
  }

  .calc-result-badge {
    width: fit-content;
  }

  .calc-result-gate {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .calc-result-gate__copy {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .header-actions .email-link {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: static;
  }

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

  .header-actions {
    width: auto;
    display: flex;
    justify-self: end;
  }

  .email-link {
    color: #fff;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

  .site-header .button {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 38px 0 50px;
  }

  .calc-hero {
    padding: 44px 0 54px;
  }

  .hero::after {
    right: -36vw;
    bottom: -150px;
    width: 120vw;
    height: 260px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: clamp(32px, 6vw, 38px);
    line-height: 1.08;
  }

  .variant-hero h1 {
    font-size: clamp(26px, 4.8vw, 30px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.14;
  }

  .lead,
  .section-heading p,
  .text-stack,
  .callout,
  .accent-line {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 22px;
  }

  .contact-note {
    display: none;
  }

  .split-cards,
  .card-grid.three,
  .card-grid.four,
  .steps,
  .trust-grid,
  .version-grid,
  .variant-card-grid,
  .two-column,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-layout-perimeter .variant-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .trust-grid .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .visual-panel {
    transform: none;
  }

  .visual-panel img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .section-illustration {
    margin: 22px auto 24px;
  }

  .section-layout-result {
    padding: 48px 0;
  }

  .section-layout-result > .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-layout-result .variant-card-grid,
  .section-layout-result .section-illustration--result,
  .section-layout-result .accent-line {
    grid-column: 1;
    grid-row: auto;
  }

  .section-layout-result .variant-card-grid {
    grid-template-columns: 1fr;
  }

  .section-layout-result .section-illustration--result {
    max-width: min(100%, 620px);
    margin: 0 auto 2px;
  }

  .section-layout-process {
    padding: 48px 0;
  }

  .process-steps .step-card {
    min-height: auto;
  }

  .process-step-visual {
    min-height: 104px;
  }

  .comparison-table {
    display: none;
  }

  .comparison-mobile {
    display: grid;
    gap: 16px;
  }

  .comparison-overlay {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .comparison-overlay ul {
    grid-template-columns: 1fr;
  }

  .comparison-overlay__panel {
    padding: 12px 14px;
    box-shadow: none;
  }

  .comparison-overlay li {
    font-size: 14px;
  }

  .result-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .result-item span {
    width: 44px;
    height: 44px;
  }

  .review-carousel {
    grid-auto-columns: minmax(260px, 86%);
  }

  .useful-carousel {
    grid-auto-columns: clamp(152px, 44vw, 172px);
    gap: 14px;
  }

  .review-slide {
    min-height: 320px;
  }

  .review-slide object {
    min-height: 320px;
  }

  .list-card,
  .feature-card,
  .result-item,
  .compact-card,
  .step-card {
    padding: 20px;
  }

  .final-cta {
    padding: 62px 0;
  }

  .lead-form {
    padding: 18px;
    gap: 14px;
  }

  .calc-form,
  .calc-result-card {
    padding: 18px;
  }

  .lead-form__grid,
  .calc-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-field input,
  .lead-field select,
  .lead-field textarea {
    min-height: 46px;
  }

  .lead-field span,
  .lead-check span {
    font-size: 13px;
  }

  .lead-form__submit {
    width: 100%;
  }

  .calc-form__submit {
    width: 100%;
  }

  .site-footer {
    padding: 40px 0;
  }

  .footer-inner {
    gap: 28px;
  }

  .legal-hero {
    padding: 54px 0;
  }

  .content-hero {
    padding: 54px 0;
  }

  .content-page-section {
    padding: 40px 0 54px;
  }

  .content-page-card {
    padding: 20px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .content-page-card h2 {
    margin-top: 24px;
    font-size: 22px;
  }

  .content-page-card h3 {
    font-size: 18px;
  }

  .legal-content-section {
    padding: 40px 0 54px;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-document-text {
    font-size: 13.5px;
    line-height: 1.52;
    text-align: justify;
  }

  .legal-document-text h3 {
    font-size: 15px;
  }

  .privacy-goal-table {
    overflow: visible;
  }

  .privacy-goal-table table,
  .privacy-goal-table tbody,
  .privacy-goal-table tr,
  .privacy-goal-table th,
  .privacy-goal-table td {
    display: block;
    width: 100%;
  }

  .privacy-goal-table tr {
    border-top: 1px solid var(--line);
  }

  .privacy-goal-table tr:first-child {
    border-top: 0;
  }

  .privacy-goal-table th,
  .privacy-goal-table td {
    border-top: 0;
  }

  .privacy-goal-table th {
    padding-bottom: 6px;
  }

  .privacy-goal-table td {
    padding-top: 0;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner__inner,
  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    gap: 14px;
  }

  .cookie-banner__actions {
    display: grid;
  }
}

@media (min-width: 680px) and (max-width: 760px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .card-grid.three,
  .card-grid.four,
  .steps,
  .trust-grid,
  .variant-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-layout-perimeter .variant-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    gap: 16px;
  }

  .process-steps .step-card {
    min-height: 240px;
  }

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

  .lead-form__submit {
    width: fit-content;
  }

  .section-layout-result .section-illustration--result {
    max-width: 540px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand {
    align-items: center;
  }

  .brand small {
    max-width: 270px;
  }

  .hero {
    padding-top: 32px;
  }

  h1 {
    font-size: 32px;
  }

  .variant-hero h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-visual {
    margin-inline: 0;
  }

  .visual-panel {
    border-radius: 6px;
  }

  .visual-panel img {
    max-width: 100%;
    width: 100%;
    transform: none;
  }

  .section-illustration {
    margin: 18px auto 22px;
  }

  .section-illustration--process {
    margin-left: -6px;
    width: calc(100% + 12px);
  }

  .section-illustration--process {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .lead-form {
    margin-top: 24px;
    padding: 16px;
  }

  .lead-check {
    grid-template-columns: 18px 1fr;
  }

  .lead-check input {
    width: 16px;
    height: 16px;
  }

  .email-display {
    padding: 18px 14px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 58px;
    padding: 8px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small,
  .header-actions .email-link {
    display: none;
  }

  .site-header .button {
    min-height: 38px;
    padding: 0 16px;
  }

  .hero {
    padding: 30px 0 38px;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

  h1 {
    max-width: none;
    font-size: 34px;
  }

  .variant-hero h1 {
    font-size: 27px;
  }

  .lead {
    max-width: 760px;
    margin-top: 12px;
    font-size: 16px;
  }

  .hero-facts {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .section,
  .section-layout-result,
  .section-layout-process {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-illustration {
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .final-cta {
    padding: 52px 0;
  }

  .useful-materials {
    margin-top: 30px;
  }

  .useful-materials__heading {
    margin-bottom: 12px;
  }

  .useful-materials__heading h2 {
    font-size: 30px;
  }

  .useful-materials__heading p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
  }

  .useful-carousel {
    grid-auto-columns: 144px;
    gap: 12px;
    padding-bottom: 12px;
  }

  .useful-card {
    gap: 8px;
    padding: 10px;
  }

  .useful-card strong {
    min-height: 34px;
    font-size: 14px;
    line-height: 1.2;
  }
}
