:root {
  --bg: #ffffff;
  --bgSoft: #f7f8fb;
  --text: #0b1220;
  --muted: #5b667a;
  --border: rgba(15, 23, 42, 0.12);
  --borderStrong: rgba(15, 23, 42, 0.18);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadowSm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --primary: #1d4ed8;
  --primary2: #3b82f6;
  --primarySoft: rgba(29, 78, 216, 0.12);
  --success: #16a34a;
  --successSoft: rgba(22, 163, 74, 0.12);
  --radiusSm: 12px;
  --radius: 16px;
  --radiusLg: 22px;
  --container: 1120px;
  --sectionPad: 72px;
  --sectionPadMobile: 48px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

input,
button {
  font: inherit;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 2.2vw, 2.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skipLink {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 9999;
}

.skipLink:focus {
  transform: translateY(0);
}

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

.section {
  padding: var(--sectionPad) 0;
}

.soft {
  background: var(--bgSoft);
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 60ch;
  margin-top: 14px;
}

.finePrint {
  font-size: 0.9rem;
}

.small {
  font-size: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 500;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
}

.sectionHead {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadowSm);
}

.card1 {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadowSm);
}

.card1:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(29, 78, 216, 0.12);
  border-color: rgba(29, 78, 216, 0.15);
  background: white;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:focus-visible,
.navLink:focus-visible,
.accButton:focus-visible,
input:focus-visible {
  outline: 3px solid var(--primarySoft);
  outline-offset: 2px;
}

.btnPrimary {
  border-color: rgba(29, 78, 216, 0.35);
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  color: white !important;
  box-shadow: 0 12px 26px rgba(29, 78, 216, 0.22);
  margin-top: auto;
}

.btnPrimary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.26);
  color: blue !important;
}

.btnGhost {
  background: rgba(255, 255, 255, 0.86);
}

.btnGhost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadowSm);
  border-color: var(--borderStrong);
}

.btn-wide {
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
  white-space: nowrap;  /* запрещает перенос текста */
}

/* Header / Nav */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 248, 251, 0.72);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.siteHeader.isElevated {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
  padding: 14px 0;
}

.headerBrandGroup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brandMark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.18);
  flex: none;
}

.headerSocials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.headerSocialLink {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.headerSocialLink:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.headerSocialLink img {
  width: 22px;
  height: 22px;
  display: block;
}

.headerSocialTelegram {
  border-color: rgba(56, 189, 248, 0.3);
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.96), rgba(255, 255, 255, 0.92));
}

