﻿/* ─────────────────────────────────────────────────────────────
   ¿Jugas Hoy? — Canchas Abiertas
   Paleta: neon azul / cyan / amarillo / magenta · fondo navy
   ───────────────────────────────────────────────────────────── */

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

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand neon colours (from logo) */
  --green:       #2979FF;
  --green-dim:   rgba(41,121,255,.15);
  --cyan:        #00D4FF;
  --cyan-dim:    rgba(0,212,255,.13);
  --yellow:      #FFE500;
  --yellow-dim:  rgba(255,229,0,.13);
  --pink:        #FF2875;
  --pink-dim:    rgba(255,40,117,.13);

  /* Background layers (dark navy matching logo bg) */
  --bg:          #070C16;
  --bg-card:     #0C1424;
  --bg-card2:    #101B2E;
  --surface:     #18253A;

  /* Utility */
  --border:      rgba(0,212,255,.1);
  --border-h:    rgba(41,121,255,.25);
  --text:        #E8F4FD;
  --muted:       #6B8CAE;

  /* Shape */
  --radius:    14px;
  --radius-lg: 22px;

  /* Primary = neon blue padel, for main CTAs */
  --primary:   var(--green);
  --primary-d: var(--green-dim);
}

/* ─── GLOBAL ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; opacity: .5; }

/* ─── GRID LINES BACKGROUND ──────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

/* ─── NAVBAR ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 70px;
  background: rgba(7,12,22,.75);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
nav.scrolled {
  background: rgba(7,12,22,.96);
  border-bottom-color: rgba(41,121,255,.15);
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
}
.nav-logo img {
  height: 42px; width: auto;
  filter: drop-shadow(0 0 8px rgba(41,121,255,.6));
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 1.3rem; letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; gap: 2rem; align-items: center; list-style: none;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--green);
  transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important; padding: .45rem 1.3rem;
  border-radius: 50px; font-weight: 800 !important;
  font-size: .85rem !important;
  box-shadow: 0 0 18px rgba(41,121,255,.4);
  transition: box-shadow .2s, transform .2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 30px rgba(41,121,255,.65) !important;
  transform: scale(1.04) !important;
}
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 120px 5vw 90px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(7,12,22,.92) 0%, rgba(7,12,22,.6) 55%, rgba(7,12,22,.85) 100%),
    url('https://allforpadel.com/modules/prestablog/views/img/grid-for-1-7/up-img/thumb_443.jpg?04dc47d33a552e84c38093f4ca91c608')
    center/cover no-repeat;
}
.hero-orb {
  position: absolute; z-index: 1; pointer-events: none; border-radius: 50%;
}
.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(41,121,255,.14) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-logo {
  margin-bottom: 2rem;
}
.hero-logo img {
  height: 120px; width: auto;
  filter: drop-shadow(0 0 20px rgba(41,121,255,.5)) drop-shadow(0 0 40px rgba(0,212,255,.3));
  animation: logo-glow 3s ease-in-out infinite;
}
@keyframes logo-glow {
  0%,100% { filter: drop-shadow(0 0 20px rgba(41,121,255,.5)) drop-shadow(0 0 40px rgba(0,212,255,.3)); }
  50%      { filter: drop-shadow(0 0 30px rgba(41,121,255,.8)) drop-shadow(0 0 60px rgba(0,212,255,.5)); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(41,121,255,.08);
  border: 1px solid rgba(41,121,255,.3);
  border-radius: 50px; padding: .35rem 1rem;
  font-size: .78rem; font-weight: 700; color: var(--green);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.4); }
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -2px;
  margin-bottom: 1.25rem;
}
.hero-title .hl-green { color: var(--green); text-shadow: 0 0 20px rgba(41,121,255,.5); }
.hero-title .hl-cyan  { color: var(--cyan);  text-shadow: 0 0 20px rgba(0,212,255,.5); }
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem); color: var(--muted);
  line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green); color: #fff;
  font-weight: 800; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 25px rgba(41,121,255,.4), 0 0 60px rgba(41,121,255,.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(41,121,255,.65), 0 0 80px rgba(41,121,255,.2);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 1rem; padding: .85rem 2rem;
  border-radius: 50px; border: 1px solid rgba(0,212,255,.3);
  backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(0,212,255,.06);
  box-shadow: 0 0 20px rgba(0,212,255,.2);
}
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.stat { border-left: 2px solid var(--cyan); padding-left: 1rem; }
.stat-number {
  font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--text); line-height: 1;
  text-shadow: 0 0 12px rgba(0,212,255,.4);
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ─── SECTION COMMON ─────────────────────────────────────────── */
section { padding: 100px 5vw; position: relative; z-index: 2; }
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .85rem;
  text-shadow: 0 0 10px rgba(0,212,255,.5);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 4rem; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ─── NEON DIVIDER ───────────────────────────────────────────── */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), var(--pink), transparent);
  opacity: .3; margin: 0; border: none;
}

