/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — PALETA ARTÍSTICA (BLACK × AQUA)
   Base:  #000000 · #00d4ff · #fefefd
   Expand: split-complementary + análogos + puentes
═══════════════════════════════════════════════════════ */
:root {
  /* ── Fondos (oscuro profundo → elevado) - Aqua Deep ── */
  --bg-void: #001a1d;
  --bg-deep: #001a1d;
  --bg-surface: #002a30;
  --bg-raised: #003a42;
  --bg-float: #004a54;

  /* Horizontal Presentation Mode */
  --slide-width: 100vw;
  --slide-height: 100vh;
  --transition-speed: 800ms;

  /* ── Aqua primario ── */
  --forest-teal: #00d4ff;
  --forest-pine: #00d4ff;
  --forest-moss: #00d4ff;

  /* ── Aqua (secundario / CTAs) ── */
  --cyan-electric: #00d4ff;
  --cyan-bright: #00f0ff;
  --cyan-mid: #00b8e6;
  --teal-glow: #66e5ff;

  /* ── Acentos armónicos ── */
  --green-bio: #000000;
  /* negro como bio-accent */
  --blue-electric: #000000;
  /* puente negro análogo */
  --blue-vivid: #00b8e6;
  /* aqua profundo */
  --amber-accent: #00d4ff;
  --coral-accent: #ff6b8a;
  /* split-comp coral */
  --teal-accent: #47e1a1;
  /* split-comp teal (success) */

  /* ── Tipografía ── */
  --text-primary: #fefefd;
  --text-secondary: #d4cee3;
  --text-muted: #8a8a8a;
  --text-ghost: #5a5a5a;

  /* ── Glassmorphism MEJORADO ── */
  --glass-bg: rgba(0, 26, 29, 0.65);
  --glass-border: rgba(0, 212, 255, 0.25);
  --glass-border-hi: rgba(0, 212, 255, 0.5);
  --glass-glow: rgba(0, 212, 255, 0.15);

  /* ── Sombras MEJORADAS ── */
  --shadow-deep: 0 25px 80px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.3);
  --shadow-glow-sm: 0 0 25px rgba(0, 212, 255, 0.4);

  /* ── Radios ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* ── Easings ── */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-mid: 0.4s;
  --dur-slow: 0.7s;
}

[data-theme="light"] {
  /* ── Fondos (blanco → elevado) ── */
  --bg-void: #fefefd;
  --bg-deep: #fafafa;
  --bg-surface: #f5f5f5;
  --bg-raised: #eeeeee;
  --bg-float: #e0e0e0;

  /* ── Aqua primario ── */
  --forest-teal: #00d4ff;
  --forest-pine: #00d4ff;
  --forest-moss: #00d4ff;

  /* ── Aqua (secundario — más vibrante en claro) ── */
  --cyan-electric: #00b8e6;
  --cyan-bright: #00d4ff;
  --cyan-mid: #0099cc;
  --teal-glow: #00f0ff;

  /* ── Acentos armónicos ── */
  --green-bio: #000000;
  --blue-electric: #000000;
  --blue-vivid: #00d4ff;
  --amber-accent: #0099cc;
  --coral-accent: #e8547a;
  --teal-accent: #2fb87e;

  /* ── Tipografía ── */
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --text-ghost: #999999;

  /* ── Glassmorphism ── */
  --glass-bg: rgba(245, 245, 245, 0.78);
  --glass-border: rgba(0, 212, 255, 0.28);
  --glass-border-hi: rgba(0, 212, 255, 0.5);
  --glass-glow: rgba(0, 212, 255, 0.08);

  /* ── Sombras ── */
  --shadow-deep: 0 25px 80px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.2);
  --shadow-glow-sm: 0 0 25px rgba(0, 212, 255, 0.25);
}

/* Modo light - títulos */
[data-theme="light"] .display-xl,
[data-theme="light"] .display-lg,
[data-theme="light"] .display-md {
  color: #00d4ff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  transition: background 0.5s var(--ease-smooth), color 0.5s var(--ease-smooth);
  cursor: default;
}

[data-theme="light"] body {
  background: var(--bg-void);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-teal);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-mid);
}

/* Selection */
::selection {
  background: rgba(0, 212, 255, 0.2);
  color: var(--cyan-electric);
}

/* ═══════════════════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════════════════ */
.c-cursor {
  display: none !important;
}

.c-cursor__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan-electric);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.c-cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--cyan-electric);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s;
}

.c-cursor.is-hovering .c-cursor__ring {
  width: 60px;
  height: 60px;
  opacity: 0.8;
}

.c-cursor.is-clicking .c-cursor__dot {
  transform: translate(-50%, -50%) scale(2);
}

