/* =========================================
   СФК Сибирь — Marketplace Design System
   ========================================= */

:root {
  --bg: #f3f4f8;
  --bg-alt: #eceef4;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --surface-blue: #ecebff;
  --surface-chip: #ffffff;
  --surface-lilac: #e7e7fb;
  --surface-peach: #ffe2d8;
  --surface-gray: #eef1f6;
  --border: #e1e5ee;
  --border-strong: #cfd6e1;
  --text: #212634;
  --text-soft: #61697d;
  --text-faint: #8e96aa;
  --blue: #6172f3;
  --blue-dark: #4f5ee1;
  --blue-soft: #dde2ff;
  --navy: #232a36;
  --navy-mid: #394152;
  --green: #1f9d68;
  --green-soft: #dff8ed;
  --warning-soft: #fff4d8;
  --accent-red: #ff4d3d;
  --gold: #b7924e;
  --gold-light: #e7d3a0;
  --gold-soft: #f3ead2;
  --footer-bg: #181b21;
  --footer-border: #2a2f38;
  --white: #ffffff;
  --surface2: #eef2f6;
  --muted: #61697d;
  --light: #8e96aa;
  --blue-light: #ecebff;
  --blue-mid: #c9d2ff;

  --r-xs: 8px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 10px 26px rgba(31, 36, 53, 0.05);
  --shadow: 0 18px 44px rgba(31, 36, 53, 0.08);
  --shadow-md: 0 28px 72px rgba(31, 36, 53, 0.12);

  --t: 0.2s ease;
  --t-slow: 0.45s ease;

  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 78px;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: 0; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

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

.section { padding: 68px 0; }
.section--sm { padding: 44px 0; }
.section--lg { padding: 88px 0; }
.section--surface { background: #eef1f6; }
.section--surface2 { background: #e8ebf2; }
.section--blue { background: linear-gradient(180deg, #f3f4fb 0%, #eceff5 100%); }
.section--navy,
.section--dark {
  background: linear-gradient(180deg, #1c2027 0%, #171b22 100%);
  color: var(--white);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-chip);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .85;
}
.section--navy .section__label,
.section--dark .section__label {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #b8d1ff;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.14;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.section--navy .section__title,
.section--dark .section__title { color: var(--white); }

.section__subtitle {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
}
.section--navy .section__subtitle,
.section--dark .section__subtitle { color: rgba(255,255,255,.72); }

.section__head {
  margin-bottom: 42px;
  text-align: left;
}
.section__head--center {
  text-align: center;
}
.section__head--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}
.section__head .section__subtitle {
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--t), background-color var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(24, 27, 34, .14);
}
.btn--primary:hover {
  background: #151922;
  box-shadow: 0 14px 28px rgba(24, 27, 34, .2);
}
.btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--white {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn--white:hover {
  background: #151922;
  color: var(--white);
}
.btn--ghost-white {
  background: rgba(255,255,255,.78);
  color: var(--navy);
  border: 1px solid rgba(31,36,53,.08);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.98);
  border-color: rgba(31,36,53,.14);
}
.btn--lg { min-height: 54px; padding: 14px 26px; font-size: 15px; }
.btn--sm { min-height: 40px; padding: 10px 16px; font-size: 13px; }
.btn--full { width: 100%; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: var(--nav-h);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(225, 229, 238, .92);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(31, 36, 53, .06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--nav-h);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 6px;
}
.navbar__logo-mark {
  width: 38px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter:
    drop-shadow(0 10px 18px rgba(92, 70, 26, .14))
    drop-shadow(0 0 14px rgba(198,169,107,.14));
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--navy);
}
.navbar__logo-subline {
  display: none;
}
.navbar__logo-text strong {
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: #3f3e48;
  font-size: 30px;
  line-height: .98;
  letter-spacing: .004em;
  font-weight: 700;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.36);
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  -webkit-font-feature-settings: "liga" 0, "clig" 0;
  word-spacing: 0;
  font-kerning: none;
}
.navbar__logo-text strong .logo-gap {
  margin-left: -.01em;
}
.navbar__logo-text strong .logo-f {
  display: inline-block;
  margin-right: .065em;
  color: inherit;
}
.navbar__logo-text strong .logo-i {
  display: inline-block;
  margin-left: .01em;
  color: inherit;
}
.navbar__logo-sub { display: none; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.navbar__link,
.navbar__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background-color var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.navbar__link:hover,
.navbar__link.active,
.navbar__dropdown:hover .navbar__dropdown-toggle,
.navbar__dropdown.open .navbar__dropdown-toggle,
.navbar__dropdown-toggle.active {
  background: var(--surface-soft);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--border);
}
.navbar__dropdown { position: relative; }
.navbar__dropdown-toggle svg {
  transition: transform var(--t);
  flex-shrink: 0;
}
.navbar__dropdown.open .navbar__dropdown-toggle svg { transform: rotate(180deg); }
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 30;
}
.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown.open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar__dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background-color var(--t), color var(--t);
}
.navbar__dropdown-menu a:hover,
.navbar__dropdown-menu a.active {
  background: var(--surface-soft);
  color: var(--navy);
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity var(--t), color var(--t);
}
.navbar__social:hover { opacity: 1; }
.navbar__phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.navbar__phone:hover { color: var(--blue-dark); }
.navbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--border);
}
.navbar__toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: all var(--t);
}
.navbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 28px 0 48px;
  color: var(--text);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 18px 24px 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 22%, rgba(255,255,255,.5), transparent 24%),
    linear-gradient(100deg, #6350f4 0%, #6042f0 36%, #5a43f0 60%, #f34333 100%);
  border: 0;
  box-shadow: none;
}
.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}
.hero__bg-circle--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 70%);
}
.hero__bg-circle--2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -30px;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 72%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 34px;
  align-items: stretch;
  padding: 38px 34px 0;
}
.hero__content {
  min-width: 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: none;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31,157,104,.12);
  animation: pulse 2.1s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.8); opacity: .55; }
}
.hero__title {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.hero__title mark {
  background: none;
  color: #ffffff;
  padding: 0 .08em;
}
.hero__subtitle {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,.82);
  margin-bottom: 24px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  align-items: stretch;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: default;
}
.hero__stats > div:hover {
  background: rgba(201, 168, 76, 0.10);
  border-color: rgba(201, 168, 76, 0.30);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28), 0 0 18px rgba(201, 168, 76, 0.08);
}
.hero__stats > div:hover .hero__stat-value {
  color: var(--gold-light);
}
.hero__stat-value {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font);
  white-space: nowrap;
}
.hero__stat-label {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.60);
}
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__card {
  min-height: 122px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 18px 44px rgba(35, 42, 54, .12);
}
.hero__card--accent {
  background: linear-gradient(135deg, #dfe1ff 0%, #ece8ff 100%);
}
.hero__card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero__card-value {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--navy);
}
.hero__card-sub {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}

