/* ============================================================
   AMBAR AGENCY WC — styles.css
   Dark Neon Cyan · Mobile-first · v20260623
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --bg:           #080c10;
  --bg-card:      #0d1520;
  --bg-hero:      linear-gradient(135deg, #080c10 0%, #0d1f2d 100%);
  --cyan:         #00d4c8;
  --cyan-dark:    #00a8a0;
  --cyan-glow:    rgba(0, 212, 200, 0.35);
  --cyan-glow-sm: rgba(0, 212, 200, 0.15);
  --border:       rgba(0, 212, 200, 0.3);
  --text:         #ffffff;
  --text-muted:   #a0aab4;
  --neon-shadow:  0 0 10px #00d4c8, 0 0 20px rgba(0,212,200,0.5), 0 0 40px rgba(0,212,200,0.25);
  --neon-text:    0 0 8px #00d4c8, 0 0 16px rgba(0,212,200,0.6);
  --nav-h:        72px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient background orbs ─────────────────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.bg-orb--cyan {
  width: 800px;
  height: 800px;
  top: -200px;
  left: -250px;
  background: radial-gradient(circle, rgba(0,212,200,0.45) 0%, rgba(0,212,200,0.1) 50%, transparent 70%);
  animation: orbDrift1 20s ease-in-out infinite alternate;
}
.bg-orb--purple {
  width: 700px;
  height: 700px;
  top: 35%;
  right: -250px;
  background: radial-gradient(circle, rgba(140,60,255,0.4) 0%, rgba(100,40,200,0.12) 50%, transparent 70%);
  animation: orbDrift2 25s ease-in-out infinite alternate;
}
.bg-orb--cyan2 {
  width: 600px;
  height: 600px;
  bottom: 8%;
  left: 10%;
  background: radial-gradient(circle, rgba(0,200,180,0.35) 0%, rgba(0,180,160,0.08) 50%, transparent 70%);
  animation: orbDrift3 18s ease-in-out infinite alternate;
}
@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(200px, 500px) scale(1.2); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-180px, -400px) scale(1.15); }
}
@keyframes orbDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-150px, -300px) scale(1.1); }
}

/* All sections need z-index above orbs layer */
.site-header, .hero, .section, .site-footer, .splash {
  position: relative;
  z-index: 1;
}


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

/* ── Typography ──────────────────────────────────────────── */
.font-orbitron { font-family: 'Exo 2', sans-serif; }
.script-text   { font-family: 'Dancing Script', cursive; font-weight: 700; }
.accent        { color: var(--cyan); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
}

/* ── Reveal Animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Defensive: split-text never invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-cyan {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 16px rgba(0,212,200,0.4);
}
.btn-cyan:hover {
  background: var(--cyan-dark);
  box-shadow: var(--neon-shadow);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,212,200,0.2);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 16px rgba(37,211,102,0.3);
  font-size: 0.82rem;
  padding: 0.85rem 1.8rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
}

.btn-lg  { padding: 1rem 2.2rem; font-size: 0.85rem; }
.btn-xl  { padding: 1.1rem 2.8rem; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* Pulsing border animation */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── Section Labels & Titles ─────────────────────────────── */
.section-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 0 12px rgba(0,212,200,0.5);
}
.section-label::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 3rem;
  line-height: 1.85;
}

/* ── SPLASH SCREEN ───────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), clip-path 0.6s var(--ease-out);
  /* CSS safety: hide at 4.5s even if JS fails */
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
}

.splash-inner { text-align: center; }

.splash-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: splashReveal 0.8s var(--ease-out) 0.3s both;
}
@keyframes splashReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.splash-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--neon-text);
  line-height: 1;
}
.splash-agency {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(0.7rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.splash-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  width: 0%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: splashLoad 1.8s var(--ease-out) 0.5s forwards;
}
@keyframes splashLoad {
  to { width: 100%; }
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(8, 12, 16, 0.97);
  box-shadow: 0 0 30px rgba(0,212,200,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-star {
  color: var(--cyan);
  font-size: 1rem;
  text-shadow: var(--neon-text);
  animation: starSpin 6s linear infinite;
}
@keyframes starSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%       { transform: rotate(180deg) scale(1.2); }
}
.logo-script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyan);
  text-shadow: var(--neon-text);
  line-height: 1;
}
.logo-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* Nav */
.main-nav {
  flex: 1;
  display: none;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; justify-content: center; }
}
.main-nav ul {
  display: flex;
  gap: 0.25rem;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--cyan);
  background: rgba(0,212,200,0.07);
}