/* ═══════════════════════════════════════════════════════
   CANVAS (Gravity Particles) - DISABLED
═══════════════════════════════════════════════════════ */
#universe-canvas {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   NOISE OVERLAY - DISABLED
═══════════════════════════════════════════════════════ */
.noise-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT WRAPPERS
═══════════════════════════════════════════════════════ */
.site-wrap {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-pad {
  padding: clamp(80px, 12vw, 160px) 0;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════════════════════ */
.display-xl {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.display-lg {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-md {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.body-md {
  font-size: 1rem;
  line-height: 1.7;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Gradient text */
.grad-cyan {
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-electric) 50%, var(--teal-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-blue {
  background: linear-gradient(135deg, var(--cyan-electric) 0%, var(--teal-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-warm {
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur-mid) var(--ease-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 50%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.6), transparent 30%, rgba(0, 240, 255, 0.4) 70%, transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

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

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #004a54, var(--cyan-electric));
  color: #ffffff;
  border: 2px solid var(--cyan-electric);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 70px rgba(0, 212, 255, 0.7), 0 10px 40px rgba(0, 212, 255, 0.5);
  border-color: var(--teal-glow);
  transform: translateY(-4px);
}

.btn-secondary {
  background: linear-gradient(145deg, rgba(0, 26, 29, 0.8), rgba(0, 42, 48, 0.6));
  color: #ffffff;
  border: 2px solid rgba(0, 212, 255, 0.4);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  border-color: var(--cyan-electric);
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.15), rgba(0, 240, 255, 0.1));
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--glass-border);
}

.btn-ghost:hover {
  color: var(--cyan-electric);
  border-color: var(--glass-border-hi);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════
   GLASS CARD
═══════════════════════════════════════════════════════ */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-raised {
  background: linear-gradient(145deg, rgba(36, 15, 74, 0.9) 0%, rgba(27, 11, 56, 0.8) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

[data-theme="light"] .glass {
  background: rgba(244, 241, 249, 0.7);
}

[data-theme="light"] .glass-raised {
  background: linear-gradient(145deg, rgba(235, 231, 240, 0.88) 0%, rgba(244, 241, 249, 0.75) 100%);
}

/* ═══════════════════════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-electric);
  margin-bottom: 24px;
}

.section-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--green-bio);
  border-radius: 50%;
  animation: breathe 2.5s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.3;
    transform: scale(0.7)
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(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;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════════════════════════════
   FUTURISTIC SECTION TRANSITIONS
═══════════════════════════════════════════════════════ */
.section-transition {
  position: relative;
  overflow: hidden;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-electric), var(--green-bio), var(--blue-electric), transparent);
  animation: scanLine 3s ease-in-out infinite;
}

.section-transition::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hi), transparent);
}

@keyframes scanLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

/* Glitch reveal */
.reveal-glitch {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  position: relative;
}

.reveal-glitch.in {
  opacity: 1;
  transform: translateY(0);
  animation: glitchIn 0.6s var(--ease-out) forwards;
}

@keyframes glitchIn {
  0% {
    clip-path: inset(0 0 100% 0);
    filter: hue-rotate(90deg);
  }

  20% {
    clip-path: inset(0 0 60% 0);
    filter: hue-rotate(45deg);
  }

  40% {
    clip-path: inset(0 0 30% 0);
    filter: hue-rotate(20deg);
  }

  60% {
    clip-path: inset(0 0 10% 0);
    filter: hue-rotate(10deg);
  }

  80% {
    clip-path: inset(0 0 2% 0);
    filter: hue-rotate(0deg);
  }

  100% {
    clip-path: inset(0 0 0 0);
    filter: hue-rotate(0deg);
  }
}

/* Holographic shimmer on sections */
.holo-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 212, 255, 0.03),
      rgba(0, 184, 212, 0.05),
      rgba(0, 212, 255, 0.03),
      transparent);
  animation: holoSweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes holoSweep {
  0% {
    left: -50%;
  }

  100% {
    left: 150%;
  }
}

/* Cyber grid background for sections */
.cyber-grid-bg {
  position: relative;
}

.cyber-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.cyber-grid-bg.in-view::after {
  opacity: 1;
}

/* Data stream divider between sections */
.section-divider-stream {
  height: 60px;
  position: relative;
  overflow: hidden;
}

.section-divider-stream::before {
  content: '01001010 11010110 00110101 01001010 11010110 00110101 01001010 11010110';
  position: absolute;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan-electric);
  opacity: 0.08;
  top: 50%;
  transform: translateY(-50%);
  animation: dataStream 20s linear infinite;
}

@keyframes dataStream {
  0% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

/* Particle burst overlay for page load */
.page-load-burst {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  opacity: 1;
  animation: burstFade 2s ease-out forwards;
}

@keyframes burstFade {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 4vw, 40px);
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  background: var(--bg-deep);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px color-mix(in srgb, var(--cyan-electric) 60%, transparent));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  border: 1px solid var(--cyan-electric);
  transition: all var(--dur-fast) var(--ease-smooth);
  position: relative;
}

.nav-links a:hover {
  color: var(--cyan-electric);
  background: rgba(0, 212, 255, 0.06);
  border-color: var(--glass-border-hi);
}

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

/* Theme toggle */
.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur-fast);
  cursor: pointer;
}

.theme-btn:hover {
  border-color: var(--glass-border-hi);
  background: rgba(0, 212, 255, 0.06);
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}

.mobile-nav a:hover {
  color: var(--cyan-electric);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding-top: 80px;
}

/* NEW Text Background Animation */
.hero-text-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-text {
  position: absolute;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  color: rgba(0, 212, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: textFloat 20s ease-in-out infinite;
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 0 80px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.6);
  -webkit-text-stroke: 1px rgba(0, 212, 255, 0.6);
  paint-order: stroke fill;
}

.text-1 {
  font-size: 8rem;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.text-2 {
  font-size: 10rem;
  top: 20%;
  right: 10%;
  animation-delay: -3s;
  animation-duration: 20s;
}

.text-3 {
  font-size: 12rem;
  bottom: 15%;
  left: 10%;
  animation-delay: -6s;
  animation-duration: 22s;
}

.text-4 {
  font-size: 6rem;
  top: 50%;
  right: 15%;
  animation-delay: -9s;
  animation-duration: 19s;
}

.text-5 {
  font-size: 9rem;
  bottom: 25%;
  right: 20%;
  animation-delay: -12s;
  animation-duration: 21s;
}

.text-6 {
  font-size: 11rem;
  top: 35%;
  left: 15%;
  animation-delay: -15s;
  animation-duration: 23s;
}

.text-7 {
  font-size: 7rem;
  bottom: 10%;
  left: 25%;
  animation-delay: -18s;
  animation-duration: 20s;
}

.text-8 {
  font-size: 8rem;
  top: 15%;
  left: 40%;
  animation-delay: -21s;
  animation-duration: 17s;
}

.text-9 {
  font-size: 6rem;
  bottom: 30%;
  right: 5%;
  animation-delay: -24s;
  animation-duration: 19s;
}

.text-10 {
  font-size: 12rem;
  top: 60%;
  left: 30%;
  animation-delay: -27s;
  animation-duration: 24s;
}

.text-11 {
  font-size: 10rem;
  top: 5%;
  right: 30%;
  animation-delay: -30s;
  animation-duration: 18s;
}

.text-12 {
  font-size: 7rem;
  bottom: 20%;
  right: 35%;
  animation-delay: -33s;
  animation-duration: 21s;
}

@keyframes textFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(-5deg) scale(1);
    opacity: 0.03;
  }
  25% {
    transform: translate(20px, -30px) rotate(5deg) scale(1.05);
    opacity: 0.06;
  }
  50% {
    transform: translate(-15px, 20px) rotate(-3deg) scale(0.98);
    opacity: 0.04;
  }
  75% {
    transform: translate(25px, 15px) rotate(8deg) scale(1.02);
    opacity: 0.05;
  }
}

/* NEW Hero Background Effects */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 184, 212, 0.12) 0%, transparent 70%);
  bottom: -50px;
  right: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.95); }
}

/* Ambient blobs - DISABLED */
.blob {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(0, 184, 212, 0.25) 0%, transparent 70%);
  top: -150px;
  left: -200px;
  animation: drift1 12s ease-in-out infinite;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
  animation: drift2 15s ease-in-out infinite;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: drift3 10s ease-in-out infinite;
}

@keyframes drift1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(60px, -40px) scale(1.05)
  }

  66% {
    transform: translate(-30px, 50px) scale(0.97)
  }
}

@keyframes drift2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-50px, 30px) scale(1.08)
  }

  66% {
    transform: translate(40px, -60px) scale(0.95)
  }
}

