/* ===== Variables ===== */
:root {
  --primary: #f5a623;
  --primary-dark: #e87520;
  --primary-light: #ffc85a;
  --secondary: #1b2a4a;
  --secondary-light: #243a5e;
  --dark: #0c1220;
  --dark-surface: #111d30;
  --accent-orange: #e87520;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  --gradient-bg: linear-gradient(180deg, var(--dark) 0%, var(--secondary) 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ===== Custom Cursor ===== */
.custom-cursor {
  position: fixed; width: 44px; height: 44px;
  border: 2px solid rgba(245,166,35,0.5);
  border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease-spring), height 0.35s var(--ease-spring), border-color 0.3s, background 0.3s, border-radius 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor.cursor-hover {
  width: 64px; height: 64px;
  border-color: var(--primary);
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
}
.custom-cursor.cursor-click { transform: translate(-50%,-50%) scale(0.8); }
.custom-cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  pointer-events: none; z-index: 10001;
  transform: translate(-50%,-50%);
  transition: transform 0.2s var(--ease-spring), width 0.2s, height 0.2s;
}
.custom-cursor-dot.cursor-hover { transform: translate(-50%,-50%) scale(0); }
.custom-cursor-dot.cursor-click { transform: translate(-50%,-50%) scale(3); opacity: 0.3; }

/* Mouse trail */
.trail-dot {
  position: fixed; border-radius: 50%;
  background: var(--primary); pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
}

@media (pointer: coarse) {
  body, a, button { cursor: auto; }
  .custom-cursor, .custom-cursor-dot, .trail-dot { display: none !important; }
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; width: 0;
  background: var(--gradient); z-index: 1001;
  box-shadow: 0 0 15px rgba(245,166,35,0.6), 0 0 30px rgba(245,166,35,0.3);
  transition: width 0.08s linear;
}

/* ===== Container ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Utilities ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,0.8);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245,166,35,0.08);
  transition: transform 0.5s var(--ease-out), background 0.3s, box-shadow 0.3s;
}
.header.scrolled { background: rgba(10,14,26,0.95); box-shadow: 0 4px 40px rgba(0,0,0,0.4); }
.header.header-hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { transition: 0.3s var(--ease-spring); }
.logo:hover { transform: scale(1.08) rotate(-2deg); }
.logo-img { height: 42px; width: auto; }
.nav-list { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); border-radius: 8px;
  transition: 0.3s var(--ease-out); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--gradient); transition: 0.4s var(--ease-out); border-radius: 2px;
  transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(245,166,35,0.06); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.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); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: 0.3s var(--ease-out); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--gradient); color: var(--dark); border: none;
  box-shadow: 0 4px 15px rgba(245,166,35,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(245,166,35,0.5), 0 0 60px rgba(245,166,35,0.15);
  filter: brightness(1.15);
}
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover {
  background: var(--primary); color: var(--dark);
  box-shadow: 0 4px 25px rgba(245,166,35,0.35);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0); animation: ripple 0.7s ease-out; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 100px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,14,26,0.55);
}
.hero-gradient {
  position: absolute; inset: -20%; will-change: transform;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(245,166,35,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232,117,32,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(13,27,62,0.9) 0%, transparent 60%),
    var(--gradient-bg);
  animation: gradientShift 15s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0% { background-position: 0% 0%; transform: scale(1) rotate(0deg); }
  100% { background-position: 100% 100%; transform: scale(1.1) rotate(2deg); }
}
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  will-change: transform, opacity, filter;
}
.hero-badge {
  display: inline-block; padding: 8px 24px;
  border: 1px solid rgba(245,166,35,0.3); border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; color: var(--primary);
  margin-bottom: 24px; background: rgba(245,166,35,0.05);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite, badgeFloat 6s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.3); }
  50% { box-shadow: 0 0 0 15px rgba(245,166,35,0); }
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem,6vw,5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.hero-line { display: block; }
.hero-subtitle {
  font-size: clamp(1.1rem,2vw,1.4rem);
  color: var(--text-muted); margin-bottom: 16px; font-weight: 300;
}
/* Typewriter */
.typewriter-wrapper {
  height: 40px; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 1.1rem;
}
.typewriter-label { color: var(--primary); font-weight: 700; font-size: 1.3rem; }
.typewriter {
  color: var(--text-muted); font-weight: 400;
  border-right: 2px solid var(--primary);
  padding-right: 4px;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink { 0%,100% { border-color: var(--primary); } 50% { border-color: transparent; } }

.hero-rotating-text {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 36px; font-size: 1.1rem; height: 36px; overflow: hidden;
}
.rotating-label { color: var(--primary); font-weight: 700; font-size: 1.3rem; }
.rotating-wrapper { overflow: hidden; height: 36px; position: relative; }
.rotating-items { display: flex; flex-direction: column; animation: rotateText 12.5s ease-in-out infinite; }
.rotating-items span { height: 36px; display: flex; align-items: center; color: var(--text-muted); font-weight: 400; }
@keyframes rotateText {
  0%,16% { transform: translateY(0); }
  20%,36% { transform: translateY(-36px); }
  40%,56% { transform: translateY(-72px); }
  60%,76% { transform: translateY(-108px); }
  80%,96% { transform: translateY(-144px); }
  100% { transform: translateY(-180px); }
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: var(--primary); transition: text-shadow 0.5s;
}
.stat-number.counter-done { text-shadow: 0 0 30px rgba(245,166,35,0.5); animation: counterPop 0.5s var(--ease-spring); }
@keyframes counterPop { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }
.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; color: var(--text-muted); font-size: 0.8rem;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow { width: 24px; height: 24px; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(12px); } }