.headerSocialMax {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(243, 232, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover {
  background: #ffffff;
  color: var(--text);
}

.navMenu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navLink {
  color: rgba(11, 18, 32, 0.84);
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.navLink:hover {
  background: rgba(29, 78, 216, 0.08);
  color: rgba(11, 18, 32, 0.95);
}

.navCta {
  margin-left: 6px;
  padding: 10px 14px;
}

.navToggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.hamburger {
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.8);
  position: relative;
  border-radius: 999px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.8);
  border-radius: 999px;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

/* Hero */
.hero {
  padding-top: 72px;
  background: radial-gradient(900px 500px at 30% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
    radial-gradient(700px 420px at 85% 10%, rgba(59, 130, 246, 0.1), transparent 55%);
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.heroCopy h1 {
  margin-top: 16px;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.trustRow {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.trustLabel {
  font-size: 0.95rem;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 600;
}

.logoRow,
.logoWall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logoWall {
  gap: 12px;
}

.logoChip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(11, 18, 32, 0.7);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;  /* добавляем плавность */
}

.logoChip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(29, 78, 216, 0.15);
  border-color: rgba(29, 78, 216, 0.3);
  background: white;
  cursor: default;
}

.heroVisual {
  position: relative;
}

.glow {
  position: absolute;
  inset: -30px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, rgba(29, 78, 216, 0.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.14), transparent 55%);
  filter: blur(18px);
  z-index: -1;
}

.mockCard {
  border-radius: var(--radiusLg);
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(247, 248, 251, 0.8);
}

.mockDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.mockTitle {
  margin-left: 10px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.78);
  font-size: 0.95rem;
}

.mockBody {
  padding: 16px;
}

.mockKpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.kpi {
  padding: 12px;
  border-radius: var(--radiusSm);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;  /* можно настроить под нужную высоту */
}

.kpiLabel {
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 600;
}

.kpiValue {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2px;
}

.chartCard {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.chartHead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}

.chartHead .muted {
  margin-bottom: 16px;  /* добавляем отступ 16px после текста */
  line-height: 1.4;     /* немного увеличиваем межстрочный интервал */
}

.chartHead .mockBadge {
  align-self: flex-start;   /* поднимаем только год вверх */
  margin-top: -4px;         /* тонкая настройка (можно убрать или изменить) */
}

.chartTitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bars {
  height: 210px;
  display: flex;
  align-items: stretch;    /* было end */
  gap: 12px;
  padding-top: 10px;
}

.barWrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;  /* выравниваем содержимое по нижнему краю */
  height: 100%;
  position: relative;
}

.barValue {
  position: relative;         /* меняем с absolute на relative */
  margin-bottom: 4px;         /* отступ от столбца */
  text-align: center;
  font-size: 1rem;            /* увеличиваем размер */
  font-weight: 800;           /* ещё жирнее */
  color: #1d4ed8;             /* синий цвет как акцент */
  order: -1;                  /* поднимаем над столбцом */
  z-index: 2;
}

.barLabel {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;    /* чтобы не мешать кликам */
}

.barValue {
  top: -10px;              /* поднимите над столбцом (можно регулировать) */
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
}

.barLabel {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;                 /* поднимаем над столбцом */
  text-align: center;
  pointer-events: none;
  font-size: 0.7rem;          /* чуть больше размер */
  font-weight: 700;           /* жирное начертание */
  color: #111827;             /* темный цвет для контраста */
  text-transform: uppercase;  /* можно добавить для акцента */
}

.bar {
  width: 100%;
  height: 78%;             /* теперь процент от высоты .barWrap = 210px */
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(29,78,216,.78));
  min-height: 24px;        /* гарантирует, что даже 1% будет виден */
  box-shadow: 0 14px 24px rgba(29,78,216,.16);
  position: relative;
}
.bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent 42%);
  border-radius: inherit;
}

.bar:hover {
  box-shadow: 0 20px 30px rgba(29, 78, 216, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.8);
  transform: scale(1.02);
  cursor: pointer;
  transition: all 0.2s ease;
}

.casesGrid {
  display: grid;
  grid-template-columns: 1fr;  /* одна колонка */
  gap: 24px;  /* отступы между карточками */
  margin: 0 auto;
  /*max-width: 800px;  /* ограничиваем максимальную ширину для читаемости */
}

.caseCard {
  padding: 20px 20px 24px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;  /* высота по содержимому */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.caseCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(29, 78, 216, 0.1);
  border-color: rgba(29, 78, 216, 0.2);
}

.caseTag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.22);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary);
  width: fit-content;  /* чтобы тег не растягивался */
  margin-bottom: 4px;
}

.caseCard h3 {
  font-size: 1.25rem;
  margin: 0 0 8px 0;
  color: var(--text);
}

.caseCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}



.mockList {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.mockRow {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radiusSm);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.76);
}

.mockAvatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.22), rgba(29, 78, 216, 0.08));
  border: 1px solid rgba(29, 78, 216, 0.22);
}

.mockRowTitle {
  font-weight: 700;
  color: rgba(11, 18, 32, 0.84);
}

.mockRowSub {
  font-size: 0.92rem;
  color: rgba(11, 18, 32, 0.6);
  margin-top: 2px;
}

.mockBadge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.24);
  background: #eff6ff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.mockBadge.ok {
  border-color: rgba(22, 163, 74, 0.26);
  background: #ecfdf3;
  color: var(--success);
}

/* Proof */
.proofGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.testimonials {
  display: grid;
  gap: 14px;
}

.quoteCard {
  padding: 18px;
}