@keyframes drift3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3) rotate(15deg)
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 10vw, 120px) 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 184, 212, 0.08) 0%, transparent 50%);
  animation: heroPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-electric);
  margin-bottom: 32px;
  animation: fadeSlideDown 1s var(--ease-out) both;
}

/* NEW Badge Style with Pulse */
.hero__badge.new-badge {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 184, 212, 0.15));
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan-electric);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
}

.hero__title {
  margin-bottom: 28px;
  animation: fadeSlideDown 1s var(--ease-out) 0.1s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeSlideDown 1s var(--ease-out) 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideDown 1s var(--ease-out) 0.3s both;
}

.hero__proof {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeSlideDown 1s var(--ease-out) 0.5s both;
}

.hero__stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Hero visual */
.hero__visual {
  position: relative;
  animation: fadeSlideLeft 1.2s var(--ease-out) 0.2s both;
}

/* NEW Modern Phone Design */
.hero-phone-modern {
  width: 340px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a0a2e, #0d001d);
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 30px 100px rgba(0, 212, 255, 0.3),
    0 0 60px rgba(0, 212, 255, 0.2),
    inset 0 0 40px rgba(0, 212, 255, 0.1);
  position: relative;
  animation: modernFloat 6s ease-in-out infinite;
  overflow: hidden;
}

.hero-phone-modern::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.6), transparent 40%, rgba(0, 240, 255, 0.4) 60%, transparent);
  z-index: -1;
  opacity: 0.5;
  animation: phoneGlow 3s ease-in-out infinite;
}

@keyframes modernFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-25px) rotate(2deg); }
}

@keyframes phoneGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.phone-notch-modern {
  width: 120px;
  height: 32px;
  background: #000;
  border-radius: 16px;
  margin: 0 auto 10px;
  position: relative;
}

.phone-notch-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.phone-screen-modern {
  background: linear-gradient(180deg, #1a0a2e 0%, #0d001d 100%);
  border-radius: 36px;
  overflow: hidden;
  height: 580px;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.modern-phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.15), rgba(0, 26, 29, 0.8));
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modern-phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.modern-phone-info {
  flex: 1;
}

.modern-phone-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2px;
}

.modern-phone-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.modern-phone-actions {
  display: flex;
  gap: 8px;
}

.action-icon {
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.action-icon:hover {
  opacity: 1;
}

.modern-phone-messages {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.modern-pmsg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.modern-pmsg.user-msg {
  flex-direction: row-reverse;
}

.modern-pmsg__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.modern-pmsg__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-pmsg__avatar.user {
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.modern-pmsg__bubble {
  max-width: 75%;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modern-pmsg__bubble.user {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 240, 255, 0.25));
  border-color: rgba(0, 212, 255, 0.4);
  align-items: flex-end;
}

.msg-text {
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.4;
}

.msg-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.modern-phone-input {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: rgba(0, 26, 29, 0.8);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.input-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.modern-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5d15, #ff7f45);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.modern-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: linear-gradient(145deg, rgba(0, 26, 29, 0.9), rgba(0, 42, 48, 0.8));
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
  animation: cardFloat 4s ease-in-out infinite;
  z-index: 10;
}

.card-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 25%;
  left: -20px;
  animation-delay: -2s;
}

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

.card-icon {
  font-size: 1.3rem;
}

.card-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Old Phone (keep for compatibility) */
.hero-phone {
  width: 320px;
  margin: 0 auto;
  background: #0d001d;
  border: 1px solid var(--glass-border);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-deep), 0 0 80px rgba(0, 184, 212, 0.15);
  position: relative;
  animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-18px) rotate(1deg)
  }
}

.hero-phone__notch {
  width: 100px;
  height: 28px;
  background: var(--bg-void);
  border-radius: 14px;
  margin: 0 auto 12px;
}

[data-theme="light"] .hero-phone__notch {
  background: #0d001d;
}

.hero-phone__screen {
  background: var(--bg-deep);
  border-radius: 32px;
  overflow: hidden;
  height: 560px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cyan-electric);
  border-top: none;
}

.phone-header {
  background: linear-gradient(180deg, var(--bg-raised), var(--bg-surface));
  padding: 18px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--glass-border);
}

[data-theme="light"] .phone-header {
  background: linear-gradient(180deg, #1a003a, #0d001d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .phone-info-name,
[data-theme="light"] .phone-info-status {
  color: #ffffff;
}

[data-theme="light"] .hero-phone__screen {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: none;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.phone-avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}

.phone-avatar::after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  background: var(--cyan-electric);
  border: 2px solid var(--bg-raised);
  border-radius: 50%;
}

.phone-info-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.phone-info-status {
  font-size: 0.7rem;
  color: var(--cyan-electric);
}

.phone-messages {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pmsg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pmsg.right {
  flex-direction: row-reverse;
}

.pmsg__bubble {
  max-width: 200px;
  padding: 10px 14px;
  border-radius: 18px 18px 18px 4px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-primary);
}

.pmsg.right .pmsg__bubble {
  border-radius: 18px 18px 4px 18px;
}

.pmsg__bubble--gigi {
  background: color-mix(in srgb, var(--green-bio) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--green-bio) 15%, transparent);
}

.pmsg__bubble--user {
  background: color-mix(in srgb, var(--cyan-electric) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan-electric) 30%, transparent);
}

.pmsg__typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}

.pmsg__typing span {
  width: 6px;
  height: 6px;
  background: var(--cyan-mid);
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.pmsg__typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.pmsg__typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.4
  }

  40% {
    transform: scale(1);
    opacity: 1
  }
}

.pmsg__media {
  max-width: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--green-bio) 20%, transparent);
  background: color-mix(in srgb, var(--green-bio) 6%, transparent);
}

.pmsg__media picture,
.pmsg__media img {
  display: block;
  width: 100%;
}

.pmsg__media img {
  height: 100px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.pmsg__media-cap {
  padding: 8px 10px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.pmsg__media-cap strong {
  color: var(--text-primary);
  font-weight: 600;
}

.phone-input-bar {
  margin: 10px 16px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-raised);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 16px;
}

.phone-input-bar span {
  flex: 1;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.phone-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--bg-void);
  cursor: pointer;
  flex-shrink: 0;
}

/* Floating cards around phone */
.float-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.float-badge-1 {
  top: 30px;
  right: -40px;
  animation: floatBadge1 4s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 80px;
  left: -50px;
  animation: floatBadge2 4.5s ease-in-out infinite 0.5s;
}

@keyframes floatBadge1 {

  0%,
  100% {
    transform: translateY(0) rotate(3deg)
  }

  50% {
    transform: translateY(-10px) rotate(5deg)
  }
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(10px) rotate(-4deg)
  }
}

.float-badge__icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.float-badge__label {
  font-weight: 600;
  color: var(--text-primary);
}