/* ===== Glow Dividers ===== */
.glow-divider {
  width: 100%; height: 2px; position: relative;
  background: linear-gradient(90deg, transparent 0%, rgba(245,166,35,0.2) 15%, var(--primary) 50%, rgba(245,166,35,0.2) 85%, transparent 100%);
  overflow: visible;
}
.glow-divider::before {
  content: ''; position: absolute; inset: -6px 0;
  background: inherit; filter: blur(12px); opacity: 0.7;
}
.glow-divider::after {
  content: ''; position: absolute; top: -4px; left: 0; width: 80px; height: 10px;
  background: radial-gradient(ellipse, var(--primary) 0%, transparent 70%);
  animation: glowSweep 4s ease-in-out infinite;
  filter: blur(4px);
}
@keyframes glowSweep {
  0% { left: -80px; } 100% { left: 100%; }
}

/* ===== Section Styles ===== */
section { transition: opacity 0.6s; }
section.section-visible { opacity: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 20px;
  border: 1px solid rgba(245,166,35,0.3); border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; color: var(--primary);
  margin-bottom: 16px; background: rgba(245,166,35,0.05);
  transition: 0.4s var(--ease-out);
}
.section-tag:hover { background: rgba(245,166,35,0.12); transform: scale(1.05); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800; margin-bottom: 16px; color: var(--white);
}
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== Services ===== */
.services { padding: 100px 0; background: var(--dark-surface); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
  position: relative; overflow: hidden; will-change: transform;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px circle at var(--mx,50%) var(--my,50%), rgba(245,166,35,0.08) 0%, transparent 50%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: rgba(245,166,35,0.25);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 40px rgba(245,166,35,0.06);
  background: rgba(245,166,35,0.03);
}
.service-card:hover::before { transform: scaleX(1); }
/* Wave effect on hover */
.card-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(to top, rgba(245,166,35,0.06) 0%, transparent 50%);
  animation: waveUp 0.8s var(--ease-out) forwards; pointer-events: none;
}
@keyframes waveUp { 0% { transform: translateY(100%); } 100% { transform: translateY(0); opacity: 0; } }
.service-icon { width: 64px; height: 64px; margin-bottom: 20px; transition: 0.5s var(--ease-spring); }
.service-card:hover .service-icon { transform: scale(1.2) rotate(8deg) translateY(-4px); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.service-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem; transition: 0.3s;
}
.service-link:hover { gap: 14px; }