.quote {
  font-size: 1.06rem;
  color: rgba(11, 18, 32, 0.9);
  font-weight: 600;
}

.quoteMeta {
  display: grid;
  grid-template-columns: 64px 1fr auto;  /* меняем с 48px на 64px */
  align-items: center;
  gap: 16px;  /* увеличиваем отступы */
  margin-top: 14px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.03));
}

.quoteName {
  font-weight: 800;
}

.quoteRole {
  font-size: 0.92rem;
  color: rgba(11, 18, 32, 0.62);
}

.quoteMetric {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(247, 248, 251, 0.9);
  font-weight: 800;
  color: rgba(11, 18, 32, 0.76);
  font-size: 0.92rem;
}

/* Problem / split */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.painList {
  display: grid;
  gap: 12px;
}

.painItem {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.iconDot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.22);
  border: 1px solid rgba(29, 78, 216, 0.25);
  margin-top: 4px;
}

.painTitle {
  font-weight: 800;
  color: rgba(11, 18, 32, 0.88);
}

.callout {
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radiusLg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.calloutTitle {
  font-weight: 900;
}

/* Steps / Features */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stepCard {
  padding: 18px;
}

.stepIcon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.86);
  background: rgba(29, 78, 216, 0.12);
  border: 1px solid rgba(29, 78, 216, 0.2);
  margin-bottom: 12px;
}

.stepCard p {
  margin-top: 8px;
}

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

.featureCard {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featureCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Убираем transform у иконки, оставляем только тень */
.featureCard:hover .featureIcon {
  box-shadow: 0 6px 12px rgba(29, 78, 216, 0.15);
  background: rgba(29, 78, 216, 0.15); /* чуть темнее фон */
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.featureIcon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.16), rgba(29, 78, 216, 0.06));
  border: 1px solid rgba(29, 78, 216, 0.2);
  margin-bottom: 12px;
}

.featureCard {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
  padding: 18px; /* убедитесь, что padding явно задан */
  box-sizing: border-box;
}

.featureCard:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.featureCard:hover .featureIcon {
  background: rgba(29, 78, 216, 0.2);
  border-color: var(--primary);
  margin-bottom: 12px; /* фиксируем отступ под иконкой */
}

/* Outcomes */
.outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadowSm);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(29, 78, 216, 0.15);
  border-color: transparent;
  background: white;
}

.stat:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}

.statValue {
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.statLabel {
  margin-top: 6px;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 600;
}

/* Pricing */
.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.priceCard {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSm);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  height: 100%;
  position: relative;
}

.priceCard .priceTop h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.priceCard .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0;
}

.priceCard .priceValue {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.priceCard .list {
  margin: 0 0 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(11, 18, 32, 0.78);
  font-weight: 600;
}

.priceCard .btn {
  width: 100%;
  margin-top: auto;
}

.priceCard.featured {
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.12);
}

.priceCard.featured .badge {
  position: absolute;
  top: 33.33%;  /* ровно 1/3 от высоты карточки */
  right: 18px;
  transform: translateY(-50%);  /* центрируем по вертикали */
  /* остальные стили */
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);  /* мягкий зеленый фон */
  border: 1px solid #10b981;
  font-weight: 700;
  font-size: 0.8rem;
  color: #065f46;  /* темно-зеленый текст */
  margin-bottom: 12px;
  width: fit-content;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4), 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.badge:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.7);
  transform: translateY(-1px);
}

/* Accordion */
.accordion {
  display: grid;
  gap: 10px;
}

.accItem {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadowSm);
  overflow: hidden;
}