.float-badge__sub {
  color: var(--text-muted);
  font-size: 0.7rem;
}

/* Animate hero entrance */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(0, 26, 29, 0.7), rgba(0, 42, 48, 0.5));
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0, 212, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), transparent 40%, rgba(0, 240, 255, 0.3) 60%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.2);
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-card__glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur-mid);
  filter: blur(30px);
}

.service-card:hover .service-card__glow {
  opacity: 0.6;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0, 245, 224, 0.2);
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.12), rgba(0, 255, 157, 0.06));
}

.service-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card__tag {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 245, 224, 0.08);
  border: 1px solid rgba(0, 245, 224, 0.15);
  color: var(--cyan-electric);
}

/* ═══════════════════════════════════════════════════════
   ABOUT / NOSOTROS
═══════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all var(--dur-fast) var(--ease-spring);
}

.value-item:hover {
  border-color: var(--glass-border-hi);
  transform: translateY(-3px);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.15), rgba(0, 255, 157, 0.08));
  border: 1px solid rgba(0, 245, 224, 0.25);
  flex-shrink: 0;
}

.value-item h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

/* About card */
.about-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.about-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-avatar img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.about-card__title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.about-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.about-stat {
  text-align: center;
  padding: 16px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.about-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.about-card__footer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

/* Brochure scan proof */
/* ═══════════════════════════════════════════════════════
   GIGI SECTION
═══════════════════════════════════════════════════════ */
.gigi-section {
  position: relative;
  overflow: hidden;
}

.gigi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 107, 112, 0.06) 50%, transparent 100%);
  pointer-events: none;
}

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

/* GIGI Icon / Logo */
.gigi-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gigi-icon-svg {
  width: 140px;
  height: 140px;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(0, 245, 224, 0.4));
  animation: gigiPulse 4s ease-in-out infinite;
}

@keyframes gigiPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(0, 245, 224, 0.4))
  }

  50% {
    filter: drop-shadow(0 0 60px rgba(0, 245, 224, 0.7))
  }
}

.gigi-name-badge {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gigi-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--green-bio);
  padding: 5px 12px;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius-pill);
}

/* Gigi chat showcase */
.gigi-showcase {
  position: relative;
}

.gigi-chat-window {
  background: linear-gradient(145deg, color-mix(in srgb, var(--bg-surface) 95%, transparent), color-mix(in srgb, var(--bg-void) 90%, transparent));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep), var(--shadow-glow);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 560px;
  max-height: min(70vh, 620px);
  contain: layout paint;
}

.gcw-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 14px;
  background: color-mix(in srgb, var(--bg-surface) 80%, transparent);
}

.gcw-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px color-mix(in srgb, var(--cyan-electric) 50%, transparent);
}

@keyframes avatarBreathe {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--cyan-electric) 40%, transparent));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--cyan-electric) 70%, transparent));
  }
}

.gcw-avatar img,
.cp-avatar img,
.pmsg__gigi-av img,
.phone-avatar img {
  animation: avatarBreathe 4s ease-in-out infinite;
}

.gcw-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.gcw-status {
  font-size: 0.72rem;
  color: var(--green-bio);
  display: flex;
  align-items: center;
  gap: 5px;
}

.gcw-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.gcw-body::-webkit-scrollbar {
  width: 8px;
}

.gcw-body::-webkit-scrollbar-track {
  background: var(--bg-surface);
  opacity: 0.1;
}

.gcw-body::-webkit-scrollbar-thumb {
  background: rgba(0, 245, 224, 0.28);
  border-radius: 999px;
}

.gcw-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.gcw-msg.right {
  flex-direction: row-reverse;
}

.gcw-msg__text {
  max-width: 260px;
  padding: 12px 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  border-radius: 18px 18px 18px 4px;
  word-break: break-word;
}

.gcw-msg.right .gcw-msg__text {
  border-radius: 18px 18px 4px 18px;
}

.gcw-msg__text--gigi {
  background: color-mix(in srgb, var(--green-bio) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--green-bio) 20%, transparent);
}

.gcw-msg__text--user {
  background: color-mix(in srgb, var(--cyan-electric) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan-electric) 25%, transparent);
}

.gcw-msg__media {
  width: min(260px, 100%);
  background: color-mix(in srgb, var(--cyan-electric) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan-electric) 15%, transparent);
  border-radius: 16px;
  overflow: hidden;
}

.gcw-msg__media img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.gcw-media-caption {
  padding: 10px 12px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.gcw-media-caption strong {
  color: var(--text-primary);
  font-weight: 600;
}

.gcw-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--bg-surface);
}

.gcw-input {
  flex: 1;
  background: color-mix(in srgb, var(--text-primary) 5%, transparent);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--dur-fast);
}

.gcw-input:focus {
  border-color: var(--glass-border-hi);
}

.gcw-input::placeholder {
  color: var(--text-muted);
}

.gcw-mic,
.gcw-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.gcw-mic {
  background: color-mix(in srgb, var(--cyan-electric) 10%, transparent);
  border: 1px solid var(--glass-border);
  color: var(--cyan-electric);
  font-size: 1rem;
}

.gcw-mic:hover {
  background: color-mix(in srgb, var(--cyan-electric) 20%, transparent);
  border-color: var(--glass-border-hi);
}

.gcw-send {
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  color: var(--bg-void);
  font-size: 0.9rem;
  box-shadow: 0 0 15px color-mix(in srgb, var(--cyan-electric) 40%, transparent);
}

.gcw-send:hover {
  transform: scale(1.1);
}

/* Feature list */
.gigi-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gigi-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all var(--dur-mid) var(--ease-spring);
  cursor: pointer;
}

.gigi-feat:hover {
  border-color: var(--glass-border-hi);
  transform: translateX(6px);
}

.gigi-feat__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.12), rgba(0, 255, 157, 0.06));
  border: 1px solid rgba(0, 245, 224, 0.15);
}

.gigi-feat__title {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gigi-feat__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Security tags */
.security-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid rgba(0, 255, 157, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
}

[data-theme="light"] .sec-tag {
  color: #000000;
}

/* Gigi avatar - cambiar imagen según tema */
[data-theme="light"] .gigi-avatar-light {
  display: inline-block !important;
}

[data-theme="light"] .gigi-avatar-dark {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════
   GIGI PRODUCT SECTION
═══════════════════════════════════════════════════════ */
.gigi-product-section {
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.04) 0%, rgba(0, 102, 255, 0.04) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.gigi-product-card {
  padding: 48px 44px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(0, 245, 224, 0.08) 0%, rgba(0, 107, 112, 0.12) 100%);
  border: 1px solid rgba(0, 245, 224, 0.2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 245, 224, 0.08);
  backdrop-filter: blur(20px);
}

.gigi-hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  position: relative;
}

