:root {
  --brand: #1180d9;
  --brand-dark: #0b63ab;
  --brand-pale: #e8f4ff;
  --brand-bg: #f3f9ff;
  --text: #162031;
  --text-muted: #66758a;
  --border: #dfe8f3;
  --bg-light: #f7fbff;
  --white: #ffffff;
  --shadow-sm: 0 4px 18px rgba(13, 50, 90, 0.05);
  --shadow-md: 0 10px 32px rgba(13, 50, 90, 0.08);
  --shadow-lg: 0 16px 50px rgba(13, 50, 90, 0.14);
  --radius-sm: 13px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, 'Proxima Nova Rg', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

a:hover {
  opacity: .92;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 76px 0;
}

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

.section__title {
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section__subtitle {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
}

.brand-accent {
  color: var(--brand-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-align: center;
  border: 0;
}

.btn--primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 128, 217, .22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 128, 217, .28);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 232, 243, .9);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-header__logo-text {
  font-size: 18px;
  line-height: 1.1;
}

.site-header__auth {
  min-width: 220px;
  display: flex;
  justify-content: flex-end;
}

/* Hero */
.hero {
  padding: 36px 0 60px;
  background:
    radial-gradient(circle at top right, rgba(17, 128, 217, .12), transparent 28%),
    linear-gradient(180deg, var(--brand-bg) 0%, #ffffff 100%);
}

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

.hero__article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.hero__article-frame {
  width: 100%;
  height: 700px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
  background: #fff;
}

.hero__form-card {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero__form-title {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__form-subtitle {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Forms */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form__input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfdff;
  color: var(--text);
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form__input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 128, 217, .12);
}

.lead-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 4px 0 6px;
}

.lead-form__checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}

.lead-form__checkbox a {
  border-bottom: 1px solid currentColor;
}

.lead-form__btn {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 128, 217, .22);
  transition: transform .14s ease, box-shadow .14s ease, opacity .2s ease;
}

.lead-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 128, 217, .28);
}

.lead-form__btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.lead-form__error {
  background: #fff1f1;
  color: #b42318;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
}

.lead-form__success {
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--radius-md);
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.lead-form__success h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

/* Brand title */
.brand-title {
  padding: 30px 0 18px;
  text-align: center;
}

.brand-title__h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.brand-title__sub {
  font-size: 18px;
  color: var(--text-muted);
}

/* Products */
.products {
  padding: 18px 0 28px;
}

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

.products__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.product-card--featured {
  border: 2px solid rgba(17, 128, 217, .55);
}

.product-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.product-card__name {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.product-card__period {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.product-card__img {
  margin: 0 auto 18px;
}

.product-card__img img {
  max-width: 210px;
  margin: 0 auto;
}

.product-card__price {
  margin-bottom: 18px;
}

.product-card__price s {
  display: block;
  margin-bottom: 8px;
  color: #98a2b3;
  font-size: 17px;
}

.product-card__price strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: var(--brand-dark);
  font-weight: 800;
}

.product-card__split {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fbff;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

.product-card__split svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--brand-dark);
}

.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 128, 217, .22);
  transition: transform .14s ease, box-shadow .14s ease, opacity .2s ease;
}

.product-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 128, 217, .28);
}

/* Promo banner */
.promo-banner {
  padding: 26px 0 18px;
  background: transparent;
}

.promo-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #b1121b 0%, #e1261c 100%);
  box-shadow: 0 18px 44px rgba(177, 18, 27, .22);
}

.promo-banner__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.promo-banner__text {
  color: #fff;
}

.promo-banner__text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}

.promo-banner__text span {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
  max-width: 760px;
}

.promo-banner__timer {
  display: grid;
  grid-template-columns: repeat(4, 78px);
  gap: 12px;
  align-items: start;
  justify-content: end;
}

.timer-unit {
  min-height: 78px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.timer-val {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
}

.timer-lbl {
  display: block;
  font-size: 14px;
  line-height: 1;
  opacity: .95;
}

/* Registry */
.reestr {
  padding: 0 0 34px;
}

.reestr__box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f477f 0%, var(--brand-dark) 100%);
  padding: 26px 30px;
  box-shadow: var(--shadow-md);
}

.reestr__eagle {
  width: 140px;
  margin: 0 auto;
}

