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

:root {
  --primary: #3B82F6;
  --primary-dark: #1D4ED8;
  --accent: #10B981;
  --accent2: #06B6D4;
  --bg: #060B18;
  --bg2: #0D1526;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --grad: linear-gradient(135deg, #3B82F6, #10B981);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: 12px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all .3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 24px rgba(59,130,246,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 14px; }
.btn-nav {
  background: var(--grad); color: #fff;
  padding: 10px 20px; font-size: 14px; border-radius: 10px;
  white-space: nowrap;
}
.btn-primary-plan {
  display: block; text-align: center; text-decoration: none;
  background: var(--grad); color: #fff;
  padding: 16px; border-radius: 12px; font-weight: 700;
  transition: all .3s; box-shadow: 0 4px 20px rgba(59,130,246,.4);
}
.btn-primary-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,.5); }
.btn-outline-plan {
  display: block; text-align: center; text-decoration: none;
  background: var(--surface2); color: var(--text);
  padding: 16px; border-radius: 12px; font-weight: 700;
  border: 1.5px solid var(--border); transition: all .3s;
}
.btn-outline-plan:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(6,11,24,.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
#navbar.scrolled { padding: 10px 0; background: rgba(6,11,24,.95); }
.nav-inner { display: flex; align-items: center; gap: 32px; }
.logo {
  font-size: 24px; font-weight: 900; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 8px; margin-left: auto; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; margin-left: auto; }

/* MOBILE MENU */
.mobile-menu {
  display: none; flex-direction: column; gap: 8px;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: rgba(6,11,24,.98); backdrop-filter: blur(20px);
  padding: 20px; border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none; font-weight: 500;
  padding: 12px 16px; border-radius: 10px;
}
.mobile-menu a:hover { background: var(--surface2); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.4; animation: float 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, #3B82F6, transparent); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, #10B981, transparent); bottom: -50px; left: -100px; animation-delay: -3s; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, #06B6D4, transparent); top: 40%; left: 50%; animation-delay: -6s; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px; font-size: 14px;
  font-weight: 600; color: var(--accent); margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-content p { font-size: 1.2rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  padding: 24px 40px; border-radius: 20px;
  backdrop-filter: blur(20px);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-num small { font-size: 1rem; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-div { width: 1px; height: 48px; background: var(--border); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-dot {
  width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(12px)} }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; background: var(--surface2);
  border: 1px solid var(--border); color: var(--accent);
  padding: 6px 16px; border-radius: 50px; font-size: 13px;
  font-weight: 600; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== PLANS ===== */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.plan-featured {
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(16,185,129,.08));
  border-color: rgba(59,130,246,.4);
  transform: scale(1.04);
}
.plan-featured:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; padding: 6px 20px;
  border-radius: 50px; font-size: 13px; font-weight: 700; white-space: nowrap;
}
.plan-top { margin-bottom: 24px; }
.plan-icon { font-size: 2.5rem; margin-bottom: 12px; }
.plan-top h3 { font-size: 1.5rem; font-weight: 800; }
.plan-top p { color: var(--text-muted); font-size: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }
.amount { font-size: 4rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.period { font-size: 1rem; color: var(--text-muted); }
.plan-speed { margin-bottom: 24px; }
.speed-badge {
  display: inline-block; background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3); color: var(--primary);
  padding: 8px 20px; border-radius: 50px; font-size: 1.1rem; font-weight: 800;
}
.speed-badge-pro { background: rgba(16,185,129,.15); border-color: rgba(16,185,129,.3); color: var(--accent); }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { color: var(--text-muted); font-size: 14px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; transition: all .3s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.service-icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { font-size: 13px; color: var(--text-muted); padding-left: 16px; position: relative; }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; transition: all .3s;
}
.feature:hover { border-color: rgba(59,130,246,.3); transform: translateY(-3px); }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 13px; color: var(--text-muted); }

/* ===== COVERAGE ===== */
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.coverage-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; text-align: center; transition: all .3s;
}
.coverage-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.coverage-icon { font-size: 3rem; margin-bottom: 16px; }
.coverage-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.coverage-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.coverage-badge {
  display: inline-block; background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3); color: var(--accent);
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
}
.coverage-cta { text-align: center; }
.coverage-cta p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; text-align: center;
  text-decoration: none; color: var(--text); transition: all .3s;
}
.contact-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(59,130,246,.15); }
.contact-wa:hover { border-color: #25D366; box-shadow: 0 12px 40px rgba(37,211,102,.15); }
.contact-icon { font-size: 2.5rem; margin-bottom: 12px; }
.contact-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p { color: var(--text-muted); font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.contact-card span { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #03060F; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 12px; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  text-align: center; color: var(--text-muted); font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5); transition: all .3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; }
  .plans-grid, .services-grid, .features-grid, .contact-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .coverage-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; padding: 20px; }
  .stat-div { display: none; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

.counters-section{background:linear-gradient(135deg,#1D4ED8,#059669);padding:48px 0}
.counters-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.counter-item{color:#fff}.counter-num{font-size:3rem;font-weight:900;display:inline-block}
.counter-suffix{font-size:1.5rem;font-weight:700}.counter-label{display:block;font-size:14px;opacity:.85;margin-top:6px}
@media(max-width:700px){.counters-grid{grid-template-columns:repeat(2,1fr)}}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:28px;display:flex;flex-direction:column;gap:16px;transition:all .3s}
.testimonial-card:hover{border-color:rgba(59,130,246,.3);transform:translateY(-4px)}
.testimonial-featured{background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(16,185,129,.07));border-color:rgba(59,130,246,.35)}
.stars{color:#FBBF24;font-size:1.1rem;letter-spacing:2px}
.testimonial-card>p{color:var(--text-muted);font-size:14px;line-height:1.7;flex:1;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:12px}
.author-avatar{width:44px;height:44px;border-radius:50%;background:var(--grad);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:13px;color:#fff;flex-shrink:0}
.testimonial-author strong{display:block;font-size:14px}.testimonial-author span{font-size:12px;color:var(--text-muted)}
@media(max-width:900px){.testimonials-grid{grid-template-columns:1fr}}
.cta-banner{position:relative;padding:100px 0;overflow:hidden;text-align:center;background:var(--bg2)}
.cta-bg{position:absolute;inset:0}.cta-orb{position:absolute;border-radius:50%;filter:blur(80px);opacity:.35}
.cta-orb1{width:400px;height:400px;background:radial-gradient(circle,#3B82F6,transparent);top:-100px;left:-100px}
.cta-orb2{width:350px;height:350px;background:radial-gradient(circle,#10B981,transparent);bottom:-80px;right:-80px}
.cta-content{position:relative}.cta-content h2{font-size:clamp(2rem,4vw,3rem);font-weight:900;margin-bottom:16px}
.cta-content>p{color:var(--text-muted);font-size:1.1rem;margin-bottom:36px}
.cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.cta-note{font-size:13px;color:var(--text-muted)}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--surface);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.faq-q{width:100%;background:none;border:none;color:var(--text);padding:20px 24px;font-size:16px;font-weight:600;display:flex;justify-content:space-between;align-items:center;cursor:pointer;text-align:left;transition:background .2s}
.faq-q:hover{background:var(--surface2)}.faq-icon{font-size:1.4rem;color:var(--primary);transition:transform .3s;flex-shrink:0}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-a{max-height:200px}
.faq-a p{padding:0 24px 20px;color:var(--text-muted);font-size:15px;line-height:1.7}

.biz-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:40px}
.biz-card{background:var(--surface);border:1px solid var(--border);border-radius:24px;padding:32px;position:relative;transition:all .3s;display:flex;flex-direction:column;gap:12px}
.biz-card:hover{transform:translateY(-6px);box-shadow:0 20px 60px rgba(0,0,0,.3);border-color:rgba(59,130,246,.3)}
.biz-featured{background:linear-gradient(135deg,rgba(59,130,246,.12),rgba(16,185,129,.08));border-color:rgba(59,130,246,.4)}
.biz-ultra{background:linear-gradient(135deg,rgba(139,92,246,.12),rgba(59,130,246,.08));border-color:rgba(139,92,246,.4)}
.biz-ultra:hover{border-color:rgba(139,92,246,.6)}
.biz-popular{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--grad);color:#fff;padding:6px 20px;border-radius:50px;font-size:13px;font-weight:700;white-space:nowrap}
.biz-icon{font-size:2.5rem}
.biz-speed{display:inline-block;font-size:2rem;font-weight:900;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
.biz-speed-hot{background:linear-gradient(135deg,#F59E0B,#EF4444);-webkit-background-clip:text;background-clip:text}
.biz-speed-ultra{background:linear-gradient(135deg,#8B5CF6,#3B82F6);-webkit-background-clip:text;background-clip:text}
.biz-card h3{font-size:1.3rem;font-weight:800;margin:0}
.biz-card>p{color:var(--text-muted);font-size:14px;line-height:1.6;margin:0}
.biz-features{list-style:none;display:flex;flex-direction:column;gap:8px;flex:1}
.biz-features li{font-size:13px;color:var(--text-muted)}
.biz-cta{margin-top:16px}
.biz-cta-inner{background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(16,185,129,.07));border:1px solid rgba(59,130,246,.3);border-radius:20px;padding:36px 40px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.biz-cta-inner h3{font-size:1.3rem;font-weight:800;margin-bottom:6px}
.biz-cta-inner p{color:var(--text-muted);font-size:14px;margin:0}
@media(max-width:1024px){.biz-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.biz-grid{grid-template-columns:1fr}.biz-cta-inner{flex-direction:column;text-align:center}}