.gigi-orb {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: none;
  box-shadow: none;
  position: relative;
}

@keyframes orbPulse {

  0%,
  100% {
    box-shadow: 0 0 50px rgba(0, 245, 224, 0.5), 0 0 100px rgba(0, 245, 224, 0.2)
  }

  50% {
    box-shadow: 0 0 80px rgba(0, 245, 224, 0.8), 0 0 150px rgba(0, 245, 224, 0.35)
  }
}

.gigi-orb::before {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.gigi-orb-inner {
  font-size: 2.8rem;
}

.gigi-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.gigi-stat-mini {
  padding: 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.gigi-stat-mini__val {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.gigi-stat-mini__lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.gigi-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0, 245, 224, 0.08);
  border: 1px solid rgba(0, 245, 224, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cyan-electric);
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS / WHAT'S INCLUDED
═══════════════════════════════════════════════════════ */
.products-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 245, 224, 0.03) 50%, transparent 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

.product-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: linear-gradient(145deg, rgba(0, 26, 29, 0.7), rgba(0, 42, 48, 0.5));
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), transparent 40%, rgba(0, 240, 255, 0.3) 60%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-item:hover {
  transform: translateY(-6px) translateX(6px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.25), 0 0 30px rgba(0, 212, 255, 0.15);
}

.product-item:hover::before {
  opacity: 1;
}

.product-item:hover::after {
  opacity: 1;
}

.product-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.12), rgba(0, 255, 157, 0.06));
  border: 1px solid rgba(0, 245, 224, 0.18);
}

.product-item h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.product-price {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan-electric);
  margin-top: 12px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Logistics cards */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}

.logistics-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  transition: all var(--dur-mid) var(--ease-spring);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logistics-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hi);
  box-shadow: var(--shadow-glow);
}

.logistics-card__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid var(--glass-border-hi);
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.08), rgba(0, 102, 255, 0.06));
}

.logistics-card__name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.logistics-card__price {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.logistics-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Benefits compact row */
.benefits-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 245, 224, 0.06);
  border: 1px solid rgba(0, 245, 224, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cyan-electric);
  transition: all var(--dur-fast);
}

.benefit-chip:hover {
  background: rgba(0, 245, 224, 0.12);
  border-color: var(--glass-border-hi);
  transform: translateY(-2px);
}

/* Packaging badge */
.packaging-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.08), rgba(0, 245, 224, 0.06));
  border: 1px solid rgba(255, 170, 0, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber-accent);
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 60px;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  background: linear-gradient(145deg, rgba(0, 26, 29, 0.75), rgba(0, 42, 48, 0.55));
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0, 212, 255, 0.1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), transparent 40%, rgba(0, 240, 255, 0.3) 60%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 25px 80px rgba(0, 212, 255, 0.35), 0 0 60px rgba(0, 212, 255, 0.2);
}

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

.pricing-card--featured {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(0, 240, 255, 0.15));
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.2);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 150px rgba(0, 212, 255, 0.4), 0 25px 80px rgba(0, 212, 255, 0.5);
}

.pricing-card--gigi {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.18), rgba(0, 184, 212, 0.15));
  border-color: rgba(0, 212, 255, 0.45);
}

.pricing-card--gigi:hover {
  box-shadow: 0 0 120px rgba(0, 212, 255, 0.35), 0 25px 80px rgba(0, 184, 212, 0.25);
}

.pricing-top-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-hot {
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  color: var(--bg-void);
}

.badge-ai {
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan-mid));
  color: white;
}

.pricing-plan-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.pricing-plan-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-plan-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pricing-price-row {
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Clash Display', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.pricing-feature::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 245, 224, 0.1);
  color: var(--cyan-electric);
  margin-top: 1px;
}

.pricing-feature--no {
  color: var(--text-muted);
}

.pricing-feature--no::before {
  content: '\2715';
  background: rgba(255, 80, 80, 0.1);
  color: #ff6060;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* Pricing decoration */
.pricing-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   PROCESS / HOW IT WORKS
═══════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 60px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hi), transparent);
}

.process-step {
  text-align: center;
}

.process-step__num {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-hi);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: all var(--dur-mid) var(--ease-spring);
}

.process-step:hover .process-step__num {
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  color: var(--bg-void);
  border-color: transparent;
  transform: scale(1.1);
}

.process-step__title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testi-card {
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: all var(--dur-mid) var(--ease-spring);
  cursor: pointer;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hi);
}

.testi-stars {
  color: #ffc000;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-teal), var(--cyan-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   CTA / CONTACT
═══════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(0, 107, 112, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-box {
  padding: 80px clamp(30px, 8vw, 100px);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(0, 26, 29, 0.85), rgba(0, 42, 48, 0.7));
  border: 1px solid rgba(0, 212, 255, 0.4);
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 80px rgba(0, 212, 255, 0.2), 0 0 60px rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.cta-box h2,
.cta-box .display-lg {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.cta-box p {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 26, 29, 0.7), rgba(0, 42, 48, 0.5));
  backdrop-filter: blur(24px);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), rgba(0, 240, 255, 0.4), rgba(0, 212, 255, 0.6), transparent);
  animation: footerGlow 4s ease-in-out infinite;
}

@keyframes footerGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand__desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--dur-fast);
  cursor: pointer;
}

.footer-social:hover {
  border-color: var(--glass-border-hi);
  background: rgba(0, 245, 224, 0.06);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan-electric);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}

.footer-links a:hover {
  color: var(--cyan-electric);
}

.footer-link-btn {
  background: none;
  border: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--dur-fast);
  font-family: inherit;
}

.footer-link-btn:hover {
  color: var(--cyan-electric);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copy--muted {
  font-size: 0.76rem;
  color: var(--text-ghost);
}

.footer-bottom__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal-card {
  margin: 18px auto 0;
  width: min(760px, 100%);
  position: relative;
  overflow: hidden;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 28px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 9px;
}

.footer-legal-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  background-size: 200% 200%;
  animation: footerBorderSweep 7.5s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.footer-legal-card__aura {
  position: absolute;
  inset: -35% -10%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 35%, rgba(255, 255, 255, 0) 70%);
  animation: footerAuraBreath 6s ease-in-out infinite;
  opacity: 0.75;
  pointer-events: none;
}

.footer-legal-card__kicker {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: 'Clash Display', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan-electric);
}

.footer-legal-card__entry {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer-legal-card__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan-electric);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
}

.footer-legal-card__text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 400;
}

.footer-legal-card__text strong {
  color: var(--cyan-bright);
  font-weight: 520;
}