/* Animated border for featured cards */
.animated-border {
  position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; z-index: -1;
  background: conic-gradient(from var(--angle, 0deg), transparent 40%, var(--primary) 50%, transparent 60%);
  animation: borderRotate 4s linear infinite;
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover .animated-border, .plan-card.featured .animated-border { opacity: 1; }
@keyframes borderRotate { to { --angle: 360deg; } }
@property --angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

/* ===== Features / 5G ===== */
.features { padding: 100px 0; position: relative; overflow: hidden; }
.features::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  top: -150px; right: -150px; pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.3); opacity: 1; } }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features-content { max-width: 540px; }
.features-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.features-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px; border-radius: var(--radius);
  transition: 0.4s var(--ease-out); border: 1px solid transparent;
}
.feature-item:hover {
  background: rgba(245,166,35,0.05); transform: translateX(12px);
  border-color: rgba(245,166,35,0.1);
}
.feature-check {
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: rgba(245,166,35,0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; margin-top: 2px;
  transition: 0.4s var(--ease-spring);
}
.feature-item:hover .feature-check { transform: scale(1.25) rotate(360deg); background: rgba(245,166,35,0.3); }
.feature-item strong { color: var(--white); display: block; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.features-visual { display: flex; justify-content: center; }
.speed-display { text-align: center; position: relative; }
.speed-ring {
  position: relative; width: 280px; height: 280px; margin: 0 auto 30px;
  animation: speedFloat 5s ease-in-out infinite;
}
@keyframes speedFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(2deg); } }
.speed-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.speed-circle { filter: drop-shadow(0 0 8px rgba(245,166,35,0.4)); }
.speed-circle-glow { animation: circleGlow 2.5s ease-in-out infinite alternate; }
@keyframes circleGlow {
  from { filter: drop-shadow(0 0 8px rgba(245,166,35,0.3)); }
  to { filter: drop-shadow(0 0 25px rgba(245,166,35,0.7)); }
}
.speed-value {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.speed-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: var(--primary); }
.speed-unit { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.speed-metrics { display: flex; gap: 20px; justify-content: center; }
.metric {
  text-align: center; padding: 14px 18px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); transition: 0.4s var(--ease-out);
}
.metric:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-6px) scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.metric-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.metric-value { font-weight: 700; color: var(--primary); font-size: 1rem; }

/* ===== Plans ===== */
.plans { padding: 100px 0; background: var(--dark-surface); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
  position: relative; text-align: center; overflow: hidden; will-change: transform;
}
.plan-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(245,166,35,0.08) 0%, transparent 50%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.plan-card:hover::after { opacity: 1; }
.plan-card:hover {
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(245,166,35,0.06);
}
.plan-card.featured {
  border-color: var(--primary); background: rgba(245,166,35,0.04);
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(245,166,35,0.08);
}
.plan-card.featured:hover { transform: scale(1.03); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 20px; background: var(--gradient); color: var(--dark);
  font-size: 0.8rem; font-weight: 700; border-radius: 50px; white-space: nowrap;
  animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%,100% { box-shadow: 0 2px 10px rgba(245,166,35,0.3); }
  50% { box-shadow: 0 2px 25px rgba(245,166,35,0.7); }
}
.plan-header { margin-bottom: 20px; padding-top: 8px; }
.plan-speed {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900;
  color: var(--primary); line-height: 1;
  transition: 0.4s var(--ease-spring);
}
.plan-card:hover .plan-speed { transform: scale(1.15); text-shadow: 0 0 30px rgba(245,166,35,0.4); }
/* Glitch */
.plan-speed.glitch-active { animation: glitch 0.5s linear; }
@keyframes glitch {
  0% { transform: translate(0); }
  10% { transform: translate(-3px,2px) skewX(2deg); }
  20% { transform: translate(3px,-2px) skewX(-2deg); }
  30% { transform: translate(-2px,3px); }
  40% { transform: translate(2px,-3px) skewX(1deg); }
  50% { transform: translate(-1px,1px); }
  60% { transform: translate(3px,1px) skewX(-1deg); }
  70% { transform: translate(-3px,-1px); }
  80% { transform: translate(1px,2px) skewX(2deg); }
  90% { transform: translate(-1px,-2px); }
  100% { transform: translate(0); }
}
.plan-unit { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-muted); letter-spacing: 3px; margin-top: 4px; }
.plan-price { margin-bottom: 28px; }
.plan-currency { font-size: 1.2rem; font-weight: 600; color: var(--white); vertical-align: top; }
.plan-amount { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); }
.plan-period { font-size: 0.9rem; color: var(--text-muted); }
.plan-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  font-size: 0.9rem; color: var(--text-muted); padding-left: 24px;
  position: relative; transition: 0.3s var(--ease-out);
}
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.plan-card:hover .plan-features li { color: var(--text); transform: translateX(4px); }

