/* === MODERN LANGUAGE SWITCHER === */
.lang-switch-wrapper {
  position: relative;
  margin-right: 20px;
  z-index: 1001;
}

/* Скрытый чекбокс для управления открытием без JS */
.lang-checkbox {
  display: none;
}

/* Кнопка переключения */
.lang-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.lang-label:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.lang-arrow {
  transition: transform 0.3s ease;
}

/* Выпадающее меню */
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: rgba(15, 23, 42, 0.95); /* Темный фон под стать сайту */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Логика открытия через CSS (чекбокс) */
.lang-checkbox:checked ~ .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-checkbox:checked ~ .lang-label .lang-arrow {
  transform: rotate(180deg);
}

/* Пункты меню */
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-option.active {
  background: var(--primary-blue); /* Твой фирменный синий */
  color: white;
}

/* Адаптив для мобильных */
@media (max-width: 1024px) {
  .lang-switch-wrapper {
    margin-right: 0;
    /* margin-bottom: 20px; Если меню бургер  */
  }
}

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

/* Адаптив для мобильных */
@media (max-width: 576px) {
  .header-right {
    /* flex-direction: column; */
    /* align-items: flex-end */
  }

  .logo {
    font-size: 15px !important;
  }

  .btn-header {
    font-size: 12px !important;
    width: 100px !important;

    padding: 10px 8px !important;
  }
  .lang-label {
    padding: 4px 6px;
  }
}

/* .leng {
  display: flex;
  gap: 10px;
}

.leng .activ {
  color: #2f6df0;
}
.leng a {
  color: #ffffff;
} */

/* === ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ И СБРОС === */
:root {
  --primary-blue: #3a7cff;
  --primary-hover: #2f6df0;
  --text-dark: #ffffff;
  --text-gray: #9ca3af;
  --bg-light: #0b1120;
  --accent-green: #4cca7a;
  --accent-orange: #ff832b;
  --accent-mint: #5be7c4;
  --accent-purple: #9b6bfc;
  --card-bg: rgba(31, 31, 31, 0.55);
  --card-border: rgba(255, 255, 255, 0.08);
  --font-main: "Inter", sans-serif;
  --font-head: "Space Grotesk", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.container {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ОБЩИЕ КНОПКИ И ЗАГОЛОВКИ */
.btn-glow {
  width: 100%;
  padding: 18px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(58, 124, 255, 0.25);
  transition: 0.3s;
  display: inline-block;
  text-align: center;
}
.btn-glow:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  color: var(--accent-green);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 42px;
  margin: 15px 0;
  color: #fff;
  line-height: 1.2;
}
.text-highlight {
  background: linear-gradient(90deg, var(--accent-mint), #bcd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* МОБИЛЬНЫЙ ФИКС ДЛЯ ОБЩИХ ЭЛЕМЕНТОВ */
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  h1 {
    font-size: 34px;
  }
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .program-header .section-title {
    font-size: 28px !important;
  }
}

/* === HEADER STYLES === */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}
.nav-menu {
  display: flex;
  gap: 40px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--primary-blue);
}
.btn-header {
  padding: 10px 24px;
  background: var(--primary-blue);
  color: white;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(58, 124, 255, 0.25);
}
.btn-header:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .btn-header {
    width: 150px;
    padding: 10px;
    text-align: center;
  }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  padding: 180px 20px 110px;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(58, 124, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(91, 231, 196, 0.12),
      transparent 45%
    ),
    #0b1120;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.25;
  pointer-events: none;
}
.hero-section .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-right: 20px;
  max-width: 650px;
}