@keyframes footerBorderSweep {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes footerAuraBreath {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {

  .footer-legal-card::after,
  .footer-legal-card__aura {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════
   FLOATING CHAT BUTTON & POPUP
═══════════════════════════════════════════════════════ */
.chat-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 184, 212, 0.4);
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease-spring);
  animation: chatFloat 4s ease-in-out infinite;
}

@keyframes chatFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.chat-trigger:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 12px 50px rgba(0, 245, 224, 0.7);
}

.chat-trigger__ping {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--bg-void);
  background: var(--green-bio);
  border-radius: 50%;
  animation: pingPulse 2s infinite;
}

@keyframes pingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.6)
  }

  70% {
    box-shadow: 0 0 0 8px transparent
  }

  100% {
    box-shadow: 0 0 0 0 transparent
  }
}

.chat-tooltip {
  position: absolute;
  right: 74px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 0.78rem;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast);
  font-weight: 500;
  color: var(--text-primary);
}

/* Dark mode - chat tooltip text */
[data-theme="dark"] .chat-tooltip {
  color: #ffffff;
}

.chat-trigger:hover .chat-tooltip {
  opacity: 1;
}

.chat-popup {
  position: fixed;
  bottom: 106px;
  right: 28px;
  z-index: 901;
  width: 360px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, color-mix(in srgb, var(--bg-surface) 98%, transparent), color-mix(in srgb, var(--bg-void) 95%, transparent));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-deep), var(--shadow-glow);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-spring);
  transform-origin: bottom right;
  overflow: hidden;
}

.chat-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cp-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
}

.cp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px color-mix(in srgb, var(--cyan-electric) 40%, transparent);
}

.cp-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.cp-status {
  font-size: 0.7rem;
  color: var(--green-bio);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.cp-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--dur-fast);
  padding: 4px;
}

.cp-close:hover {
  color: var(--text-primary);
}

.cp-body {
  padding: 18px;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-body::-webkit-scrollbar {
  width: 3px;
}

.cp-body::-webkit-scrollbar-thumb {
  background: var(--forest-teal);
  border-radius: 3px;
}

.cp-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.cp-msg.right {
  flex-direction: row-reverse;
}

.cp-msg__bubble {
  max-width: 230px;
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.55;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid var(--glass-border);
}

.cp-msg.right .cp-msg__bubble {
  border-radius: 16px 16px 4px 16px;
  background: color-mix(in srgb, var(--cyan-electric) 15%, transparent);
}

.cp-msg__bubble--g {
  background: color-mix(in srgb, var(--green-bio) 10%, transparent);
}

.cp-msg__media {
  max-width: 230px;
  background: color-mix(in srgb, var(--green-bio) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--green-bio) 18%, transparent);
  border-radius: 14px;
  overflow: hidden;
}

.cp-msg__media picture,
.cp-msg__media img {
  display: block;
  width: 100%;
}

.cp-msg__media img {
  height: 110px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.cp-msg__media-cap {
  padding: 8px 10px;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.cp-msg__media-cap strong {
  color: var(--text-primary);
  font-weight: 600;
}

.cp-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--glass-border);
}

.cp-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cp-input {
  flex: 1;
  background: color-mix(in srgb, var(--text-primary) 5%, transparent);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--dur-fast);
  font-family: inherit;
}

.cp-input:focus {
  border-color: var(--glass-border-hi);
}

.cp-input::placeholder {
  color: var(--text-muted);
}

.cp-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  color: var(--bg-void);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}

.cp-send:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px color-mix(in srgb, var(--cyan-electric) 50%, transparent);
}

.cp-mic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: color-mix(in srgb, var(--cyan-electric) 10%, transparent);
  color: var(--cyan-electric);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}

.cp-mic:hover {
  border-color: var(--glass-border-hi);
  background: color-mix(in srgb, var(--cyan-electric) 15%, transparent);
}

/* ═══════════════════════════════════════════════════════
   PRIVACY / DATA POLICY SECTION
═══════════════════════════════════════════════════════ */
.privacy-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 102, 255, 0.04) 30%,
      rgba(0, 107, 112, 0.06) 60%,
      transparent 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.privacy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 10% 50%, rgba(0, 102, 255, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 350px at 90% 50%, rgba(0, 245, 224, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero banner inside privacy section */
.priv-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 245, 224, 0.08) 100%);
  border: 1px solid rgba(0, 102, 255, 0.25);
  margin-bottom: 60px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.priv-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.priv-hero__shield {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 245, 224, 0.15));
  border: 1.5px solid rgba(0, 102, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3)
  }

  50% {
    box-shadow: 0 0 55px rgba(0, 102, 255, 0.55), 0 0 80px rgba(0, 245, 224, 0.15)
  }
}

.priv-hero__text h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.priv-hero__text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

.priv-hero__badges {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

@media(max-width:900px) {
  .priv-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .priv-hero__badges {
    margin-left: 0;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Compliance badge */
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.compliance-badge--meta {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(0, 102, 255, 0.15));
  border: 1px solid rgba(24, 119, 242, 0.4);
  color: #60a5fa;
}

.compliance-badge--gdpr {
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.1), rgba(0, 255, 157, 0.08));
  border: 1px solid rgba(0, 245, 224, 0.25);
  color: var(--cyan-electric);
}

.compliance-badge--iso {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.1), rgba(255, 200, 50, 0.06));
  border: 1px solid rgba(255, 170, 0, 0.3);
  color: var(--amber-accent);
}

/* Privacy principle cards grid */
.priv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

@media(max-width:900px) {
  .priv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.priv-card {
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  text-align: center;
  transition: all var(--dur-mid) var(--ease-spring);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.priv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--priv-accent, rgba(0, 245, 224, 0.08)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.priv-card:hover {
  transform: translateY(-7px);
  border-color: var(--glass-border-hi);
}

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

.priv-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 245, 224, 0.18);
  background: linear-gradient(135deg, rgba(0, 245, 224, 0.1), rgba(0, 255, 157, 0.06));
}

.priv-card h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.priv-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* User rights section */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 44px;
}

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

.right-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: border-color var(--dur-fast), transform var(--dur-fast);
  cursor: pointer;
}

.right-item:hover {
  border-color: var(--glass-border-hi);
  transform: translateX(5px);
}