.hero--page {
  padding: 26px 0 36px;
}
.hero--page::before {
  inset: 18px 24px 0;
  background:
    radial-gradient(circle at top right, rgba(97,114,243,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  border: 1px solid rgba(225, 229, 238, .9);
}
.hero--page .hero__inner {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.hero--page .hero__title {
  font-size: clamp(36px, 4.5vw, 62px);
  max-width: 100%;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero--page .hero__subtitle {
  max-width: 760px;
  margin-bottom: 20px;
}

/* =========================================
   GRID & CARDS
   ========================================= */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card,
.tariff,
.form-wrap,
.partner-badge,
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.card {
  border-radius: 24px;
  padding: 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background-color var(--t);
}
.card:hover {
  transform: translateY(-2px);
  border-color: #d4daea;
  box-shadow: var(--shadow);
}

.card--service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}
.card--service .card__icon,
.card--feature .card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f6ff 0%, #eceefe 100%);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(97,114,243,.08);
}
.card--service .card__title,
.card--feature .card__title {
  font-size: 18px;
  line-height: 1.32;
  font-weight: 800;
  color: var(--navy);
}
.card--service .card__text,
.card--feature .card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}
.card--service .card__text { flex: 1; }
.card--service .card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  transition: gap var(--t), color var(--t);
}
.card--service:hover .card__link { gap: 10px; }

