@import url("fonts/poppins.css");

:root {
  --deep: #000324;
  --navy: #000971;
  --red: #ff1845;
  --ink: #000324;
  --muted: rgba(0, 3, 36, .64);
  --faint: rgba(0, 3, 36, .48);
  --line: rgba(0, 9, 113, .12);
  --line-soft: rgba(0, 9, 113, .07);
  --bg: #ffffff;
  --bg-soft: #f5f6fa;
  --shadow-sm: 0 1px 2px rgba(0, 3, 36, .06), 0 6px 18px rgba(0, 3, 36, .05);
  --shadow-md: 0 2px 4px rgba(0, 3, 36, .07), 0 18px 44px rgba(0, 3, 36, .10);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --wrap: 1160px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy); text-decoration: none; }

a:hover { color: var(--red); }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}

p { margin: 0; }

ul,
ol { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}

.skip:focus {
  left: 0;
  color: #fff;
}

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

.brand {
  display: block;
  width: 148px;
  height: 32px;
  background: url("../dist/images/logo.svg") left center / contain no-repeat;
  position: relative;
  flex: none;
}

.brand--white { background-image: url("../dist/images/logo-white.svg"); }

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand::after {
  content: "";
  position: absolute;
  right: 26.4%;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation-duration: 1s;
  animation-fill-mode: both;
}

.brand:hover::after,
.brand:focus-visible::after { animation-name: pbl-bounce; }

@keyframes pbl-bounce {
  0%, 20%, 53%, 80%, 100% { animation-timing-function: cubic-bezier(.215, .61, .355, 1); transform: translate3d(0, 0, 0); }
  40%, 43% { animation-timing-function: cubic-bezier(.755, .05, .855, .06); transform: translate3d(0, -30px, 0); }
  70% { animation-timing-function: cubic-bezier(.755, .05, .855, .06); transform: translate3d(0, -15px, 0); }
  90% { transform: translate3d(0, -4px, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background-color .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 24, 69, .26);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 24, 69, .34);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.btn--outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--navy);
  border-color: rgba(0, 9, 113, .32);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--sm { min-height: 42px; padding: 0 20px; font-size: .875rem; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(0, 3, 36, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}

.site-header.is-stuck { background: rgba(0, 3, 36, .98); }

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.site-nav { margin-left: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255, 255, 255, .82);
  font-size: .9375rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .24s var(--ease);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .link-login {
  color: rgba(255, 255, 255, .82);
  font-size: .9375rem;
  font-weight: 500;
}

.header-actions .link-login:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  background: var(--deep);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  top: -280px;
  right: -180px;
  background: radial-gradient(circle at center, rgba(0, 9, 113, .85), rgba(0, 9, 113, 0) 70%);
}

.hero::after {
  width: 460px;
  height: 460px;
  bottom: -240px;
  left: -160px;
  background: radial-gradient(circle at center, rgba(255, 24, 69, .18), rgba(255, 24, 69, 0) 70%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  background: rgba(255, 255, 255, .04);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .86);
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.hero h1 {
  margin: 26px 0 20px;
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero__lead {
  max-width: 30em;
  color: rgba(255, 255, 255, .76);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__note {
  margin-top: 22px;
  color: rgba(255, 255, 255, .52);
  font-size: .875rem;
}

.payment-methods-phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 0 0 auto;
  aspect-ratio: 340 / 640;
  background-color: #262946;
  border-radius: 50px;
  box-shadow: 20px 25px 40px rgba(0, 3, 36, .3);
  font-size: 16px;
  z-index: 2;
}

.payment-methods-phone::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 55%;
  height: 38px;
  background: url("../dist/images/notch.svg") no-repeat center / contain;
  z-index: 3;
}

@supports not (aspect-ratio: 1 / 1) {
  .payment-methods-phone { height: 640px; }
}

.phone-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 95%;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.phone-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 30%;
  height: 5px;
  margin: 0 auto;
  background-color: #000324;
  border-radius: 10px;
  z-index: 4;
}

.phone-methods-header {
  position: relative;
  padding: 7px 26px 44px;
  background-color: #000324;
  color: #fff;
  overflow: hidden;
  flex: none;
}

.phone-methods-header::before,
.phone-methods-header::after {
  content: "";
  position: absolute;
  border-radius: 100%;
}

.phone-methods-header::after {
  top: 78px;
  right: 58px;
  width: 23px;
  height: 23px;
  background-color: var(--red);
}

.phone-methods-header::before {
  bottom: -54px;
  right: -54px;
  width: 170px;
  height: 170px;
  background-color: var(--navy);
}

.phone-top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
}

.phone-top-bar .clock {
  font-size: .8em;
  font-weight: 700;
  letter-spacing: .01em;
}

.phone-top-bar .signal {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 11px;
}

.phone-top-bar .signal i {
  width: 3px;
  border-radius: 1px;
  background: rgba(255, 255, 255, .85);
}