/* ─── FEATURES STRIP ─────────────────────────────────────────── */
#features-strip {
  padding: 0 5vw; background: var(--bg-card); z-index: 2; position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.strip-inner { display: flex; align-items: stretch; overflow-x: auto; gap: 0; }
.strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--border); white-space: nowrap;
  transition: background .2s;
}
.strip-item:hover { background: rgba(41,121,255,.04); }
.strip-item:last-child { border-right: none; }
.strip-icon { font-size: 1.5rem; flex-shrink: 0; }
.strip-text { font-size: .88rem; font-weight: 600; }
.strip-text small { display: block; font-weight: 400; color: var(--muted); font-size: .78rem; margin-top: .15rem; }

/* ─── MODALIDADES ────────────────────────────────────────────── */
#modalidades { background: var(--bg); }
.modal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}
.modal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  opacity: 0; transition: opacity .3s;
}
.modal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41,121,255,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 30px rgba(41,121,255,.08);
}
.modal-card:hover::before { opacity: 1; }
.modal-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s;
}
.modal-card:hover .modal-card-img { transform: scale(1.04); }
.modal-card-body { padding: 1.75rem; }
.modal-card-tag {
  display: inline-block; background: var(--green-dim);
  color: var(--green); font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 50px; margin-bottom: 1rem;
  border: 1px solid rgba(41,121,255,.2);
}
.modal-card-tag.cyan {
  background: var(--cyan-dim); color: var(--cyan); border-color: rgba(0,212,255,.2);
}
.modal-card-tag.yellow {
  background: var(--yellow-dim); color: var(--yellow); border-color: rgba(255,229,0,.2);
}
.modal-card-tag.pink {
  background: var(--pink-dim); color: var(--pink); border-color: rgba(255,40,117,.2);
}
.modal-card-title {
  font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 700; margin-bottom: .75rem;
}
.modal-card-desc { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.modal-card-footer {
  padding: 0 1.75rem 1.75rem;
  display: flex; align-items: center; gap: .5rem;
  color: var(--green); font-size: .85rem; font-weight: 700;
}
.modal-card-footer svg { transition: transform .2s; }
.modal-card:hover .modal-card-footer svg { transform: translateX(5px); }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
#como-funciona { background: var(--bg-card); }
.steps-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step {
  display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: border-color .3s, background .3s; cursor: default;
}
.step:hover { background: var(--bg-card2); border-color: var(--border); }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid rgba(41,121,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.1rem;
  color: var(--green); transition: background .2s, box-shadow .2s;
  text-shadow: 0 0 8px rgba(41,121,255,.6);
}
.step:hover .step-num { box-shadow: 0 0 15px rgba(41,121,255,.35); }
.step-title { font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.step-desc  { color: var(--muted); font-size: .9rem; line-height: 1.65; }

.steps-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 9/16; max-height: 620px;
  border: 1px solid rgba(41,121,255,.15);
  box-shadow: 0 0 40px rgba(41,121,255,.08), 0 0 80px rgba(0,212,255,.05);
}
.steps-visual img { width: 100%; height: 100%; object-fit: cover; }
.steps-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,12,22,.9) 100%);
}
.steps-visual-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(12,20,36,.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(0,212,255,.2); border-radius: var(--radius); padding: 1.25rem;
}
.svc-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; }
.svc-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--green); box-shadow: 0 0 8px rgba(41,121,255,.4);
}
.svc-info strong { display: block; font-size: .9rem; }
.svc-info span   { font-size: .8rem; color: var(--muted); }
.svc-status {
  margin-left: auto; background: var(--green-dim);
  color: var(--green); font-size: .72rem; font-weight: 800;
  padding: .3rem .8rem; border-radius: 50px;
  border: 1px solid rgba(41,121,255,.25);
  text-shadow: 0 0 6px rgba(41,121,255,.5);
}
.svc-progress-bar { background: var(--surface); border-radius: 50px; height: 6px; overflow: hidden; }
.svc-progress-fill {
  height: 100%; border-radius: 50px; width: 75%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 8px rgba(41,121,255,.5);
}
.svc-label { display: flex; justify-content: space-between; margin-top: .5rem; font-size: .75rem; color: var(--muted); }
.svc-count { color: var(--cyan); font-weight: 700; text-shadow: 0 0 6px rgba(0,212,255,.4); }