.grid--market .card:nth-child(1) {
  grid-column: span 2;
  min-height: 276px;
  background: linear-gradient(135deg, var(--surface-lilac) 0%, #ececff 100%);
}
.grid--market .card:nth-child(3),
.grid--market .card:nth-child(7) {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
}
.grid--market .card:nth-child(10) {
  background: linear-gradient(135deg, #eff1f7 0%, #e8ecf4 100%);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.chip-row--center {
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: background-color var(--t), color var(--t), border-color var(--t);
}
.chip--active,
.chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.offer-card--soft {
  background: linear-gradient(135deg, var(--surface-lilac) 0%, #ececff 100%);
}
.offer-card--promo {
  background: linear-gradient(135deg, #f3d8ff 0%, #ecebff 58%, #ffd9d2 100%);
}
.offer-card__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.offer-card__title {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.offer-card__meta {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  flex: 1;
}
.offer-card__data {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.offer-card__data span {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.offer-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-dark);
}

.card--feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card--feature > div:not(.card__icon) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card--feature .card__text { flex: 1; }

.card--navy {
  background:
    radial-gradient(circle at top right, rgba(122,174,255,.18), transparent 34%),
    linear-gradient(180deg, #263a55 0%, #1b2c43 100%);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(20, 38, 63, .18);
}
.card--navy .card__title { color: var(--white); }
.card--navy .card__text { color: rgba(255,255,255,.74); }
.card--navy .card__icon {
  background: rgba(255,255,255,.12);
  color: #d7e7ff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

/* =========================================
   STEPS
   ========================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps::before { display: none; }
.step {
  min-height: 100%;
  padding: 26px 22px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.step__num {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(42,109,245,.22);
}
.step__title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.step__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}
.section--dark .step,
.section--navy .step {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.section--dark .step__title,
.section--navy .step__title { color: var(--white); }
.section--dark .step__text,
.section--navy .step__text { color: rgba(255,255,255,.74); }
.section--dark .step__num,
.section--navy .step__num {
  background: rgba(255,255,255,.14);
  box-shadow: none;
}

/* =========================================
   STATS ROW
   ========================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.stat-item {
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}
.section--dark .stats-row,
.section--navy .stats-row {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.section--dark .stat-item,
.section--navy .stat-item {
  background: transparent;
  border-color: rgba(255,255,255,.08);
}
.section--dark .stat-item__value,
.section--navy .stat-item__value { color: var(--white); }
.section--dark .stat-item__label,
.section--navy .stat-item__label { color: rgba(255,255,255,.74); }

/* =========================================
   TARIFFS
   ========================================= */
.tariff {
  border-radius: 32px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.tariff:hover {
  transform: translateY(-2px);
  border-color: #bed0e7;
  box-shadow: var(--shadow);
}
.tariff--featured {
  background: linear-gradient(180deg, #f4f9ff 0%, #edf4ff 100%);
  border-color: #bfd4ff;
}
.tariff__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  align-self: flex-start;
}
.tariff__name {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
}
.tariff__price {
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: var(--blue-dark);
}
.tariff__price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-faint);
}
.tariff__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tariff__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.tariff__item::before,
.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 6.1 4.7 8.6 9.7 3.6' stroke='%231f9d68' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* =========================================
   CHECK LIST
   ========================================= */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.check-list--white li {
  color: rgba(255,255,255,.88);
}
.check-list--white li::before {
  background-color: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 6.1 4.7 8.6 9.7 3.6' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================================
   TABLE
   ========================================= */
.table-wrap {
  overflow-x: auto;
  border-radius: 28px;
}
.table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.table-wrap thead th {
  background: #eef4fa;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 18px 20px;
  text-align: left;
}
.table-wrap tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.table-wrap tbody tr:nth-child(even) td { background: #fbfcfd; }
.table-wrap tbody tr:hover td { background: #f4f8fd; }
.table-wrap .t-good { color: var(--green); font-weight: 700; }
.table-wrap .t-bad { color: #da4f4f; }
.table-wrap .t-mid { color: var(--text-soft); }

/* =========================================
   FORMS
   ========================================= */
.form-wrap {
  border-radius: 32px;
  padding: 34px;
}
.form-wrap--center {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-col-full { grid-column: 1 / -1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fbfcfd;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t), background-color var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: var(--white);
  border-color: #a8c4f7;
  box-shadow: 0 0 0 4px rgba(42,109,245,.10);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 5.5 7 9l3.5-3.5' stroke='%237e8ea3' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-hint {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-soft);
  text-align: center;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
  cursor: pointer;
}
.form-consent__text {
  display: block;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.form-consent a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================
   CALLOUTS / BADGES / PARTNERS
   ========================================= */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 22px;
  background: #f2f4fb;
  border: 1px solid #dce2f1;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}
.callout__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-dark);
}
.callout--green {
  background: var(--green-soft);
  border-color: #c9eedb;
  color: #145840;
}
.callout--green .callout__icon { color: var(--green); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.badge--blue { background: var(--surface-blue); color: var(--blue-dark); }
.badge--green { background: var(--green-soft); color: var(--green); }
.badge--navy { background: var(--navy); color: var(--white); }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  padding: 14px 18px;
}
.partner-badge__info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.partner-badge__info span {
  font-size: 13px;
  color: var(--text-soft);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  margin-top: 24px;
  background: var(--footer-bg);
  color: rgba(255,255,255,.72);
  border-top: 0;
  padding-top: 44px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr .9fr 1.2fr;
  gap: 34px;
  padding-bottom: 34px;
}
.footer__logo-name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__logo-name span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
  font-weight: 700;
}
.footer__desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.footer__disclaimer {
  padding-top: 16px;
  border-top: 1px solid var(--footer-border);
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,.46);
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin-bottom: 14px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  transition: color var(--t);
}
.footer__col ul a:hover { color: var(--white); }
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.footer__phone:hover { color: #d9deff; }
.footer__phone--free { font-size: 16px; }
.footer__phone--free .free-tag {
  font-size: 11px;
  font-weight: 700;
  color: #9ce6bf;
  margin-left: 4px;
}
.footer__addr {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.footer__addr svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,.42);
}
.footer__bottom {
  border-top: 1px solid var(--footer-border);
  padding: 18px 0 28px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy,
.footer__blinks a {
  font-size: 13px;
  color: rgba(255,255,255,.44);
}
.footer__blinks {
  display: flex;
  gap: 20px;
}
.footer__blinks a:hover { color: var(--white); }

/* =========================================
   TOAST / ANIMATION
   ========================================= */
body.modal-open {
  overflow: hidden;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.success-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.16), transparent 38%),
    rgba(7, 12, 20, 0.72);
  backdrop-filter: blur(10px);
}
.success-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  padding: 34px 34px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(17, 26, 40, 0.98) 0%, rgba(10, 17, 30, 0.99) 100%);
  border: 1px solid rgba(201, 168, 76, 0.16);
  box-shadow:
    0 30px 80px rgba(4, 8, 16, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  transform: translateY(18px) scale(.98);
  transition: transform .22s ease;
  overflow: hidden;
}
.success-modal.show .success-modal__dialog {
  transform: translateY(0) scale(1);
}
.success-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}
.success-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.12);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.success-modal__close:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.22), 0 0 22px rgba(201, 168, 76, 0.14);
}
.success-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--gold-light);
}
.success-modal__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.success-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.success-modal__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.10);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.success-modal__emblem {
  position: relative;
  width: 164px;
  height: 164px;
  margin: 22px auto 16px;
}
.success-modal__emblem-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.22);
}
.success-modal__emblem-ring--one {
  transform: rotate(18deg) scale(1.02);
}
.success-modal__emblem-ring--two {
  transform: rotate(-24deg) scale(.82);
  border-color: rgba(152, 171, 199, 0.18);
}
.success-modal__emblem-core {
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-modal__emblem-logo {
  width: 82px;
  height: auto;
  transform: translate(0, 8px);
  filter:
    drop-shadow(0 10px 18px rgba(9, 15, 26, 0.32))
    drop-shadow(0 0 16px rgba(255, 230, 170, 0.16));
}
.success-modal__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .98;
  color: var(--white);
}
.success-modal__text {
  max-width: 380px;
  margin: 0 auto 28px;
  color: rgba(228, 221, 208, 0.72);
  font-size: 16px;
  line-height: 1.7;
}
.success-modal__action {
  width: 100%;
  justify-content: center;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(23,33,47,.96);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-md);
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  font-size: 14px;
  line-height: 1.6;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .08s; }
