/* ============================================================
   ADVISER F — Retro 80s Synthwave Design System
   Miami Vice · Neon sunset · Solar retrofuturism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Bebas+Neue&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* === 80s SYNTHWAVE PALETTE (from logo) === */

  /* Dark base — deep purple-navy */
  --black:       #08001A;
  --dark-1:      #0D0025;
  --dark-2:      #120030;
  --dark-3:      #1A003D;
  --dark-4:      #220050;

  /* Neon Pink — logo script color */
  --neon-pink:        #FF2D78;
  --neon-pink-dim:    #C4005A;
  --neon-pink-glow:   rgba(255, 45, 120, 0.18);
  --neon-pink-strong: rgba(255, 45, 120, 0.35);

  /* Cyan / Electric Blue — solar panel glow */
  --cyan:         #00C8FF;
  --cyan-dim:     #0090C4;
  --cyan-glow:    rgba(0, 200, 255, 0.18);

  /* Sunset Orange → Yellow — the sun gradient */
  --orange:       #FF8C00;
  --yellow:       #FFD700;
  --orange-glow:  rgba(255, 140, 0, 0.18);

  /* Magenta — mid sunset stripe */
  --magenta:      #D400AA;
  --purple:       #7B00E0;

  /* Primary accent: neon pink (was gold) */
  --gold-deep:    #8B0040;
  --gold-mid:     #C4005A;
  --gold-bright:  #FF2D78;
  --gold-light:   #FF7DB0;
  --gold-pale:    #FFD0E4;

  /* Glows (alias) */
  --amber:           var(--orange);
  --amber-glow:      var(--neon-pink-glow);
  --amber-glow-strong: var(--neon-pink-strong);

  /* Steel — cyan-tinted dark */
  --steel-1:     #1A2040;
  --steel-2:     #253060;

  /* Text */
  --text-primary:   #F0EEFF;
  --text-secondary: #A090C0;
  --text-muted:     #604080;
  --text-gold:      #FF2D78;

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing */
  --space-xs:    4px;
  --space-sm:    8px;
  --space-md:    16px;
  --space-lg:    24px;
  --space-xl:    40px;
  --space-2xl:   64px;
  --space-3xl:   96px;
  --space-4xl:   128px;

  /* Layout */
  --max-width:   1280px;
  --gutter:      clamp(16px, 4vw, 48px);

  /* Borders */
  --border-subtle: 1px solid rgba(255, 45, 120, 0.14);
  --border-gold:   1px solid rgba(255, 45, 120, 0.4);
  --border-cyan:   1px solid rgba(0, 200, 255, 0.3);
  --border-radius: 2px;
  --radius-card:   4px;

  /* Shadows / Glows */
  --shadow-gold:  0 0 40px rgba(255, 45, 120, 0.18),
                  0 0 80px rgba(255, 45, 120, 0.08);
  --shadow-cyan:  0 0 40px rgba(0, 200, 255, 0.2),
                  0 0 80px rgba(0, 200, 255, 0.08);
  --shadow-card:  0 4px 32px rgba(0,0,0,0.5),
                  0 0 0 1px rgba(255, 45, 120, 0.1);

  /* Transitions */
  --t-fast:   0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-mid:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav */
  --nav-height: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(123, 0, 224, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 45, 120, 0.08) 0%, transparent 60%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--neon-pink), var(--purple));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--neon-pink); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-3xl);
}

.section--lg {
  padding-block: var(--space-4xl);
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--text-secondary);
}

.body-md {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.label--dim {
  color: var(--text-muted);
}

/* Color utilities */
.text-gold { color: var(--gold-bright); }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--t-slow), backdrop-filter var(--t-slow);
}

.nav.scrolled {
  background: rgba(8, 0, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 120, 0.25);
  box-shadow: 0 4px 40px rgba(255, 45, 120, 0.08),
              0 0 0 0.5px rgba(0, 200, 255, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav__logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 45, 120, 0.4));
  transition: filter var(--t-fast);
}

.nav__logo:hover img {
  filter: drop-shadow(0 0 14px rgba(255, 45, 120, 0.8))
          drop-shadow(0 0 28px rgba(0, 200, 255, 0.4));
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(255, 45, 120, 0.4);
}

.nav__logo-text span {
  color: var(--neon-pink);
  text-shadow: 0 0 12px var(--neon-pink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--neon-pink));
  transition: width var(--t-mid);
  box-shadow: 0 0 8px var(--neon-pink);
}

.nav__link:hover,
.nav__link.active {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 45, 120, 0.5);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: transparent;
  color: var(--neon-pink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  border: 1.5px solid var(--neon-pink);
  transition: all var(--t-fast);
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 45, 120, 0.2), inset 0 0 12px rgba(255, 45, 120, 0.05);
}

