/* ============================================================
   NETCLICK — Design System
   ============================================================ */

/* --- Variables --- */
:root {
  --primary:     #0ea5e9;
  --primary-dark:#0284c7;
  --accent:      #f97316;
  --dark:        #0a0f1e;
  --dark-2:      #0d1426;
  --dark-3:      #111827;
  --card-bg:     rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.08);
  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --radius:      1rem;
  --radius-sm:   0.5rem;
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --transition:  0.3s ease;
  --nav-h:       72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,15,30,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(10,15,30,0.95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 0.6rem; font-size: 1.4rem; font-weight: 800; }
.nav-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.brand-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; }
.brand-text { color: #fff; }
.brand-accent { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: 1; margin-left: 2.5rem; }
.nav-align-right { margin-left: auto; }
.nav-links a { padding: 0.45rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition), background var(--transition); }
.nav-links a:hover { color: #fff; background: var(--card-bg); }
.nav-links a.active { color: var(--primary); background: rgba(14, 165, 233, 0.08); border: 1px solid rgba(14, 165, 233, 0.15); font-weight: 600; }
.nav-links .btn-nav { background: var(--primary); color: #fff !important; padding: 0.5rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; }
.nav-links .btn-nav:hover { background: var(--primary-dark); }
.nav-links .btn-nav-outline { border: 1px solid var(--border); color: var(--text) !important; padding: 0.45rem 1rem; border-radius: var(--radius-sm); }
.nav-links .btn-nav-outline:hover { border-color: var(--primary); color: var(--primary) !important; }

/* --- Dropdown Menu --- */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-item-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  color: var(--text) !important;
  font-size: 0.85rem !important;
  transition: color var(--transition), background var(--transition) !important;
  text-align: left;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
.dropdown-menu a.active {
  color: var(--primary) !important;
  background: rgba(14, 165, 233, 0.05) !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: -100%;
    width: 320px;
    height: calc(100dvh - var(--nav-h));
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border);
    padding: 2rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    overflow-y: auto;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.4);
    margin-left: 0 !important;
  }
  .nav-links.open {
    right: 0;
  }
  @media (max-width: 480px) {
    .nav-links {
      width: 100%;
      border-left: none;
    }
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }
  .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
  }
  .nav-links a.active {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
  }
  .nav-links .btn-nav {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
    margin-top: 0.5rem;
    border: none;
  }
  .nav-links .btn-nav:hover {
    background: var(--primary-dark);
  }
  .nav-links .btn-nav-outline {
    display: flex;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text) !important;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
  }
  .nav-links .btn-nav-outline:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(14, 165, 233, 0.05);
  }
  .nav-align-right {
    margin-left: 0 !important;
  }
  .nav-item-dropdown {
    display: block;
    width: 100%;
  }
  .dropdown-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-trigger i {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .nav-item-dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--primary);
  }
  .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 2px solid var(--primary);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0.25rem 0 0.25rem 1rem;
    display: none;
    flex-direction: column;
    min-width: unset;
    margin: 0.25rem 0;
  }
  .nav-item-dropdown:hover .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-item-dropdown.active .dropdown-menu {
    display: flex;
  }
  .dropdown-menu a {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--primary);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,165,233,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(249,115,22,0.08) 0%, transparent 60%),
              var(--dark);
  padding-top: var(--nav-h);
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(14,165,233,0.12); top: -10%; left: -5%; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(249,115,22,0.08); bottom: 0; right: -5%; animation-delay: -3s; }
@keyframes orbPulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.1);opacity:1} }

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 2rem 1rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.3);
  color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem;
  border-radius: 999px; margin-bottom: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-title span { background: linear-gradient(135deg, var(--primary), #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); font-family: inherit; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 4px 20px rgba(14,165,233,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,0.45); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(14,165,233,0.06); transform: translateY(-2px); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #ea580c); color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,0.3); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.4); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-dark { background: var(--dark-2); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: rgba(14,165,233,0.3); box-shadow: var(--shadow); }

/* ============================================================
   PLANS GRID
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.plan-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--plan-color, var(--primary)); }
.plan-card:hover { transform: translateY(-6px); border-color: rgba(14,165,233,0.35); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.plan-card.featured { border-color: rgba(14,165,233,0.4); background: rgba(14,165,233,0.05); }
.plan-badge { position: absolute; top: 1rem; right: 1rem; background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-type { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.4rem; }
.plan-name { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.plan-speed { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.plan-speed strong { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.plan-speed span { font-size: 1rem; color: var(--text-muted); }
.plan-speed-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.plan-features { flex: 1; margin-bottom: 1.5rem; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }
.plan-features li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }
.plan-price { margin-bottom: 1.25rem; }
.plan-price strong { font-size: 1.8rem; font-weight: 800; color: #fff; }
.plan-price span { font-size: 0.85rem; color: var(--text-muted); }
.plan-price-hidden { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card { text-align: center; padding: 2rem 1.5rem; }
.feature-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(14,165,233,0.05)); border: 1px solid rgba(14,165,233,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.5rem; color: var(--primary); transition: transform var(--transition), background var(--transition); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); background: linear-gradient(135deg, rgba(14,165,233,0.25), rgba(14,165,233,0.1)); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   COVERAGE CTA
   ============================================================ */
.coverage-cta {
  background: linear-gradient(135deg, rgba(14,165,233,0.12) 0%, rgba(249,115,22,0.06) 100%);
  border: 1px solid rgba(14,165,233,0.2); border-radius: calc(var(--radius) * 1.5);
  padding: 3.5rem 2rem; text-align: center;
}
.coverage-cta h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.coverage-cta p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================================
   ANNOUNCEMENTS STRIP
   ============================================================ */
.announcements-list { display: flex; flex-direction: column; gap: 1rem; }
.announcement-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 1.5rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color var(--transition), transform var(--transition); }
.announcement-item:hover { border-color: rgba(14,165,233,0.3); transform: translateX(4px); }
.ann-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(14,165,233,0.12); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; font-size: 0.9rem; }
.ann-body { flex: 1; }
.ann-body h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem; }
.ann-body p { font-size: 0.85rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ann-date { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; margin-top: 0.2rem; }
.ann-pinned { color: var(--accent) !important; }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state { text-align: center; padding: 3rem; color: var(--text-muted); }
.empty-state i { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state p { font-size: 0.95rem; }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-msg { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.9rem; font-weight: 500; }
.flash-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.flash-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.45rem; }
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 14px; padding-right: 2.5rem; }
select.form-control option {
  background: #0d1426; /* var(--dark-2) */
  color: #e2e8f0; /* var(--text) */
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-contact p { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.footer-contact i { color: var(--primary); width: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waBounce 2s 3s ease both;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
@keyframes waBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: calc(var(--nav-h) + 3rem) 0 3rem; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14,165,233,0.1) 0%, transparent 70%); text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-blue   { background: rgba(14,165,233,0.15); color: var(--primary); border: 1px solid rgba(14,165,233,0.25); }
.badge-orange { background: rgba(249,115,22,0.15); color: var(--accent); border: 1px solid rgba(249,115,22,0.25); }
.badge-green  { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.25); }
.badge-red    { background: rgba(239,68,68,0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }
.divider      { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .plans-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

/* Track */
.hs-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* Single slide */
.hs-slide {
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0; /* Prevents slide compression */
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding-top: var(--nav-h);
  padding-left: 2rem;
  padding-right: 2rem;
}
.hs-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--slide-from, #0ea5e9) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}
.hs-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 80%, var(--slide-to, #0284c7) 0%, transparent 60%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* Shared bg elements per slide */
.hs-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hs-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
  animation: orbPulse 7s ease-in-out infinite;
}
.hs-orb-a { width: 520px; height: 520px; background: rgba(14,165,233,0.13); top: -10%; left: -8%; }
.hs-orb-b { width: 380px; height: 380px; background: rgba(249,115,22,0.07); bottom: -5%; right: -5%; animation-delay: -3.5s; }

/* Layout inside each slide — wrap in a max-width container */
.hs-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 3rem;
}
.hs-content {
  flex: 1;
  min-width: 0;
}
.hs-visual {
  position: relative; z-index: 2;
  flex: 0 0 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}

/* Badge, title, subtitle */
.hs-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.3);
  color: var(--primary); font-size: 0.78rem; font-weight: 700; padding: 0.4rem 1rem;
  border-radius: 999px; margin-bottom: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hs-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 1.1rem;
}
.hs-title span {
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hs-sub {
  font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem;
  max-width: 480px; line-height: 1.65;
}
.hs-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hs-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hs-stat { text-align: center; }
.hs-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hs-stat span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Animated icon ring */
.hs-icon-ring {
  position: relative;
  width: 280px; height: 280px;
  --ring-color: var(--primary);
}
.hs-icon-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  box-shadow: 0 0 40px rgba(14,165,233,0.45);
  z-index: 3;
}
.hs-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid var(--ring-color, var(--primary));
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-out infinite;
}
.hs-ring-1 { width: 130px; height: 130px; opacity: 0.55; animation-delay: 0s; }
.hs-ring-2 { width: 200px; height: 200px; opacity: 0.3;  animation-delay: 0.8s; }
.hs-ring-3 { width: 270px; height: 270px; opacity: 0.15; animation-delay: 1.6s; }
@keyframes ringPulse {
  0%   { transform: translate(-50%,-50%) scale(0.92); opacity: 0.6; }
  60%  { opacity: 0.3; }
  100% { transform: translate(-50%,-50%) scale(1.06); opacity: 0; }
}

