/* --- Глобальные настройки --- */
:root {
  --bg-color: #050508;
  --text-color: #ffffff;
  --accent-color: #7000ff;
  --secondary-accent: #ff3366;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: "Inter", sans-serif;
  --font-heading: "Syne", sans-serif;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Aurora Gradient Background */
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(112, 0, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 51, 102, 0.1) 0%,
      transparent 40%
    );
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

ul {
  list-style: none;
}

/* --- Типографика --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* --- Логотип --- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.logo__icon {
  color: var(--accent-color);
}

/* --- Кнопки --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(112, 0, 255, 0.4);
  background: #8222ff;
}

/* --- Хедер --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  backdrop-filter: blur(15px);
  background: rgba(5, 5, 8, 0.7);
  border-bottom: 1px solid var(--glass-border);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  left: 0;
  transition: var(--transition);
}

.burger::before {
  top: 0;
}
.burger span {
  top: 9px;
}
.burger::after {
  bottom: 0;
}

/* --- Футер --- */
.footer {
  padding: 100px 0 40px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--glass-border);
  margin-top: 80px;
  clip-path: ellipse(150% 100% at 50% 100%); /* Organic Shape */
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer__title {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--secondary-accent);
}

.footer__list li {
  margin-bottom: 0.8rem;
}

.footer__link {
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer__link:hover {
  opacity: 1;
  padding-left: 5px;
  color: var(--accent-color);
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

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

.footer__bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

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

@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .header__actions .btn {
    display: none;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-accent);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.text-gradient {
  background: linear-gradient(90deg, #7000ff, #ff3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  max-width: 550px;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.hero__btns {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: white;
}

.btn--outline:hover {
  background: var(--glass-bg);
  border-color: white;
}

/* Статистика */
.hero__stats {
  display: flex;
  gap: 3rem;
}

.stat-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-color);
}

.stat-item__label {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Визуал и Blobs */
.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  z-index: 1;
  clip-path: path(
    "M10,100 C10,40 40,10 100,10 C160,10 190,40 190,100 C190,160 160,190 100,190 C40,190 10,160 10,100 Z"
  );
  /* В реальном CSS для сложных фигур лучше использовать SVG mask или clip-path: polygon */
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  background: var(--glass-bg);
}

.hero__img {
  width: 100%;
  height: auto;
  filter: grayscale(0.5) contrast(1.2);
}

.hero__blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(80px);
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.3;
  transition: transform 0.2s ease-out;
}

.blob--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: #7000ff;
}
.blob--2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -50px;
  background: #ff3366;
}
.blob--3 {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 20%;
  background: #00d1ff;
}

.hero__floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Mobile Adaptive */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero__subtitle {
    margin: 0 auto 3rem;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Courses Section --- */
.courses {
  padding: 120px 0;
  position: relative;
}

.courses__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.courses__subtitle {
  opacity: 0.7;
  font-size: 1.1rem;
}

.courses__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Стилизация карточек с органическими формами */
.course-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 30px;
  width: calc(33.333% - 40px);
  min-width: 320px;
  transition: var(--transition);
  position: relative;
}

/* Разные радиусы для "ломаной" сетки */
.course-card--1 {
  border-radius: 60px 20px 60px 20px;
  margin-top: 40px;
}
.course-card--2 {
  border-radius: 20px 60px 20px 60px;
}
.course-card--3 {
  border-radius: 40px 40px 100px 40px;
  margin-top: 60px;
}

.course-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(112, 0, 255, 0.1);
}

.course-card__image {
  width: 100%;
  height: 220px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
  /* Органическая форма для картинки */
  border-radius: 30% 70% 70% 30% / 45% 40% 60% 55%;
}

.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card:hover .course-card__image img {
  transform: scale(1.1);
}

.course-card__tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.course-card__name {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.course-card__text {
  font-size: 0.95rem;
  opacity: 0.6;
  margin-bottom: 25px;
  min-height: 70px;
}

.course-card__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--accent-color);
}

.course-card__link i {
  width: 18px;
  transition: transform 0.3s ease;
}

.course-card__link:hover i {
  transform: translate(3px, -3px);
}

.courses__info-note {
  margin-top: 60px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* Адаптивность для сетки */
@media (max-width: 1100px) {
  .course-card {
    width: calc(50% - 20px);
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .course-card {
    width: 100%;
  }
}

/* --- Methodology Section --- */
.method {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.method__aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle at center,
    rgba(112, 0, 255, 0.08) 0%,
    transparent 50%
  );
  z-index: 0;
  filter: blur(100px);
  pointer-events: none;
}

.method__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.method__description {
  font-size: 1.15rem;
  opacity: 0.8;
  margin: 2rem 0 3rem;
  max-width: 500px;
}

/* Стили карточек шагов */
.method__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  /* Органическая форма для каждой карточки */
  border-radius: 40% 60% 60% 40% / 50%;
  transition: var(--transition);
}

.step-card:nth-child(even) {
  border-radius: 60% 40% 40% 60% / 50%;
  margin-left: 50px;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px) scale(1.02);
  border-color: var(--secondary-accent);
}

.step-card__icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(112, 0, 255, 0.2);
}

.step-card__icon i {
  color: white;
  width: 30px;
  height: 30px;
}

.step-card__info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.step-card__info p {
  font-size: 0.95rem;
  opacity: 0.6;
}

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

  .method__content {
    text-align: center;
  }

  .method__description {
    margin: 2rem auto 3rem;
  }

  .step-card:nth-child(even) {
    margin-left: 0;
  }

  .step-card {
    border-radius: 30px !important;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
}