.nav__cta:hover {
  background: var(--neon-pink);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 45, 120, 0.6), 0 4px 20px rgba(255, 45, 120, 0.3);
}

.nav__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--t-mid);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(8, 0, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: var(--space-xl) var(--gutter) var(--space-2xl);
  border-bottom: 1px solid rgba(255, 45, 120, 0.3);
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 999;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 13px;
}

.nav__mobile .nav__cta {
  align-self: flex-start;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  transition: all var(--t-mid);
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--magenta));
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ff5590, var(--neon-pink));
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.7), 0 8px 32px rgba(255, 45, 120, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.15), inset 0 0 12px rgba(0, 200, 255, 0.04);
}

.btn--secondary:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--neon-pink);
  padding: 14px 0;
  text-shadow: 0 0 10px rgba(255, 45, 120, 0.5);
}

.btn--ghost::after {
  content: '';
  border-bottom: 1px solid currentColor;
}

.btn--ghost:hover {
  color: var(--gold-light);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 12px;
}

/* ============================================================
   SECTION DECORATORS
   ============================================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--cyan));
  box-shadow: 0 0 8px var(--neon-pink);
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 200, 255, 0.3) 20%,
    rgba(255, 45, 120, 0.4) 50%,
    rgba(0, 200, 255, 0.3) 80%,
    transparent);
  margin-block: var(--space-2xl);
}

/* Retro grid plane */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Neon glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-orb--gold {
  background: radial-gradient(circle, rgba(255, 45, 120, 0.2) 0%, transparent 70%);
}

.glow-orb--deep {
  background: radial-gradient(circle, rgba(0, 200, 255, 0.12) 0%, transparent 70%);
}

/* Animated scan line */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,10,14,0.45) 0%,
    rgba(8,10,14,0.2) 30%,
    rgba(8,10,14,0.5) 65%,
    rgba(8,10,14,0.92) 100%
  );
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 120, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 60s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

/* VHS scanlines */
.hero__scan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
}

.hero__scan::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 200, 255, 0.6) 30%,
    rgba(255, 45, 120, 0.6) 70%,
    transparent 100%);
  animation: scanline 6s linear infinite;
  top: 0;
  filter: blur(1px);
}

.hero__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold-bright);
  border-style: solid;
  border-width: 0;
  opacity: 0.6;
}

.hero__corner--tl { top: 20px; left: 20px; border-top-width: 2px; border-left-width: 2px; }
.hero__corner--tr { top: 20px; right: 20px; border-top-width: 2px; border-right-width: 2px; }
.hero__corner--bl { bottom: 20px; left: 20px; border-bottom-width: 2px; border-left-width: 2px; }
.hero__corner--br { bottom: 20px; right: 20px; border-bottom-width: 2px; border-right-width: 2px; }

.hero__glow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(255, 45, 120, 0.12) 0%,
    rgba(123, 0, 224, 0.08) 40%,
    transparent 70%);
  animation: glowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-4xl);
  padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.2s;
}

.hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--neon-pink); }
  50% { box-shadow: 0 0 20px var(--neon-pink), 0 0 40px rgba(255, 45, 120, 0.5); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.35s;
}

.hero__headline span {
  background: linear-gradient(90deg, var(--neon-pink), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255, 45, 120, 0.5));
}

.hero__sub {
  margin-top: var(--space-xl);
  max-width: 540px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.5s;
}

.hero__ctas {
  margin-top: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.65s;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  margin-top: var(--space-4xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(0, 200, 255, 0.15);
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.8s;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  background: linear-gradient(90deg, var(--cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.4));
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease both;
  animation-delay: 1.2s;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
  box-shadow: 0 0 6px var(--neon-pink);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 45, 120, 0.2);
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.06);
}

.ticker__track {
  display: inline-flex;
  gap: var(--space-3xl);
  animation: tickerScroll 40s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--dark-2);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.card:hover {
  border-color: rgba(240, 162, 40, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.card:hover::before {
  opacity: 1;
}

.card__number {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(240, 162, 40, 0.1);
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  pointer-events: none;
  user-select: none;
  transition: color var(--t-mid);
}

.card:hover .card__number {
  color: rgba(240, 162, 40, 0.18);
}

.card__icon {
  width: 48px;
  height: 48px;
  border: var(--border-gold);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--gold-bright);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}

.card:hover .card__icon {
  background: var(--amber-glow);
  box-shadow: 0 0 20px rgba(240, 162, 40, 0.2);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: gap var(--t-fast), color var(--t-fast);
}

.card__link:hover {
  gap: 12px;
  color: var(--gold-light);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--dark-2);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--t-mid);
  display: flex;
  flex-direction: column;
}

.service-card__head {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-bottom: var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  opacity: 0.6;
}