/* UI Elements */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(14px);
}
.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 131, 43, 0.55);
}
.badge-ping {
  width: 10px;
  height: 10px;

  top: 34%;
  left: 10px;

  border-radius: 50%;
  background: rgba(255, 131, 43, 0.65);
  position: absolute;
  animation: ping 1.5s infinite;
}
.badge-text {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

h1 {
  font-family: var(--font-head);
  font-size: 56px;
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}
.text-blue {
  color: var(--primary-blue);
}
.hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-gray);
  margin-bottom: 34px;
  max-width: 560px;
  font-weight: 500;
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.btn {
  padding: 18px 32px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  transition: 0.25s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 14px 30px rgba(58, 124, 255, 0.28);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Stats & Visuals */
.stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-mint);
}
.stat-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  width: 580px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(58, 124, 255, 0.22) 0%,
    rgba(11, 17, 32, 0) 65%
  );
  transform: scale(1.2);
  filter: blur(2px);
}
.main-brain-img {
  position: relative;
  z-index: 5;
  max-width: 520px;
  height: 100%;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55));
  animation: breathe 8s ease-in-out infinite;
}

/* Widgets */
.floating-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fw-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}
.fw-content {
  display: flex;
  flex-direction: column;
}
.fw-label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.fw-value {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

/* Widget Colors & Pos */
.bg-green {
  background: rgba(76, 202, 122, 0.18);
  color: #b9f6cf;
}
.bg-blue {
  background: rgba(58, 124, 255, 0.18);
  color: #cfe0ff;
}
.bg-orange {
  background: rgba(255, 131, 43, 0.18);
  color: #ffd8bf;
}

/* Позиционирование */
.pos-roi {
  bottom: 60px;
  right: 0px;
  padding: 16px 20px;
}
.pos-roi .fw-value {
  font-size: 20px;
}
.pos-time {
  top: 150px;
  left: -40px;
}
.pos-report {
  top: 160px;
  right: 0;
}
.pos-cost {
  bottom: 110px;
  left: -20px;
}
.pos-accuracy {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  border-radius: 50px;
  padding: 10px 18px;
}

.pos-forecast {
  top: 55%;
  right: 0px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
}
.bar {
  width: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}
.bar.active {
  background: var(--accent-mint);
}

.pos-agent {
  bottom: -10px;
  left: 50%;
  margin-left: -120px;
  border-radius: 50px;
  border: 1px solid rgba(58, 124, 255, 0.25);
  box-shadow: 0 16px 40px rgba(58, 124, 255, 0.18);
}

/* Анимации */
@keyframes float-v1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes float-v2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes float-v3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.anim-slow {
  animation: float-v1 6s ease-in-out infinite;
}
.anim-mid {
  animation: float-v2 5s ease-in-out infinite;
  animation-delay: 1s;
}
.anim-fast {
  animation: float-v3 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
/* Animations */
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes float-v1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.anim-slow {
  animation: float-v1 6s infinite;
}
.anim-mid {
  animation: float-v1 5s infinite;
}

.hero-visual-mob {
  display: none !important;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 46px;
  }

  .hero-visual-pc {
    width: 350px;
  }

  .pos-accuracy {
    top: 47%;
  }
  .pos-forecast {
    top: 60%;
  }
}

@media (max-width: 1024px) {
  .hero-section .container {
    justify-content: center;
  }

  .hero-content {
    padding-right: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-visual-mob {
    display: block !important;
    margin: 0 auto;
    margin-top: 40px;
  }
  .hero-visual-pc {
    display: none !important;
  }
  .btn-group {
    justify-content: center;
  }
}

@media (max-width: 776px) {
  .hero-visual {
    width: 85%;
    max-width: 400px;
  }
}

/* === TRUST SECTION === */
.trust-section {
  padding: 80px 0;
  background-color: #080e20;
}
.trust-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.trust-wrapper {
  background: linear-gradient(180deg, #0b1120 0%, #070b16 100%);
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  transition: 0.3s;
}
.trust-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.trust-value {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-mint);
  line-height: 1;

  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.trust-value span {
  display: block;
  padding-bottom: 5px;
}

.trust-value.small-text {
  font-size: 28px;
}
.trust-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.glow-corner {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(58, 124, 255, 0.35) 0%,
    transparent 70%
  );
  filter: blur(46px);
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .trust-value {
    font-size: 36px;
  }
  .trust-wrapper {
    padding: 30px 20px;
  }

  .trust-section h2 {
    font-size: 26px;
  }
}

/* === BUSINESS OWNER (PAIN/SOLUTION) === */

:root {
  --neon-red: #ff3333; /* Сделали более ярким */
  --neon-green: #00e676;
  --text-body: #b0b8c4;
}

.business-owner-section {
  padding: 100px 0;
  background: radial-gradient(circle at 0% 0%, #0f172a 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}

/* Фон-сетка */
.business-owner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.bo-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 35px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Левая колонка */
.bo-tag {
  display: inline-block;
  background: rgba(255, 131, 43, 0.14);
  color: #ffd6bf;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 131, 43, 0.22);
}

.bo-content h2 {
  font-family: var(--font-head);
  color: white;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.bo-intro {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* === ЗАГОЛОВКИ СПИСКОВ (УЛУЧШЕННЫЕ) === */
.list-title {
  display: flex;
  align-items: center;
  justify-content: center; /* Центрирование */
  width: 100%;
  text-align: center;
  font-size: 1.5rem; /* Крупнее */
  font-weight: 800;
  margin-bottom: 30px;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-red {
  color: var(--neon-red);
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.6); /* Красное свечение */
}

.text-green {
  color: var(--neon-green);
  text-shadow: 0 0 15px rgba(0, 230, 118, 0.4); /* Зеленое свечение */
}

/* Списки */
.comparison-wrapper {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.comparison-block {
  margin-bottom: 30px;
  width: 50%;
}

@media (max-width: 576px) {
  .comparison-block {
    width: 100%;
  }
}

.margin-bottom-large {
  margin-bottom: 50px;
}

.modern-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ml-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.ml-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
}

.ml-item.highlight-green {
  background: rgba(0, 230, 118, 0.04);
  border-left: 3px solid var(--neon-green);
}

.ml-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

/* === ПРАВАЯ КОЛОНКА (SOLUTION BOX) === */
.solution-wrapper {
  position: relative;
  padding: 20px;
}

.solution-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(58, 124, 255, 0.18) 0%,
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
}

.solution-box {
  position: relative;
  z-index: 1;
  background: rgba(31, 31, 31, 0.4);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.65);
}

.solution-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.box-header {
  text-align: center;
  margin-bottom: 18px;
}

.box-header h3 {
  color: white;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.box-header p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.separator {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-top: 18px;
}

/* ROI Grid */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
  margin-top: 20px;
}

.roi-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: 0.2s;
}

.roi-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.roi-item.full-width {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

/* Highlight item styles */
.highlight-item {
  background: linear-gradient(
    90deg,
    rgba(58, 124, 255, 0.12),
    rgba(0, 0, 0, 0.25)
  );
  border: 1px solid rgba(58, 124, 255, 0.22);
}

.roi-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent-mint);
  text-shadow: 0 0 16px rgba(91, 231, 196, 0.16);
}

.roi-item.full-width .roi-value {
  margin-bottom: 0;
}
.roi-value.large {
  font-size: 30px;
}

.roi-label {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Button Glow */
.btn-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(58, 124, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-glow:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(58, 124, 255, 0.35);
}

/* Адаптив */
@media (max-width: 1024px) {
  .bo-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
  .roi-item.full-width {
    grid-column: span 1;
    flex-direction: column;
    gap: 8px;
  }
  .bo-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .comparison-wrapper {
    flex-direction: column;
  }
}

.identity-section-wrapper {
  margin: 0 auto;
}

.identity-section {
  padding: 80px 0;
  background: #0a0e14;
  color: #fff;
  overflow: hidden;
}

.identity-header {
  text-align: center;
  margin-bottom: 50px;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.identity-card {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Ефект для першої групи (AI) */
.card-proactive {
  border-color: rgba(0, 230, 118, 0.2);
  background: radial-gradient(
    circle at top right,
    rgba(0, 230, 118, 0.05),
    transparent
  );
}

.card-proactive:hover {
  transform: translateY(-10px);
  border-color: var(--neon-green);
  box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
}

/* Ефект для другої групи (Ручна) */
.card-reactive {
  opacity: 0.7;
}

.card-reactive:hover {
  opacity: 1;
  border-color: var(--neon-red);
}

.card-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
}

.identity-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.card-proactive .identity-icon {
  color: var(--neon-green);
  background: rgba(0, 230, 118, 0.1);
}
.card-reactive .identity-icon {
  color: var(--neon-red);
  background: rgba(255, 77, 77, 0.1);
}

.identity-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.identity-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #b0b8c4;
  margin-bottom: 25px;
  min-height: 80px;
}

.identity-label {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.identity-label.success {
  background: rgba(0, 230, 118, 0.1);
  color: var(--neon-green);
}
.identity-label.danger {
  background: rgba(255, 77, 77, 0.1);
  color: var(--neon-red);
}

.identity-cta {
  text-align: center;
  margin-top: 60px;
}

.identity-cta p {
  font-size: 20px;
  margin-bottom: 25px;
}

.cta-arrow {
  animation: bounce 2s infinite;
  margin-bottom: 10px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* --- Адаптація для телефону --- */
@media (max-width: 768px) {
  .identity-grid {
    grid-template-columns: 1fr; /* Картки одна під одною */
    padding: 0 20px;
  }

  .identity-section {
    padding: 50px 0;
  }

  .identity-header h2 {
    font-size: 24px;
    padding: 0 15px;
  }

  .identity-card {
    padding: 30px 20px;
  }

  .identity-card p {
    min-height: auto;
  }

  .identity-cta {
    width: 80%;
    margin: 0 auto;
  }
}

.audience-section {
  padding: 100px 0;
  background: #05070a;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--neon-green);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title {
  font-size: 42px;
  margin: 15px 0;
  color: #fff;
}

.audience-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  border-color: rgba(0, 230, 118, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

/* Акцент на первой карточке для CFO */
.featured-card {
  border-color: rgba(79, 172, 254, 0.2);
  background: linear-gradient(
    180deg,
    rgba(79, 172, 254, 0.05) 0%,
    transparent 100%
  );
}

.card-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.icon-box {
  font-size: 32px;
  background: rgba(255, 255, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.audience-sparkle {
  color: var(--neon-green);
  font-size: 20px;
}

.audience-card h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #fff;
}

.audience-path {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--neon-green);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.card-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 25px;
}

.audience-benefits {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.audience-benefits li {
  font-size: 14px;
  color: #cbd5e1;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.4;
}

.audience-benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: bold;
}

/* Адаптація */
@media (max-width: 1024px) {
  .audience-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .audience-grid-3 {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .section-title {
    font-size: 28px;
  }
}

/* === PROGRAM SECTION STYLES === */

.program-section {
  padding: 120px 0 0 0;
  background: var(--bg-light);
  position: relative;
}

.program-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.program-header {
  text-align: center;
  margin-bottom: 80px;
}

.program-header .section-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.program-timeline {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.day-block {
  position: relative;
  margin-bottom: 120px;
}

.day-block::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-blue);
  z-index: 2;
}

.day-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.day-label {
  background: var(--primary-blue);
  color: white;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.day-label.purple {
  background: var(--accent-purple);
}
.day-label.orange {
  background: var(--accent-orange);
}

.day-level {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.day-info h3 {
  font-family: var(--font-head);
  font-size: 32px;
  margin-bottom: 15px;
}

.day-meta {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 800px;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .day-info h3 {
    font-size: 26px;
  }
}

/* Day 1 Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tool-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.tool-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  opacity: 0.6;
}

.tool-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}
.tool-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

.highlight-mint {
  border-color: rgba(91, 231, 196, 0.3);
}
.highlight-blue {
  border-color: rgba(58, 124, 255, 0.3);
}

.tool-save {
  margin-top: 15px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-mint);
  font-weight: 700;
}

/* Day 2 List */
.agents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.agent-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 20px 25px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.agent-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.agent-row.special {
  background: rgba(58, 124, 255, 0.05);
  border-color: rgba(58, 124, 255, 0.2);
}

.agent-main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.agent-tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  min-width: 50px;
  text-align: center;
}

.agent-main h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.agent-main p {
  font-size: 13px;
  color: var(--text-gray);
}

.agent-main-text {
  text-align: left;
}

.agent-stat {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-orange);
  font-weight: 700;
  white-space: nowrap;
}

.agent-stat.green {
  color: var(--accent-mint);
}

/* Day 3 Grid */
.final-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.final-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 35px;
  text-align: center;
}

.final-card.master {
  background: linear-gradient(
    145deg,
    rgba(58, 124, 255, 0.1),
    rgba(31, 31, 31, 0.4)
  );
  border-color: var(--primary-blue);
}

.final-card.bonus {
  border: 1px dashed var(--accent-orange);
  position: relative;
}

.bonus-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: white;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
}

.final-card .icon-box {
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.05);
}

.program-summary-box {
  margin-top: 50px;
  padding: 30px;
  background: rgba(58, 124, 255, 0.05);
  border-radius: 20px;
  border-left: 4px solid var(--primary-blue);
  font-size: 18px;
  color: #fff;
}

.day-footer {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .tools-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }
  .agent-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .program-timeline {
    padding-left: 25px;
  }
  .day-block::before {
    left: -31px;
  }
  .program-header .section-title {
    font-size: 32px;
  }
}

@media (max-width: 996px) {
  .agent-stat {
    font-size: 14px;
  }
}
/* === MARATHON PRICING SECTION === */

.marathon-section {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

.marathon-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.marathon-price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Фонове світіння */
.price-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(58, 124, 255, 0.15) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.price-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Ліва частина (Список) --- */
.features-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.5;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: rgba(76, 202, 122, 0.15); /* Green tint */
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.included-list li span {
  color: #fff;
  font-weight: 700;
}

/* --- Права частина (Оффер) --- */
.price-offer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discount-badge {
  background: rgba(58, 124, 255, 0.15);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.price-box {
  margin-bottom: 25px;
}

.price-tag {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.price-old {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #ef4444; /* Червоний для старої ціни */
  opacity: 0.8;
}

.price-old strike {
  color: inherit;
}

/* Кнопка */
.btn-glow {
  width: 100%;
  padding: 18px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(58, 124, 255, 0.25);
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 20px;
}

.btn-glow:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(58, 124, 255, 0.35);
}

.guarantee-row {
  font-size: 13px;
  line-height: 1.5;
  color: var(--accent-mint); /* Зеленуватий для довіри */
  font-weight: 600;
  opacity: 0.9;
}

/* Адаптив */
@media (max-width: 900px) {
  .marathon-price-card {
    padding: 30px 20px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .price-offer {
    width: 100%;
  }
}

/* === REVIEWS SECTION === */
.reviews-section {
  padding: 80px 0;
  background-color: #0f172a;
  overflow: hidden;
}

.reviews-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-out;
}

.review-card {
  flex: 0 0 360px;
  width: 360px;
  background: rgba(31, 31, 31, 0.4); /* Темний напівпрозорий фон */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 16px;
  font-family: var(--font-mono, monospace);
  flex-shrink: 0;
}

.bg-blue {
  background: #3a7cff;
}
.bg-orange {
  background: #ff832b;
}
.bg-green {
  background: #4cca7a;
}

/* Стилі тексту, яких не вистачало */
.reviewer-info h4 {
  color: white;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.reviewer-info p {
  color: #94a3b8;
  font-size: 12px;
  margin: 2px 0 0 0;
}

.stars {
  color: #ffd700; /* Жовті зірки */
  font-size: 14px;
  letter-spacing: 2px;
}

.review-body p {
  color: #cbd5e1; /* Світло-сірий текст відгуку */
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.verified-badge {
  font-size: 12px;
  color: #4ade80; /* Зелений текст перевірки */
  font-weight: 700;
}

/* Кнопки навігації */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #0f172a;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}

.slider-btn:hover {
  background: #3a7cff;
  color: white;
}

.prev-btn {
  left: -20px;
}
.next-btn {
  right: -20px;
}

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

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #3a7cff;
  width: 30px;
  border-radius: 5px;
}

/* Адаптив */
@media (max-width: 1024px) {
  .reviews-track {
    overflow-x: auto;
    padding: 0 20px;
    transform: none !important;
    width: 100%;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }
  .review-card {
    flex: 0 0 85vw;
    width: 85vw;
    scroll-snap-align: center;
  }
  .slider-btn {
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
  .dots-container {
    display: none;
  }
}

/* === BLOCK 9: FOMO === */

.fomo-section {
  padding: 100px 0;
  background: var(--bg-light);
  /* Легкий помаранчевий відблиск на фоні для тривожності/уваги */
  background-image: radial-gradient(
    circle at 80% 50%,
    rgba(255, 131, 43, 0.08),
    transparent 50%
  );
}

.fomo-card {
  background: var(--card-bg);
  border: 1px solid var(--accent-orange); /* Помаранчевий бордер для уваги */
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(255, 131, 43, 0.1);
}

/* Текстова частина */
.fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 131, 43, 0.15);
  color: var(--accent-orange);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse-orange 1.5s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 131, 43, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 131, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 131, 43, 0);
  }
}

.text-orange {
  color: var(--accent-orange);
}

.fomo-desc {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

.fomo-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.fomo-benefits li {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .fomo-benefits {
    text-align: left;
  }
}

/* Віджет з прогрес-баром */
.seats-widget {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
}

.seats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  font-weight: 700;
}

.seats-number {
  color: #fff;
  font-size: 18px;
}

.progress-track {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  width: 86%; /* Заповненість */
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), #ff5e00);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(255, 131, 43, 0.5);
}

.seats-note {
  font-size: 13px;
  color: var(--accent-orange);
  text-align: center;
  font-weight: 600;
  margin: 0;
}

/* Адаптив */
@media (max-width: 900px) {
  .fomo-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 40px;
  }
  .seats-widget {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* === GUARANTEE SECTION === */

.guarantee-section {
  padding: 80px 0 120px; /* Трохи більше відступу знизу перед футером */
  background: var(--bg-light);
  position: relative;
}

.guarantee-box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(91, 231, 196, 0.03); /* Дуже легкий тінт м'ятного */
  border: 1px solid rgba(91, 231, 196, 0.2);
  border-radius: 32px;
  padding: 50px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Фонове світіння */
.guarantee-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(91, 231, 196, 0.15) 0%,
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.guarantee-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 231, 196, 0.1);
  border-radius: 50%;
  color: var(--accent-mint);
  border: 1px solid rgba(91, 231, 196, 0.3);
  box-shadow: 0 0 20px rgba(91, 231, 196, 0.2);
}

