:root {
  --bg-dark: #0a0c10;
  --accent-green: #4ade80;
  --accent-blue: #60a5fa;
  --text-main: #e2e8f0;
  --text-dim: #94a3b8;
  --card-bg: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.1);
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Aurora Background */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(74, 222, 128, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(96, 165, 250, 0.15) 0%,
      transparent 40%
    );
  filter: blur(80px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

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

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

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: #fff;
}

.header__menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.header__link {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__link:hover {
  color: var(--accent-green);
}

.header__btn {
  text-decoration: none;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.header__btn:hover {
  background: var(--accent-green);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

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

/* Footer */
.footer {
  padding: 80px 0 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
  margin-top: 100px;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.footer__description {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.footer__title {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__list a:hover {
  color: var(--accent-blue);
}

.footer__list--contacts li {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 992px) {
  .header__menu {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Bento Cards */
.hero__main-card,
.hero__side-card,
.hero__info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero__main-card {
  grid-row: span 2;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  border-radius: 100px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

/* Buttons */
.btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.btn--primary {
  background: var(--accent-green);
  color: var(--bg-dark);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.btn--outline {
  border: 1px solid var(--border-color);
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

/* Side Card */
.hero__side-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.stats-value {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.stats-unit {
  color: var(--accent-blue);
  font-size: 1.5rem;
}

.stats-divider {
  height: 1px;
  background: var(--border-color);
  margin: 20px 0;
}

.hero__info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

.info-icon {
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* HUD Line Animation Effect */
.hud-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-blue),
    transparent
  );
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}

/* Adaptive Hero */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__main-card {
    grid-row: auto;
  }
}

/* Vision Section */
.vision {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.vision__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.vision__label {
  font-family: var(--font-heading);
  color: var(--accent-blue);
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 20px;
}

.vision__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  max-width: 800px;
}

.vision__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.vision__lead {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}

.vision__description {
  color: var(--text-dim);
  margin-bottom: 32px;
  column-count: 1;
}

.vision__quote {
  padding-left: 24px;
  border-left: 2px solid var(--accent-green);
  font-style: italic;
  color: var(--accent-green);
  margin-top: 40px;
}

.vision__feature-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 2px; /* Editorial style - sharper corners */
  position: relative;
  transition: transform 0.4s ease;
}

.vision__feature-card:hover {
  transform: translateY(-10px);
}

.vision__feature-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--accent-blue);
  border-right: 2px solid var(--accent-blue);
}

.vision__icon {
  width: 48px;
  height: 48px;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.vision__feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.vision__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.vision__link:hover {
  gap: 15px;
  color: var(--accent-green);
}

/* Responsive Vision */
@media (max-width: 992px) {
  .vision__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Tech Section Styles */
.tech {
  padding: 100px 0;
  position: relative;
  background: #0d0f14;
  overflow: hidden;
}

/* Сетка на фоне */
.tech__grid-bg {
  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: 40px 40px;
  z-index: 0;
}

.tech .container {
  position: relative;
  z-index: 1;
}

.tech__header {
  margin-bottom: 60px;
  text-align: left;
}

.tech__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 10px;
}

.mono-text {
  font-family: "Courier New", Courier, monospace;
  color: var(--accent-green);
  font-size: 1.5rem;
}

.tech__subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* Bento Grid */
.tech__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

.tech__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.tech__item:hover {
  border-color: var(--accent-blue);
  background: rgba(96, 165, 250, 0.05);
}

.tech__item--main {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.tech__item--highlight {
  background: rgba(74, 222, 128, 0.03);
  border-color: rgba(74, 222, 128, 0.2);
}

/* Corners "+" */
.tech__corner {
  position: absolute;
  color: var(--accent-blue);
  font-family: monospace;
  font-size: 18px;
  font-weight: bold;
}

.top-left {
  top: -10px;
  left: -5px;
}
.top-right {
  top: -10px;
  right: -5px;
}
.bottom-left {
  bottom: -10px;
  left: -5px;
}
.bottom-right {
  bottom: -10px;
  right: -5px;
}

.tech__icon {
  color: var(--accent-green);
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
}

.tech__item h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.tech__item h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.tech__tags {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.tech__tags span {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent-blue);
  background: rgba(96, 165, 250, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.tech__scan-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: scanVertical 4s infinite linear;
}

@keyframes scanVertical {
  0% {
    bottom: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .tech__bento {
    grid-template-columns: 1fr;
  }
  .tech__item--main {
    grid-column: span 1;
    grid-row: auto;
  }
}

/* Steps Section Styles */
.steps {
  padding: 120px 0;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.steps__blob {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.08) 0%,
    transparent 70%
  );
  border-radius: 45% 55% 70% 30% / 30% 60% 40% 70%;
  animation: blobMorph 15s infinite alternate;
  z-index: 0;
}

@keyframes blobMorph {
  0% {
    border-radius: 45% 55% 70% 30% / 30% 60% 40% 70%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 70% 30% 60% 40%;
  }
}

.steps__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.steps__pre {
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
}

.steps__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin: 10px 0 20px;
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 50px 30px;
  border-radius: 60px 20px 60px 20px; /* Organic shape */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.step-card:hover {
  transform: scale(1.03);
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.05);
}

.step-card__number {
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.step-card__icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.step-card__icon {
  color: var(--bg-dark);
}

.step-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.step-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.step-card__wave {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
}

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

.steps__note {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .steps__list {
    grid-template-columns: 1fr;
  }
  .step-card {
    border-radius: 30px;
  }
}

/* Insights Section - Dark Luxury Marble & HUD */
.insights {
  padding: 120px 0;
  background: #050608;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

/* Эффект мраморных прожилок на фоне */
.insights__marble-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/black-mamba.png"); /* Текстура камня */
  opacity: 0.3;
  pointer-events: none;
}

.insights__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.insights__line {
  height: 1px;
  width: 60px;
  background: var(--accent-blue);
}

.insights__label {
  font-family: monospace;
  color: var(--accent-blue);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.insights__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.insights__main-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid var(--border-color);
  padding: 60px;
  border-radius: 4px;
  position: relative;
}

.insights__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 30px;
}

.insights__lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 500px;
}

.text-glow {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.insights__data-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.data-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 5px;
}

.data-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Правая колонка плиток */
.insights__sub-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insight-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 30px;
  transition: all 0.3s ease;
}

.insight-tile:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-blue);
}

.insight-tile i {
  color: var(--accent-blue);
  margin-bottom: 15px;
  width: 24px;
}

.insight-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.insight-tile p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.insight-cta {
  background: var(--accent-green);
  color: var(--bg-dark);
  padding: 30px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.insight-cta:hover {
  filter: brightness(1.1);
  padding-right: 40px;
}

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

/* Contact Section */
.contact {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border-color);
}

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

.contact__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.contact__text {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.contact__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--accent-blue);
  font-size: 0.9rem;
}

/* Form Styles */
.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 50px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  color: #fff;
  border-radius: 12px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(0, 0, 0, 0.5);
}

/* Error Message */
.error-msg {
  display: none;
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 5px;
}

/* Custom Captcha */
.captcha-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.captcha-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.captcha-checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
}

.captcha-container input:checked ~ .captcha-checkmark {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.captcha-container input:checked ~ .captcha-checkmark::after {
  content: "✔";
  position: absolute;
  color: #000;
  font-size: 14px;
  left: 4px;
  top: 0px;
}

.captcha-container input {
  display: none;
}

/* Consent */
.consent-box {
  margin-bottom: 30px;
}
.consent-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.consent-text a {
  color: var(--accent-blue);
}

/* Submit Button */
.form-btn {
  width: 100%;
  padding: 18px;
  background: var(--accent-green);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.form-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success Message */
.form-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.form-message.success {
  background: rgba(74, 222, 128, 0.1);
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
}

@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 400px;
  background: rgba(15, 17, 21, 0.95);
  border: 1px solid var(--accent-blue);
  backdrop-filter: blur(15px);
  padding: 24px;
  border-radius: 16px;
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-popup--active {
  transform: translateY(0);
}

.cookie-popup__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-popup__icon {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.cookie-popup__text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

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

.cookie-popup__btn {
  margin-top: 16px;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.8rem;
}

/* Policies & Content Pages */
.pages {
  padding: 160px 0 100px;
  background: var(--bg-dark);
}

.pages h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 40px;
  color: #fff;
  border-bottom: 2px solid var(--accent-blue);
  display: inline-block;
}

.pages h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--accent-green);
}

.pages p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  max-width: 800px;
}

.pages ul {
  margin-bottom: 30px;
  list-style: none;
}

.pages li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.pages li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
}

.pages strong {
  color: #fff;
}

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