.fade-up-delay-2 { transition-delay: .16s; }
.fade-up-delay-3 { transition-delay: .24s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1180px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__side { display: none; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 16px; }
  .section,
  .section--lg { padding: 52px 0; }
  .section--sm { padding: 38px 0; }
  .section__head { margin-bottom: 28px; }
  .section__title { font-size: 30px; }
  .navbar__logo-text {
    gap: 2px;
    font-size: 15px;
  }
  .navbar__logo {
    gap: 10px;
  }
  .navbar__logo-mark {
    width: 40px;
    height: 46px;
  }
  .navbar__logo-text strong {
    font-size: 31px;
  }

  .navbar__nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(248,250,252,.98);
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .navbar__nav.open { display: flex; }
  .navbar__link,
  .navbar__dropdown-toggle {
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 16px;
    background: var(--surface);
    box-shadow: inset 0 0 0 1px var(--border);
  }
  .navbar__dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px;
    margin-top: 6px;
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--surface-soft);
  }
  .navbar__dropdown.open .navbar__dropdown-menu { display: block; }
  .navbar__phone { display: none; }
  .navbar__toggle { display: flex; }

  .hero { padding: 18px 0 30px; }
  .hero::before,
  .hero--page::before {
    inset: 10px 12px 0;
    border-radius: 26px;
  }
  .hero__inner,
  .hero--page .hero__inner {
    padding: 28px 16px 0;
    gap: 24px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn { width: 100%; }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .offer-grid,
  .grid--market {
    grid-template-columns: 1fr;
  }
  .grid--market .card:nth-child(1) {
    grid-column: span 1;
    min-height: auto;
  }
  .chip-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .chip-row--center {
    justify-content: flex-start;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .stats-row,
  .content-grid,
  .form-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .content-grid--reverse { direction: ltr; }
  .form-wrap { padding: 24px 18px; }
  .step {
    padding: 22px 18px;
  }
  .success-modal {
    padding: 18px;
  }
  .success-modal__dialog {
    padding: 26px 18px 20px;
    border-radius: 26px;
  }
  .success-modal__dialog::before {
    inset: 10px;
    border-radius: 20px;
  }
  .success-modal__emblem {
    width: 132px;
    height: 132px;
    margin-top: 18px;
  }
  .success-modal__emblem-core {
    inset: 26px;
  }
  .success-modal__emblem-logo {
    width: 66px;
    transform: translate(0, 6px);
  }
  .success-modal__title {
    font-size: 34px;
  }
  .success-modal__text {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .step__num {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   Premium Dark Theme
   ========================================= */
:root {
  --bg: #0D1825;
  --bg-alt: #111D2C;
  --surface: #16212F;
  --surface-soft: #1A2840;
  --surface-blue: rgba(201, 168, 76, 0.07);
  --surface-chip: rgba(22, 33, 47, 0.92);
  --surface-lilac: rgba(24, 36, 52, 0.85);
  --surface-peach: rgba(26, 36, 50, 0.85);
  --surface-gray: rgba(18, 28, 42, 0.9);
  --border: rgba(201, 168, 76, 0.13);
  --border-strong: rgba(201, 168, 76, 0.24);
  --text: #E4DDD0;
  --text-soft: rgba(228, 221, 208, 0.68);
  --text-faint: rgba(228, 221, 208, 0.40);
  --blue: #5B9BD5;
  --blue-dark: #4A8AC8;
  --blue-soft: rgba(91, 155, 213, 0.10);
  --blue-light: rgba(91, 155, 213, 0.10);
  --blue-mid: rgba(91, 155, 213, 0.20);
  --navy: #E4DDD0;
  --navy-mid: #1A2840;
  --green: #3BAA7A;
  --green-soft: rgba(59, 170, 122, 0.12);
  --warning-soft: rgba(201, 168, 76, 0.10);
  --gold: #C9A84C;
  --gold-light: #EDDFA0;
  --gold-soft: rgba(201, 168, 76, 0.10);
  --footer-bg: #080F1A;
  --footer-border: rgba(201, 168, 76, 0.10);
  --white: #FFFFFF;
  --surface2: rgba(22, 33, 47, 0.9);
  --accent-red: #E05454;
  --muted: rgba(228, 221, 208, 0.60);
  --light: rgba(228, 221, 208, 0.38);

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.30);
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 28px 72px rgba(0, 0, 0, 0.50);

  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

body {
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3,
.section__title, .hero__title, .offer-card__title, .tariff__name {
  font-family: var(--font-heading);
  font-weight: 700;
}
/* Logo stays Playfair Display — explicit override */
.navbar__logo-text strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* Sections */
.section { padding: 80px 0; }
.section--sm { padding: 52px 0; }
.section--surface { background: rgba(12, 19, 30, 0.60); }
.section--surface2 { background: rgba(10, 16, 26, 0.70); }
.section--blue { background: rgba(10, 16, 26, 0.55); }
.section--navy,
.section--dark {
  background: linear-gradient(180deg, #0A1320 0%, #070F19 100%);
}
.section__title {
  color: var(--text);
  font-size: clamp(34px, 4.2vw, 62px);
  letter-spacing: .02em;
  line-height: 1.06;
  font-weight: 700;
}
.section--navy .section__title,
.section--dark .section__title { color: #F0E8D8; }
.section__subtitle { color: var(--text-soft); }
.section--navy .section__subtitle,
.section--dark .section__subtitle { color: rgba(240, 232, 216, 0.68); }
.section__head { margin-bottom: 48px; }
.section__label {
  min-height: 36px;
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.18);
  color: var(--gold);
  backdrop-filter: blur(10px);
}
.section--navy .section__label,
.section--dark .section__label {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.18);
  color: var(--gold);
}

/* Navbar */
.navbar {
  background: rgba(9, 15, 26, 0.82);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
  background: rgba(9, 15, 26, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.40);
}
.navbar__logo-text strong {
  color: var(--text);
  text-shadow: none;
}
.navbar__link,
.navbar__dropdown-toggle {
  color: rgba(228, 221, 208, 0.72);
}
.navbar__link:hover,
.navbar__link.active,
.navbar__dropdown:hover .navbar__dropdown-toggle,
.navbar__dropdown.open .navbar__dropdown-toggle,
.navbar__dropdown-toggle.active {
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.16);
}
.navbar__dropdown-menu {
  background: rgba(11, 19, 32, 0.97);
  border-color: rgba(201, 168, 76, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar__dropdown-menu a {
  color: rgba(228, 221, 208, 0.70);
}
.navbar__dropdown-menu a:hover,
.navbar__dropdown-menu a.active {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}
.navbar__social { color: var(--gold-light); }
.navbar__social:hover { color: var(--gold); opacity: 1; }
.navbar__phone {
  color: var(--gold-light);
}
.navbar__phone:hover { color: var(--gold); }
.navbar__toggle {
  background: rgba(20, 32, 48, 0.90);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.16);
}
.navbar__toggle span { background: var(--gold-light); }

/* Buttons */
.btn {
  border-radius: 999px;
  transition: transform .24s ease-out, box-shadow .24s ease-out, background-color .24s ease-out, color .24s ease-out, border-color .24s ease-out;
}
.btn:hover { transform: translateY(-1px) scale(1.015); }
.btn--primary,
.btn--white {
  background: linear-gradient(180deg, #C9A84C 0%, #A8882D 100%);
  color: #0D1825;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.28), 0 2px 6px rgba(0,0,0,0.30);
}
.btn--primary:hover,
.btn--white:hover {
  background: linear-gradient(180deg, #D4B35A 0%, #B29235 100%);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.36), 0 2px 8px rgba(0,0,0,0.32);
}
.btn--outline {
  background: rgba(20, 30, 46, 0.70);
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.28);
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  background: rgba(201, 168, 76, 0.10);
  border-color: rgba(201, 168, 76, 0.46);
  color: var(--gold-light);
}
.btn--ghost-white {
  background: rgba(20, 30, 46, 0.70);
  color: var(--text);
  border-color: rgba(228, 221, 208, 0.16);
  backdrop-filter: blur(10px);
}
.btn--ghost-white:hover {
  background: rgba(28, 42, 62, 0.85);
  border-color: rgba(228, 221, 208, 0.28);
}

/* Cards / Surfaces */
.card,
.tariff,
.form-wrap,
.partner-badge,
.table-wrap,
.offer-card,
.hero__stats > div,
.hero__card,
.step {
  background: rgba(18, 28, 44, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card:hover,
.tariff:hover,
.offer-card:hover {
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 18px 44px rgba(0,0,0,0.40), 0 0 28px rgba(201, 168, 76, 0.07), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.card--service .card__icon,
.card--feature .card__icon {
  background: rgba(201, 168, 76, 0.10);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.18);
}
.card--service .card__title,
.card--feature .card__title {
  color: var(--text);
}
.card--service .card__text,
.card--feature .card__text {
  color: var(--text-soft);
}
.card--service .card__link {
  color: var(--gold);
}
.card--service:hover .card__link { gap: 10px; }

/* Step numbers */
.step__num {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  box-shadow: 0 6px 16px rgba(0,0,0,0.24);
  border: 1px solid rgba(201, 168, 76, 0.20);
}
.step__title { color: var(--text); }
.step__text { color: var(--text-soft); }

/* Stats */
.stat-item__value { color: var(--text); }
.stat-item__label { color: var(--text-soft); }

/* Tariffs */
.tariff__name { color: var(--text); }
.tariff__price { color: var(--gold); }
.tariff__price small { color: var(--text-faint); }
.tariff__item { color: var(--text-soft); }
.tariff--featured {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.12) 0%, rgba(18, 28, 44, 0.85) 100%);
  border-color: rgba(201, 168, 76, 0.28);
}
.tariff__badge {
  background: linear-gradient(135deg, #C9A84C 0%, #A8882D 100%);
  color: #0D1825;
}

/* Checklist icons on dark */
.tariff__item::before,
.check-list li::before {
  background-color: rgba(59, 170, 122, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 6.1 4.7 8.6 9.7 3.6' stroke='%233baa7a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border: 1px solid rgba(59, 170, 122, 0.22);
}
.check-list li { color: var(--text-soft); }

/* Card navy variant */
.card--navy {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.09) 0%, rgba(13, 21, 34, 0.95) 100%);
  border-color: rgba(201, 168, 76, 0.22);
  color: var(--text);
}
.card--navy .card__title { color: var(--gold-light); }
.card--navy .card__text { color: rgba(228, 221, 208, 0.68); }
.card--navy .card__icon {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.18);
}

/* Section dark/navy steps + stats */
.section--dark .step,
.section--navy .step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201, 168, 76, 0.10);
}
.section--dark .step__title,
.section--navy .step__title { color: #F0E8D8; }
.section--dark .step__text,
.section--navy .step__text { color: rgba(240, 232, 216, 0.66); }
.section--dark .step__num,
.section--navy .step__num {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.22);
  color: var(--gold);
  box-shadow: none;
}
.section--dark .stats-row,
.section--navy .stats-row {
  background: rgba(255,255,255,0.03);
  border-color: rgba(201, 168, 76, 0.10);
}
.section--dark .stat-item,
.section--navy .stat-item {
  background: transparent;
  border-color: rgba(201, 168, 76, 0.08);
}
.section--dark .stat-item__value,
.section--navy .stat-item__value { color: #F0E8D8; }
.section--dark .stat-item__label,
.section--navy .stat-item__label { color: rgba(240, 232, 216, 0.62); }

/* Forms */
.form-wrap {
  background: rgba(16, 25, 40, 0.82);
  border-color: rgba(201, 168, 76, 0.13);
}
.form-group label { color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(11, 18, 30, 0.75);
  border-color: rgba(201, 168, 76, 0.14);
  color: var(--text);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: rgba(14, 22, 36, 0.92);
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.10);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 5.5 7 9l3.5-3.5' stroke='%23c9a84c' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-consent { color: var(--text-soft); }
.form-consent a { color: var(--gold); }

/* Callouts */
.callout {
  background: rgba(16, 24, 38, 0.72);
  border-color: rgba(201, 168, 76, 0.14);
  color: var(--text-soft);
}
.callout__icon { color: var(--gold); }
.callout--green {
  background: rgba(59, 170, 122, 0.08);
  border-color: rgba(59, 170, 122, 0.20);
  color: rgba(130, 210, 170, 0.88);
}
.callout--green .callout__icon { color: #3BAA7A; }

/* Badges */
.badge--blue { background: rgba(91, 155, 213, 0.12); color: #88BFEA; }
.badge--green { background: rgba(59, 170, 122, 0.12); color: #6ECFA4; }
.badge--navy { background: rgba(201, 168, 76, 0.12); color: var(--gold); }

/* Chips */
.chip {
  background: rgba(18, 28, 44, 0.82);
  border-color: rgba(201, 168, 76, 0.14);
  color: var(--text-soft);
}
.chip--active,
.chip:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.30);
  color: var(--gold-light);
}

/* Offer cards */
.offer-card__eyebrow { color: var(--text-faint); }
.offer-card__title { color: var(--text); }
.offer-card__meta { color: var(--text-soft); }
.offer-card__data span { color: var(--text); }
.offer-card__cta { color: var(--gold); }

/* Partner badge */
.partner-badge__info strong { color: var(--text); }
.partner-badge__info span { color: var(--text-soft); }

/* Table */
.table-wrap thead th {
  background: rgba(12, 19, 32, 0.92);
  color: var(--text);
}
.table-wrap tbody td {
  color: var(--text-soft);
  border-top-color: rgba(201, 168, 76, 0.08);
}
.table-wrap tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.table-wrap tbody tr:hover td { background: rgba(201, 168, 76, 0.05); }
.table-wrap .t-good { color: #6ECFA4; }
.table-wrap .t-bad { color: #E05454; }
.table-wrap .t-mid { color: var(--text-soft); }

/* Hero — page variant */
.hero--page::before {
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.06), transparent 28%),
    linear-gradient(180deg, #121F2F 0%, #0D1926 100%);
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.hero--page .hero__title { color: #F0E8D8; }
.hero--page .hero__subtitle { color: rgba(228, 221, 208, 0.70); }
.hero--page .hero__badge {
  background: rgba(201, 168, 76, 0.09);
  border-color: rgba(201, 168, 76, 0.18);
  color: var(--gold-light);
}
.hero--page .hero__badge-dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.14);
}

/* Home hero */
.page-home .hero {
  padding: 42px 0 68px;
}
.page-home .hero::before {
  inset: 16px 24px 0;
  border-radius: 42px;
  background: rgba(10, 18, 30, 0.30);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.page-home .hero__inner {
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 56px;
  align-items: start;
  padding: 58px 0 10px;
}
.page-home .hero__badge {
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.18);
}
.page-home .hero__badge-dot {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 168, 76, 0.14);
}
.page-home .hero__title {
  max-width: 760px;
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1.02;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #F0E8D8;
  margin-bottom: 22px;
  font-weight: 700;
}
.page-home .hero__title mark {
  color: var(--gold);
  background: none;
}
.page-home .hero__subtitle {
  max-width: 580px;
  color: rgba(228, 221, 208, 0.68);
  font-size: 18px;
}
.page-home .hero__stats { margin-top: 34px; }
.page-home .hero__stat-value { color: #F0E8D8; }
.page-home .hero__stat-label { color: rgba(228, 221, 208, 0.62); }

/* Orbit visual */
.hero__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  margin-top: -60px;
  margin-left: 70px;
}
.hero__orbit {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__orbit::before,
.hero__orbit::after {
  content: "";
  position: absolute;
  inset: 14% 9%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.16);
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.06));
}
.hero__orbit::after { inset: 22% 18%; transform: rotate(28deg); }
.hero__orbit-line {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.10);
  border-radius: 50%;
}
.hero__orbit-line--1 { inset: 8% 6%; transform: rotate(14deg); }
.hero__orbit-line--2 { inset: 16% 12%; transform: rotate(-24deg); }
.hero__orbit-line--3 { inset: 26% 4%; transform: rotate(46deg); }
.hero__node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.22);
}
.hero__node--gold {
  background: radial-gradient(circle at 32% 30%, #fff7e3 0%, var(--gold-light) 28%, var(--gold) 70%, #8A6A1E 100%);
}
.hero__node--gold-deep {
  background: radial-gradient(circle at 32% 30%, #FFF0A0 0%, #D4A017 30%, #A0720A 68%, #5C3E06 100%);
  box-shadow: 0 0 14px rgba(180, 120, 10, 0.5);
}
.hero__node--navy {
  background: radial-gradient(circle at 32% 30%, #2C3E55 0%, #152030 38%, #090F1A 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
}
/* Orbit carriers — прозрачные контейнеры, которые вращаются */
.hero__carrier {
  position: absolute;
  inset: 0;
}
.hero__carrier .hero__node {
  position: absolute;
  top: var(--node-top, 5%);
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}
.hero__carrier--1 { --node-top: 4%;  animation: orbit-cw 26s linear infinite; animation-delay: -4s; }
.hero__carrier--2 { --node-top: 6%;  animation: orbit-cw 38s linear infinite; animation-delay: -15s; }
.hero__carrier--3 { --node-top: 4.5%; animation: orbit-ccw 21s linear infinite; animation-delay: -7s; }
.hero__carrier--4 { --node-top: 7%;  animation: orbit-ccw 32s linear infinite; animation-delay: -22s; }
.hero__carrier--5 { --node-top: 3%;  animation: orbit-cw 48s linear infinite; animation-delay: -30s; }

.hero__carrier--2 .hero__node,
.hero__carrier--4 .hero__node { width: 26px; height: 26px; }
.hero__carrier--5 .hero__node { width: 18px; height: 18px; }

@keyframes orbit-cw  { to { transform: rotate( 360deg); } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }

/* Кольца тоже слегка вращаются для глубины */
.hero__orbit-line--1 { animation: orbit-cw  90s linear infinite; }
.hero__orbit-line--2 { animation: orbit-ccw 120s linear infinite; }
.hero__orbit-line--3 { animation: orbit-cw  70s linear infinite; }

/* =========================================
   VANTA BACKGROUND
   ========================================= */
#vanta-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #0D1825;
}
.navbar, .hero, .section, .footer, #site-navbar, #site-footer {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__carrier, .hero__orbit-line--1,
  .hero__orbit-line--2, .hero__orbit-line--3,
  .ambient-bg__orb { animation: none; }
}
.hero__core {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.06) 0%, transparent 22%),
    radial-gradient(circle at center, rgba(11, 19, 30, 0.98) 0%, rgba(18, 28, 44, 0.96) 60%, rgba(201, 168, 76, 0.50) 100%);
  box-shadow:
    0 0 0 12px rgba(201, 168, 76, 0.06),
    0 0 56px rgba(201, 168, 76, 0.18),
    0 28px 54px rgba(0,0,0,0.40);
}
.hero__core-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.32);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.14);
}
.hero__core-value {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 62px;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: .03em;
}
.hero__core-label {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(11, 18, 30, 0.92);
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  border: 1px solid rgba(201, 168, 76, 0.22);
}
.hero__visual-note {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 92%);
  text-align: center;
  color: var(--text-soft);
}
.hero__visual-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  color: #F0E8D8;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero__visual-note span {
  font-size: 14px;
  line-height: 1.7;
}