.phone-top-bar .signal i:nth-child(1) { height: 4px; }
.phone-top-bar .signal i:nth-child(2) { height: 7px; }
.phone-top-bar .signal i:nth-child(3) { height: 10px; }
.phone-top-bar .signal i:nth-child(4) { height: 11px; background: rgba(255, 255, 255, .4); }

.phone-methods-header .brand-small {
  position: relative;
  z-index: 2;
  display: block;
  width: 113px;
  height: 24px;
  margin: 26px 0 22px;
  background: url("../dist/images/logo-white.svg") left center / contain no-repeat;
}

.phone-methods-header .brand-small::after {
  content: "";
  position: absolute;
  right: 26%;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--red);
  animation-duration: 1s;
  animation-fill-mode: both;
}

.payment-methods-phone:hover .brand-small::after { animation-name: pbl-bounce; }

.phone-methods-info {
  position: relative;
  z-index: 2;
  line-height: 1.15em;
  margin-bottom: 5px;
}

.phone-methods-info .desc {
  display: block;
  text-transform: uppercase;
  font-size: .65em;
  letter-spacing: .04em;
  font-weight: 700;
  color: #bcc2ff;
  opacity: .8;
}

.phone-methods-info .title {
  display: block;
  font-weight: 400;
  font-size: 1em;
}

.phone-methods-info--amount { margin-top: 20px; }

.phone-methods-info .title.large {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: -.02em;
}

.phone-methods-info .title.large small { font-weight: 700; font-size: .55em; }

.methods-slider-control {
  position: relative;
  flex: 1 1 auto;
  padding: 22px 26px 26px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.methods-slider-control::after {
  content: "";
  position: absolute;
  left: 0;
  top: -25px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 50px;
}

.methods-slider-control__heading {
  position: relative;
  z-index: 2;
  top: 0;
  margin: 0;
  color: var(--deep);
  font-size: .95em;
  font-weight: 700;
}

.methods-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.methods-slider-control__item {
  display: block;
  width: 100%;
  padding: 12px 6px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: hsla(0, 0%, 100%, .3);
  color: rgba(0, 3, 36, .4);
  font: inherit;
  font-size: .72em;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: .3s cubic-bezier(.445, .05, .55, .95);
}

.methods-slider-control__item .icon {
  display: block;
  width: 40px;
  height: 26px;
  margin: 0 auto 8px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: .3s cubic-bezier(.445, .05, .55, .95);
}

.icon.blik { background-image: url("../dist/images/methods/blik.png"); }
.icon.bank { background-image: url("../dist/images/methods/bank.png"); }
.icon.sms { background-image: url("../dist/images/methods/sms.svg"); }
.icon.cards { background-image: url("../dist/images/methods/cards.png"); }
.icon.psc { background-image: url("../dist/images/methods/psc.png"); }

.methods-slider-control__item .icon.blik { width: 50px; }
.methods-slider-control__item .icon.cards,
.methods-slider-control__item .icon.psc { width: 74px; }

.methods-slider-control__item:hover {
  border-color: rgba(0, 3, 36, .1);
  color: var(--deep);
}

.methods-slider-control__item.is-active {
  border-color: rgba(0, 3, 36, .3);
  box-shadow: 0 20px 30px rgba(0, 3, 36, .2);
  color: var(--deep);
}

.methods-slider-control__item:hover .icon,
.methods-slider-control__item.is-active .icon {
  opacity: 1;
  filter: grayscale(0);
}

.method-detail {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 22px 26px 26px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(14px);
  transition: opacity .34s var(--ease), transform .34s var(--ease), visibility .34s var(--ease);
}

.method-detail.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.method-detail__test[hidden] { display: none; }

.method-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: .78em;
  font-weight: 600;
  cursor: pointer;
  transition: color .24s var(--ease);
}

.method-detail__back svg {
  width: 14px;
  height: 14px;
  transition: transform .28s var(--ease);
}

.method-detail__back:hover { color: var(--red); }

.method-detail__back:hover svg { transform: translateX(-3px); }

.method-detail .icon {
  display: block;
  width: 46px;
  height: 32px;
  margin-bottom: 14px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.method-detail .icon.blik { width: 58px; }
.method-detail .icon.cards,
.method-detail .icon.psc { width: 86px; }

.method-detail b {
  display: block;
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: -.01em;
}

.method-detail p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .82em;
  line-height: 1.6;
}

.method-detail__test {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  font-size: .74em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.35;
  transition: border-color .28s var(--ease), color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}

.method-detail__test small {
  font-size: .85em;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--faint);
  transition: color .28s var(--ease);
}

.method-detail__test:hover {
  color: var(--red);
  border-color: rgba(255, 24, 69, .4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.method-detail__test:hover small { color: rgba(255, 24, 69, .7); }

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.dot--navy { background: var(--navy); }

.counter {
  position: relative;
  z-index: 1;
  margin-top: 84px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .18);
}

.counter .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.counter__val {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.counter__val span { color: var(--red); }

.counter p {
  color: rgba(255, 255, 255, .66);
  font-size: .9375rem;
  max-width: 24em;
}

.section { padding: 104px 0; }

.section--soft { background: var(--bg-soft); }

.section__head { max-width: 46em; }

.section__head--center {
  margin: 0 auto;
  text-align: center;
}

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 16px;
}

.section__head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }

