/* --- Глобальные настройки и переменные --- */
:root {
  --primary-color: #7000ff;
  --accent-color: #00f2ff;
  --bg-dark: #0a0b1e;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-main: #e0e0e0;
  --text-muted: #a0a0b0;
  --radius-lg: 35px;
  --radius-sm: 15px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo__text {
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Фон с градиентами --- */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-glow__item {
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.4;
}

.bg-glow__item--1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
}

.bg-glow__item--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  bottom: -50px;
  left: -50px;
}

/* --- Кнопки --- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Хедер --- */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__container {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 15px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo__text {
  font-size: 1.4rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__list {
  display: flex;
  gap: 30px;
}

.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.8;
}

.nav__link:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* --- Бургер --- */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* --- Футер --- */
.footer {
  margin-top: 100px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__description {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__title {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.footer__list li {
  margin-bottom: 12px;
}
.footer__list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer__list a:hover {
  color: white;
  padding-left: 5px;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__contacts svg {
  width: 18px;
  color: var(--accent-color);
}

.footer__note {
  font-size: 0.75rem;
  color: var(--primary-color);
  margin-top: 15px;
  font-weight: bold;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Адаптивность Хедера и Футера --- */
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  .header__container {
    padding: 10px 20px;
  }
  .logo__text {
    font-size: 1.1rem;
  }
}

/* --- Секция Hero --- */
.hero {
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(112, 0, 255, 0.1);
  border: 1px solid rgba(112, 0, 255, 0.3);
  color: var(--accent-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-size: 5rem; /* Гигантская типографика */
  line-height: 1.1;
  margin-bottom: 25px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn--primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 30px rgba(112, 0, 255, 0.4);
}

.btn--primary:hover {
  background: #821fff;
  transform: translateY(-5px);
}

.btn--outline {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
}

.hero__subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Визуальная часть и сферы */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 2;
}

.hero__canvas-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 0;
}

.glass-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sphere-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 10%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 242, 255, 0.2),
    transparent
  );
}
.sphere-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 0%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(112, 0, 255, 0.2),
    transparent
  );
}
.sphere-3 {
  width: 200px;
  height: 200px;
  bottom: -10%;
  right: -5%;
  opacity: 0.5;
}

/* Адаптив Hero */
@media (max-width: 1200px) {
  .hero__title {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 80px;
  }
  .hero__text {
    margin: 0 auto 40px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__image {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 2.8rem;
  }
  .hero__actions {
    flex-direction: column;
  }
}

/* --- Секция Intelligence --- */
.intelligence {
  padding: 120px 0;
  position: relative;
}

.intelligence__header {
  text-align: left;
  margin-bottom: 80px;
  max-width: 700px;
}

.intelligence__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intelligence__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Сетка с нарушением стандартов */
.intelligence__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}

/* Базовая карточка (Glassmorphism) */
.i-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.i-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 242, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.i-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(112, 0, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-color);
}

.i-card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.i-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.i-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Настройка асимметрии */
.i-card--large {
  grid-column: 1 / 8;
  min-height: 400px;
}

.i-card--medium {
  grid-column: 8 / 13;
}

.i-card--offset-up {
  margin-top: -50px; /* Элемент заходит выше сетки */
}

.i-card--narrow {
  grid-column: 1 / 5;
}

.i-card--accent {
  grid-column: 5 / 13;
  background: linear-gradient(
    135deg,
    rgba(112, 0, 255, 0.2),
    rgba(0, 242, 255, 0.1)
  );
  border: 1px solid rgba(112, 0, 255, 0.3);
}

.i-card--overlap {
  margin-top: -20px;
  display: flex;
  align-items: center;
}

.i-card--accent .i-card__btn {
  margin-left: auto;
  white-space: nowrap;
}

/* Декорация внутри карточки */
.i-card__bg-decoration {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

/* Адаптивность для "сломанной" сетки */
@media (max-width: 992px) {
  .intelligence__grid {
    display: flex;
    flex-direction: column;
  }
  .i-card--offset-up,
  .i-card--overlap {
    margin-top: 0;
  }
  .intelligence__title {
    font-size: 2.5rem;
  }
}

/* --- Секция Roadmap --- */
.roadmap {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.roadmap__header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.roadmap__timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Центральная светящаяся линия */
.roadmap__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-color),
    var(--accent-color),
    transparent
  );
  transform: translateX(-50%);
  opacity: 0.3;
}

.roadmap__step {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 80px;
  width: 100%;
}

.roadmap__step--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.roadmap__number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
  z-index: 2;
}

