:root {
  --ink: #071426;
  --muted: #5d6c80;
  --navy: #061a37;
  --navy-2: #0a2c5c;
  --blue: #0969dc;
  --blue-2: #1a9af0;
  --cyan: #53d4ff;
  --sky: #eaf6ff;
  --white: #fff;
  --orange: #ff7a1a;
  --orange-2: #ffb31a;
  --line: rgba(9, 44, 84, 0.13);
  --shadow: 0 24px 70px rgba(5, 35, 75, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #f6faff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

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

button,
input {
  border: 0;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 62px);
}

h2 em {
  color: var(--blue);
  font-style: normal;
}

h1 > span,
h2 > span,
h2 > em {
  display: block;
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.eyebrow--light {
  color: #9ce5ff;
}

.eyebrow--dark {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(80, 188, 255, 0.15);
  background: rgba(4, 20, 43, 0.83);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 17, 38, 0.96);
  box-shadow: 0 14px 35px rgba(2, 14, 34, 0.22);
}

.scroll-progress {
  position: absolute;
  inset: auto auto -1px 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-2));
  box-shadow: 0 0 16px rgba(83, 212, 255, 0.8);
}

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

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

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px 14px 14px 4px;
  background: linear-gradient(145deg, #1a9ef4, #0755be);
  box-shadow: inset 0 1px rgba(255,255,255,.4), 0 8px 20px rgba(0, 112, 219, .28);
  font-size: 21px;
  font-weight: 900;
  font-style: italic;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text b {
  font-size: 16px;
  letter-spacing: .04em;
}

.brand__text small {
  margin-top: 5px;
  color: #9fc4e8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  color: #cbdcf1;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: linear-gradient(110deg, #0c72e2, #22a5f2);
  box-shadow: 0 9px 28px rgba(4, 108, 222, .28);
  font-size: 13px;
  font-weight: 800;
}

.header-cta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 10px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 68px 0 118px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 9% 17%, rgba(60, 190, 255, .22), transparent 23%),
    radial-gradient(circle at 88% 22%, rgba(35, 145, 255, .24), transparent 28%),
    linear-gradient(140deg, #04152d 0%, #082d60 57%, #073d79 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(111, 216, 255, .16);
  border-radius: 50%;
}

.hero::before {
  top: 13%;
  left: -8%;
  width: 420px;
  height: 420px;
}

.hero::after {
  right: -6%;
  bottom: -30%;
  width: 620px;
  height: 620px;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .24;
  background-image: radial-gradient(circle, rgba(177, 232, 255, .65) 1px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.18fr);
  grid-template-areas:
    "intro visual"
    "offer visual";
  align-items: center;
  gap: 26px 58px;
}

.hero__intro {
  grid-area: intro;
  align-self: end;
}

.hero__intro .eyebrow {
  color: #8ddcff;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 720;
}

.hero h1 strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 10px 40px rgba(36, 166, 255, .28);
}

@media (min-width: 1121px) {
  .hero__grid {
    grid-template-columns: minmax(560px, 1.03fr) minmax(0, .97fr);
    gap-inline: 40px;
  }

  .hero h1 {
    font-size: clamp(46px, 3.4vw, 50px);
  }

  .hero h1 > span,
  .hero h1 > strong {
    white-space: nowrap;
  }
}

.hero__visual {
  position: relative;
  grid-area: visual;
  align-self: stretch;
  min-height: 535px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 40px 40px 40px 10px;
  box-shadow: 0 40px 90px rgba(0, 6, 22, .42), inset 0 1px rgba(255,255,255,.18);
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: center;
}

@media (min-width: 901px) {
  .hero__visual img {
    object-position: right center;
  }
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 24, 52, 0) 64%, rgba(4, 18, 39, .35));
}

.sale-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  width: 104px;
  height: 104px;
  place-content: center;
  border: 5px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-2), var(--orange));
  box-shadow: 0 15px 36px rgba(255, 101, 14, .42);
  color: #fff;
  text-align: center;
  transform: rotate(-7deg);
}