.accButton {
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accButton::after {
  content: "+";
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  color: rgba(11, 18, 32, 0.7);
  background: rgba(247, 248, 251, 0.9);
  flex: 0 0 auto;
}

.accButton[aria-expanded="true"]::after {
  content: "–";
}

.accPanel {
  padding: 0 16px 16px 16px;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 600;
  max-width: 80ch;
}

/* Final CTA */
.finalGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.checkList {
  margin: 16px 0 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(11, 18, 32, 0.74);
  font-weight: 700;
}

.demoForm {
  padding: 18px;
}

.formHead {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.formTitle {
  font-weight: 900;
  font-size: 1.2rem;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.fieldLabel {
  font-weight: 800;
  color: rgba(11, 18, 32, 0.82);
  font-size: 0.95rem;
}

input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
}

input::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

.formSuccess {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.25);
  background: var(--successSoft);
  font-weight: 800;
  color: rgba(11, 18, 32, 0.8);
}

/* Footer */
.siteFooter {
  padding: 48px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footerBrand {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

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

.footerTitle {
  font-weight: 900;
  margin-bottom: 10px;
}

.footerCol a {
  display: block;
  padding: 8px 0;
  color: rgba(11, 18, 32, 0.7);
  font-weight: 700;
}

.footerCol a:hover {
  color: rgba(11, 18, 32, 0.92);
}

.footerPhone {
  margin-top: 10px;
  font-weight: 800;
}

.footerPhone a {
  color: var(--text);
  font-weight: 800;
}

.contactLink {
  position: relative;
  display: block;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: contactGlowShift 5s ease-in-out infinite;
}

.contactLinkTelegram {
  background-image: linear-gradient(120deg, #1595e7 0%, #52c7ff 35%, #b8f0ff 50%, #38bdf8 68%, #0f6edc 100%);
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.18);
}

.contactLinkMax {
  background-image: linear-gradient(120deg, #6d28d9 0%, #8b5cf6 30%, #d8b4fe 50%, #a855f7 72%, #5b21b6 100%);
  text-shadow: 0 0 18px rgba(139, 92, 246, 0.2);
}

.contactLink:hover {
  filter: brightness(1.08);
}

@keyframes contactGlowShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.revealSection {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.revealSection.isVisible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .revealSection,
  .revealSection.isVisible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .heroGrid,
  .proofGrid,
  .split,
  .outcomes,
  .finalGrid,
  .footerGrid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .section {
    padding: var(--sectionPadMobile) 0;
  }

  .hero {
    padding-top: 48px;
  }

  .headerInner {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .headerBrandGroup {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
  }

  .headerSocials {
    gap: 8px;
    margin-left: auto;
  }

  .headerSocialLink {
    width: 40px;
    height: 40px;
  }

  .nav {
    width: auto;
    flex: none;
    justify-content: flex-end;
  }

  .navToggle {
    display: inline-flex;
  }

  .navMenu {
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    width: min(420px, calc(100vw - 32px));
    padding: 12px;
    border-radius: var(--radiusLg);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .navMenu.isOpen {
    display: flex;
  }

  .navLink {
    padding: 12px 12px;
  }

  .navCta {
    margin-left: 0;
    width: 100%;
  }

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

/* Blog */
.blogHero {
  padding-top: 72px;
}

.blogHead {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: end;
}

.blogMetaRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-top: 20px;
}

.blogMetaLeft {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(11, 18, 32, 0.78);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: default;
}

.tag.isActive {
  border-color: rgba(29, 78, 216, 0.3);
  background: rgba(29, 78, 216, 0.12);
}

.sortLabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sortSelect {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.78);
}

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

.postCard {
  padding: 18px;
  display: grid;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadowSm);
}

.postThumb {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(135deg, rgba(248, 250, 252, 1), rgba(241, 245, 249, 1));
}

.postThumbPlaceholder {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(29, 78, 216, 0.18), transparent 38%),
    radial-gradient(circle at 82% 72%, rgba(14, 165, 233, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(239, 246, 255, 1), rgba(248, 250, 252, 1));
}

.postThumbPlaceholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(11, 18, 32, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.postCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(29, 78, 216, 0.12);
  border-color: rgba(29, 78, 216, 0.2);
  background: white;
}

/* Дополнительный эффект для тега статьи при наведении на карточку */
.postCard:hover .postTag {
  background: rgba(29, 78, 216, 0.15);
  border-color: rgba(29, 78, 216, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease;
}

/* Эффект для заголовка */
.postCard:hover .postTitle {
  color: var(--primary);
  transition: color 0.25s ease;
}

/* Эффект для ссылки "Читать материал" */
.postCard:hover .postLink {
  color: var(--primary2);
  text-decoration: underline;
  transition: color 0.25s ease;
}

.postCard[hidden] {
  display: none;
}

.postMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.postTag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.22);
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.86);
}

.postTitle {
  font-size: 1.2rem;
  margin-top: 4px;
}

.postLink {
  margin-top: 6px;
  font-weight: 700;
  color: var(--primary);
}

.postLink:hover {
  text-decoration: underline;
}

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

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

  .blogMetaRow {
    align-items: flex-start;
  }

  .sortLabel {
    margin-left: -2px;
  }
}

/* Article */
.articleHero {
  background: radial-gradient(840px 460px at 20% 10%, rgba(29, 78, 216, 0.12), transparent 60%),
    radial-gradient(640px 380px at 90% 0%, rgba(59, 130, 246, 0.1), transparent 60%);
}

.backLink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: rgba(11, 18, 32, 0.78);
  margin-bottom: 18px;
}