/* ─── FEATURES GRID ──────────────────────────────────────────── */
#funcionalidades { background: var(--bg); }
.feat-tabs { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.feat-tab {
  padding: .5rem 1.3rem; border-radius: 50px;
  border: 1px solid var(--border); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s; background: transparent; color: var(--muted);
}
.feat-tab.active { background: var(--green); border-color: var(--green); color: #fff; font-weight: 800; box-shadow: 0 0 18px rgba(41,121,255,.4); }
.feat-tab:not(.active):hover { border-color: rgba(41,121,255,.4); color: var(--green); }
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem;
}
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover { border-color: rgba(41,121,255,.2); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,.4); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px; background: var(--green-dim);
  border-radius: 12px; border: 1px solid rgba(41,121,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem;
}
.feat-title { font-weight: 700; margin-bottom: .5rem; }
.feat-desc  { color: var(--muted); font-size: .875rem; line-height: 1.65; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
#testimonios { background: var(--bg-card); overflow: hidden; }
.testi-track-wrap { overflow: hidden; margin: 0 -5vw; }
.testi-track {
  display: flex; gap: 1.5rem; padding: 1rem 5vw;
  animation: scroll-left 42s linear infinite; width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  min-width: 310px; max-width: 310px; flex-shrink: 0;
  transition: border-color .3s, box-shadow .3s;
}
.testi-card:hover {
  border-color: rgba(0,212,255,.25);
  box-shadow: 0 0 20px rgba(0,212,255,.08);
}
.testi-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; text-shadow: 0 0 8px rgba(255,229,0,.5); }
.testi-text  { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cyan); box-shadow: 0 0 6px rgba(0,212,255,.3); }
.testi-name   { font-weight: 700; font-size: .9rem; }
.testi-role   { color: var(--muted); font-size: .8rem; }

/* ─── PRICING ────────────────────────────────────────────────── */
#precios { background: var(--bg); }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 980px; margin: 0 auto;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured {
  border-color: rgba(41,121,255,.35);
  background: linear-gradient(160deg, rgba(41,121,255,.06) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(41,121,255,.1), 0 0 80px rgba(41,121,255,.04);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
  box-shadow: 0 0 14px rgba(41,121,255,.6);
}
.price-plan { font-size: .78rem; font-weight: 800; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem; }
.price-amount { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: .25rem; }
.price-amount span { font-size: 1.2rem; font-weight: 500; color: var(--muted); }
.price-period { color: var(--muted); font-size: .85rem; margin-bottom: 1.75rem; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 1.75rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.price-features li { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; text-shadow: 0 0 6px rgba(41,121,255,.5); }
.price-features li.muted::before { content: '–'; color: var(--muted); text-shadow: none; }
.btn-price { display: block; text-align: center; padding: .85rem; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: .25s; }
.btn-price-outline { border: 1px solid var(--border); color: var(--text); }
.btn-price-outline:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 14px rgba(0,212,255,.2); }
.btn-price-fill { background: var(--green); color: #fff; font-weight: 800; box-shadow: 0 0 22px rgba(41,121,255,.35); }
.btn-price-fill:hover { box-shadow: 0 0 35px rgba(41,121,255,.6); }

/* ─── CTA FINAL ──────────────────────────────────────────────── */
#cta-final { position: relative; padding: 120px 5vw; text-align: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(rgba(7,12,22,.78), rgba(7,12,22,.78)),
    url('https://images.unsplash.com/photo-1588286492390-16ee20c2e6a8?w=1800&q=80&auto=format&fit=crop')
    center/cover no-repeat;
}
.cta-glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,255,.15) 0%, rgba(0,212,255,.08) 40%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content .section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.cta-content .section-sub  { margin: 0 auto 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: .8rem; color: var(--muted); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 2.5rem 5vw;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.5rem;
  position: relative; z-index: 2;
}
.foot-logo { display: flex; align-items: center; gap: .6rem; }
.foot-logo img { height: 36px; filter: drop-shadow(0 0 6px rgba(41,121,255,.4)); }
.foot-logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.1rem;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.foot-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.foot-links a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.foot-links a:hover { color: var(--green); }
.foot-copy { font-size: .8rem; color: var(--muted); }

/* ─── FLOATING BTN ───────────────────────────────────────────── */
.app-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: var(--green); color: #fff;
  font-weight: 800; font-size: .85rem; padding: .75rem 1.5rem;
  border-radius: 50px; display: flex; align-items: center; gap: .5rem;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 24px rgba(41,121,255,.5), 0 8px 25px rgba(0,0,0,.4);
  animation: slide-up .5s ease .6s both;
}
.app-float:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(41,121,255,.7), 0 12px 35px rgba(0,0,0,.5); }
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── NEON TAG (generic) ─────────────────────────────────────── */
.neon-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 50px;
}
.neon-tag-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(41,121,255,.25); }
.neon-tag-cyan  { background: var(--cyan-dim);  color: var(--cyan);  border: 1px solid rgba(0,212,255,.25); }
.neon-tag-pink  { background: var(--pink-dim);  color: var(--pink);  border: 1px solid rgba(255,40,117,.25); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 920px) {
  .steps-wrapper { grid-template-columns: 1fr; }
  .steps-visual  { max-height: 380px; aspect-ratio: 16/9; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 1.75rem; }
  .hero-logo img { height: 90px; }
  footer { flex-direction: column; align-items: flex-start; }
  .feat-tabs { gap: .5rem; }
  .app-float { display: none; }
}