/* CTA in nav */
.header-inner > .btn-cyan { display: none; }
@media (min-width: 768px) {
  .header-inner > .btn-cyan { display: inline-flex; flex-shrink: 0; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  margin-left: auto;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cyan); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cyan); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,12,16,0.98);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  gap: 0.5rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover {
  color: var(--cyan);
  background: rgba(0,212,200,0.06);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080c10;
  overflow: hidden;
  padding-block: 5rem 4rem;
}

/* Background image with Ken Burns zoom */
.hero-bg-img {
  position: absolute;
  inset: -10%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroBgZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroBgZoom {
  0%   { transform: scale(1.05) translate(0%, 0%); }
  33%  { transform: scale(1.12) translate(-1%, 0.5%); }
  66%  { transform: scale(1.08) translate(1%, -0.5%); }
  100% { transform: scale(1.15) translate(-0.5%, 1%); }
}

/* Dark overlay: deep blue-black + cyan tint at bottom */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(8,12,16,0.78) 0%,
      rgba(8,12,16,0.60) 40%,
      rgba(8,12,16,0.82) 80%,
      rgba(8,12,16,0.96) 100%),
    linear-gradient(135deg,
      rgba(0,212,200,0.08) 0%,
      transparent 60%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-radial {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,212,200,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(0,212,200,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Tech grid decoration */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0,212,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding-inline: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,212,200,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 4px var(--cyan); }
  50%       { box-shadow: 0 0 12px var(--cyan), 0 0 20px rgba(0,212,200,0.4); }
}

.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: var(--neon-text);
}

.hero-sub {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.hero-sub .script-text {
  color: var(--cyan);
  text-shadow: var(--neon-text);
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(13,21,32,0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--neon-text);
  line-height: 1;
}
.stat-unit {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  color: var(--cyan);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  text-transform: uppercase;
  font-family: 'Exo 2', sans-serif;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.hero-scroll-hint:hover { opacity: 0.9; }
.hero-scroll-hint span {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits {
  background: linear-gradient(180deg, #080c10 0%, #0a1520 50%, #080c10 100%);
  text-align: center;
}

.benefits .section-label,
.benefits .section-title,
.benefits .section-sub {
  text-align: center;
  margin-inline: auto;
}

.benefits .section-sub { margin-bottom: 1.5rem; }

.section-deco-line {
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0;
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 340px));
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }
  .benefits-grid--second { margin-top: 1rem; }
}
@media (max-width: 899px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-bottom { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
  .benefits-grid--second { margin-top: 1rem; }
}
@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-bottom { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(0,212,200,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0,212,200,0.18), inset 0 0 40px rgba(0,212,200,0.03);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,212,200,0.08);
  border: 1.5px solid var(--border);
  margin-inline: auto;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s var(--ease-bounce);
}
.benefit-card:hover .benefit-icon {
  box-shadow: var(--neon-shadow);
  border-color: var(--cyan);
  transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(0,212,200,0.3);
}
.benefit-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-us {
  background: linear-gradient(180deg, #080c10 0%, #0a1018 50%, #080c10 100%);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.why-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  cursor: default;
}
.why-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,212,200,0.18), inset 0 0 60px rgba(0,212,200,0.04);
  transform: translateY(-6px);
}

.why-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,212,200,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.why-card:hover .why-card-glow { opacity: 1; }

.why-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.why-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Decorative circuit lines */
.why-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 0 8px;
  transition: border-color 0.3s;
}
.why-card:hover::before { border-color: rgba(0,212,200,0.5); }

/* ── VALUES ──────────────────────────────────────────────── */
.values {
  background: var(--bg);
  text-align: center;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.value-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.value-badge:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,212,200,0.2);
  transform: translateY(-2px);
  color: var(--cyan);
}
.value-icon { font-size: 1.1rem; }