.roadmap__content {
  width: 85%;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.roadmap__step--left .roadmap__content {
  margin-right: 50px;
  text-align: right;
}

.roadmap__step--right .roadmap__content {
  margin-left: 50px;
  text-align: left;
}

.roadmap__content:hover {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.roadmap__step-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.roadmap__step-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.roadmap__btn {
  margin-top: 25px;
}

/* Адаптив Roadmap */
@media (max-width: 768px) {
  .roadmap__timeline::before {
    left: 30px;
  }
  .roadmap__step {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
  }
  .roadmap__number {
    left: 30px;
  }
  .roadmap__step--left .roadmap__content,
  .roadmap__step--right .roadmap__content {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    width: 100%;
  }
}

.roadmap__step {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.roadmap__step--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Секция Cases Bento --- */
.cases {
  padding: 100px 0;
}

.cases__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.cases__title {
  font-size: 3.5rem;
  margin: 15px 0;
}

/* Сетка Бенто */
.cases__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 20px;
}

.case-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.case-card:hover {
  transform: scale(0.98);
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.case-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
}

.case-card__visual {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.case-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: var(--transition);
}

.case-card:hover .case-card__img {
  opacity: 1;
  transform: scale(1.1);
}

.case-card__name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.case-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Специфические размеры карточек */
.case-card--main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.case-card--tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.case-card--wide {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.case-card--small {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

/* Элементы внутри карточек */
.case-card__icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.case-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-card__tag {
  font-size: 0.75rem;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.case-card__btn {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.case-card__stats {
  padding: 0 30px 30px;
}

.stat-item__val {
  display: block;
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: 800;
}

.stat-item__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Адаптив Бенто */
@media (max-width: 1100px) {
  .cases__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .case-card--main,
  .case-card--tall,
  .case-card--wide,
  .case-card--small {
    grid-column: span 1;
    grid-row: span 1;
    height: 350px;
  }
  .case-card--main {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .cases__bento {
    grid-template-columns: 1fr;
  }
  .case-card--main {
    grid-column: span 1;
  }
  .cases__title {
    font-size: 2.5rem;
  }
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    rgba(0, 242, 255, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.case-card:hover::before {
  opacity: 1;
}

/* --- Секция Blog --- */
.blog {
  padding: 100px 0;
}

.blog__header {
  margin-bottom: 60px;
}

.blog__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.blog-card__image {
  position: relative;
  height: 220px;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--primary-color);
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-card__content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #fff;
}

.blog-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.blog-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.blog-card__link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-card__time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog__cta {
  text-align: center;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(112, 0, 255, 0.1),
    transparent
  );
  padding: 40px;
  border-radius: var(--radius-lg);
}

.blog__cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Адаптив Блога */
@media (max-width: 992px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog__title {
    font-size: 2.5rem;
  }
}

/* --- Секция Контактов --- */
.contact {
  padding: 100px 0;
}
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px;
}

.contact__title {
  font-size: 3.5rem;
  margin-bottom: 25px;
}
.contact__badge {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  color: var(--accent-color);
  font-weight: 600;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

/* Капча и чекбоксы */
.captcha,
.policy-check {
  margin: 10px 0;
}
.captcha__label,
.policy-check__label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.captcha__box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--glass-border);
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}

input[type="checkbox"]:checked + .captcha__box {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Имитация успеха */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  padding: 40px;
}
.form-success i {
  width: 60px;
  height: 60px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 10000;
  transform: translateY(200%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.cookie-popup--active {
  transform: translateY(0);
}
.cookie-popup__content {
  background: rgba(10, 11, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Стили для страниц политик (.pages) */
.pages {
  padding: 180px 0 100px;
}
.pages h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--accent-color);
}
.pages h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
}
.pages p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.pages ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.pages li {
  margin-bottom: 10px;
  color: var(--text-muted);
  position: relative;
}
.pages li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: -20px;
}

/* Адаптивность Контактов */
@media (max-width: 992px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .contact__title {
    font-size: 2.5rem;
  }
}

/* Фикс Логотипа */
.logo__icon {
  width: 40px;
  height: 40px;
  min-width: 40px; /* Чтобы не сжималось */
  display: block;
}
.logo__icon svg {
  width: 100%;
  height: 100%;
}

/* Фикс Хедера */
.header__container {
  overflow: visible; /* Чтобы бургер не обрезался */
  position: relative;
  z-index: 1001;
}

/* Фикс Бургера */
.burger {
  display: none; /* По умолчанию скрыт */
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
  margin-left: 15px;
}

.burger__line,
.burger__line::before,
.burger__line::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: 0.3s;
  left: 10px;
}

.burger__line {
  top: 19px;
}
.burger__line::before {
  top: -6px;
  left: 0;
}
.burger__line::after {
  top: 6px;
  left: 0;
}

/* Состояние при открытии (Крестик) */
.burger.active .burger__line {
  background: transparent;
}
.burger.active .burger__line::before {
  transform: rotate(45deg);
  top: 0;
}
.burger.active .burger__line::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 992px) {
  .burger {
    display: block;
  }
  .nav.header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0a0b1e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    z-index: 999;
  }
  .nav.header__nav.active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .nav__link {
    font-size: 1.8rem;
  }
  .btn--header {
    display: none;
  } /* Скрываем кнопку в хедере на мобилках */
}
