/* --- RESET & GLOBALS --- */
:root {
  --bg-color: #0d0d0d;
  --surface-color: #1a1a1a;
  --accent-color: #00e5ff;
  --text-main: #e0e0e0;
  --text-muted: #888888;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-main: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Grid Pattern Overlay */
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

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

/* --- COMPONENTS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

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

.btn--outline:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

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

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

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

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

.logo__text {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: #fff;
}

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

.nav__link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

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

/* --- BURGER (Mobile) --- */
.burger {
  display: none;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}

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

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

/* --- FOOTER --- */
.footer {
  background: var(--surface-color);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

/* Sci-fi detail: cross markers */
.footer::before,
.footer::after {
  content: "+";
  position: absolute;
  top: 10px;
  color: var(--accent-color);
  font-family: var(--font-mono);
  opacity: 0.5;
}
.footer::before {
  left: 10px;
}
.footer::after {
  right: 10px;
}

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

.footer__title {
  font-family: var(--font-mono);
  color: var(--accent-color);
  margin-bottom: 25px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer__description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 20px;
}

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

.footer__list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__list a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item__icon {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
}

.footer__bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

/* --- ADAPTIVITY --- */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .header__nav {
    display: none; /* Will be toggled by JS */
  }
  .burger {
    display: block;
  }
}

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

/* --- HERO SECTION --- */
.hero {
  padding: 140px 0 80px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__container {
  position: relative;
  z-index: 2;
}

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

/* Bento Block Base */
.bento-block {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid var(--border-color);
  padding: 40px;
  position: relative;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-block::before {
  content: "+";
  position: absolute;
  top: -10px;
  left: -10px;
  color: var(--accent-color);
  font-family: var(--font-mono);
}

.bento-block__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Hero Content */
.hero__main {
  grid-row: span 2;
}

.hero__subtitle {
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 600;
}

.text-accent {
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.hero__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 35px;
}

.hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn--primary {
  background: var(--accent-color);
  color: var(--bg-color);
  font-weight: 600;
}

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

/* Stats Block */
.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats__value {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-mono);
}

.stats__unit {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.stats__label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero__status {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.pulse-icon {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 229, 255, 0.4);
  animation: pulse 2s infinite;
}

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

/* Feature Block */
.bento-block__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

.bento-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.bento-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Background Canvas */
.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

/* --- ADAPTIVITY HERO --- */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__main {
    grid-row: span 1;
  }
}

/* --- STRATEGY SECTION (Editorial Style) --- */
.strategy {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

/* Aurora Gradient Background */
.strategy__aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.08) 0%,
    rgba(13, 13, 13, 0) 70%
  );
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.strategy__container {
  position: relative;
  z-index: 2;
}

.strategy__header {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.vertical-label {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-color);
  letter-spacing: 4px;
  transform: rotate(180deg);
  border-left: 1px solid var(--border-color);
  padding-left: 10px;
}

.strategy__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 300;
}

.text-italic {
  font-style: italic;
  color: var(--text-muted);
}

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

.lead-text {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.4;
}

.highlight {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.strategy__main-text p:not(.lead-text) {
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Magazine Grid */
.strategy__magazine-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mag-item {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  position: relative;
}

.mag-item__num {
  font-family: var(--font-mono);
  color: var(--accent-color);
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.mag-item__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mag-item__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.mag-item--offset {
  margin-left: 60px;
  border-top-color: var(--accent-color);
}

/* Link with Arrow Animation */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--accent-color);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.link-arrow i {
  transition: var(--transition);
}

.link-arrow:hover i {
  transform: translateX(10px);
}

/* --- ADAPTIVITY STRATEGY --- */
@media (max-width: 992px) {
  .strategy__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mag-item--offset {
    margin-left: 0;
  }
}

/* --- ANALYTICS SECTION (Fluid & Organic) --- */
.analytics {
  padding: 100px 0;
  position: relative;
  background: #0f1113;
  overflow: hidden;
}

.blob-wrap {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  z-index: 1;
  pointer-events: none;
  animation: rotateBlob 20s linear infinite;
}

@keyframes rotateBlob {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.analytics__container {
  position: relative;
  z-index: 2;
}

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

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-radius: 20px;
  margin-bottom: 20px;
}

.analytics__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 25px;
  line-height: 1.2;
}

.analytics__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.highlight-soft {
  color: #fff;
  font-weight: 500;
  box-shadow: inset 0 -8px 0 rgba(0, 229, 255, 0.2);
}

.analytics__features {
  margin-bottom: 40px;
}

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

.analytics__features li i {
  color: var(--accent-color);
  width: 20px;
}

/* Data Card Visual */
.data-card {
  position: relative;
  padding: 30px;
}

.data-card__inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 40px 10px 40px 10px; /* Fluid shape influence */
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.data-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.data-card__status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.data-card__pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
}

.chart-svg {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.chart-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawChart 3s ease forwards infinite;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

.data-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.metric__value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--accent-color);
}

/* --- ADAPTIVITY ANALYTICS --- */
@media (max-width: 992px) {
  .analytics__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .analytics__visual {
    order: -1;
  }
}

/* --- SCALING SECTION (Bauhaus Revival) --- */
.scaling {
  padding: 120px 0;
  position: relative;
  background: var(--bg-color);
  overflow: hidden;
}

.scaling__container {
  position: relative;
  z-index: 2;
}

/* Bauhaus Decor Shapes */
.bauhaus-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.bauhaus-shape {
  position: absolute;
  border: 2px solid var(--accent-color);
}

.bauhaus-shape--circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -100px;
  right: -50px;
  opacity: 0.1;
}