/* --- Career Section --- */
.career {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(
    circle at 100% 50%,
    rgba(255, 51, 102, 0.05) 0%,
    transparent 40%
  );
}

.career__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

/* Визуальный блок с инфографикой */
.career__visual {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career__chart-blob {
  width: 380px;
  height: 380px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.career__chart-content {
  text-align: center;
}

.career__chart-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 10px;
}

.career__chart-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary-accent);
}

.career__chart-value span {
  font-size: 1rem;
  opacity: 0.5;
}

.career__chart-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 25px;
  overflow: hidden;
}

.career__chart-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-accent)
  );
  border-radius: 10px;
}

/* Плавающие иконки */
.career__floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.career__floating-icon--1 {
  top: 10%;
  right: 10%;
  animation: float 5s infinite;
}
.career__floating-icon--2 {
  bottom: 15%;
  left: 5%;
  animation: float 6s infinite reverse;
}

/* Контентная часть */
.career__text {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.career__features {
  margin-bottom: 3rem;
}

.career__feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.2rem;
}

.career__feature i {
  color: var(--secondary-accent);
  width: 20px;
  margin-top: 4px;
}

.career__action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.career__note {
  font-size: 0.8rem;
  opacity: 0.4;
  max-width: 150px;
}

/* Партнеры */
.career__partners {
  padding-top: 60px;
  border-top: 1px solid var(--glass-border);
}

.career__partners-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-bottom: 30px;
}

.career__partners-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.3;
  filter: grayscale(1);
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--accent-color);
}

/* Адаптивность */
@media (max-width: 992px) {
  .career__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .career__visual {
    order: -1;
    margin-bottom: 40px;
  }
  .career__feature {
    text-align: left;
  }
  .career__action {
    justify-content: center;
    flex-direction: column;
  }
  .career__partners-track {
    justify-content: center;
  }
}

/* --- Reviews Section --- */
.reviews {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 0% 100%,
    rgba(112, 0, 255, 0.05) 0%,
    transparent 40%
  );
}

.reviews__header {
  text-align: center;
  margin-bottom: 100px;
}

.reviews__cloud {
  position: relative;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-bubble {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  cursor: default;
  z-index: 1;
}

.review-bubble:hover {
  transform: scale(1.05) !important;
  border-color: var(--accent-color);
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
}

/* Формы пузырей */
.review-bubble--1 {
  width: 350px;
  top: 50px;
  left: 10%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: sway 7s ease-in-out infinite;
}

.review-bubble--2 {
  width: 380px;
  top: 0;
  right: 15%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: sway 9s ease-in-out infinite reverse;
}

.review-bubble--3 {
  width: 400px;
  bottom: 50px;
  left: 15%;
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  animation: sway 8s ease-in-out infinite 1s;
}

.review-bubble--4 {
  width: 340px;
  bottom: 0;
  right: 10%;
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  animation: sway 10s ease-in-out infinite 0.5s;
}

@keyframes sway {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -20px);
  }
}

.review-bubble__text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  opacity: 0.9;
}

.review-bubble__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-bubble__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  object-fit: cover;
}

.review-bubble__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary-accent);
}

.review-bubble__author span {
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .reviews__cloud {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .review-bubble {
    position: static;
    width: 100%;
    border-radius: 30px !important;
    animation: none !important;
  }
}

/* --- Contact Section --- */
.contact {
  padding: 100px 0;
  position: relative;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact__text {
  font-size: 1.15rem;
  opacity: 0.8;
  margin: 2rem 0;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.contact__meta-item i {
  color: var(--accent-color);
}

/* Стилизация Формы */
.contact__form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(30px);
  padding: 50px;
  /* Органическая форма контейнера */
  clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 5% 100%);
  border-radius: 40px;
}

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

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

.form__input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
}

.form__error {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 5px;
  display: none;
}

/* Капча и чекбоксы */
.captcha,
.agreement {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.captcha {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  border-radius: 12px;
  justify-content: space-between;
}

.captcha__label,
.agreement {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.captcha__checkbox,
.agreement__checkbox {
  display: none;
}

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

.captcha__checkbox:checked + .captcha__box,
.agreement__checkbox:checked + .agreement__box {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.captcha__checkbox:checked + .captcha__box::after,
.agreement__checkbox:checked + .agreement__box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

.captcha__text,
.agreement__text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.agreement__text a {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn--full {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* Успешная отправка */
.form__success {
  display: none; /* Скрыто по умолчанию */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 255, 128, 0.1);
  border: 1px solid #00ff80;
  border-radius: 15px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease;
}

.form__success i {
  color: #00ff80;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact__info {
    text-align: center;
  }
  .contact__meta {
    align-items: center;
  }
}

/* --- Cookie Pop-up --- */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: rgba(15, 15, 25, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 20px 30px;
  z-index: 2000;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-popup--active {
  bottom: 30px;
}

.cookie-popup__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-popup__text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-popup__text a {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn--small {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* --- Стилізація текстових сторінок (Політики) --- */
.pages {
  padding: 160px 0 100px;
  min-height: 80vh;
}

.pages h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  color: var(--text-color);
}

.pages h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--secondary-accent);
}

.pages p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.pages ul {
  margin-bottom: 2rem;
  padding-left: 20px;
}

.pages li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative;
  list-style: disc;
  opacity: 0.8;
}

.pages strong {
  color: var(--text-color);
  font-weight: 600;
}

.pages a {
  color: var(--accent-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-popup__content {
    flex-direction: column;
    text-align: center;
  }
}