/* ===== Security ===== */
.security { padding: 100px 0; overflow: hidden; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.security-image-wrapper {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: var(--secondary);
  transition: 0.6s var(--ease-out); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.security-image-wrapper:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.08); }
.security-img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s var(--ease-out); }
.security-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, transparent 60%);
  transition: 0.5s;
}
.security-image-wrapper:hover .security-overlay { opacity: 0; }
.security-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.security-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.security-feature {
  display: flex; gap: 16px; align-items: center; padding: 16px;
  background: rgba(255,255,255,0.02); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06); transition: 0.4s var(--ease-out);
}
.security-feature:hover {
  border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.06);
  transform: translateX(10px); box-shadow: -4px 0 20px rgba(245,166,35,0.08);
}
.sf-icon { font-size: 1.5rem; transition: 0.4s var(--ease-spring); }
.security-feature:hover .sf-icon { transform: scale(1.4) rotate(-10deg); }
.security-feature strong { color: var(--white); display: block; margin-bottom: 2px; }
.security-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== Smart Home ===== */
.smart-home { padding: 100px 0; background: var(--dark-surface); }
.smart-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.smart-home-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.smart-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 32px; }
.smart-feature {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 8px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
  font-size: 0.85rem; color: var(--text-muted); text-align: center;
  transition: 0.4s var(--ease-out); will-change: transform;
}
.smart-feature:hover {
  border-color: rgba(245,166,35,0.4); background: rgba(245,166,35,0.1);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 20px rgba(245,166,35,0.1);
}
.smart-icon { font-size: 1.5rem; transition: 0.5s var(--ease-spring); }
.smart-feature:hover .smart-icon { transform: scale(1.5) rotate(15deg); }
.smart-home-image-wrapper {
  border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3;
  background: var(--secondary); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.smart-home-img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s var(--ease-out); }

/* ===== Coverage ===== */
.coverage { padding: 100px 0; }

/* Tabs */
.coverage-tabs {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 40px;
}
.coverage-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  color: var(--text-muted); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s var(--ease-out); position: relative;
}
.coverage-tab:hover {
  color: var(--primary); border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.05);
}
.coverage-tab.active {
  color: var(--dark); background: var(--gradient); border-color: transparent;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.tab-icon { font-size: 1.1rem; }
.tab-new {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  background: #25d366; color: white; padding: 2px 8px;
  border-radius: 50px; letter-spacing: 0.5px;
  animation: tabNewPulse 2s ease-in-out infinite;
}
.coverage-tab.active .tab-new { background: var(--dark); color: var(--primary); }
@keyframes tabNewPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

/* Panels */
.coverage-panels { margin-bottom: 48px; }
.coverage-panel { display: none; animation: panelFadeIn 0.5s var(--ease-out); }
.coverage-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.coverage-panel-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.coverage-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4); transition: 0.5s var(--ease-out);
}
.coverage-map:hover { transform: translateY(-4px); box-shadow: 0 25px 60px rgba(0,0,0,0.5); }
.coverage-flyer-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.coverage-panel-info { padding: 20px 0; }
.coverage-panel-info h3 {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.coverage-address {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6;
}

/* Detail Cards */
.coverage-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.coverage-detail-card {
  padding: 32px 24px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  text-align: center; transition: 0.4s var(--ease-out);
}
.coverage-detail-card:hover {
  border-color: rgba(245,166,35,0.25); background: rgba(245,166,35,0.03);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 20px rgba(245,166,35,0.05);
}
.coverage-detail-icon {
  font-size: 2rem; margin-bottom: 16px;
  transition: 0.4s var(--ease-spring);
}
.coverage-detail-card:hover .coverage-detail-icon { transform: scale(1.3) rotate(-5deg); }
.coverage-detail-card h4 {
  font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.coverage-detail-card p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 4px;
}
.coverage-detail-card strong { color: var(--white); }

/* Phones list */
.coverage-phones { display: flex; flex-direction: column; gap: 10px; }
.coverage-phones li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.coverage-phones li:last-child { border-bottom: none; }
.coverage-phones a {
  color: var(--primary); font-weight: 600; font-size: 1rem;
  transition: 0.3s;
}
.coverage-phones a:hover { text-decoration: underline; }
.coverage-phones span { font-size: 0.8rem; color: var(--text-muted); }

/* Social links */
.coverage-social { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.coverage-social-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted); font-size: 0.9rem;
  transition: 0.3s var(--ease-out);
}
.coverage-social-link:hover {
  border-color: rgba(245,166,35,0.3); color: var(--primary);
  background: rgba(245,166,35,0.05);
}
.coverage-social-link svg { width: 18px; height: 18px; min-width: 18px; }

