/* FOX EXPORTS — cyber fox banner theme */

:root {
  --bg: #000000;
  --bg-elevated: #050508;
  --bg-card: #0c0c12;
  --bg-card-hover: #12121a;
  --surface: #16161f;

  --cyan: #00f0e8;
  --cyan-dim: #00c4bc;
  --cyan-glow: rgba(0, 240, 232, 0.45);
  --purple: #a855f7;
  --purple-light: #c084fc;
  --purple-magenta: #d946ef;
  --purple-glow: rgba(168, 85, 247, 0.35);
  --purple-dark: #120818;

  --text: #ffffff;
  --text-muted: #a8b0bc;
  --text-dim: #6b7280;

  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Rajdhani', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Circuit background */
.circuit-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(168, 85, 247, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 40% at 88% 82%, rgba(0, 240, 232, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 30% at 75% 15%, rgba(217, 70, 239, 0.12), transparent 55%);
  opacity: 1;
}

.circuit-bg::before,
.circuit-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-repeat: no-repeat;
}

.circuit-bg::before {
  background-image:
    linear-gradient(90deg, transparent 0%, transparent 8%, rgba(0, 240, 232, 0.5) 8%, rgba(0, 240, 232, 0.5) 8.2%, transparent 8.2%),
    linear-gradient(0deg, transparent 22%, rgba(0, 240, 232, 0.35) 22%, rgba(0, 240, 232, 0.35) 22.15%, transparent 22.15%),
    radial-gradient(circle at 8% 22%, rgba(0, 240, 232, 0.8) 0 3px, transparent 3px);
  background-size: 100% 100%;
}

.circuit-bg::after {
  background-image:
    linear-gradient(-35deg, transparent 78%, rgba(192, 132, 252, 0.4) 78%, rgba(192, 132, 252, 0.4) 78.2%, transparent 78.2%),
    linear-gradient(25deg, transparent 68%, rgba(217, 70, 239, 0.35) 68%, rgba(217, 70, 239, 0.35) 68.2%, transparent 68.2%),
    radial-gradient(circle at 92% 75%, rgba(168, 85, 247, 0.7) 0 4px, transparent 4px);
  background-size: 100% 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.header.scrolled { background: rgba(0, 0, 0, 0.95); }

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo__img {
  display: none;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo__accent { color: var(--text); }

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--text); }

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile[hidden] { display: none; }
.nav-mobile.open { display: flex; }

.nav-mobile__link {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn--primary:hover {
  background: #33ebe0;
  box-shadow: 0 0 30px var(--cyan-glow);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background: rgba(0, 229, 212, 0.1);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* Sections */
.section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  z-index: 1;
}

.section__content {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 2rem 3rem;
  width: 100%;
}

.section-header { margin-bottom: 3rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 232, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 0 12px rgba(0, 240, 232, 0.1);
}

.section-label--light {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-title--light { color: var(--text); }

.section-desc {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

.text-cyan { color: var(--cyan); }

/* Hero */
.section--hero {
  background: var(--bg);
  justify-content: space-between;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(168, 85, 247, 0.08), transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(0, 240, 232, 0.02) 120px,
      rgba(0, 240, 232, 0.02) 121px
    );
  pointer-events: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
  flex: 1;
}

.hero__banner-wrap {
  position: relative;
  width: min(1024px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 240, 232, 0.15);
  box-shadow:
    0 0 60px rgba(168, 85, 247, 0.25),
    0 0 100px rgba(0, 240, 232, 0.12),
    inset 0 0 80px rgba(0, 0, 0, 0.4);
}

.hero__banner-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}

.hero__banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  max-width: 820px;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin: 0 auto;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  margin: 0 2rem 2rem;
  max-width: 1280px;
  width: calc(100% - 4rem);
  align-self: center;
  background: linear-gradient(135deg, rgba(18, 8, 24, 0.95) 0%, rgba(0, 20, 24, 0.9) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px var(--purple-glow), inset 0 1px 0 rgba(0, 240, 232, 0.08);
}

.hero-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
}

/* About Cards */
.section--about { background: var(--bg); }

.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--3 { grid-template-columns: repeat(3, 1fr); }

.about-slider__controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(0, 229, 212, 0.2);
  transform: translateY(-4px);
}