.backLink:hover {
  color: rgba(11, 18, 32, 0.96);
}

.articleHeader {
  display: grid;
  gap: 10px;
}

.articleTagRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.articleMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.articleMeta .dot {
  color: rgba(11, 18, 32, 0.4);
}

.articleMedia {
  margin: 22px 0 0 0;
  display: grid;
  gap: 8px;
}

.articleImage {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: block;
  object-fit: cover;
  background: radial-gradient(circle at 10% 10%, rgba(29, 78, 216, 0.2), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.16), transparent 55%),
    linear-gradient(135deg, rgba(248, 250, 252, 1), rgba(241, 245, 249, 1));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.articleImagePlaceholder {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.articleImagePlaceholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(11, 18, 32, 0.7);
  font-weight: 600;
}

.articleLayout {
  max-width: 760px;
}

.articleBody {
  display: grid;
  gap: 16px;
  font-size: 1.02rem;
  color: rgba(11, 18, 32, 0.88);
}

.articleBody h2 {
  margin-top: 12px;
  font-size: 1.35rem;
}

.articleBody ul,
.articleBody ol {
  margin: 0 0 0 1.25rem;
  display: grid;
  gap: 6px;
}

#product {
  background: radial-gradient(900px 500px at 30% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
              radial-gradient(700px 420px at 85% 10%, rgba(59, 130, 246, 0.1), transparent 55%),
              var(--bg);
}

/* Модальное окно */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;  /* по умолчанию скрыто */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay[style*="display: flex"] {
  display: flex !important;
}

.modal-container {
  background: white;
  border-radius: 24px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #667085;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0b1220;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #0b1220;
  letter-spacing: -0.02em;
}

.modal-subtitle {
  color: #5b667a;
  margin-bottom: 24px;
  font-size: 1rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-field-label {
  font-weight: 600;
  color: #0b1220;
  font-size: 0.95rem;
}

.required {
  color: #e53e3e;
  margin-left: 2px;
}

.modal-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: white;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.modal-field input:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.modal-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #0b1220;
  font-size: 0.95rem;
}

.modal-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1d4ed8;
}

.modal-submit {
  width: 100%;
  padding: 16px !important;
  font-size: 1.1rem;
  margin-top: 8px;
}

.modal-note {
  font-size: 0.8rem;
  color: #5b667a;
  text-align: center;
  margin: 8px 0 0 0;
}

/* Стили для результатов калькулятора */
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.result-row:last-child {
  border-bottom: none;
}
.result-label {
  color: var(--muted);
  font-weight: 500;
}
.result-value {
  font-weight: 700;
  color: var(--text);
}
.result-value.highlight {
  color: var(--primary);
  font-size: 1.2rem;
}

.benefits-group {
    padding-left: 24px;  /* нужный вам отступ */
}

.benefits-group input[type="checkbox"] {
    margin: 0;  /* убирает возможные браузерные отступы */
}