.reestr__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.reestr__text {
  color: rgba(255, 255, 255, .95);
  font-size: 20px;
  line-height: 1.4;
}

/* About */
.about {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.about__left {
  text-align: center;
}

.about__image {
  max-width: 260px;
  margin: 0 auto 18px;
}

.about__title,
.about__lead,
.about__list,
.about__list li {
  color: #fff;
}

.about__title {
  font-size: clamp(28px, 3vw, 42px);
}

.about__lead {
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.about__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.about__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}

.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-dark);
  font-weight: 800;
}

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

/* Issue */
.issue__box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
}

.issue__title {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.issue__title--small {
  margin-top: 28px;
}

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

.issue__item,
.issue__next-card {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 18px 18px 48px;
}

.issue__check {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.issue__item p,
.issue__next-card p {
  font-size: 15px;
  line-height: 1.5;
}

.issue__item--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-color: transparent;
  color: #fff;
  padding-left: 18px;
}

.issue__item--cta .issue__check {
  display: none;
}

.issue__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 800;
  margin-top: 14px;
}

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

.issue__arrow {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-dark);
  font-weight: 800;
}

/* Old complect block */
.complect__box {
  position: relative;
  max-width: 620px;
  margin: 0 auto 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.complect__img {
  max-width: 360px;
  margin: 0 auto;
}

.complect__sticker {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.complect__cta {
  text-align: center;
}

/* Combo cards */
.combo-sets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.combo-card {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.combo-card--featured {
  border: 2px solid rgba(17, 128, 217, .45);
  box-shadow: var(--shadow-md);
}

.combo-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.combo-card__img {
  margin: 0 auto 14px;
}

.combo-card__img img {
  max-width: 220px;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

.combo-card__name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 6px;
  min-height: 72px;
}

.combo-card__period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.combo-card__price {
  margin-bottom: 14px;
}

.combo-card__price s {
  display: block;
  color: #98a2b3;
  font-size: 16px;
  margin-bottom: 6px;
}

.combo-card__price strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--brand-dark);
  font-weight: 800;
}

.combo-card__split {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7fbff;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.combo-card__split svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--brand-dark);
}

.combo-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 128, 217, .18);
}