.card--clip-bl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.card--clip-tr {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.card__num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 80px;
  height: 80px;
  opacity: 0.06;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

/* Services */
.section--services {
  background: linear-gradient(160deg, #0a1628 0%, #0d1a14 50%, #0a0f1a 100%);
  border-top: 1px solid rgba(0, 229, 212, 0.1);
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.slider-counter {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.slider-counter__current { color: var(--cyan); }
.slider-counter__sep,
.slider-counter__total { color: var(--text-dim); }

.slider { position: relative; }

.slider__track {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 200px;
}

.slide {
  display: none;
  animation: fadeIn 0.4s ease;
}

.slide.active { display: block; }

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

.slide__num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 229, 212, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slide__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.slide__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
}

.slider__controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider__btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.slider__btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.services-more {
  margin-top: 1.5rem;
}

#services-slider:not(.expanded) .slide--more {
  display: none !important;
}

/* Features */
.section--process { background: var(--bg); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.feature:hover {
  border-color: rgba(147, 51, 234, 0.3);
  box-shadow: 0 0 30px var(--purple-glow);
}

.feature__icon {
  width: 44px;
  height: 44px;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.feature__icon svg { width: 100%; height: 100%; }

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

#features-grid:not(.expanded) .feature--more {
  display: none;
}

.features-more {
  margin-top: 1.5rem;
  min-width: 64px;
}

/* Partners */
.section--partners {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.progression { margin-top: 2rem; }

.progression h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.progression__tiers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.job-location {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Brands */
.section--brands {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  min-height: auto;
}

.brands-slider {
  overflow: hidden;
  margin-bottom: 1rem;
}

.brands-slider__track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.4s ease;
  width: max-content;
}

.brands-slider__controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.brand-tag {
  padding: 0.6rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 212, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}

.brand-tag:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.brand-tag:active {
  transform: scale(0.97);
}

.tier {
  padding: 0.4rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tier--apex {
  border-color: var(--purple-light);
  color: var(--purple-light);
  box-shadow: 0 0 12px var(--purple-glow);
}

.tier-arrow { color: var(--text-dim); font-size: 0.8rem; }

.partners-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--purple-dark) 100%);
  border: 1px solid rgba(147, 51, 234, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.partners-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.partners-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Contact */
.section--contact {
  background: var(--bg);
  min-height: auto;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact__cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact__cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact__info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cyan);
}

.contact__list li {
  margin-bottom: 1.25rem;
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.contact__list a {
  color: var(--cyan);
  transition: opacity var(--transition);
}

.contact__list a:hover { opacity: 0.8; }

/* Footer */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 700;
}

.footer__tagline {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer__contacts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer__contacts a {
  color: var(--cyan);
  font-size: 0.85rem;
}

.go-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition);
}

.go-to-top:hover { color: var(--cyan); }

.go-to-top__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.footer__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px var(--cyan-glow));
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer__nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--text); }

.footer__legal {
  display: flex;
  gap: 1rem;
}

.footer__legal a {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 212, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 60px var(--purple-glow);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal.open .modal__panel { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.modal__close:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal__desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form label {
  display: block;
  margin-bottom: 1rem;
}

.form label span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--cyan);
  font-weight: 600;
}

.modal__legal {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modal__legal a {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.modal__legal a:hover { color: var(--cyan); }

/* Cookie */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie.visible { transform: translateY(0); }

.cookie.saved .cookie__text,
.cookie.saved .cookie__actions { display: none; }

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

.cookie a { color: var(--cyan); }

.cookie__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie__success {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* Demo banner */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--purple-dark), #0d1f1e);
  border-bottom: 1px solid rgba(147, 51, 234, 0.4);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  letter-spacing: 0.03em;
}

/* Newsletter announcer */
.announcer {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 105;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(0, 240, 232, 0.12);
}

.announcer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition), background var(--transition);
}

.announcer__btn:hover {
  color: var(--cyan);
  background: rgba(0, 240, 232, 0.05);
}

.announcer__icon {
  color: var(--cyan);
  font-weight: 700;
}

.announcer__btn--mobile {
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

body:has(.demo-banner) .header { top: 58px; }
body:has(.demo-banner) .section__content { padding-top: calc(var(--header-h) + 4rem); }

.mobile-only { display: none; }

/* Legal pages */
.legal-body { background: var(--bg); position: relative; }

.legal-body .header,
.legal-body .legal,
.legal-body .footer { position: relative; z-index: 1; }

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 2rem 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.legal h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 2rem 0 0.75rem;
}

.legal p, .legal li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal a { color: var(--cyan); }
.legal code {
  background: var(--bg-card);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.legal__note {
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.85rem !important;
  color: var(--purple-light) !important;
}

.footer__inner--legal {
  grid-template-columns: 1fr;
  text-align: center;
}

.footer__inner--legal a { color: var(--cyan); }

/* Responsive */
@media (max-width: 1024px) {
  .cards--3 { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header .btn--primary { display: none; }
  .burger { display: flex; margin-left: auto; }
  .announcer { display: none; }
  .mobile-only { display: flex; }
  .cards--3 {
    display: block;
    position: relative;
    min-height: 280px;
  }
  .cards--3 .card {
    display: none;
  }
  .cards--3 .card.active {
    display: block;
  }
  .hero-cta {
    flex-direction: column;
    text-align: center;
    margin: 0 1rem 1.5rem;
    width: calc(100% - 2rem);
  }
  .features { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__nav { flex-wrap: wrap; }
  .section__content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .cookie { flex-direction: column; text-align: center; }
}