/* ===== Payment ===== */
.payment { padding: 100px 0; background: var(--dark-surface); }
.payment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px; }
.payment-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: 0.4s var(--ease-out); will-change: transform;
}
.payment-card:hover { border-color: rgba(245,166,35,0.25); }
.payment-icon-wrapper { margin-bottom: 16px; }
.payment-icon { font-size: 2.5rem; transition: 0.4s var(--ease-spring); }
.payment-card:hover .payment-icon { transform: scale(1.3) rotate(-8deg); }
.payment-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.payment-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.payment-details li {
  font-size: 0.9rem; color: var(--text-muted); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: 0.3s var(--ease-out);
}
.payment-details li:hover { padding-left: 10px; color: var(--text); border-color: rgba(245,166,35,0.15); }
.payment-details li:last-child { border-bottom: none; }
.payment-details strong { color: var(--white); }
.payment-reminder {
  display: flex; align-items: center; gap: 16px; padding: 20px 28px;
  background: rgba(245,166,35,0.06); border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius); animation: reminderPulse 4s ease-in-out infinite;
}
@keyframes reminderPulse {
  0%,100% { border-color: rgba(245,166,35,0.2); box-shadow: 0 0 0 rgba(245,166,35,0); }
  50% { border-color: rgba(245,166,35,0.5); box-shadow: 0 0 20px rgba(245,166,35,0.08); }
}
.reminder-icon { font-size: 1.5rem; }
.payment-reminder p { font-size: 0.95rem; color: var(--text); }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; overflow: hidden; }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-slider::before, .testimonials-slider::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.testimonials-slider::before { left: 0; background: linear-gradient(90deg, var(--dark) 0%, transparent 100%); }
.testimonials-slider::after { right: 0; background: linear-gradient(-90deg, var(--dark) 0%, transparent 100%); }
.testimonial-track { display: flex; gap: 24px; animation: slideTest 30s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-card {
  min-width: 360px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 32px; flex-shrink: 0; transition: 0.4s var(--ease-out);
}
.testimonial-card:hover {
  border-color: rgba(245,166,35,0.25); background: rgba(245,166,35,0.04);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.testimonial-stars { color: var(--primary); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.testimonial-author strong { color: var(--white); display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
@keyframes slideTest { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--dark-surface); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 1rem; font-weight: 600;
  color: var(--white); text-align: left; transition: 0.3s var(--ease-out);
}
.faq-question:hover { color: var(--primary); padding-left: 10px; }
.faq-arrow { width: 20px; height: 20px; min-width: 20px; color: var(--primary); transition: transform 0.5s var(--ease-spring); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out); }
.faq-answer p { padding: 0 0 22px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ===== Promo Carousel ===== */
.promo-carousel { padding: 100px 0; background: var(--dark-surface); }
.promo-slider { position: relative; overflow: hidden; border-radius: var(--radius-xl); }
.promo-track {
  display: flex; transition: transform 0.6s var(--ease-out);
}
.promo-slide {
  min-width: 100%; position: relative;
}
.promo-slide img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-xl);
}
.promo-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}
.promo-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s var(--ease-out); color: var(--text);
}
.promo-btn:hover {
  background: var(--primary); color: var(--dark);
  border-color: var(--primary); transform: scale(1.1);
}
.promo-btn svg { width: 20px; height: 20px; }
.promo-dots { display: flex; gap: 8px; }
.promo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none;
  transition: 0.3s var(--ease-out); cursor: pointer;
}
.promo-dot.active {
  background: var(--primary); width: 28px; border-radius: 5px;
  box-shadow: 0 0 12px rgba(245,166,35,0.4);
}

/* ===== Features Image ===== */
.features-image-wrapper {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: 0.6s var(--ease-out);
}
.features-image-wrapper:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.08);
  transform: translateY(-8px);
}
.features-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: 0.8s var(--ease-out);
}
.features-image-wrapper:hover .features-img { transform: scale(1.03); }