.bauhaus-shape--triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 180px solid rgba(255, 255, 255, 0.03);
  bottom: 50px;
  left: 10%;
  transform: rotate(-15deg);
}

.bauhaus-line {
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  top: 40%;
  left: -50%;
  transform: rotate(-5deg);
}

/* Grid & Content */
.scaling__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.bauhaus-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bauhaus-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.scaling__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 900;
}

.text-filled {
  color: var(--bg-color);
  -webkit-text-stroke: 1px var(--accent-color);
  text-shadow: none;
}

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

.text-bold {
  color: #fff;
  font-weight: 600;
}

/* Benefits list */
.scaling__benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

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

.benefit-item__num {
  font-family: var(--font-mono);
  color: var(--bg-color);
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Button Bauhaus Style */
.btn--bauhaus {
  background: #fff;
  color: var(--bg-color);
  padding: 15px 40px;
  font-weight: bold;
  display: inline-flex;
  gap: 15px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
}

.btn--bauhaus:hover {
  background: var(--accent-color);
  transform: translate(5px, -5px);
  box-shadow: -5px 5px 0 #fff;
}

/* Visual Composition */
.composition {
  position: relative;
  height: 400px;
}

.comp-box {
  position: absolute;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 20px;
  z-index: 2;
}

.comp-box--1 {
  top: 10%;
  left: 10%;
  width: 200px;
}

.comp-bar {
  height: 4px;
  background: var(--accent-color);
  width: 70%;
  margin-top: 15px;
}

.comp-box--2 {
  bottom: 10%;
  right: 5%;
  width: 160px;
  text-align: center;
  background: var(--accent-color);
  color: var(--bg-color);
}

.comp-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.comp-value {
  font-size: 2rem;
  font-weight: 900;
  display: block;
}

.comp-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.comp-circle__inner {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: var(--text-muted);
}

/* --- ADAPTIVITY SCALING --- */
@media (max-width: 992px) {
  .scaling__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .composition {
    height: 300px;
  }
}

/* Добавьте в начало файла, где шрифты */
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

/* --- CASES SECTION --- */
.cases {
  padding: 100px 0;
  background: #050505;
  position: relative;
  border-top: 2px solid #00ff41;
}

/* Scanline effect */
.cases::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.06),
      rgba(0, 255, 0, 0.02),
      rgba(0, 0, 255, 0.06)
    );
  z-index: 10;
  background-size:
    100% 4px,
    3px 100%;
  pointer-events: none;
}

.terminal-header {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.terminal-header__dots {
  display: flex;
  gap: 8px;
}

.terminal-header__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.terminal-header__title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #888;
}

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

.case-card {
  background: rgba(0, 255, 65, 0.02);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: crosshair;
}

.case-card:hover {
  background: rgba(0, 255, 65, 0.05);
  border-color: #00ff41;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.case-card__tag {
  font-family: "VT323", monospace;
  color: #00ff41;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.case-card__title {
  font-family: "VT323", monospace;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.case-card__desc {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.4;
}

.case-card__stats {
  display: flex;
  justify-content: space-between;
  font-family: "VT323", monospace;
  color: #00ff41;
  font-size: 1.1rem;
  border-top: 1px dashed rgba(0, 255, 65, 0.3);
  padding-top: 15px;
}

.typing-text {
  margin-top: 60px;
  font-family: "VT323", monospace;
  font-size: 1.8rem;
  color: #00ff41;
  text-align: center;
}

/* Flicker animation for the whole section content */
@keyframes flicker {
  0% {
    opacity: 0.97;
  }
  5% {
    opacity: 0.92;
  }
  10% {
    opacity: 0.98;
  }
  100% {
    opacity: 1;
  }
}

.cases__container {
  animation: flicker 0.1s infinite;
}

/* --- ADAPTIVITY CASES --- */
@media (max-width: 992px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT SECTION --- */
.contact {
  padding: 100px 0;
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
}

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

.contact__title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 25px;
  line-height: 1.1;
}

.contact__desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact__note {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 229, 255, 0.05);
  border-left: 2px solid var(--accent-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form Styles */
.form {
  background: var(--surface-color);
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form__input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  color: #fff;
  font-family: var(--font-main);
  transition: var(--transition);
}

.form__input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(0, 229, 255, 0.02);
}

/* Custom Checkboxes */
.captcha,
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 20px;
}

.captcha__box,
.checkbox__box {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}

.captcha__input:checked + .captcha__box::after,
.checkbox__input:checked + .checkbox__box::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
}

.captcha__text,
.checkbox__text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn--full {
  width: 100%;
  margin-top: 10px;
}

/* Success Message */
.form__success {
  display: none; /* Hidden by default */
  position: absolute;
  inset: 0;
  background: var(--surface-color);
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--accent-color);
}

.form__success i {
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* --- COOKIE POPUP --- */
.cookie {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--accent-color);
  padding: 20px 0;
  z-index: 2000;
  transition: bottom 0.5s ease;
}

.cookie--active {
  bottom: 0;
}

.cookie__content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cookie__text a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* --- POLICY PAGES STYLES --- */
.pages {
  padding: 140px 0 80px;
  background: var(--bg-color);
}
.pages h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--accent-color);
}
.pages h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}
.pages p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}
.pages ul {
  margin-bottom: 30px;
  list-style: square;
  padding-left: 20px;
}
.pages li {
  margin-bottom: 10px;
  color: var(--text-muted);
}
.pages strong {
  color: #fff;
}
.pages a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .cookie__content {
    flex-direction: column;
    text-align: center;
  }
}