.right-item__num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-electric), var(--green-bio));
  color: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.right-item h5 {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.right-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Meta API compliance panel */
.meta-panel {
  padding: 40px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(0, 102, 255, 0.08) 100%);
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

@media(max-width:768px) {
  .meta-panel {
    grid-template-columns: 1fr;
  }
}

.meta-panel__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.meta-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1877f2, #0a5ab8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  font-family: 'Clash Display', sans-serif;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

.meta-panel__title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.meta-panel__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.meta-reqs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-req {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.83rem;
  line-height: 1.6;
}

.meta-req::before {
  content: '\2713';
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(24, 119, 242, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.meta-req span {
  color: var(--text-secondary);
}

.meta-req strong {
  color: var(--text-primary);
}

/* Retention table */
.retention-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.retention-table thead tr {
  background: rgba(0, 245, 224, 0.06);
}

.retention-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Clash Display', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-electric);
  border-bottom: 1px solid var(--glass-border);
}

.retention-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
  vertical-align: top;
}

.retention-table tr:last-child td {
  border-bottom: none;
}

.retention-table tr:hover td {
  background: rgba(0, 245, 224, 0.03);
}

.ret-type {
  color: var(--text-primary);
  font-weight: 500;
}

.ret-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
}

.ret-badge--session {
  background: rgba(0, 245, 224, 0.1);
  color: var(--cyan-electric);
  border: 1px solid rgba(0, 245, 224, 0.2);
}

.ret-badge--short {
  background: rgba(0, 255, 157, 0.1);
  color: var(--green-bio);
  border: 1px solid rgba(0, 255, 157, 0.2);
}

.ret-badge--medium {
  background: rgba(255, 170, 0, 0.1);
  color: var(--amber-accent);
  border: 1px solid rgba(255, 170, 0, 0.2);
}

.ret-badge--long {
  background: rgba(0, 102, 255, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(0, 102, 255, 0.25);
}

.ret-badge--never {
  background: rgba(255, 80, 80, 0.08);
  color: #f87171;
  border: 1px solid rgba(255, 80, 80, 0.2);
}

/* Action buttons area */
.priv-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.priv-actions__text h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.priv-actions__text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.priv-actions .btns {
  margin-left: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media(max-width:600px) {
  .priv-actions {
    flex-direction: column;
  }

  .priv-actions .btns {
    margin-left: 0;
  }
}

/* Consent notice in chat footer */
.cp-consent {
  padding: 10px 16px 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.cp-consent a {
  color: var(--cyan-electric);
  text-decoration: underline;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   PRIVACY POLICY FULL-PAGE MODAL
═══════════════════════════════════════════════════════ */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(2, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid);
}

.policy-modal.open {
  opacity: 1;
  pointer-events: all;
}

.policy-box {
  width: 100%;
  max-width: 860px;
  background: linear-gradient(160deg, rgba(10, 38, 64, 0.99) 0%, rgba(4, 20, 32, 0.99) 100%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform var(--dur-mid) var(--ease-spring);
}

.policy-modal.open .policy-box {
  transform: translateY(0);
}

.policy-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px 24px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 38, 64, 0.7);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
}

.policy-header__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 245, 224, 0.2));
  border: 1px solid rgba(0, 102, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.policy-header h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.policy-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.policy-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all var(--dur-fast);
}

.policy-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Tabs */
.policy-tabs {
  display: flex;
  gap: 0;
  padding: 0 36px;
  border-bottom: 1px solid var(--glass-border);
  overflow-x: auto;
  background: rgba(7, 30, 46, 0.5);
}

.policy-tabs::-webkit-scrollbar {
  height: 3px;
}

.policy-tabs::-webkit-scrollbar-thumb {
  background: var(--forest-teal);
  border-radius: 3px;
}

.policy-tab {
  padding: 14px 20px;
  background: none;
  border: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--dur-fast);
  font-family: inherit;
}

.policy-tab:hover {
  color: var(--text-secondary);
}

.policy-tab.active {
  color: var(--cyan-electric);
  border-bottom-color: var(--cyan-electric);
}

/* Tab panels */
.policy-body {
  padding: 36px;
}

.policy-panel {
  display: none;
}

.policy-panel.active {
  display: block;
}

.policy-panel h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--glass-border);
}

.policy-panel h3:first-child {
  margin-top: 0;
}

.policy-panel p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.policy-panel ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.policy-panel ul li::before {
  content: '\203A';
  color: var(--cyan-electric);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.policy-panel strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-panel .highlight-box {
  padding: 18px 22px;
  background: rgba(0, 245, 224, 0.06);
  border: 1px solid rgba(0, 245, 224, 0.15);
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.policy-panel .warn-box {
  padding: 18px 22px;
  background: rgba(255, 170, 0, 0.06);
  border: 1px solid rgba(255, 170, 0, 0.2);
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.policy-panel .meta-box {
  padding: 18px 22px;
  background: rgba(24, 119, 242, 0.07);
  border: 1px solid rgba(24, 119, 242, 0.2);
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Deletion request form inside policy modal */
.deletion-form {
  padding: 24px;
  background: rgba(255, 80, 80, 0.05);
  border: 1px solid rgba(255, 80, 80, 0.2);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.deletion-form h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f87171;
}

.del-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.35);
  color: #f87171;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast);
  font-family: inherit;
  margin-top: 12px;
}

.del-btn:hover {
  background: rgba(255, 80, 80, 0.2);
  border-color: rgba(255, 80, 80, 0.55);
}

.policy-footer-bar {
  padding: 20px 36px;
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 38, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.policy-footer-bar p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(2, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, rgba(10, 38, 64, 0.98), rgba(7, 30, 46, 0.95));
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-deep);
  transform: scale(0.95) translateY(20px);
  transition: all var(--dur-mid) var(--ease-spring);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  float: right;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--dur-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--dur-fast);
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--glass-border-hi);
  background: rgba(0, 245, 224, 0.04);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - OPTIMIZED
═══════════════════════════════════════════════════════ */

/* ── TABLET (max-width: 1024px) ── */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: block;
    margin-top: 28px;
  }

  .hero-phone {
    width: min(340px, 92vw);
  }

  .gigi-layout {
    grid-template-columns: 1fr;
  }

  .gigi-product-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .process-grid::before {
    display: none;
  }

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

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

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

  .benefits-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .benefit-chip {
    flex: 1 1 calc(50% - 10px);
  }
}