/* Slide Image Visual */
.hs-img-wrap {
  position: relative;
  width: 320px; height: 320px;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  z-index: 2;
}
.hs-img-inner {
  width: 100%; height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}
.hs-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hs-slide.entering .hs-slide-img {
  transform: scale(1.1);
}
.hs-img-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, var(--glow-color, var(--primary)) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(25px);
  z-index: -1;
  pointer-events: none;
}

/* Floating tags */
.hs-float-tag {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(13,20,38,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.45rem 0.9rem; font-size: 0.78rem; font-weight: 600; color: #fff;
  white-space: nowrap;
  animation: tagFloat 4s ease-in-out infinite;
}
.hs-float-tag i { color: var(--primary); font-size: 0.75rem; }
/* Positions inside the .hs-visual 380×380 box */
.hs-tag-1 { top: 8%;  left: 0; animation-delay: 0s; }
.hs-tag-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.3s; }
.hs-tag-3 { bottom: 8%; left: 5%; animation-delay: 2.6s; }
@keyframes tagFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hs-tag-2 { animation-name: tagFloat2; }
@keyframes tagFloat2 {
  0%,100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 8px)); }
}

/* Slide-in animation classes (added by JS) */
.hs-slide.entering .hs-content,
.hs-slide.entering .hs-visual {
  animation: slideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hs-slide.entering .hs-visual { animation-delay: 0.1s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Arrow buttons */
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(10px);
  border: 1px solid var(--border); color: #fff; font-size: 1rem;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hs-arrow:hover { background: rgba(14,165,233,0.2); border-color: var(--primary); color: var(--primary); }
.hs-arrow-prev { left: 1.5rem; }
.hs-arrow-next { right: 1.5rem; }

/* Dot indicators */
.hs-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.35s ease; padding: 0;
}
.hs-dot.active { width: 28px; background: var(--primary); }

/* Progress bar */
.hs-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.06); z-index: 10;
}
.hs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  width: 0%; transition: none;
}