.section__head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.section--price { padding-bottom: 96px; }

.section__head h2 em {
  font-style: normal;
  color: var(--red);
}

.price {
  position: relative;
  margin-top: 56px;
  padding: 54px 48px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.price__badge {
  position: absolute;
  top: -15px;
  left: 48px;
  display: inline-block;
  padding: 7px 18px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: 0 10px 24px rgba(255, 24, 69, .3);
}

.price__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 40px;
}

.price__item {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--line-soft);
}

.price__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.price__item b {
  display: block;
  color: var(--navy);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.price__item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .9375rem;
}

.price__item--lead b {
  color: var(--red);
  font-size: clamp(3rem, 6vw, 4.25rem);
}

.price--psc {
  margin-top: 30px;
  padding-bottom: 48px;
}

.price__badge--navy {
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 9, 113, .28);
}

.price__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.price--psc .price__item--lead b { font-size: clamp(2.5rem, 4.6vw, 3.4rem); }

.price__cond {
  padding: 26px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.price__cond h3 {
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy);
}

.price__cond p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .9375rem;
}

.price__cond strong { color: var(--ink); }

.price__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}

.price__note {
  flex: 1 1 340px;
  color: var(--faint);
  font-size: .8125rem;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 56px;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 9, 113, .2);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 9, 113, .07);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

.card:hover .card__icon {
  background: var(--red);
  color: #fff;
}

.card__icon svg { width: 24px; height: 24px; }

.card h3 { font-size: 1.1875rem; }

.card > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .9375rem;
}

.card__list {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: .875rem;
}

.card__list li + li { margin-top: 10px; }

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.card__link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.card__link svg {
  width: 15px;
  height: 15px;
  transition: transform .3s var(--ease);
}

.card__link:hover svg { transform: translateX(4px); }

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.about__body p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.trust { margin-top: 34px; }

.trust li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
}

.trust li:last-child { border-bottom: 1px solid var(--line-soft); }

.trust__icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 11px;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__icon svg { width: 20px; height: 20px; }

.trust h3 { font-size: 1rem; }

.trust p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9375rem;
}

.steps {
  counter-reset: step;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 0 34px 66px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -4px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: .875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.steps li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.steps li:last-child { padding-bottom: 0; }

.steps li:last-child::after { display: none; }

.steps h3 { font-size: 1.0625rem; }

.steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .9375rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 64px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat b {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.03em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9375rem;
}

.cta {
  margin-top: 96px;
  background: var(--deep);
  border-radius: var(--radius-lg);
  padding: 62px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 24, 69, .22), rgba(255, 24, 69, 0) 70%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  max-width: 16em;
}

.cta p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, .7);
  padding: 84px 0 0;
  font-size: .9375rem;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .62);
  max-width: 26em;
}

.footer__contact { margin-top: 24px; }

.footer__contact a {
  color: #fff;
  font-weight: 600;
}

.footer__contact a:hover { color: var(--red); }

.footer__contact span {
  display: block;
  color: rgba(255, 255, 255, .48);
  font-size: .8125rem;
}

.site-footer h3 {
  color: #fff;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.site-footer nav li + li { margin-top: 12px; }

.site-footer nav a {
  color: rgba(255, 255, 255, .7);
  transition: color .24s var(--ease), transform .24s var(--ease);
  display: inline-block;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 34px 0;
  color: rgba(255, 255, 255, .5);
  font-size: .8125rem;
  line-height: 1.75;
}

.footer__legal p + p { margin-top: 12px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 26px 0;
  color: rgba(255, 255, 255, .45);
  font-size: .8125rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, .6);
  transition: color .24s var(--ease);
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible { color: #fff; }

.footer__legal a {
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .price__grid { grid-template-columns: 1fr; gap: 30px; }
  .price__split { grid-template-columns: 1fr; gap: 28px; }

  .price__item {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .price__item:first-child { padding-top: 0; border-top: 0; }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .payment-methods-phone { margin: 0 auto; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-header.is-open .wrap {
    flex-wrap: wrap;
    padding-bottom: 22px;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions { display: block; }

  .site-header.is-open .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 10px;
  }

  .site-header.is-open .site-nav a {
    display: block;
    padding: 11px 0;
    width: 100%;
  }

  .site-header.is-open .header-actions {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .hero { padding-top: 64px; }
  .counter { margin-top: 56px; }
  .price { padding: 46px 26px 34px; }
  .price__badge { left: 26px; }
  .section { padding: 72px 0; }
  .cta { margin-top: 64px; padding: 44px 28px; }
  .checkout { padding: 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding-top: 60px; }
}

@media (max-width: 460px) {
  .wrap { padding: 0 18px; }
  .checkout__meta { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta { gap: 12px; }
}

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

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

  .brand:hover::after,
  .brand:focus-visible::after { animation-name: none; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.price__note--small { margin-top: 6px; font-size: .82em; opacity: .75; }