/* VIP cards */
.vip__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.vip-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.vip-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.vip-item__title {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.vip-item__text {
  color: var(--text-muted);
  font-size: 15px;
}

.vip__cta {
  margin-top: 28px;
  text-align: center;
}

/* VIP details */
.vip-details {
  background: var(--bg-light);
}

.vip-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.vip-block + .vip-block {
  margin-top: 20px;
}

.vip-block__head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.vip-block__num {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-block__title h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.vip-block__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vip-block__desc {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 880px;
}

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

.vip-tile {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.vip-tile h4 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.vip-tile p {
  color: var(--text-muted);
  font-size: 15px;
}

.vip-block__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.vip-stat {
  min-height: 212px;
  padding: 28px 20px 22px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid #d9e8f7;
  box-shadow: 0 8px 24px rgba(13, 50, 90, 0.04);
}

.vip-stat__num {
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  color: #1180d9;
  margin-bottom: 8px;
}

.vip-stat__label {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #162031;
  margin-bottom: 12px;
}

.vip-stat__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1180d9;
  margin-bottom: 14px;
}

.vip-stat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5d7088;
}

/* Expert articles */
.expert-articles {
  padding: 76px 0;
}

.expert-articles--accent {
  background: #3a7ffe;
}

.expert-articles__title {
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}

.expert-articles__sub {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 34px;
  color: var(--text-muted);
}

.expert-articles__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.expert-articles__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.expert-articles__check {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  margin-top: -2px;
  color: var(--brand-dark);
}

.expert-articles__item p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.expert-articles--accent .expert-articles__title,
.expert-articles--accent .expert-articles__sub,
.expert-articles--accent .expert-articles__item p,
.expert-articles--accent .expert-articles__check {
  color: #fff;
}

/* Features deep */
.features-deep {
  background: var(--bg-light);
}

.feature-deep {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.feature-deep + .feature-deep {
  margin-top: 22px;
}

.feature-deep--reverse {
  grid-template-columns: 440px minmax(0, 1fr);
}

.feature-deep--reverse .feature-deep__text {
  order: 2;
}

.feature-deep--reverse .feature-deep__img {
  order: 1;
}

.feature-deep__text h3 {
  font-size: 30px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.feature-deep__text ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.feature-deep__text li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
}

.feature-deep__text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

.feature-deep__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-deep__img img {
  max-width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Service slider */
.service-slider {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
}

.service-slider__stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-slider__slide {
  display: none;
  width: 100%;
}

.service-slider__slide.is-active {
  display: block;
}

.service-slider__slide img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(13, 50, 90, .08);
  border: 1px solid var(--border);
}

.service-slider__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.service-slider__bubble {
  position: relative;
  background: #cfe8fb;
  color: var(--text);
  border-radius: 22px;
  padding: 28px 26px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.service-slider__bubble::before {
  content: '';
  position: absolute;
  left: -18px;
  bottom: 34px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 20px solid #cfe8fb;
}

.service-slider__controls {
  display: flex;
  gap: 14px;
}

.service-slider__arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #2d2d33;
  background: #fff;
  color: #2d2d33;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* Bottom forms */
.bottom-form {
  padding: 78px 0;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.bottom-form__title {
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.bottom-form__subtitle {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
}

.bottom-form__card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

/* More perks */
.more-perks {
  background: #fff;
}

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

.perk {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.perk__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.perk p {
  font-size: 15px;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: #111b2b;
  color: #b9c5d6;
  padding: 30px 0;
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #b9c5d6;
  text-decoration: underline;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 40;
  max-width: 760px;
  margin: 0 auto;
  display: none;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  flex: 1;
  font-size: 14px;
  color: var(--text-muted);
}

.cookie-banner button {
  border: 0;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

/* Media */
@media (max-width: 1200px) {
  .vip-block__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__form-card {
    position: static;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .feature-deep,
  .feature-deep--reverse {
    grid-template-columns: 1fr;
  }

  .feature-deep--reverse .feature-deep__text,
  .feature-deep--reverse .feature-deep__img {
    order: initial;
  }

  .promo-banner__inner {
    grid-template-columns: 72px 1fr;
  }

  .promo-banner__timer {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .service-slider {
    grid-template-columns: 1fr;
  }

  .service-slider__stage {
    min-height: 320px;
  }

  .service-slider__side {
    align-items: center;
  }

  .service-slider__bubble {
    min-height: auto;
    width: 100%;
  }

  .service-slider__bubble::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .issue__grid,
  .issue__next,
  .vip__items,
  .vip-block__cards,
  .more-perks__grid,
  .combo-sets__grid {
    grid-template-columns: 1fr 1fr;
  }

  .reestr__box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reestr__badge {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .products__grid--two,
  .products__grid--three {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .vip-block__head {
    grid-template-columns: 1fr;
  }

  .vip-block__desc {
    grid-column: auto;
  }

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

  .expert-articles__cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 58px 0;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-header__logo-text {
    font-size: 16px;
  }

  .hero {
    padding: 22px 0 40px;
  }

  .hero__article {
    padding: 12px;
  }

  .hero__article-frame {
    height: 560px;
  }

  .hero__form-card,
  .bottom-form__card,
  .product-card,
  .feature-deep,
  .vip-block,
  .issue__box,
  .complect__box,
  .combo-card {
    padding: 22px 18px;
  }

  .issue__grid,
  .issue__next,
  .vip__items,
  .vip-block__cards,
  .more-perks__grid,
  .combo-sets__grid {
    grid-template-columns: 1fr;
  }

  .combo-card {
    max-width: 100%;
  }

  .combo-card__name {
    min-height: auto;
  }

  .promo-banner__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .promo-banner__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto;
  }

  .promo-banner__text strong {
    font-size: 20px;
  }

  .promo-banner__timer {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
    width: 100%;
  }

  .timer-unit {
    min-height: 70px;
    min-width: 62px;
    padding: 8px 10px;
  }

  .timer-val {
    font-size: 24px;
  }

  .service-slider__bubble {
    padding: 20px 18px;
    font-size: 16px;
    border-radius: 18px;
  }

  .service-slider__arrow {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .vip-block__stats {
    grid-template-columns: 1fr;
  }

  .vip-stat {
    min-height: auto;
  }

  .vip-stat__num {
    font-size: 46px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .complect__sticker {
    position: static;
    margin: 18px auto 0;
  }
}