/* ============================================
   NETPREM - LANDING PAGE
   Estilos principales
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --primary-dark: #00b8c4;
    --secondary: #7b2ff7;
    --accent: #ff006e;
    --bg-dark: #0a0a1a;
    --bg-card: #0f0f2a;
    --bg-card-hover: #161640;
    --text: #e0e0ff;
    --text-muted: #8888aa;
    --gradient-1: linear-gradient(135deg, #00f0ff, #7b2ff7);
    --gradient-2: linear-gradient(135deg, #7b2ff7, #ff006e);
    --gradient-3: linear-gradient(135deg, #00f0ff, #00ff88);
    --glow-primary: 0 0 20px rgba(0, 240, 255, 0.3);
    --glow-secondary: 0 0 20px rgba(123, 47, 247, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}


/* ---------- BACKGROUND GRID ---------- */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}


/* ---------- PARTICLES ---------- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}


/* ---------- GRADIENT TEXTS ---------- */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-1) !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    color: var(--bg-dark) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.9rem;
    transition: all 0.3s ease !important;
    box-shadow: var(--glow-primary);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 30px 80px;
    overflow: hidden;
}

/* Glows */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-glow-1 { background: var(--primary); top: -200px; right: -100px; }
.hero-glow-2 { background: var(--secondary); bottom: -200px; left: -100px; }
.hero-glow-3 {
    background: var(--accent);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    opacity: 0.08;
}

/* Content grid */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text side */
.hero-text {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.6); }
    50%      { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-description strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #b388ff;
    font-weight: 500;
}

/* Hero inline price */
.hero-price-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 25px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    max-width: fit-content;
}

.hero-price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.3);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
}


/* ============================================
   HERO - PHONE VISUAL
   ============================================ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Phone mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a3e, #0f0f2a);
    border-radius: 40px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(0, 240, 255, 0.15),
        inset 0 0 60px rgba(0, 240, 255, 0.05);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--bg-dark);
    border-radius: 0 0 18px 18px;
    z-index: 5;
}

.phone-screen {
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0d0d25, #1a0a30);
}

.phone-screen-content {
    text-align: center;
    padding: 20px;
}

.phone-wifi-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5)); }
    50%      { filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.9)); }
}

.phone-speed {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.phone-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.phone-bars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 20px;
    align-items: flex-end;
    height: 40px;
}

.phone-bar {
    width: 8px;
    background: var(--gradient-1);
    border-radius: 4px;
    animation: barAnim 1.5s ease-in-out infinite;
}

.phone-bar:nth-child(1) { height: 15px; animation-delay: 0s; }
.phone-bar:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.phone-bar:nth-child(3) { height: 30px; animation-delay: 0.3s; }
.phone-bar:nth-child(4) { height: 25px; animation-delay: 0.45s; }
.phone-bar:nth-child(5) { height: 35px; animation-delay: 0.6s; }
.phone-bar:nth-child(6) { height: 20px; animation-delay: 0.75s; }
.phone-bar:nth-child(7) { height: 28px; animation-delay: 0.9s; }

@keyframes barAnim {
    0%, 100% { transform: scaleY(1); }
    50%      { transform: scaleY(0.5); }
}

/* Orbit rings */
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-ring-1 {
    width: 350px; height: 350px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring-2 {
    width: 450px; height: 450px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
    animation-duration: 30s;
    border-color: rgba(123, 47, 247, 0.08);
}

.orbit-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
}

.orbit-ring-1 .orbit-dot {
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.orbit-ring-2 .orbit-dot {
    bottom: 0; right: 10%;
    transform: translate(50%, 50%);
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating icons */
.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    animation: floatIcon 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

.fi-1 { top: 5%; right: 5%; animation-delay: 0s; }
.fi-2 { bottom: 15%; right: 0; animation-delay: 1.5s; }
.fi-3 { top: 20%; left: -5%; animation-delay: 3s; }
.fi-4 { bottom: 5%; left: 5%; animation-delay: 4.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-15px) rotate(5deg); }
}


/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    position: relative;
    z-index: 2;
    background: rgba(15, 15, 42, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 40px 30px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* ============================================
   SECTIONS - COMMON
   ============================================ */
section {
    position: relative;
    z-index: 2;
    padding: 100px 30px;
}

.section-alt {
    background: rgba(15, 15, 42, 0.3);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}


/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(15, 15, 42, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    background: rgba(22, 22, 64, 0.8);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.icon-cyan   { background: rgba(0, 240, 255, 0.1); }
.icon-purple { background: rgba(123, 47, 247, 0.1); }
.icon-pink   { background: rgba(255, 0, 110, 0.1); }
.icon-green  { background: rgba(0, 255, 136, 0.1); }
.icon-orange { background: rgba(255, 165, 0, 0.1); }
.icon-blue   { background: rgba(0, 150, 255, 0.1); }

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), #00ff88);
    z-index: 0;
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
    background: var(--bg-dark);
}

