:root {
  --ink: #071426;
  --ink-soft: #0e213d;
  --navy: #102b51;
  --blue: #2f6bff;
  --blue-dark: #1d4fd4;
  --mint: #66ead4;
  --mint-soft: #dffbf6;
  --paper: #f4f7fb;
  --white: #ffffff;
  --text: #101a2c;
  --muted: #677287;
  --line: #dde4ed;
  --warm: #d4b16d;
  --warm-soft: #f7eedc;
  --success: #087f63;
  --error: #c93434;
  --shadow-sm: 0 10px 30px rgba(10, 31, 62, 0.07);
  --shadow-md: 0 24px 70px rgba(10, 31, 62, 0.13);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --font: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 10px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(102, 234, 212, 0.75);
  outline-offset: 3px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 20, 38, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

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

.brand__mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(145deg, var(--mint), #a5f4e8);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.brand__mark::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.brand__mark span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
}

.brand__name {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand__name small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.58;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.header__nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--mint);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.header__nav a:hover {
  color: var(--white);
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.btn--lg {
  min-height: 54px;
  padding-inline: 26px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.btn--accent {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 12px 28px rgba(102, 234, 212, 0.17);
}

.btn--accent:hover {
  background: #85f0df;
  box-shadow: 0 16px 34px rgba(102, 234, 212, 0.24);
}

.btn--light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--light:hover {
  background: var(--mint-soft);
  border-color: var(--mint-soft);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
}

.btn--dark:hover {
  background: var(--navy);
  box-shadow: 0 13px 28px rgba(7, 20, 38, 0.18);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--ink);
  background-size: 54px 54px;
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -48%;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero__glow--one {
  top: 20%;
  left: -130px;
  width: 360px;
  height: 360px;
  background: rgba(47, 107, 255, 0.23);
}

.hero__glow--two {
  top: 10%;
  right: 2%;
  width: 300px;
  height: 300px;
  background: rgba(102, 234, 212, 0.1);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  align-items: center;
  gap: 70px;
  padding-block: 78px 86px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--mint);
}

.eyebrow span,
.survey__badge span {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(102, 234, 212, 0.1);
}

.hero__title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero__title em {
  color: var(--mint);
  font-style: normal;
}

.hero__text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

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

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: flex;
  flex-direction: column;
  min-width: 112px;
}

.hero__proof strong {
  font-size: 15px;
  font-weight: 700;
}

.hero__proof span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  min-height: 430px;
  margin-inline: auto;
}

.hero-card {
  position: absolute;
  width: min(100%, 455px);
  aspect-ratio: 1.586;
  border-radius: 28px;
}