.guarantee-content {
  position: relative;
  z-index: 2;
}

.guarantee-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.guarantee-desc {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-mint);
  letter-spacing: 0.5px;
}

/* Адаптив */
@media (max-width: 768px) {
  .guarantee-box {
    padding: 30px 20px;
  }
  .guarantee-title {
    font-size: 28px;
  }
  .guarantee-desc {
    font-size: 16px;
  }
}

/* === FAQ SECTION === */
.faq-section {
  padding: 100px 0;
  background-color: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 16px;
  background: rgba(31, 31, 31, 0.45);
  border: 1px solid rgba(58, 124, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 12px 24px;
  background: none;
  border: none;
  cursor: default;
  text-align: left;
}
.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  color: #bcd2ff;
}
.faq-answer {
  padding: 0 24px 24px 24px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

.faq-content {
  text-align: left;
}
/* === FINAL CTA SECTION === */
.final-cta {
  padding: 100px 0 120px;
  background-color: #020617; /* Дуже темний, майже чорний */
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Фонові ефекти */
.cta-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(58, 124, 255, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Заголовок */
.cta-title {
  font-family: var(--font-head);
  color: white;
  font-size: 56px; /* Великий розмір як на фото */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.text-gradient {
  color: #4facfe; /* Чистий блакитний, як на скріні */
}

.cta-desc {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Капсула Гарантії (як на фото) */
.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 500px;
  width: 100%;
  justify-content: center; /* Центруємо контент всередині */
}

.gp-icon {
  font-size: 32px;
}

.gp-text h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.gp-text p {
  color: #94a3b8;
  font-size: 13px;
  margin: 0;
}

/* Кнопка (Широка та Яскрава) */
.btn-wide-cta {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #3a7cff;
  color: white;
  font-size: 18px;
  font-weight: 800;
  padding: 22px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(58, 124, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-wide-cta:hover {
  background: #2f6df0;
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(58, 124, 255, 0.4);
}

/* Мета-дані знизу */
.cta-meta-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item span {
  color: #fff;
} /* Іконки біліші */

/* Адаптив */
@media (max-width: 900px) {
  .cta-title {
    font-size: 36px;
  }
  .guarantee-pill {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cta-meta-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-wide-cta {
    font-size: 16px;
    padding: 18px;
  }
}

/* === FOOTER STYLES === */
footer {
  background-color: #000000;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Бренд ширший */
  gap: 60px;
  margin-bottom: 60px;
}

/* Лого і опис */
.footer-brand h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}

/* Соц мережі (квадратики) */
.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn:hover {
  background: #3a7cff;
  transform: translateY(-2px);
}

/* Колонки посилань */
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.highlight-link {
  color: #3a7cff !important;
}

/* Низ футера */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

/* Адаптив */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }
}

@media (max-width: 996px) {
  .hero-visual-mob {
    display: block !important;
    margin: 0 auto;
  }

  .hero-section {
    padding: 90px 20px 110px;
  }
  .hero-desc {
    padding-top: 50px;
  }

  .hero-visual-pc {
    display: none !important;
  }

  .trust-wrapper {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-card {
    justify-content: center;
    align-items: center;
  }
  .card-top {
    width: fit-content;
    align-items: flex-end;
    gap: 10px;
  }

  .audience-grid,
  .marathon-days {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-card {
    padding: 20px;
  }

  .icon-box,
  .day-icon {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 90px 20px 30px;
  }

  .hero-desc {
    font-size: 15px;
  }
  .hero-content,
  .hero-visual {
    width: 100%;
  }
  .fw-icon {
    width: 26px;
    height: 26px;
  }
  .fw-value {
    font-size: 14px !important;
  }
  .hero-visual {
    height: 470px;
    width: fit-content;
  }
  .pos-accuracy {
    top: 60%;
  }

  .day-topics {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pos-cost {
    bottom: 60px;
    left: 0px;
  }
  .pos-time {
    top: 180px;
  }
  .pos-forecast {
    top: 60%;
  }
  .pos-report {
    top: 180px;
  }
  .floating-widget {
    padding: 6px 10px;
  }
  .hero-content .badge {
    width: 80%;
    max-width: 300px;
  }
  .main-brain-img {
    width: 100%;
    object-fit: contain;
  }
  .container {
    padding: 0;
  }
  .btn-header {
    width: 150px;
    text-align: center;
    padding: 10px 14px;
  }
  h1 {
    font-size: 28px;
  }

  .trust-grid,
  .audience-grid,
  .marathon-days {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 10px;
  }
  .cf-icon {
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .marathon-intro .section-title {
    font-size: 36px;
  }
  .cta-title {
    font-size: 28px;
  }
  .club-title {
    font-size: 28px;
  }

  .btn-cta-pulse {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
    padding: 18px 26px;
  }

  .faq-item {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .marathon-section,
  .faq-section,
  .final-cta {
    padding-top: 40px;
  }

  .guarantee-section {
    padding: 40px 0 80px;
  }

  .business-owner-section {
    padding: 70px 0 40px 0;
  }

  .program-section {
    padding: 50px 0 0px;
  }

  .program-timeline {
    padding-left: 10px;
  }

  .day-block::before {
    left: -15px;
    top: 6px;
  }

  .pos-time {
    left: 0;
  }

  .pos-accuracy {
    top: 53%;
    left: 0;
  }

  .pos-forecast {
    top: 65%;
  }

  .pos-roi {
    bottom: 40px;
    right: 20px;
  }

  .day-block {
    margin-bottom: 50px;
  }
  .included-list li {
    text-align: left;
  }

  .reviews-slider-container {
    padding: 0 10px;
  }
  .reviewer-info {
    flex-direction: column;
  }
  .review-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .review-body p {
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
  }

  .solution-box {
    padding: 25px 15px;
  }
}