.service-card__body {
  padding: var(--space-xl);
  flex: 1;
}

.service-card__features {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-card__feature::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold-bright);
  flex-shrink: 0;
}

.service-card__cta {
  padding: var(--space-lg) var(--space-xl);
  border-top: var(--border-subtle);
}

.service-card:hover {
  border-color: rgba(240, 162, 40, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  display: flex;
  gap: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-2xl);
}

.process-step::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(240, 162, 40, 0.3), transparent);
}

.process-step:last-child::after { display: none; }

.process-step__num {
  width: 48px;
  height: 48px;
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-bright);
  flex-shrink: 0;
  background: var(--dark-1);
  position: relative;
  z-index: 1;
}

.process-step__content {
  padding-top: 10px;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.process-step__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--dark-2);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding-block: var(--space-2xl);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(240, 162, 40, 0.15);
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border: var(--border-subtle);
  cursor: pointer;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,14,0.95) 0%, rgba(8,10,14,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--space-sm);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.project-card__label {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: rgba(8, 10, 14, 0.8);
  backdrop-filter: blur(8px);
  border: var(--border-subtle);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--border-radius);
}

/* Placeholder project card */
.project-card--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  cursor: default;
}

.project-card--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(240,162,40,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,162,40,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--dark-2);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.cta-band__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(240,162,40,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--space-lg);
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.cta-band__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.cta-band__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ============================================================
   FORM
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input,
.form__select,
.form__textarea {
  background: var(--dark-3);
  border: 1px solid rgba(240, 162, 40, 0.15);
  border-radius: var(--border-radius);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(240, 162, 40, 0.5);
  box-shadow: 0 0 0 3px rgba(240, 162, 40, 0.08);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23F0A228' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.form__select option {
  background: var(--dark-2);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-bright);
  cursor: pointer;
}

.form__check-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form__check-label a {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-1);
  border-top: var(--border-subtle);
  padding-top: var(--space-3xl);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: var(--border-subtle);
}

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__brand-logo img {
  height: 36px;
  width: auto;
}

.footer__brand-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--space-md);
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__brand-contact {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--text-secondary);
}

.footer__contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.footer__column-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--gold-bright);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-xl);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-xl);
}

.footer__legal a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: var(--gold-bright);
}

/* ============================================================
   STICKY WHATSAPP
   ============================================================ */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--t-mid);
  animation: stickyWaPulse 3s ease-in-out infinite;
}

@keyframes stickyWaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.sticky-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--dark-2);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: rgba(240, 162, 40, 0.08);
}

.testimonial__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--steel-1);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-bright);
}

.testimonial__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--dark-2);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--t-mid);
  display: flex;
  flex-direction: column;
}

.blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(8, 10, 14, 0.85);
  backdrop-filter: blur(8px);
  border: var(--border-subtle);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-radius: var(--border-radius);
}

.blog-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  flex: 1;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.blog-card:hover {
  border-color: rgba(240, 162, 40, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 162, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 162, 40, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,162,40,0.3), transparent);
}