/* Market grid */
.offer-card,
.grid--market .card:nth-child(1),
.grid--market .card:nth-child(3),
.grid--market .card:nth-child(7),
.grid--market .card:nth-child(10),
.offer-card--promo,
.offer-card--soft {
  background: rgba(18, 28, 44, 0.75);
  border-color: rgba(201, 168, 76, 0.12);
}
.grid--market .card:nth-child(1) {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.18);
}

/* Footer */
.footer {
  margin-top: 40px;
  background:
    radial-gradient(ellipse at top center, rgba(201, 168, 76, 0.07), transparent 22%),
    linear-gradient(180deg, #09131F 0%, #060D17 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.footer__logo-name { color: var(--gold-light); }
.footer__logo-name span { color: rgba(228, 221, 208, 0.34); }
.footer__desc { color: rgba(228, 221, 208, 0.58); }
.footer__disclaimer {
  border-top-color: rgba(201, 168, 76, 0.08);
  color: rgba(228, 221, 208, 0.32);
}
.footer__col h4 { color: var(--gold-light); }
.footer__col ul a { color: rgba(228, 221, 208, 0.58); }
.footer__col ul a:hover { color: var(--gold); }
.footer__phone { color: var(--gold-light); }
.footer__phone:hover { color: var(--gold); }
.footer__phone--free .free-tag { color: #6ECFA4; }
.footer__addr { color: rgba(228, 221, 208, 0.46); }
.footer__addr svg { color: rgba(201, 168, 76, 0.38); }
.footer__bottom { border-top-color: rgba(201, 168, 76, 0.08); }
.footer__copy,
.footer__blinks a { color: rgba(228, 221, 208, 0.34); }
.footer__blinks a:hover { color: var(--gold); }

/* Toast */
.toast {
  background: rgba(13, 21, 34, 0.97);
  border-color: rgba(201, 168, 76, 0.14);
}

/* Ambient animation */
@keyframes ambientFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -18px, 0) scale(1.04); }
}