.hero-card--back {
  top: 56px;
  left: 22px;
  background: linear-gradient(145deg, #1c3965, #0b1d36);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.hero-card--main {
  top: 72px;
  left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(145deg, #edfdfa 0%, #8aebdc 56%, #57cfbd 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  transform: rotate(3deg);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.35);
}

.hero-card--main::before {
  position: absolute;
  top: -110px;
  right: -70px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(7, 20, 38, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.07), 0 0 0 100px rgba(255, 255, 255, 0.05);
}

.hero-card__top,
.hero-card__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-card__brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card-network {
  position: relative;
  display: block;
  width: 54px;
  height: 30px;
}

.card-network i {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  background: #f04a30;
  border-radius: 50%;
}

.card-network i:first-child {
  left: 0;
}

.card-network i:last-child {
  right: 0;
  background: #f3b12c;
  opacity: 0.92;
}

.card-chip {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 39px;
  background:
    linear-gradient(90deg, transparent 31%, rgba(7, 20, 38, 0.25) 32%, rgba(7, 20, 38, 0.25) 35%, transparent 36%),
    linear-gradient(transparent 47%, rgba(7, 20, 38, 0.25) 48%, rgba(7, 20, 38, 0.25) 52%, transparent 53%),
    linear-gradient(145deg, #f3dc93, #c7a954);
  border: 1px solid rgba(7, 20, 38, 0.18);
  border-radius: 9px;
}

.hero-card__bottom {
  align-items: flex-end;
}

.hero-card__bottom span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-card__bottom small {
  margin-bottom: 3px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.46;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 180px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.float-card--top {
  top: 12px;
  right: 3px;
}

.float-card--bottom {
  bottom: 14px;
  left: -14px;
}

.float-card__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 11px;
  font-size: 17px;
}

.float-card span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 700;
}

.float-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(8, 127, 99, 0.1);
}

.trust-line {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-line__inner {
  display: grid;
  gap: 0;
}

.trust-line p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 22px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.trust-line p:last-child {
  border-bottom: 0;
}

.trust-line span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.section {
  padding-block: 96px;
}

.section-head {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-head--split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-kicker--light {
  color: var(--mint);
}

.products {
  background: var(--paper);
}

.audience-switch {
  flex: 0 0 auto;
}

.audience-switch > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.segmented {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.segmented__btn {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.segmented__btn.is-active {
  color: var(--white);
  background: var(--ink);
}

.products__grid {
  display: grid;
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  border-color: #cbd7e6;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card--premium {
  border-color: #ddcda9;
}

.product-card__flag {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  padding: 6px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-card__flag--premium {
  color: #664511;
  background: rgba(247, 238, 220, 0.92);
}

.product-card__flag--new {
  color: #055d4b;
  background: rgba(223, 251, 246, 0.94);
}

.mini-card {
  position: relative;
  height: 208px;
  overflow: hidden;
  color: var(--white);
}

.mini-card::before,
.mini-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.mini-card::before {
  top: -90px;
  right: -30px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.035), 0 0 0 84px rgba(255, 255, 255, 0.025);
}

.mini-card::after {
  right: 80px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.055);
}

.mini-card--gold {
  background: linear-gradient(135deg, #182b4b, #32598a);
}

.mini-card--instant {
  background: linear-gradient(135deg, #335cdc, #6d91ff);
}

.mini-card--elite {
  background: linear-gradient(135deg, #101010, #3a3328 56%, #a28247);
}

.mini-card--virtual {
  background: linear-gradient(135deg, #0a6d6a, #50cdbb);
}

.mini-card__label,
.mini-card__type,
.mini-card__chip,
.mini-card__signal,
.mini-card .card-network {
  position: absolute;
  z-index: 1;
}

.mini-card__label {
  top: 25px;
  left: 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mini-card__type {
  bottom: 24px;
  left: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mini-card__chip {
  top: 78px;
  left: 26px;
  width: 40px;
  height: 30px;
  background: linear-gradient(145deg, #f7df9b, #b99742);
  border-radius: 7px;
}

.mini-card__signal {
  top: 82px;
  left: 27px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.18em;
  transform: rotate(90deg);
}

.card-network--small {
  right: 24px;
  bottom: 21px;
  width: 45px;
  height: 25px;
}

.card-network--small i {
  width: 25px;
  height: 25px;
}

.product-card__body {
  padding: 27px;
}

.product-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card__eyebrow {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pill {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--blue-dark);
  background: #e9efff;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.pill--warm {
  color: #755517;
  background: var(--warm-soft);
}

.pill--mint {
  color: #05614f;
  background: var(--mint-soft);
}

.product-card__desc {
  min-height: 50px;
  margin: 15px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 10px;
  min-height: 94px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 23px;
  color: #26334a;
  font-size: 12px;
  font-weight: 600;
}

.feature-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  content: "✓";
  place-items: center;
  color: var(--blue-dark);
  background: #e9efff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.feature-list--warm li::before {
  color: #755517;
  background: var(--warm-soft);
}

.feature-list--mint li::before {
  color: #05614f;
  background: var(--mint-soft);
}

.tariff-line {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tariff-line span {
  max-width: 125px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.tariff-line strong {
  font-size: 12px;
  text-align: right;
}

.tariff-note {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.feature-section {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.feature-section__inner {
  display: grid;
  gap: 64px;
}

.feature-section__copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 22px 0 30px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  gap: 12px;
}

.benefit-grid article {
  padding: 25px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.benefit-grid article:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(102, 234, 212, 0.3);
}

.benefit-grid span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 32px 0 8px;
  color: var(--white);
  font-size: 16px;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.offer {
  background: var(--white);
}

.offer__box {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 34px;
  padding: 48px;
  background: linear-gradient(135deg, #eaf0ff, #edfcf9);
  border: 1px solid #dbe7ef;
  border-radius: var(--radius-lg);
}

.offer__box::after {
  position: absolute;
  top: -170px;
  right: -90px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(47, 107, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(47, 107, 255, 0.035), 0 0 0 120px rgba(47, 107, 255, 0.02);
}

.offer__copy,
.offer__action {
  position: relative;
  z-index: 1;
}

.offer h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.offer__copy > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
}

.offer__action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.offer__meta {
  color: var(--muted);
  font-size: 11px;
}

.steps {
  padding-top: 20px;
}

.steps__grid {
  display: grid;
  gap: 18px;
}

.steps__grid article {
  min-height: 225px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-dark);
  background: #e9efff;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 800;
}

.steps h3 {
  margin: 42px 0 8px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.survey {
  color: var(--white);
  background: linear-gradient(135deg, #0d2342, #071426 72%);
}

.survey__inner {
  display: grid;
  gap: 50px;
  align-items: start;
}

.survey__copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.survey__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 9px 13px;
  color: var(--mint);
  background: rgba(102, 234, 212, 0.08);
  border: 1px solid rgba(102, 234, 212, 0.18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 16px;
}

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

.form--survey {
  padding: 30px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.form__row {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #344157;
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  color: var(--text);
  background: #f9fbfd;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input::placeholder {
  color: #9ba5b4;
}

.field input[data-phone-input] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.field__hint {
  color: var(--muted);
  font-size: 10px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.1);
}

.field input:user-invalid,
.field select:user-invalid {
  border-color: var(--error);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.form__status {
  min-height: 19px;
  margin: -2px 0 0;
  font-size: 11px;
  font-weight: 600;
}

.form__status--success {
  color: var(--success);
}

.form__status--error {
  color: var(--error);
}

.footer {
  color: rgba(255, 255, 255, 0.66);
  background: #050e1d;
}

.footer__top {
  display: grid;
  gap: 24px;
  align-items: center;
  padding-block: 44px;
}

.footer__top > p {
  max-width: 520px;
  margin: 0;
  font-size: 13px;
}

.brand--footer {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom p {
  margin: 0;
  font-size: 9px;
}

.modal {
  width: min(calc(100% - 28px), 650px);
  max-height: min(90vh, 780px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
}

.modal::backdrop {
  background: rgba(3, 10, 22, 0.74);
  backdrop-filter: blur(7px);
}

.modal__panel {
  position: relative;
  padding: 34px;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--muted);
  background: var(--paper);
  border: 0;
  border-radius: 11px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  color: var(--ink);
  background: #e8edf4;
}

.modal__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.modal__subtitle {
  max-width: 520px;
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

@media (min-width: 680px) {
  .trust-line__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-line p {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-line p:last-child {
    border-right: 0;
  }

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

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

  .footer__top {
    grid-template-columns: auto 1fr auto;
  }
}

@media (min-width: 760px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 940px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  }

  .feature-section__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    align-items: center;
  }

  .offer__box {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .offer__action {
    align-items: flex-end;
  }

  .survey__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  }
}

@media (max-width: 939px) {
  .hero__inner {
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .feature-section__copy {
    max-width: 660px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    font-size: 12px;
  }

  .brand__name small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    gap: 52px;
    padding-block: 62px 66px;
  }

  .hero__title {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__proof {
    gap: 18px;
  }

  .hero__proof li {
    min-width: 95px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-card--main {
    top: 54px;
    left: 0;
    padding: 23px;
    border-radius: 22px;
  }

  .hero-card--back {
    top: 43px;
    left: 8px;
    border-radius: 22px;
  }

  .float-card--top {
    right: -2px;
    min-width: 155px;
  }

  .float-card--bottom {
    bottom: 0;
    left: 2px;
  }

  .section {
    padding-block: 72px;
  }

  .section-head--split {
    align-items: stretch;
    flex-direction: column;
  }

  .audience-switch {
    width: 100%;
  }

  .segmented__btn {
    flex: 1;
  }

  .mini-card {
    height: 190px;
  }

  .offer__box {
    padding: 31px 25px;
  }

  .modal__panel {
    padding: 30px 20px 24px;
  }

  .modal__close {
    top: 14px;
    right: 14px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .header__cta {
    display: none;
  }

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

  .float-card {
    padding: 10px 12px;
    transform: scale(0.9);
  }

  .float-card--top {
    transform-origin: top right;
  }

  .float-card--bottom {
    transform-origin: bottom left;
  }

  .product-card__body {
    padding: 23px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