/* ── MOBILE LARGE / SMALL TABLET (max-width: 768px) ── */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .navbar {
    padding: 0 12px;
  }

  .navbar__inner {
    height: 64px;
  }

  .nav-logo {
    font-size: 1.35rem;
    gap: 8px;
  }

  .nav-logo__mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .mobile-nav {
    top: 64px;
    padding: 24px 16px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
    overflow-y: auto;
  }

  .mobile-nav a {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    padding: 8px 0;
    width: 100%;
    text-align: center;
  }

  .mobile-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 100%;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero__title {
    line-height: 0.98;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .hero__proof {
    margin-top: 36px;
    padding-top: 24px;
    gap: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__stat-num {
    font-size: 1.7rem;
  }

  .hero-phone {
    width: min(340px, 100%);
  }

  .phone-messages {
    padding: 14px 12px;
    gap: 10px;
  }

  .pmsg__bubble,
  .gcw-msg__text,
  .cp-msg__bubble {
    max-width: 100%;
  }

  .chat-trigger {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .chat-popup {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: calc(84px + env(safe-area-inset-bottom));
    max-height: calc(100vh - 110px - env(safe-area-inset-bottom));
  }

  .cp-body {
    max-height: min(44vh, 320px);
  }

  .cp-footer {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .gcw-body {
    padding: 16px;
  }

  .gcw-footer {
    padding: 12px 14px;
    gap: 8px;
  }

  .gcw-input {
    padding: 10px 14px;
  }

  .modal-box {
    padding: 30px 24px;
    margin: 20px;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .benefits-row {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .btn.btn-secondary {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-phone__screen {
    height: 500px;
    min-height: 500px;
  }

  .blob {
    display: none;
  }

  .page-load-burst {
    animation-duration: 1.4s;
    opacity: 0.7;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-bottom__links {
    gap: 12px;
  }

  .footer-legal-card {
    width: 100%;
    padding: 12px 12px 11px;
    gap: 7px;
  }

  .footer-legal-card__entry {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: flex-start;
  }

  .footer-legal-card__symbol {
    width: 17px;
    height: 17px;
  }

  .footer-legal-card__text {
    font-size: 0.77rem;
  }

  .display-xl {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .display-lg {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .display-md {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
}

/* ── SMARTPHONE (max-width: 420px) ── */
@media (max-width: 420px) {
  .container {
    padding: 0 12px;
  }

  .display-xl {
    font-size: clamp(2.25rem, 12vw, 2.7rem);
  }

  .display-lg {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .btn,
  .btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-phone__screen {
    height: 430px;
    min-height: 430px;
  }

  .gigi-chat-window {
    height: 500px;
    max-height: min(72vh, 520px);
  }

  .chat-trigger {
    width: 52px;
    height: 52px;
    right: 12px;
  }

  .phone-avatar {
    width: 28px;
    height: 28px;
  }

  .phone-header {
    padding: 14px 14px 12px;
    gap: 10px;
  }

  .hero__proof {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero__stat-num {
    font-size: 1.5rem;
  }

  .hero__stat-label {
    font-size: 0.75rem;
  }

  .pricing-plan-name {
    font-size: 1.1rem;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-social {
    width: 36px;
    height: 36px;
  }
}

/* ── SMALL SMARTPHONE (max-width: 360px) ── */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .pricing-price {
    font-size: 1.8rem;
  }

  .footer-grid {
    gap: 24px;
  }
}

/* ── LOW HEIGHT DEVICES ── */
@media (max-height: 740px) and (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-phone__screen {
    height: 400px;
    min-height: 400px;
  }

  .gigi-chat-window {
    height: 400px;
    max-height: 400px;
  }
}

/* ── DESKTOP ONLY (min-width: 1025px) ── */
@media (min-width: 1025px) {
  .mobile-nav {
    display: none !important;
  }

  .hamburger {
    display: none !important;
  }
}

/* Accessibility and mobile ergonomics */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (hover: none),
(pointer: coarse) {

  body,
  button,
  .service-card,
  .pricing-card,
  .testi-card,
  .gigi-feat,
  .product-item,
  .logistics-card,
  .chat-trigger,
  .cp-close,
  .cp-send,
  .cp-mic,
  .gcw-mic,
  .gcw-send,
  .footer-link-btn {
    cursor: auto !important;
  }

  .c-cursor {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   IMMERSIVE SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */

/* ── Scroll Reveal base ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

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

/* ── Reveal variants ── */
.scroll-reveal.from-left {
  transform: translateX(-60px);
}

.scroll-reveal.from-left.visible {
  transform: translateX(0);
}

.scroll-reveal.from-right {
  transform: translateX(60px);
}

.scroll-reveal.from-right.visible {
  transform: translateX(0);
}

.scroll-reveal.scale-in {
  transform: scale(0.85);
}

.scroll-reveal.scale-in.visible {
  transform: scale(1);
}

/* ── Stagger children animation ── */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.24s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.32s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.40s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.48s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.56s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ── Card Hover Lift ── */
.card-lift {
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth);
}

.card-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-deep), var(--shadow-glow);
}

/* ── CTA Pulse ── */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(0, 212, 255, 0);
  }
}

.cta-pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

[data-theme="light"] .cta-pulse {
  animation-name: ctaPulseLight;
}

@keyframes ctaPulseLight {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 74, 0, 0.35);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(230, 74, 0, 0);
  }
}

/* ── Section Divider Glow ── */
.section-glow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--cyan-electric) 60%, transparent),
      color-mix(in srgb, var(--green-bio) 40%, transparent),
      transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.section-glow.visible::before {
  opacity: 1;
}

/* ── Text Gradient Shimmer ── */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.text-shimmer {
  background: linear-gradient(90deg,
      var(--text-primary) 0%,
      var(--cyan-electric) 25%,
      var(--green-bio) 50%,
      var(--cyan-electric) 75%,
      var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ── Floating Badge ── */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-badge {
  animation: floatBadge 3s ease-in-out infinite;
}

/* ── Parallax Glow Orbs ── */
@keyframes orbDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -15px) scale(1.1);
  }

  66% {
    transform: translate(-10px, 10px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbDrift 12s ease-in-out infinite;
  opacity: 0.15;
}

.glow-orb--primary {
  background: var(--cyan-electric);
  width: 400px;
  height: 400px;
}

.glow-orb--secondary {
  background: var(--green-bio);
  width: 300px;
  height: 300px;
  animation-delay: -4s;
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {

  .scroll-reveal,
  .stagger-children>*,
  .card-lift,
  .cta-pulse,
  .text-shimmer,
  .float-badge,
  .glow-orb {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   POLICY PAGES STYLES
═══════════════════════════════════════════════════════ */
.policy-section {
  padding-top: clamp(120px, 15vw, 180px);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--dur-mid) var(--ease-smooth), box-shadow var(--dur-mid) var(--ease-smooth);
}

.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
}

.policy-card h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--glass-border);
}

.policy-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  color: var(--cyan-electric);
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-card h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.policy-card ul,
.policy-card ol {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-card li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 10px;
  position: relative;
}

.policy-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-card a {
  color: var(--cyan-electric);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}

.policy-card a:hover {
  color: var(--cyan-bright);
}

.policy-info-box {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(0, 240, 255, 0.05));
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}

.policy-info-box h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.policy-info-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.policy-actions {
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.policy-actions__text h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.policy-actions__text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .policy-card {
    padding: 20px;
  }
  
  .policy-card ul,
  .policy-card ol {
    padding-left: 18px;
  }
  
  .policy-actions {
    padding: 24px;
  }
  
  .btns {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btns .btn {
    width: 100%;
    justify-content: center;
  }
}