.step-cyan   { border: 2px solid rgba(0, 240, 255, 0.3); color: var(--primary); background: rgba(0, 240, 255, 0.1); }
.step-purple { border: 2px solid rgba(123, 47, 247, 0.3); color: var(--secondary); background: rgba(123, 47, 247, 0.1); }
.step-pink   { border: 2px solid rgba(255, 0, 110, 0.3); color: var(--accent); background: rgba(255, 0, 110, 0.1); }
.step-green  { border: 2px solid rgba(0, 255, 136, 0.3); color: #00ff88; background: rgba(0, 255, 136, 0.1); }

.step-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ============================================
   PLAN ÚNICO
   ============================================ */
.plan-wrapper {
    display: flex;
    justify-content: center;
}

.plan-card-single {
    background: rgba(15, 15, 42, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    padding: 50px 45px;
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.plan-card-single:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.35);
}

/* Glow decoration */
.plan-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.plan-badge {
    position: absolute;
    top: 25px; right: 25px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.plan-card-top {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon-big {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: glowPulse 3s ease-in-out infinite;
}

.plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.plan-type {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Price box */
.plan-price-box {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
}

.plan-price-old {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.plan-price-old span {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.plan-price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.plan-currency {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 8px;
}

.plan-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.plan-price-desc {
    font-size: 0.95rem;
    color: #00ff88;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.plan-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    margin-bottom: 25px;
}

/* Features list */
.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li:last-child { border-bottom: none; }

.check {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Plan button */
.plan-btn-main {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--gradient-1);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.plan-btn-main:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
    transform: scale(1.02);
}

.plan-guarantee {
    text-align: center;
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* ============================================
   USES / USOS
   ============================================ */
.uses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.use-card {
    background: rgba(15, 15, 42, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.use-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.use-card:hover::after { transform: scaleX(1); }

.use-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(22, 22, 64, 0.8);
}

.use-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: block;
}

.use-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.use-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ============================================
   COMPATIBILITY
   ============================================ */
.compat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.compat-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.compat-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.compat-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.compat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    padding: 10px 15px;
    background: rgba(0, 240, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.06);
}

.compat-visual {
    display: flex;
    justify-content: center;
}

.android-logo {
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
    animation: floatIcon 6s ease-in-out infinite;
}

.android-logo::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px dashed rgba(123, 47, 247, 0.15);
    animation: rotateOrbit 15s linear infinite;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}


/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 15, 42, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover       { border-color: rgba(0, 240, 255, 0.15); }
.faq-item.active      { border-color: rgba(0, 240, 255, 0.25); }

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 25px 22px;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 300px; }


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 30px;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.06), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(123, 47, 247, 0.06), transparent 50%);
    pointer-events: none;
}

.cta-price-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    position: relative;
}

.cta-price-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-price-sub {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 15, 0.8);
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description      { margin: 0 auto 15px; }
    .hero-tags             { justify-content: center; }
    .hero-buttons          { justify-content: center; }
    .hero-price-inline     { margin: 0 auto 30px; }
    .hero h1               { font-size: 2.5rem; }
    .features-grid         { grid-template-columns: repeat(2, 1fr); }
    .steps-container       { grid-template-columns: repeat(2, 1fr); }
    .steps-container::before { display: none; }
    .uses-grid             { grid-template-columns: repeat(2, 1fr); }

    .compat-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(0, 240, 255, 0.1);
    }

    .nav-links.active { right: 0; }

    .hero h1              { font-size: 2rem; }
    .hero                 { padding: 100px 20px 60px; }
    .section-title        { font-size: 1.8rem; }
    .stats-container      { grid-template-columns: repeat(2, 1fr); }
    .features-grid        { grid-template-columns: 1fr; }
    .steps-container      { grid-template-columns: 1fr; }
    .uses-grid            { grid-template-columns: 1fr; }

    .phone-mockup         { width: 230px; height: 460px; }
    .orbit-ring-1         { width: 280px; height: 280px; }
    .orbit-ring-2         { width: 360px; height: 360px; }

    .plan-card-single     { padding: 35px 25px; }
    .plan-amount          { font-size: 3rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p       { max-width: 100%; }
    .footer-bottom        { justify-content: center; text-align: center; }

    .cta-box              { padding: 40px 25px; }
    .cta-box h2           { font-size: 1.5rem; }
    .cta-price-tag        { font-size: 2.2rem; }
    .compat-list          { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1              { font-size: 1.6rem; }
    .stat-number          { font-size: 1.6rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-price-inline {
        flex-direction: column;
        text-align: center;
    }

    .plan-price-old {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
/* ============================================
   BOTÓN INSTAGRAM (CTA)
   ============================================ */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
    border: none;
    cursor: pointer;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(225, 48, 108, 0.5);
}


/* ============================================
   BOTONES FLOTANTES DE CONTACTO
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Botones desplegables */
.floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
}

.floating-buttons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn:hover {
    transform: scale(1.15);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.float-whatsapp:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.float-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.float-instagram:hover {
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

/* Botón toggle principal */
.float-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 240, 255, 0.4),
        0 0 40px rgba(0, 240, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.float-toggle:hover {
    transform: scale(1.1);
    box-shadow:
        0 6px 30px rgba(0, 240, 255, 0.5),
        0 0 60px rgba(0, 240, 255, 0.2);
}

.float-toggle .toggle-close {
    display: none;
}

.float-toggle.active .toggle-open {
    display: none;
}

.float-toggle.active .toggle-close {
    display: block;
}

.float-toggle.active {
    background: linear-gradient(135deg, #ff006e, #7b2ff7);
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

/* Animación de pulso al botón */
.float-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-1);
    animation: floatPulse 2s ease-in-out infinite;
    z-index: -1;
}

.float-toggle.active::before {
    animation: none;
}

@keyframes floatPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Responsive flotantes */
@media (max-width: 480px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }

    .float-toggle {
        width: 54px;
        height: 54px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .instagram-btn,
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}