.page-hero__glow {
  position: absolute;
  top: -100px;
  left: -10%;
  width: 60%;
  height: 600px;
  background: radial-gradient(ellipse, rgba(240,162,40,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--dark-2);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  transition: all var(--t-mid);
}

.feature-item:hover {
  border-color: rgba(240, 162, 40, 0.25);
  transform: translateX(4px);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  border: var(--border-gold);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.feature-item__icon svg {
  width: 20px;
  height: 20px;
}

.feature-item__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-item__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(240, 162, 40, 0.3);
  color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-4xl: 80px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-xl);
    align-items: flex-start;
  }

  .hero__headline {
    font-size: clamp(56px, 15vw, 100px);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-md);
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .cta-band {
    padding: var(--space-2xl) var(--space-lg);
  }

  .process-step {
    gap: var(--space-md);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

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

  .stats-band__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RETRO 80s ENHANCEMENTS — Scanlines · Flicker · Glitch · Grid
   ============================================================ */

/* --- CRT Scanline overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
  mix-blend-mode: multiply;
}

/* --- Neon flicker keyframe (for the "F" in the logo) --- */
@keyframes neonFlicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px #FF2D78, 0 0 20px #FF2D78, 0 0 40px rgba(255,45,120,0.6); }
  4%        { opacity: 0.8; text-shadow: 0 0 4px #FF2D78; }
  6%        { opacity: 1; text-shadow: 0 0 8px #FF2D78, 0 0 20px #FF2D78, 0 0 40px rgba(255,45,120,0.6); }
  58%       { opacity: 1; }
  60%       { opacity: 0.9; text-shadow: 0 0 4px #FF2D78; }
  62%       { opacity: 1; text-shadow: 0 0 8px #FF2D78, 0 0 20px #FF2D78, 0 0 40px rgba(255,45,120,0.6); }
}

/* Apply flicker to the "F" in text-only fallback nav logos */
.nav__logo-text span {
  animation: neonFlicker 6s ease-in-out infinite;
}

/* --- Logo SVG sizing & glow --- */
.nav__logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 45, 120, 0.5))
          drop-shadow(0 0 14px rgba(0, 200, 255, 0.2));
  transition: filter var(--t-fast);
}
.nav__logo:hover .nav__logo-img {
  filter: drop-shadow(0 0 10px rgba(255, 45, 120, 0.9))
          drop-shadow(0 0 24px rgba(0, 200, 255, 0.5))
          drop-shadow(0 0 40px rgba(255, 45, 120, 0.3));
}

/* --- Glitch text effect: add class="glitch" data-text="YOUR TEXT" --- */
@keyframes glitchTop {
  0%, 100% { clip-path: inset(0 0 90% 0); transform: translate(-2px,-1px); opacity: 0; }
  20%       { clip-path: inset(20% 0 60% 0); transform: translate(3px, 1px); opacity: 1; }
  40%       { clip-path: inset(60% 0 20% 0); transform: translate(-1px,2px); opacity: 1; }
  60%       { opacity: 0; }
}
@keyframes glitchBot {
  0%, 100% { clip-path: inset(80% 0 0 0); transform: translate(2px, 1px); opacity: 0; }
  25%       { clip-path: inset(50% 0 30% 0); transform: translate(-3px,-1px); opacity: 1; }
  50%       { clip-path: inset(30% 0 50% 0); transform: translate(1px,-2px); opacity: 1; }
  75%       { opacity: 0; }
}
.glitch { position: relative; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.glitch::before { color: var(--cyan);     animation: glitchTop 7s ease-in-out infinite; animation-delay: 0.4s; }
.glitch::after  { color: var(--neon-pink); animation: glitchBot 7s ease-in-out infinite; animation-delay: 0.6s; }

/* --- Enhanced hero grid horizon --- */
@keyframes gridSlide {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 0 60px, 0 60px, 0 180px; }
}
.hero__grid {
  background-image:
    linear-gradient(rgba(0,200,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.12) 1px, transparent 1px),
    linear-gradient(rgba(255,45,120,0.06) 2px, transparent 2px);
  background-size: 60px 60px, 60px 60px, 60px 180px;
  animation: gridSlide 2.5s linear infinite;
}
.hero__grid::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,200,255,0.4) 20%,
    rgba(255,45,120,0.8) 50%,
    rgba(0,200,255,0.4) 80%,
    transparent
  );
  box-shadow: 0 0 20px rgba(255,45,120,0.6), 0 0 60px rgba(0,200,255,0.3);
  pointer-events: none;
}

/* --- Stronger btn neon glow --- */
.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow:
    0 0 10px rgba(255,45,120,0.5),
    0 0 30px rgba(255,45,120,0.3),
    0 0 60px rgba(255,45,120,0.15),
    inset 0 0 20px rgba(255,45,120,0.1);
}

/* --- Neon pulse on section headings --- */
@keyframes headingPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(255,45,120,0.4), 0 0 20px rgba(255,45,120,0.2); }
  50%       { text-shadow: 0 0 16px rgba(255,45,120,0.7), 0 0 40px rgba(255,45,120,0.45), 0 0 80px rgba(0,200,255,0.2); }
}
.section-badge { animation: headingPulse 3.5s ease-in-out infinite; }

/* --- Scan sweep animation in hero --- */
@keyframes scanMove {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 0.4; }
  90%  { opacity: 0.15; }
  100% { top: 100%; opacity: 0; }
}
.hero__scan { animation: scanMove 4s linear infinite; }

/* --- Footer logo --- */
.footer__logo-img {
  height: 38px;
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(255,45,120,0.4));
  margin-bottom: var(--space-md);
}

/* ============================================================
   COOKIE CONSENT BANNER (RGPD)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13, 0, 37, 0.97);
  border-top: 1px solid rgba(255, 45, 120, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-xl) var(--space-2xl);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.6);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.cookie-banner__title svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}
.cookie-banner__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-banner__desc a {
  color: var(--gold-bright);
  text-decoration: none;
}
.cookie-banner__desc a:hover {
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--gold-bright);
  color: var(--dark-1);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 45, 120, 0.4);
}
.cookie-btn--accept:hover {
  box-shadow: 0 0 28px rgba(255, 45, 120, 0.65);
  transform: translateY(-1px);
}
.cookie-btn--reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(160, 144, 192, 0.25);
}
.cookie-btn--reject:hover {
  border-color: rgba(160, 144, 192, 0.5);
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: var(--space-lg);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