/* Slider responsive */
@media (max-width: 1200px) {
  .hs-visual { flex: 0 0 320px; height: 320px; }
  .hs-icon-ring { width: 220px; height: 220px; }
  .hs-ring-1 { width: 110px; height: 110px; }
  .hs-ring-2 { width: 165px; height: 165px; }
  .hs-ring-3 { width: 215px; height: 215px; }
}
@media (max-width: 900px) {
  .hs-visual { flex: 0 0 260px; height: 260px; }
  .hs-icon-ring { width: 180px; height: 180px; }
  .hs-ring-1 { width: 90px;  height: 90px; }
  .hs-ring-2 { width: 140px; height: 140px; }
  .hs-ring-3 { width: 180px; height: 180px; }
  .hs-float-tag { font-size: 0.7rem; padding: 0.35rem 0.7rem; }
}
@media (max-width: 768px) {
  .hero-slider {
    height: 100dvh;
    min-height: 520px;
    width: 100%;
    max-width: 100%;
  }
  .hs-slide {
    width: 100%;
    max-width: 100%;
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 4.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hs-inner {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .hs-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hs-badge {
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  .hs-title {
    font-size: 2.2rem;
    margin-bottom: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .hs-sub {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 100%;
  }
  .hs-actions {
    margin-bottom: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .hs-actions .btn {
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  .hs-visual { display: none; }
  .hs-stats { justify-content: center; gap: 1.25rem; }
  .hs-arrow { display: none; }
  .hs-dots { bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .hs-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.75rem;
  }
  .hs-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hs-title {
    font-size: 1.75rem;
  }
  .hs-stats {
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }
}

/* Combining Video + Slides Mode styling */
.hero-slider.mode-both .hs-slide {
  background: transparent !important;
}
.hero-slider.mode-both .hs-slide::before,
.hero-slider.mode-both .hs-slide::after {
  display: none !important;
}

