/* ============================================================
   NexaLine Broadband — Main Stylesheet
   Brand: Dark charcoal + vivid orange + teal/mint
   Font: Poppins (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CUSTOM PROPERTIES ------------------------------------ */
:root {
  --dark:       #0B0E17;
  --dark-mid:   #111520;
  --dark-card:  #181C2A;
  --dark-card2: #1E2336;
  --orange:     #FF6B00;
  --orange-lt:  #FF8C35;
  --teal:       #00C9A7;
  --teal-lt:    #33D8BA;
  --white:      #FFFFFF;
  --off-white:  #F0F4FF;
  --text:       #CBD5E1;
  --text-dim:   #8898AA;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.12);

  --font-head:  'Poppins', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --section-pad: 100px 0;
  --radius:     14px;
  --radius-lg:  22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { color: var(--text); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}
.btn-orange:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,0,0.5);
}

.btn-teal {
  background: var(--teal);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}
.btn-teal:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* --- NAVIGATION ------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(11,14,23,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), #FF3D00);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo .accent { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-head);
  transition: color 0.2s;
}
.nav-phone-link:hover { color: var(--teal-lt); }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-mid);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.18); }
.mobile-nav-cta { margin-top: 16px; }

/* --- PAGE BANNER (inner pages) ---------------------------- */
.page-banner {
  padding: 160px 0 80px;
  background: var(--dark-mid);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}
.page-banner .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.page-banner .breadcrumb a { color: var(--orange); }
.page-banner .breadcrumb a:hover { text-decoration: underline; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-banner p { max-width: 560px; color: var(--text); }
.page-banner .tag {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.25);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-head);
}