/* ===== Campaign Gallery ===== */
.campaign { padding: 100px 0; background: var(--dark-surface); }
.campaign-video {
  margin-bottom: 32px; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s var(--ease-out);
}
.campaign-video:hover {
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 30px rgba(245,166,35,0.08);
  transform: translateY(-4px);
}
.campaign-video video {
  width: 100%; height: auto; display: block; border-radius: var(--radius-xl);
}
.campaign-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.campaign-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s var(--ease-out); will-change: transform;
}
.campaign-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.06);
}
.campaign-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Nuevo Canal ===== */
.nuevo-canal { padding: 100px 0; }
.nuevo-canal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.nuevo-canal-image {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.nuevo-canal-image img { width: 100%; height: auto; display: block; }
.nuevo-canal-content p {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7;
}
.nuevo-canal-features {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px;
}
.nuevo-canal-features li {
  font-size: 0.95rem; color: var(--text-muted); padding-left: 24px;
  position: relative; transition: 0.3s var(--ease-out);
}
.nuevo-canal-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}
.nuevo-canal-features li:hover { color: var(--text); transform: translateX(4px); }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,166,35,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(232,117,32,0.1) 0%, transparent 50%),
    var(--dark);
  animation: ctaPulse 8s ease-in-out infinite alternate;
}
@keyframes ctaPulse {
  0% { background-size: 100% 100%, 100% 100%, 100% 100%; }
  100% { background-size: 120% 120%, 110% 110%, 100% 100%; }
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.cta-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer { background: var(--secondary); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 12px; }
.footer-tagline { color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  transition: 0.4s var(--ease-spring); color: var(--text-muted);
}
.footer-social a:hover {
  background: var(--primary); color: var(--dark);
  transform: translateY(-6px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(245,166,35,0.3);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-links h4, .footer-contact h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: 0.3s var(--ease-out); }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-contact a { font-size: 0.9rem; color: var(--text-muted); transition: 0.3s; }
.footer-contact a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); }
.footer-contact svg { min-width: 16px; color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: 0.4s var(--ease-spring);
  animation: pulseWA 2s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float:hover {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--dark-surface); color: var(--text);
  padding: 10px 18px; border-radius: 10px; font-size: 0.85rem;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: 0.4s var(--ease-out); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 14px rgba(37,211,102,0.08); }
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s;
  filter: blur(4px);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.reveal-left {
  opacity: 0; transform: translateX(-80px) rotate(-2deg);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s;
  filter: blur(4px);
}
.reveal-left.visible { opacity: 1; transform: translateX(0) rotate(0); filter: blur(0); }

.reveal-right {
  opacity: 0; transform: translateX(80px) rotate(2deg);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s;
  filter: blur(4px);
}
.reveal-right.visible { opacity: 1; transform: translateX(0) rotate(0); filter: blur(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s;
  filter: blur(6px);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); filter: blur(0); }

.reveal-blur {
  opacity: 0; filter: blur(20px);
  transition: opacity 1s var(--ease-out), filter 1s var(--ease-out);
}
.reveal-blur.visible { opacity: 1; filter: blur(0); }

.stagger-item {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s;
  filter: blur(3px);
}
.stagger-item.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: repeat(2,1fr); }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: none; }
  .features-grid, .security-grid, .smart-home-grid, .nuevo-canal-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-content { max-width: 100%; }
  .coverage-panel-grid { grid-template-columns: 1fr; gap: 24px; }
  .coverage-details { grid-template-columns: 1fr 1fr; }
  .campaign-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .header-inner { height: 64px; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
    height: 100vh; background: rgba(17,24,39,0.98); backdrop-filter: blur(20px);
    padding: 80px 24px 24px; transition: right 0.5s var(--ease-out);
    z-index: 1000; box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
  .services-grid, .plans-grid, .payment-grid, .campaign-grid, .coverage-details { grid-template-columns: 1fr; }
  .coverage-tabs { flex-direction: column; align-items: stretch; }
  .coverage-tab { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 2rem; }
  .hero { padding: 100px 0 60px; }
  .testimonial-card { min-width: 300px; }
  .smart-features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
  .hero-ctas .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
  .stat-divider { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .typewriter-wrapper { flex-direction: column; height: auto; gap: 4px; }
}
