/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #00c853;
  --primary-dark: #009624;
  --primary-glow: rgba(0, 200, 83, 0.3);
  --bg-dark: #0a0e1a;
  --bg-card: #111827;
  --bg-card2: #1a2235;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
.highlight { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); filter: brightness(1.1); }
.btn-primary.large { padding: 16px 36px; font-size: 1.05rem; }
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,14,26,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; }
.logo-icon { background: var(--primary); color: #fff; width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px; margin: 0 auto;
  gap: 3rem;
}
.hero-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,200,83,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,200,83,0.05) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}
.hero-content { flex: 1; }
.badge {
  display: inline-block; background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3);
  color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-content h1 { margin-bottom: 1.2rem; }
.hero-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.6rem; font-family: 'Rajdhani', sans-serif; color: var(--primary); }
.stat span { font-size: 0.8rem; color: var(--text-muted); }

/* PHONE CARD */
.hero-visual { flex: 0 0 340px; }
.phone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 60px rgba(0,200,83,0.1);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; font-size: 0.9rem; font-weight: 600; }
.live-badge { background: #ef4444; color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.sms-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1rem; }
.sms-item { background: var(--bg-card2); border-radius: 12px; padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; animation: slideIn 0.5s ease; }
@keyframes slideIn { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }
.sms-from { font-size: 0.8rem; font-weight: 600; color: var(--primary); }
.sms-msg { font-size: 0.8rem; color: var(--text-muted); }
.phone-footer { text-align: center; font-size: 0.75rem; color: var(--text-muted); }

/* ===== APPS STRIP ===== */
.apps-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 2rem;
  overflow-x: auto;
}
.apps-strip p { color: var(--text-muted); font-size: 0.85rem; white-space: nowrap; }
.apps-logos { display: flex; gap: 1.5rem; align-items: center; flex-wrap: nowrap; }
.apps-logos span { color: var(--text-muted); font-size: 0.85rem; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.apps-logos span i { color: var(--primary); }

/* ===== SECTION COMMON ===== */
section { padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--text-muted); margin-top: 0.5rem; font-size: 1rem; }

/* ===== NUMBERS SECTION ===== */
.numbers-section { max-width: 1200px; margin: 0 auto; }
.filter-bar { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-bar input, .filter-bar select {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 12px 16px; border-radius: 12px;
  font-size: 0.9rem; flex: 1; min-width: 160px;
}
.filter-bar input:focus, .filter-bar select:focus { outline: none; border-color: var(--primary); }
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.number-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  transition: all 0.3s; cursor: pointer;
}
.number-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 30px var(--primary-glow); }
.number-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.number-val { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.number-state { background: rgba(0,200,83,0.1); color: var(--primary); font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; }
.number-type { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 1rem; }
.number-footer { display: flex; justify-content: space-between; align-items: center; }
.number-price { font-size: 1.1rem; font-weight: 700; color: #fff; }
.number-price span { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ===== PLANS ===== */
.plans-section { max-width: 1100px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; transition: all 0.3s;
}
.plan-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(0,200,83,0.05), var(--bg-card));
  box-shadow: 0 0 40px var(--primary-glow);
  transform: scale(1.03);
}
.plan-badge { font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.plan-price { font-family: 'Rajdhani', sans-serif; font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.plan-card > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.plan-card ul { list-style: none; margin-bottom: 2rem; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.plan-card ul li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.plan-card ul li i { color: var(--primary); font-size: 0.8rem; }
.plan-card ul li.disabled { color: var(--text-muted); }
.plan-card ul li.disabled i { color: #ef4444; }

/* ===== HOW IT WORKS ===== */
.how-section { max-width: 1100px; margin: 0 auto; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; flex: 1; min-width: 200px; max-width: 260px;
  transition: all 0.3s;
}
.step-card:hover { border-color: var(--primary); transform: translateY(-6px); }
.step-num { font-family: 'Rajdhani', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(0,200,83,0.15); line-height: 1; }
.step-icon { font-size: 2rem; color: var(--primary); margin: 0.8rem 0; display: block; }
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }
.step-arrow { color: var(--primary); font-size: 1.5rem; opacity: 0.5; }

/* ===== FEATURES ===== */
.features-section { max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feature-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { max-width: 1100px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.stars { font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; margin-bottom: 1rem; }
.testimonial-author strong { color: var(--primary); font-size: 0.9rem; }
.testimonial-author { font-size: 0.85rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-section { max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item i { font-size: 1.5rem; color: var(--primary); width: 30px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 14px 16px; border-radius: 12px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-links h4 { margin-bottom: 1rem; font-size: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-links ul a:hover { color: var(--primary); }
.payment-icons { display: flex; flex-direction: column; gap: 8px; }
.payment-icons span { background: var(--bg-card2); border: 1px solid var(--border); padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.payment-icons span i { color: var(--primary); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; text-align: center; }
  .hero-content p, .hero-btns, .hero-stats { justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-visual { order: -1; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
  section { padding: 3rem 1rem; }
}