/* Responsive */
@media (max-width: 1180px) {
  .page-home .hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero__visual { min-height: 440px; }
}

@media (max-width: 768px) {
  .section { padding: 58px 0; }
  .section__title { font-size: 32px; }
  .navbar__nav {
    background: rgba(9, 15, 26, 0.98);
    border-top-color: rgba(201, 168, 76, 0.12);
  }
  .navbar__link,
  .navbar__dropdown-toggle {
    background: rgba(18, 28, 44, 0.85);
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.12);
    color: rgba(228, 221, 208, 0.80);
  }
  .navbar__dropdown-menu {
    background: rgba(14, 22, 36, 0.96);
    border-color: rgba(201, 168, 76, 0.10);
  }
  .page-home .hero { padding: 18px 0 34px; }
  .page-home .hero::before { inset: 10px 12px 0; border-radius: 28px; }
  .page-home .hero__inner { padding: 30px 18px 10px; }
  .page-home .hero__title { font-size: 38px; }
  .hero__visual { min-height: 360px; }
  .hero__core { width: 200px; height: 200px; }
  .hero__core-value { font-size: 44px; }
  .hero__core-label { font-size: 13px; }
  .hero__visual-note {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .hero__title,
  .hero--page .hero__title { font-size: 28px; }
  .card, .tariff { padding: 20px 18px; border-radius: 24px; }
  .stat-item__value, .hero__stat-value { font-size: 28px; }
}