/* --- SECTION LABELS --------------------------------------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.section-tag.teal {
  background: rgba(0,201,167,0.1);
  color: var(--teal);
  border-color: rgba(0,201,167,0.2);
}

.section-header { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text); }

.section-header-left { max-width: 560px; margin-bottom: 52px; }

/* --- HERO ------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg .blob1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-bg .blob2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  border-radius: 50%;
}
.hero-bg .grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-family: var(--font-head);
  width: fit-content;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-teal 2s infinite;
}
@keyframes pulse-teal {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero h1 span { color: var(--teal); }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  color: var(--text);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.proof-num.orange { color: var(--orange); }
.proof-num.teal { color: var(--teal); }
.proof-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Hero right visual */
.hero-right { position: relative; }
.hero-visual-card {
  background: var(--dark-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.speed-ring {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 12px solid var(--dark-card2);
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.speed-ring .inner {
  animation: spin-slow 8s linear infinite reverse;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speed-ring .mbps-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.speed-ring .mbps-label { font-size: 0.75rem; color: var(--text-dim); }

.speed-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.speed-bar-row { display: flex; flex-direction: column; gap: 6px; }
.speed-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.bar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 2s ease;
}
.bar-fill.orange { background: linear-gradient(90deg, var(--orange), #FF9500); }
.bar-fill.teal   { background: linear-gradient(90deg, var(--teal), #00F0C8); }
.bar-fill.blue   { background: linear-gradient(90deg, #4F9CF9, #7B68EE); }

.stat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.stat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 500;
}
.stat-pill .dot-g { width: 7px; height: 7px; background: #00D084; border-radius: 50%; }
.stat-pill .dot-o { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

.hero-float {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hero-float.fl-1 { top: -24px; left: -30px; }
.hero-float.fl-2 { bottom: -24px; right: -30px; }
.hero-float .fl-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hero-float .fl-txt .val {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.hero-float .fl-txt .sub { font-size: 0.72rem; color: var(--text-dim); }

/* --- TRUST BAR -------------------------------------------- */
.trust-bar {
  padding: 36px 0;
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.trust-txt .val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}
.trust-txt .desc { font-size: 0.78rem; color: var(--text-dim); }

/* --- WHY US SECTION --------------------------------------- */
.why-section { padding: var(--section-pad); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}
.why-cell {
  background: var(--dark-card);
  padding: 40px;
  transition: background 0.25s;
}
.why-cell:hover { background: var(--dark-card2); }
.why-cell-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.why-cell h3 { margin-bottom: 12px; }
.why-cell p { font-size: 0.92rem; }

/* --- PLANS SECTION ---------------------------------------- */
.plans-section { padding: var(--section-pad); background: var(--dark-mid); }

.plans-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.plans-toggle-inner {
  background: var(--dark-card);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 5px;
  display: flex;
  gap: 4px;
}
.toggle-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  color: var(--text-dim);
  background: transparent;
  transition: all 0.2s;
}
.toggle-btn.active { background: var(--orange); color: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--border2); }
.pricing-card.highlighted {
  background: linear-gradient(160deg, #1A1D27 0%, #1E2336 100%);
  border: 2px solid var(--orange);
  transform: scale(1.03);
}
.pricing-card.highlighted:hover { transform: scale(1.03) translateY(-6px); }

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-tier {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.plan-tier.teal-tier { color: var(--teal); }

.plan-name-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-speed-badge {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.plan-speed-badge.teal-badge {
  background: rgba(0,201,167,0.1);
  color: var(--teal);
  border-color: rgba(0,201,167,0.2);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.plan-price-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.plan-dollar { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.plan-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.plan-cents { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.plan-period { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 24px; }

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.pf-check {
  width: 20px; height: 20px;
  background: rgba(0,201,167,0.12);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pf-check.orange-check {
  background: rgba(255,107,0,0.12);
  color: var(--orange);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s;
  text-decoration: none;
}
.plan-cta-orange { background: var(--orange); color: var(--white); }
.plan-cta-orange:hover { background: var(--orange-lt); }
.plan-cta-border { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); }
.plan-cta-border:hover { border-color: var(--orange); color: var(--orange); }

/* --- HOW IT WORKS ----------------------------------------- */
.how-section { padding: var(--section-pad); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 60px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF3D00);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text); }

/* --- FEATURES SECTION ------------------------------------- */
.features-section { padding: var(--section-pad); background: var(--dark-mid); }

.features-zigzag { display: flex; flex-direction: column; gap: 80px; margin-top: 60px; }

.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zz-row.reversed { direction: rtl; }
.zz-row.reversed > * { direction: ltr; }

.zz-text { display: flex; flex-direction: column; gap: 0; }
.zz-text h3 { font-size: 1.7rem; margin-bottom: 16px; }
.zz-text p { margin-bottom: 24px; }

.zz-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.zz-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.zz-list-item .bullet {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.zz-list-item.teal .bullet { background: var(--teal); }

.zz-visual {
  background: var(--dark-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.zz-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.05) 0%, transparent 60%);
}

.visual-icon-big {
  font-size: 5rem;
  opacity: 0.15;
  position: absolute;
  bottom: -10px;
  right: 10px;
}

.visual-stat-stack { display: flex; flex-direction: column; gap: 16px; width: 100%; position: relative; z-index: 1; }
.visual-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
}
.vsr-label { font-size: 0.82rem; color: var(--text-dim); }
.vsr-val { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem; }
.vsr-val.green { color: #00D084; }
.vsr-val.orange { color: var(--orange); }

/* Features Grid (for features page) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.feat-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
.feat-emoji {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.feat-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feat-card p { font-size: 0.88rem; color: var(--text); }

/* --- TV SECTION ------------------------------------------- */
.tv-section { padding: var(--section-pad); }

.tv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tv-pkg-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.tv-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-head);
  transition: all 0.2s;
}
.tv-tab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.tv-pkg-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.tv-pkg-card:hover { border-color: rgba(255,107,0,0.3); }
.tv-pkg-card.active { border-color: var(--orange); background: var(--dark-card2); }
.tv-ch-count {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.tv-ch-unit { font-size: 0.75rem; color: var(--text-dim); }
.tv-pkg-info h4 { font-size: 1rem; margin-bottom: 4px; }
.tv-pkg-info p { font-size: 0.82rem; color: var(--text-dim); }
.tv-pkg-badge {
  margin-left: auto;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}

.tv-channels-panel {
  background: var(--dark-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.tv-panel-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.ch-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.ch-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text);
  letter-spacing: 0.5px;
}
.tv-perks-list { display: flex; flex-direction: column; gap: 10px; }
.tv-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
}
.tv-perk-item::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* --- TESTIMONIALS ----------------------------------------- */
.testi-section { padding: var(--section-pad); background: var(--dark-mid); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.testi-card:hover { border-color: rgba(255,107,0,0.25); }

.testi-stars { color: #FFBB00; font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }

.testi-quote {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-quote::before { content: '"'; color: var(--orange); font-size: 2rem; font-style: normal; font-family: var(--font-head); font-weight: 800; display: block; margin-bottom: -8px; }

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 0.92rem; }
.testi-role { font-size: 0.78rem; color: var(--text-dim); }

/* --- FAQ -------------------------------------------------- */
.faq-section { padding: var(--section-pad); }

.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-icon { background: var(--orange); color: var(--white); border-color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* --- CTA SECTION ------------------------------------------ */
.cta-section {
  padding: var(--section-pad);
  background: var(--dark-mid);
}
.cta-box {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card2) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}
.cta-box .cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 16px; position: relative; }
.cta-box p { max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-box .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-phone-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 28px;
}
.cta-phone-big .ph-icon {
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* --- FOOTER ----------------------------------------------- */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange), #FF3D00);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-stack { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-stack a, .footer-contact-stack span {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-contact-stack a:hover { color: var(--orange); }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* --- LEGAL PAGES ------------------------------------------ */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.legal-meta {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 48px;
}
.legal-wrap h2 {
  font-size: 1.45rem;
  margin: 44px 0 16px;
  color: var(--white);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h3 { font-size: 1.1rem; margin: 28px 0 12px; color: var(--off-white); }
.legal-wrap p { font-size: 0.92rem; line-height: 1.85; margin-bottom: 16px; color: var(--text); }
.legal-wrap ul { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 10px; }
.legal-wrap ul li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.legal-wrap ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.85rem;
}
.legal-callout {
  background: rgba(0,201,167,0.07);
  border: 1px solid rgba(0,201,167,0.18);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--text);
}

/* --- CONTACT PAGE ----------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}
.contact-info-panel { display: flex; flex-direction: column; gap: 0; }
.contact-info-panel h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-info-panel p { margin-bottom: 32px; font-size: 0.92rem; }
.c-info-items { display: flex; flex-direction: column; gap: 20px; }
.c-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.c-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-info-text h4 { font-size: 0.92rem; margin-bottom: 4px; }
.c-info-text p { font-size: 0.84rem; color: var(--text-dim); margin: 0; line-height: 1.5; }
.c-info-text a { color: var(--orange); }
.c-info-text a:hover { text-decoration: underline; }

.phone-cta-big {
  background: linear-gradient(135deg, var(--dark-card), var(--dark-card2));
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-top: 32px;
}
.phone-cta-big .ph-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.phone-cta-big .ph-hours { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 16px; }

.contact-form-panel {
  background: var(--dark-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-panel h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-panel .sub { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--off-white); font-family: var(--font-head); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-card2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group select option { background: var(--dark-card2); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.submit-btn:hover { background: var(--orange-lt); transform: translateY(-2px); }

/* --- ABOUT PAGE ------------------------------------------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 60px;
}
.about-quote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat-box {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.about-stat-box .big { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--orange); }
.about-stat-box .big.teal { color: var(--teal); }
.about-stat-box .desc { font-size: 0.82rem; color: var(--text-dim); margin-top: 4px; }

.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--teal));
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--dark);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tl-item h4 { margin-bottom: 6px; }
.tl-item p { font-size: 0.88rem; color: var(--text); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.val-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.val-emoji { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.val-card h3 { margin-bottom: 12px; }
.val-card p { font-size: 0.88rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: rgba(255,107,0,0.3); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.team-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--white); }
.team-role { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.highlighted { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .zz-row, .zz-row.reversed { grid-template-columns: 1fr; direction: ltr; }
  .tv-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 40px 24px; }
  .hero-proof { gap: 20px; }
  .ch-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-box .cta-btns { flex-direction: column; align-items: center; }
  .cta-phone-big { font-size: 1.4rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* --- ANIMATIONS ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