/* ── REMOTE WORK ─────────────────────────────────────────── */
.remote-work {
  background: linear-gradient(180deg, #080c10 0%, #0a1824 50%, #080c10 100%);
}

.remote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .remote-layout { grid-template-columns: 1fr; }
}

.remote-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
}

.remote-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.remote-block-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.remote-block-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

.remote-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.remote-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.remote-check {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.remote-check.accent {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,212,200,0.6);
}
.remote-list li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.remote-list li p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.remote-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── APPLY ───────────────────────────────────────────────── */
.apply {
  background: linear-gradient(135deg, #080c10, #0a1520);
  text-align: center;
}

.apply-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.apply-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.apply-step:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,212,200,0.12);
}

.step-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--neon-text);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.apply-step h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.apply-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.apply-arrow {
  font-size: 1.5rem;
  color: var(--cyan);
  align-self: center;
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: -1rem;
}
@media (max-width: 767px) { .apply-arrow { display: none; } }

.apply-cta { text-align: center; }

/* ── SPACES ──────────────────────────────────────────────── */
.spaces {
  background: var(--bg);
}

.spaces-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .spaces-grid { grid-template-columns: 1fr; }
}

.space-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease-out);
  cursor: default;
}
.space-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,212,200,0.18);
  transform: translateY(-4px);
}

.space-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .space-img { height: 260px; } }

.space-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.space-center-icon {
  font-size: 3.5rem;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0,212,200,0.5));
  transition: transform 0.4s var(--ease-bounce);
}
.space-card:hover .space-center-icon { transform: scale(1.15); }

/* Circuit decoration in space images */
.space-circuit {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.space-info {
  padding: 1.25rem;
  background: var(--bg-card);
}
.space-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.space-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: linear-gradient(180deg, #080c10 0%, #0a1520 50%, #080c10 100%);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  cursor: default;
}
.testimonial-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0,212,200,0.15);
  transform: translateY(-4px);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 1rem;
  box-shadow: 0 0 16px rgba(0,212,200,0.4);
}

.testimonial-stars {
  font-size: 0.9rem;
  color: var(--cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(0,212,200,0.5);
}

.testimonial-card blockquote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
}
.testimonial-card:hover blockquote { border-color: rgba(0,212,200,0.5); }

.testimonial-author strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}
.testimonial-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.is-open {
  border-color: rgba(0,212,200,0.5);
  box-shadow: 0 0 16px rgba(0,212,200,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.2s;
  cursor: pointer;
}
.faq-question:hover { color: var(--cyan); }
.faq-item.is-open .faq-question { color: var(--cyan); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--cyan);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, #080c10 0%, #0a1520 50%, #080c10 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at center, rgba(0,212,200,0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 1rem;
}

.cta-final-star {
  font-size: 2.5rem;
  color: var(--cyan);
  text-shadow: var(--neon-shadow);
  animation: starSpin 8s linear infinite;
  display: block;
  margin-bottom: 1.5rem;
}

.cta-final-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.cta-final-title .script-text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  display: block;
  margin-top: 0.3rem;
}

.cta-final-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-final-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cta-final-contact span:nth-child(even) {
  opacity: 0.4;
}
@media (max-width: 480px) {
  .cta-final-contact span:nth-child(even) { display: none; }
  .cta-final-contact { flex-direction: column; gap: 0.4rem; }
}

/* ── SITE FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: #050709;
  border-top: 1px solid var(--border);
  padding-block: 3rem 1.5rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 36ch;
  line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.social-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,212,200,0.25);
}

.footer-wa-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer-wa-btn:hover { color: var(--cyan); border-color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p,
.footer-privacy {
  font-size: 0.75rem;
  color: rgba(160,170,180,0.5);
}
.footer-privacy:hover { color: var(--cyan); }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.wa-float-label {
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  display: none;
}
@media (min-width: 480px) {
  .wa-float-label { display: block; }
}

/* Móvil: botón más compacto */
@media (max-width: 479px) {
  .wa-float {
    padding: 0.7rem;
    border-radius: 50%;
    bottom: 1rem;
    right: 1rem;
  }
  .footer-bottom {
    padding-bottom: 5rem;
  }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(0,212,200,0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 3px;
}