.sale-badge span {
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.sale-badge small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.volume-chip {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(4, 22, 47, .77);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}

.hero__offer {
  grid-area: offer;
  align-self: start;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 22px;
  color: #bfd4ec;
  font-size: 17px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 25px;
  padding: 0;
  color: #eaf7ff;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}

.hero__checks li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  place-content: center;
  border-radius: 50%;
  background: rgba(67, 207, 255, .15);
  color: #7be3ff;
  content: "✓";
  font-size: 11px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(110deg, #0862d3 0%, #159bec 52%, #1ebfec 100%);
  box-shadow: 0 15px 32px rgba(11, 116, 218, .3), inset 0 1px rgba(255,255,255,.28);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .025em;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button::before {
  position: absolute;
  top: -50%;
  left: -35%;
  width: 25%;
  height: 200%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: rotate(20deg);
  animation: shine 4s ease-in-out infinite;
}

.button:hover {
  box-shadow: 0 20px 40px rgba(11, 116, 218, .38), inset 0 1px rgba(255,255,255,.28);
  filter: saturate(1.12);
  transform: translateY(-2px);
}

.button:focus-visible,
.slider-arrow:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(72, 205, 255, .65);
  outline-offset: 3px;
}

.button--hero {
  width: min(100%, 320px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.pulse {
  animation: soft-pulse 2.5s ease-in-out infinite;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 24px;
}

.price-old,
.price-new {
  display: grid;
}

.price-row small {
  margin-bottom: 3px;
  color: #91acc8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price-old del {
  color: #afc2d5;
  font-size: 20px;
  text-decoration-color: #ff805b;
  text-decoration-thickness: 2px;
}

.price-new strong {
  color: #46cfff;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
}

.price-save {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #9fbbd9;
  font-size: 10px;
  line-height: 1.3;
}

.price-save b {
  color: #fff;
  font-size: 13px;
}

.order-section {
  position: relative;
  z-index: 5;
  margin-top: -62px;
}

.order-section__shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.order-section__note {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 27px 23px;
  color: #fff;
  background: linear-gradient(145deg, #082957, #075fb8);
}

.order-section__icon {
  display: grid;
  flex: 0 0 45px;
  height: 45px;
  place-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #7fe1ff;
  font-weight: 900;
}

.order-section__note div {
  display: grid;
}

.order-section__note b {
  line-height: 1.2;
}

.order-section__note small {
  margin-top: 5px;
  color: #b7cce5;
  font-size: 11px;
}

.order_form {
  display: grid;
  grid-template-columns: 1.15fr .7fr 1fr 1fr 1.12fr;
  grid-template-areas:
    "promo promo  promo promo  promo"
    "offer offer  offer offer  offer"
    "head  price  name  phone  button"
    "head  price  trust trust  button";
  align-items: center;
  gap: 8px 14px;
  padding: 20px 22px;
  background: #fff;
}

/* Червона плашка акції — зверху форми, на всю ширину */
.bundle-offer {
  grid-area: promo;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3px 12px;
  margin-bottom: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e11020, #ff4242);
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(225, 16, 32, .30);
  animation: promo-pulse 1.8s ease-in-out infinite;
}
.bundle-offer__flame { font-weight: 900; font-size: 15px; letter-spacing: .02em; }
.bundle-offer__text { font-size: 13px; opacity: .97; }
.bundle-offer__text b { font-weight: 800; }
@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(225, 16, 32, .30); }
  50% { box-shadow: 0 12px 32px rgba(225, 16, 32, .55); }
}

/* Вибір кількості — власна зона, окремо від імені/телефону */
.offer-label {
  grid-area: offer;
  display: grid;
  gap: 5px;
}
.offer-label > span {
  color: #596b7f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.order_form__head {
  display: flex;
  grid-area: head;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order_form__head h2,
.order_form__head h3 {
  margin: 0;
  font-size: 21px;
}

.order_form__head h2 b {
  display: block;
  color: var(--blue);
}

.form-discount {
  display: grid;
  flex: 0 0 70px;
  height: 70px;
  place-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-2), var(--orange));
  box-shadow: 0 10px 24px rgba(255, 119, 22, .25);
  color: #fff;
  text-align: center;
  transform: rotate(5deg);
}

.form-discount strong {
  font-size: 19px;
  line-height: 1;
}

.form-discount span {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-price {
  display: grid;
  grid-area: price;
  justify-items: center;
}

.form-price del {
  color: #8995a5;
  font-size: 14px;
  text-decoration-color: #ff765d;
}

.form-price strong {
  color: var(--blue);
  font-size: 27px;
  line-height: 1.2;
}

.field-label {
  display: grid;
  gap: 5px;
}

.field-label:nth-of-type(1) {
  grid-area: name;
}

.field-label:nth-of-type(2) {
  grid-area: phone;
}

.field-label > span {
  color: #596b7f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.field {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #d8e3ef;
  border-radius: 13px;
  outline: 0;
  background: #f7faff;
  color: var(--ink);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field::placeholder {
  color: #91a0b2;
}

.field:focus {
  border-color: var(--blue-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 133, 231, .1);
}

.order_form > .button {
  grid-area: button;
  width: 100%;
  min-height: 56px;
  padding-inline: 18px;
  font-size: 12px;
}

.form-trust {
  grid-area: trust;
  margin: 0;
  color: #7b8998;
  font-size: 9px;
}

.section-heading {
  max-width: 660px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.section-heading--center {
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.benefits {
  padding-top: 126px;
  background:
    radial-gradient(circle at 10% 20%, rgba(49, 166, 241, .08), transparent 24%),
    #f6faff;
}

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

.benefit-card {
  position: relative;
  min-height: 290px;
  padding: 30px 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px 24px 24px 7px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(10, 61, 111, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  box-shadow: 0 24px 60px rgba(10, 61, 111, .13);
  transform: translateY(-5px);
}

.benefit-card:not(.benefit-card--accent):hover {
  border-color: transparent;
  background: linear-gradient(145deg, #082955, #0873cf);
  color: #fff;
  box-shadow: 0 24px 60px rgba(7, 77, 151, .25);
}

.benefit-card:not(.benefit-card--accent):hover .benefit-card__number {
  color: #b9d6ef;
}

.benefit-card:not(.benefit-card--accent):hover .benefit-card__icon {
  background: rgba(255,255,255,.13);
  color: #7ce2ff;
}

.benefit-card:not(.benefit-card--accent):hover p {
  color: #d6e8f7;
}

.benefit-card--accent {
  border-color: transparent;
  background: linear-gradient(145deg, #082955, #0873cf);
  color: #fff;
}

.benefit-card--accent p,
.benefit-card--accent .benefit-card__number {
  color: #b9d6ef;
}

.benefit-card__number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #adbbca;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.benefit-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 40px;
  place-content: center;
  border-radius: 18px 18px 18px 6px;
  background: linear-gradient(145deg, #dff5ff, #bce8ff);
  color: var(--blue);
  font-size: 25px;
  font-weight: 900;
}

.benefit-card--accent .benefit-card__icon {
  background: rgba(255,255,255,.13);
  color: #7ce2ff;
}

.benefit-card h3 {
  margin-bottom: 13px;
  font-size: 22px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefit-card.benefit-card--accent p {
  color: #d6e8f7;
}

.mid-cta {
  padding: 0 0 25px;
}

.mid-cta__inner {
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 38px;
  overflow: hidden;
  border-radius: 26px 26px 26px 8px;
  background:
    radial-gradient(circle at 72% 0, rgba(95, 218, 255, .26), transparent 33%),
    linear-gradient(110deg, #061a38, #083e7e);
  box-shadow: 0 22px 50px rgba(4, 42, 88, .18);
  color: #fff;
}

.mid-cta__inner > div {
  display: flex;
  align-items: center;
  gap: 19px;
}

.mid-cta__inner > div > span {
  display: grid;
  flex: 0 0 72px;
  height: 72px;
  place-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #7fddff;
  font-size: 14px;
  font-weight: 900;
}

.mid-cta p {
  display: grid;
  margin: 0;
}

.mid-cta b {
  font-size: 20px;
}

.mid-cta small {
  margin-top: 4px;
  color: #b6cee7;
}

.mid-cta .button {
  flex: 0 0 245px;
}

.how {
  overflow: hidden;
  background: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  align-items: center;
  gap: 76px;
}

.media-card {
  position: relative;
}

.media-card::before {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -30px;
  width: 75%;
  height: 75%;
  border-radius: 40px;
  background: linear-gradient(145deg, #c9eeff, #0a72d7);
  content: "";
  opacity: .42;
}

.media-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 34px 34px 34px 9px;
  box-shadow: 0 35px 70px rgba(6, 47, 93, .2);
  object-fit: cover;
}

.media-card__label {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 28px;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 16px 38px rgba(6, 38, 77, .18);
  color: #53667d;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.media-card__label span {
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.how__content h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.steps {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 0 0 24px;
}

.steps li:not(:last-child)::before {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 24px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--blue-2), #c8d8e7);
}

.steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-content: center;
  border: 1px solid #c9e2f5;
  border-radius: 17px 17px 17px 5px;
  background: #edf8ff;
  color: var(--blue);
  font-weight: 900;
}

.steps b {
  display: block;
  margin: 2px 0 4px;
  font-size: 17px;
}

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

.result {
  padding: 0;
  background: #fff;
}

.result__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 36px 36px 36px 10px;
  background: linear-gradient(145deg, #06182f, #083e7c);
  box-shadow: 0 34px 80px rgba(4, 35, 76, .22);
}

.result__copy {
  align-self: center;
  padding: 62px 54px;
  color: #fff;
}

.result__copy h2 {
  font-size: clamp(38px, 3.2vw, 48px);
}

.result__copy h2 em {
  color: #70dfff;
}

.result__copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #b9cee4;
}

.result__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 31px;
}

.result__facts > div {
  display: grid;
  padding: 14px 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.result__facts strong {
  color: #75dcff;
  font-size: 23px;
}

.result__facts span {
  color: #b8cee4;
  font-size: 9px;
  line-height: 1.25;
}

.button--light {
  background: linear-gradient(110deg, #fff, #dff5ff);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .2);
  color: #075eb9;
}

.result__media {
  position: relative;
  min-height: 600px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.result__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.reviews {
  background:
    radial-gradient(circle at 100% 0, rgba(45, 173, 248, .1), transparent 30%),
    #f6faff;
}

.reviews__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.reviews__top h2 {
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-content: center;
  border: 1px solid #cdddeb;
  border-radius: 17px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-size: 21px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.reviews__viewport {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px 24px 24px 7px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 50, 99, .08);
}

.review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
}

.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-content: center;
  border-radius: 16px 16px 16px 5px;
  background: linear-gradient(145deg, #dff5ff, #8bdcff);
  color: #0756ae;
  font-size: 13px;
  font-weight: 900;
}

.review-card__head div {
  display: grid;
}

.review-card__head b {
  font-size: 14px;
}

.review-card__head small {
  margin-top: 2px;
  color: #8996a6;
  font-size: 10px;
}

.verified {
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf8f1;
  color: #268f50;
  font-size: 9px;
  font-weight: 800;
}

.stars {
  margin: 24px 0 14px;
  color: #ffb31a;
  letter-spacing: .12em;
}

.review-card p {
  margin: 0;
  color: #53657a;
  font-size: 14px;
  line-height: 1.7;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 99px;
  background: #b8c8d8;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--blue);
}

.faq {
  background: #fff;
}

.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-content: center;
  border-radius: 50%;
  background: #edf7ff;
  color: var(--blue);
  font-size: 19px;
  transition: transform .2s ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 670px;
  margin: -4px 48px 24px 0;
  color: var(--muted);
}

.final-order {
  padding-top: 0;
  background: #fff;
}

.final-order__shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr);
  align-items: center;
  gap: 70px;
  padding: 70px;
  overflow: hidden;
  border-radius: 38px 38px 38px 10px;
  background:
    radial-gradient(circle at 8% 90%, rgba(55, 182, 255, .22), transparent 30%),
    linear-gradient(135deg, #06182f, #08417f);
  box-shadow: 0 35px 80px rgba(3, 35, 74, .22);
  color: #fff;
}

.final-order__copy h2 {
  font-size: clamp(38px, 3.5vw, 50px);
}

.final-order__copy h2 em {
  display: inline;
  color: #6edcff;
  font-size: 1em;
}

.final-order__copy > p:not(.eyebrow) {
  max-width: 530px;
  color: #b9cde3;
}

.final-order__copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: #dceafb;
  font-size: 14px;
}

.final-order__copy li span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  place-content: center;
  border-radius: 50%;
  background: rgba(85, 217, 255, .15);
  color: #69deff;
  font-size: 11px;
}

.order_form--final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "promo promo"
    "offer offer"
    "head head"
    "price price"
    "name phone"
    "trust trust"
    "button button";
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 26px 26px 26px 7px;
  box-shadow: 0 28px 65px rgba(0, 7, 25, .28);
}

.order_form--final .order_form__head h3 {
  font-size: 25px;
}

.order_form--final .form-price {
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 16px;
  margin-bottom: 2px;
}

.order_form--final .form-price strong {
  font-size: 34px;
}

.order_form--final .form-discount {
  flex-basis: 76px;
  height: 76px;
}

.order_form--final .field {
  height: 58px;
}

.order_form--final > .button {
  min-height: 62px;
  margin-top: 2px;
  font-size: 14px;
}

footer {
  padding: 44px 20px 56px;
  border-top: 1px solid rgba(103, 139, 175, .17);
  background: #041326;
  color: #93a8c0;
  font-size: 12px;
  text-align: center;
}

footer p {
  margin: 0;
}

footer a {
  color: #bdd2e8;
  text-decoration: underline;
  text-decoration-color: rgba(189,210,232,.3);
  text-underline-offset: 3px;
}

@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 15px 32px rgba(11, 116, 218, .3), 0 0 0 0 rgba(38, 174, 239, .28); }
  50% { box-shadow: 0 18px 36px rgba(11, 116, 218, .38), 0 0 0 10px rgba(38, 174, 239, 0); }
}

@keyframes shine {
  0%, 60% { left: -35%; }
  100% { left: 125%; }
}

@media (max-width: 1120px) {
  .site-nav { display: none; }

  .hero__grid {
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 24px 36px;
  }

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

  .hero__visual { min-height: 510px; }

  .order-section__shell { grid-template-columns: 1fr; }
  .order-section__note { display: none; }

  .order_form {
    grid-template-columns: 1.2fr .6fr 1fr 1fr;
    grid-template-areas:
      "promo promo promo promo"
      "offer offer offer offer"
      "head  price name  phone"
      "head  price trust button";
  }

  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { min-height: 250px; }
  .benefit-card__icon { margin-bottom: 30px; }

  .split-grid { gap: 50px; }
  .result__copy { padding: 48px 38px; }
  .final-order__shell { gap: 45px; padding: 50px; }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }

  .hero {
    min-height: 0;
    padding: 54px 0 105px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 23px 28px;
  }

  .hero h1 { font-size: 31px; }
  .hero__visual { min-height: 470px; }

  .order_form {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "promo promo"
      "offer offer"
      "head  price"
      "name  name"
      "phone phone"
      "trust trust"
      "button button";
    gap: 12px 16px;
    padding: 26px;
  }

  .order_form__head { justify-content: flex-start; }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .media-card { width: min(100%, 680px); margin-inline: auto; }

  .result__grid { grid-template-columns: 1fr; }
  .result__copy { padding: 54px; }
  .result__media { min-height: 440px; clip-path: none; }

  .review-card { flex-basis: calc((100% - 20px) / 2); }

  .faq__grid { grid-template-columns: 1fr; gap: 35px; }

  .final-order__shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-order__copy { text-align: center; }
  .final-order__copy .eyebrow { justify-content: center; }
  .final-order__copy > p:not(.eyebrow) { margin-inline: auto; }
  .final-order__copy ul { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
}

@media (max-width: 680px) {
  :root { --header-height: 66px; }

  .container { width: min(100% - 28px, 560px); }
  .section { padding: 68px 0; }
  h2 { font-size: 35px; }

  .brand__mark { width: 38px; height: 38px; border-radius: 12px 12px 12px 4px; }
  .brand__text b { font-size: 14px; }
  .brand__text small { font-size: 7px; }
  .header-cta { min-height: 40px; padding: 0 13px; font-size: 11px; }
  .header-cta span { display: none; }

  .hero {
    padding: 34px 0 95px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "offer";
    gap: 22px;
  }

  .hero__intro .eyebrow { margin-bottom: 12px; font-size: 10px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 48px); }
  .hero h1 strong { margin-top: 4px; }

  .hero__visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 26px 26px 26px 8px;
  }

  .hero__lead { font-size: 15px; }
  .hero__checks { display: grid; margin-bottom: 20px; }
  .button--hero { width: 100%; }
  .price-row { justify-content: space-between; gap: 10px; }
  .price-new strong { font-size: 31px; }
  .price-save { display: none; }

  .sale-badge {
    top: 13px;
    left: 13px;
    width: 82px;
    height: 82px;
    border-width: 4px;
  }
  .sale-badge span { font-size: 22px; }
  .volume-chip { right: 13px; bottom: 13px; }

  .order-section { margin-top: -56px; }
  .order-section__shell { width: min(100% - 28px, 520px); border-radius: 24px; }

  .order_form,
  .order_form--final {
    grid-template-columns: 1fr;
    grid-template-areas:
      "promo"
      "offer"
      "head"
      "price"
      "name"
      "phone"
      "trust"
      "button";
    gap: 13px;
    padding: 22px;
  }

  .order_form__head { justify-content: space-between; }
  .form-price { grid-auto-flow: column; align-items: center; justify-content: start; gap: 12px; }
  .form-discount { flex-basis: 64px; height: 64px; }
  .field-label > span { font-size: 9px; }
  .field { height: 56px; }
  .order_form > .button { min-height: 60px; font-size: 13px; }

  .benefits { padding-top: 105px; }
  .section-heading--center { margin-bottom: 34px; text-align: left; }
  .section-heading--center .eyebrow { justify-content: flex-start; }
  .section-heading > p:last-child { font-size: 15px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; padding: 25px; }
  .benefit-card__icon { margin-bottom: 24px; }

  .mid-cta { padding-bottom: 0; }
  .mid-cta__inner { display: grid; padding: 25px; border-radius: 22px 22px 22px 7px; }
  .mid-cta__inner > div > span { flex-basis: 58px; height: 58px; font-size: 11px; }
  .mid-cta b { font-size: 17px; }
  .mid-cta small { font-size: 11px; }
  .mid-cta .button { width: 100%; }

  .split-grid { gap: 55px; }
  .media-card::before { right: -10px; bottom: -14px; }
  .media-card img { aspect-ratio: 4 / 3; border-radius: 24px 24px 24px 7px; }
  .media-card__label { right: 10px; bottom: -24px; }
  .how__content h2 { font-size: 36px; }

  .result__grid { width: 100%; border-radius: 0; }
  .result__copy { padding: 55px 22px 40px; }
  .result__facts { gap: 7px; }
  .result__facts > div { padding: 12px 8px; }
  .result__media { min-height: 330px; }

  .reviews__top { align-items: center; margin-bottom: 28px; }
  .slider-arrow { width: 46px; height: 46px; border-radius: 14px; }
  .review-card { flex-basis: 100%; min-height: 320px; padding: 24px; }
  .verified { display: none; }

  .faq summary { min-height: 72px; font-size: 15px; }
  .faq details p { margin-right: 0; font-size: 14px; }

  .final-order { padding-bottom: 0; }
  .final-order__shell { width: 100%; padding: 58px 14px; border-radius: 0; }
  .final-order__copy { padding-inline: 8px; }
  .final-order__copy h2 { font-size: 37px; }
  .order_form--final { border-radius: 23px 23px 23px 7px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 22px, 390px); }
  .final-order .final-order__shell { width: 100%; max-width: none; }
  .brand__text small { display: none; }
  .header-cta { padding-inline: 12px; }
  .hero h1 { font-size: 34px; }
  .eyebrow { font-size: 10px; }
  .reviews__top { align-items: flex-end; }
  .slider-controls { gap: 7px; }
  .slider-arrow { width: 42px; height: 42px; }
  .review-card__head { grid-template-columns: auto 1fr; }
  .result__facts span { font-size: 8px; }
}

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