@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900;1000&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0057FF;
  --blue-light: #3A7BFF;
  --blue-pale: #EBF0FF;
  --orange: #FF5A1F;
  --orange-light: #FF7A47;
  --green: #00C16E;
  --green-light: #E6FAF2;
  --bg: #F4F7FF;
  --bg2: #FFFFFF;
  --bg3: #EBF0FF;
  --card: #FFFFFF;
  --text: #0D1B3E;
  --text-2: #4A5578;
  --text-3: #8A93B2;
  --border: rgba(0,87,255,0.12);
  --shadow-sm: 0 2px 12px rgba(0,87,255,0.08);
  --shadow-md: 0 8px 32px rgba(0,87,255,0.14);
  --shadow-lg: 0 20px 60px rgba(0,87,255,0.18);
  --shadow-orange: 0 8px 32px rgba(255,90,31,0.25);
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.05s, background 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid rgba(0,87,255,0.4);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--orange); }
.cursor-dot.hovered { background: var(--orange); transform: translate(-50%,-50%) scale(1.5); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--orange), var(--blue-light), var(--blue));
  background-size: 300% 100%;
  animation: barShift 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@keyframes barShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.announce-bar a { color: #fff; text-decoration: underline; }

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 2rem;
  gap: 1.5rem;
}

.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1rem; color: #fff;
  box-shadow: 0 4px 16px rgba(0,87,255,0.3);
  flex-shrink: 0;
}
.logo-text { font-family: 'Nunito', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--text); }
.logo-text span { color: var(--blue); }

nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  padding: 0.55rem 1rem; border-radius: 10px;
  color: var(--text-2); text-decoration: none; font-weight: 700; font-size: 0.88rem;
  transition: all 0.25s; white-space: nowrap;
}
nav a:hover { color: var(--blue); background: var(--blue-pale); }
nav a.active { color: var(--blue); background: var(--blue-pale); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.6rem); left: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 230px; padding: 0.6rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s; z-index: 999;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 0.65rem 1rem; border-radius: 10px;
  font-size: 0.85rem; color: var(--text-2);
}
.dropdown-menu a:hover { background: var(--blue-pale); color: var(--blue); }

.nav-phones { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.78rem; }
.nav-phones a { color: var(--text); text-decoration: none; font-weight: 700; white-space: nowrap; }
.nav-phones small { color: var(--text-3); font-weight: 500; }

.btn-cta-header {
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; font-weight: 800; font-size: 0.9rem;
  border-radius: 12px; text-decoration: none; border: none; cursor: none;
  transition: all 0.3s; box-shadow: var(--shadow-orange);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-header:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 36px rgba(255,90,31,0.35); }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 90px);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(145deg, #F4F7FF 0%, #EBF0FF 40%, #F0F6FF 100%);
}

/* Blob backgrounds */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5; pointer-events: none;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,255,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,90,31,0.15) 0%, transparent 70%);
  bottom: -50px; left: 20%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,193,110,0.12) 0%, transparent 70%);
  top: 30%; left: -50px;
  animation: blobFloat 12s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(0.95); }
}

/* Dot pattern */
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,87,255,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1380px; margin: 0 auto; padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  width: 100%; position: relative; z-index: 2;
}
@media(max-width:900px){ .hero-inner { grid-template-columns: 1fr; } }

/* Hero left */
.hero-badge-wrap { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-blue { background: var(--blue-pale); color: var(--blue); }
.badge-orange { background: #FFF0EB; color: var(--orange); }
.badge-green { background: var(--green-light); color: var(--green); }

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 1000;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
.h1-blue { color: var(--blue); }
.h1-underline {
  position: relative; display: inline-block;
}
.h1-underline::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineGrow 0.8s 0.5s ease forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

.hero-sub { font-size: 1.08rem; color: var(--text-2); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-primary {
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; font-weight: 800; font-size: 1rem;
  border-radius: 14px; text-decoration: none; border: none; cursor: none;
  box-shadow: 0 8px 24px rgba(0,87,255,0.3);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(0,87,255,0.38); }

.btn-orange {
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; font-weight: 800; font-size: 1rem;
  border-radius: 14px; text-decoration: none; border: none; cursor: none;
  box-shadow: var(--shadow-orange);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.6rem;
  animation: pulseBtn 2.5s ease-in-out infinite;
}
@keyframes pulseBtn {
  0%,100% { box-shadow: var(--shadow-orange); }
  50% { box-shadow: 0 12px 40px rgba(255,90,31,0.45); }
}
.btn-orange:hover { transform: translateY(-3px) scale(1.03); animation: none; box-shadow: 0 16px 40px rgba(255,90,31,0.45); }

.btn-outline {
  padding: 0.95rem 2.2rem;
  background: #fff;
  color: var(--blue); font-weight: 800; font-size: 1rem;
  border-radius: 14px; text-decoration: none;
  border: 2px solid var(--blue);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-outline:hover { background: var(--blue-pale); transform: translateY(-2px); }

/* Trust strip */
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-2); font-weight: 600; }
.trust-icon { font-size: 1.1rem; }
.trust-sep { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

/* ─── HERO RIGHT — PRICING PREVIEW CARD ─── */
.hero-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(0.5deg); }
  50% { transform: translateY(-10px) rotate(-0.5deg); }
}

.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.card-tag {
  background: var(--green-light); color: var(--green);
  font-size: 0.72rem; font-weight: 800; padding: 0.3rem 0.8rem;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}
.card-timer { font-size: 0.78rem; color: var(--text-3); font-weight: 600; }
.timer-val { font-weight: 800; color: var(--orange); }

.card-speed-display {
  text-align: center; margin-bottom: 1.5rem;
  padding: 1.5rem; background: var(--bg); border-radius: 18px;
}
.speed-big { font-family: 'Nunito', sans-serif; font-size: 5rem; font-weight: 1000; color: var(--blue); line-height: 1; }
.speed-unit { font-size: 1.1rem; color: var(--text-2); font-weight: 700; }

.card-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-price-old { text-decoration: line-through; color: var(--text-3); font-size: 1rem; }
.card-price-new { font-size: 2rem; font-weight: 900; color: var(--blue); font-family: 'Nunito', sans-serif; }
.card-price-new small { font-size: 0.85rem; color: var(--text-2); font-family: 'Manrope', sans-serif; }

.card-features { list-style: none; margin-bottom: 1.2rem; }
.card-features li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0; font-size: 0.88rem; color: var(--text-2); font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.card-features li:last-child { border-bottom: none; }
.cf-icon { color: var(--green); font-size: 0.95rem; }

.card-btn {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; font-weight: 800; font-size: 1.05rem;
  border: none; border-radius: 14px; cursor: none;
  transition: all 0.3s; box-shadow: var(--shadow-orange);
}
.card-btn:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(255,90,31,0.4); }

.card-note { text-align: center; font-size: 0.75rem; color: var(--text-3); margin-top: 0.6rem; }

/* Floating decorations on card */
.card-badge-float {
  position: absolute; padding: 0.5rem 0.9rem;
  background: var(--card); border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.4rem;
  border: 1.5px solid var(--border);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-top { top: -18px; right: 30px; color: var(--green); }
.badge-bottom { bottom: -18px; left: 30px; color: var(--orange); animation-delay: -2s; }

/* ─── COUNTERS ─── */
.counters-section {
  background: var(--blue);
  padding: 3.5rem 2rem;
}
.counters-inner { max-width: 1380px; margin: 0 auto; }
.counters-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
@media(max-width:900px){ .counters-grid { grid-template-columns: repeat(2,1fr); } }
.counter-item { text-align: center; }
.c-num {
  font-family: 'Nunito', sans-serif; font-size: 2.8rem; font-weight: 1000; color: #fff;
  line-height: 1;
}
.c-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-top: 0.3rem; }

/* ─── SECTION LAYOUT ─── */
.section { padding: 5rem 2rem; max-width: 1380px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--blue-pale); color: var(--blue);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: 50px; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 1000; line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 0.8rem;
}
.section-sub { color: var(--text-2); max-width: 560px; font-size: 1rem; line-height: 1.7; }

/* ─── WHY CARDS ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: all 0.35s; position: relative; overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,0.04), transparent);
  opacity: 0; transition: opacity 0.35s; border-radius: var(--radius);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .fi { transform: rotate(-8deg) scale(1.15); }

.fi {
  width: 56px; height: 56px;
  background: var(--blue-pale); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1.1rem;
  transition: transform 0.35s;
}
.fi.orange { background: #FFF0EB; }
.fi.green { background: var(--green-light); }

.feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.65; }

/* ─── PRICING ─── */
.pricing-section { background: var(--bg3); padding: 5rem 2rem; }
.pricing-inner { max-width: 1380px; margin: 0 auto; }

.toggle-wrap {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  margin: 2rem 0;
}
.toggle-pill {
  display: flex; background: #E5ECFF; border-radius: 50px; padding: 4px;
}
.toggle-option {
  padding: 0.5rem 1.4rem; border-radius: 50px; font-weight: 800; font-size: 0.9rem;
  cursor: none; transition: all 0.25s; color: var(--text-2);
}
.toggle-option.active { background: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(0,87,255,0.3); }
.discount-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; font-size: 0.7rem; font-weight: 800;
  padding: 0.25rem 0.7rem; border-radius: 50px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.price-card {
  background: var(--card); border-radius: 24px;
  border: 2px solid var(--border);
  padding: 2rem; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,87,255,0.1), var(--shadow-md);
}
.popular-ribbon {
  position: absolute; top: 1rem; right: -2.5rem;
  background: var(--blue); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.5px;
  padding: 0.3rem 3.5rem; transform: rotate(45deg); text-transform: uppercase;
}

.p-name { font-size: 0.8rem; font-weight: 800; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.6rem; }
.p-speed-big { font-family: 'Nunito', sans-serif; font-size: 3.8rem; font-weight: 1000; color: var(--text); line-height: 1; }
.p-speed-unit { font-size: 1rem; color: var(--text-2); font-weight: 700; margin-bottom: 0.3rem; }
.p-tech { font-size: 0.75rem; color: var(--text-3); margin-bottom: 1.2rem; }

.p-price-wrap { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.3rem; }
.p-price-m { display: block; }
.p-price-y { display: none; }
body.annual .p-price-m { display: none; }
body.annual .p-price-y { display: block; }

.p-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem; font-weight: 1000; color: var(--blue);
}
.p-per { font-size: 0.85rem; color: var(--text-2); }
.p-old { font-size: 0.85rem; color: var(--text-3); text-decoration: line-through; }
.p-features { list-style: none; margin: 1rem 0 1.5rem; }
.p-features li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.42rem 0; font-size: 0.88rem; color: var(--text-2); font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.p-features li:last-child { border-bottom: none; }
.p-check { color: var(--green); font-size: 1rem; }

.btn-connect {
  width: 100%; padding: 0.9rem;
  background: var(--blue-pale); color: var(--blue);
  font-weight: 800; font-size: 0.95rem;
  border: 2px solid transparent; border-radius: 12px; cursor: none;
  transition: all 0.3s;
}
.btn-connect:hover, .price-card.popular .btn-connect {
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 24px rgba(0,87,255,0.3);
}

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A6B 100%);
  border-radius: 24px; padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; margin-top: 2rem;
  position: relative; overflow: hidden;
}
.promo-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px;
  border: 40px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.promo-banner::after {
  content: ''; position: absolute; right: 80px; bottom: -60px;
  width: 180px; height: 180px;
  border: 30px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.promo-text { position: relative; }
.promo-text h3 { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 1000; color: #fff; margin-bottom: 0.4rem; }
.promo-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.promo-btn {
  position: relative;
  padding: 0.9rem 2rem;
  background: #fff; color: var(--orange);
  font-weight: 900; font-size: 1rem;
  border-radius: 14px; text-decoration: none; border: none; cursor: none;
  transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.promo-btn:hover { transform: translateY(-2px) scale(1.04); }

/* ─── SOCIAL PROOF ─── */
.reviews-wrap { margin-top: 3rem; position: relative; overflow: hidden; }
.reviews-track {
  display: flex; gap: 1.5rem;
  animation: reviewsScroll 30s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card {
  background: var(--card); border-radius: 18px; padding: 1.5rem;
  border: 1.5px solid var(--border); width: 300px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.rev-stars { color: #FFC107; font-size: 1rem; margin-bottom: 0.6rem; }
.rev-text { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; margin-bottom: 0.8rem; font-style: italic; }
.rev-author { font-size: 0.8rem; font-weight: 800; color: var(--text); }
.rev-meta { font-size: 0.72rem; color: var(--text-3); }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 500;
  background: var(--card); border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-text { font-size: 0.88rem; font-weight: 700; color: var(--text-2); }
.sticky-price { font-family: 'Nunito', sans-serif; font-weight: 1000; color: var(--blue); font-size: 1.2rem; }

/* ─── LIVE INDICATOR ─── */
.live-ping {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; color: var(--green);
}
.live-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  position: relative;
}
.live-dot::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid var(--green); border-radius: 50%;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(2.5); } }

/* ─── IPTV SECTION ─── */
.iptv-block {
  background: linear-gradient(135deg, #EBF0FF, #F4F7FF);
  border-radius: 28px; padding: 3.5rem;
  border: 1.5px solid var(--border);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center;
}
@media(max-width:900px){ .iptv-block { grid-template-columns: 1fr; } }

.tv-frame {
  background: var(--text); border-radius: 20px; padding: 12px;
  box-shadow: var(--shadow-lg);
}
.tv-screen {
  background: #0a0f1e; border-radius: 12px;
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.tv-top-bar {
  position: absolute; top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6); padding: 0.4rem 0.8rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.65rem; color: rgba(255,255,255,0.7);
}
.tv-now { color: #fff; font-weight: 700; }
.tv-channels-sidebar {
  position: absolute; right: 0; top: 0; bottom: 0; width: 120px;
  background: rgba(0,0,0,0.75);
}
.tv-ch {
  padding: 0.45rem 0.6rem;
  font-size: 0.62rem; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer;
  transition: all 0.2s;
}
.tv-ch.active { background: rgba(0,87,255,0.3); color: #fff; font-weight: 700; }
.tv-ch:hover { background: rgba(255,255,255,0.08); }
.tv-content {
  position: absolute; inset: 0; right: 120px; top: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #0a0f1e, #142040);
}

/* ─── FAQ ─── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
@media(max-width:768px){ .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  padding: 1.15rem 1.4rem; cursor: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.92rem; color: var(--text);
}
.faq-q:hover { background: var(--blue-pale); }
.faq-arrow { color: var(--blue); font-size: 1.1rem; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.4rem; max-height: 0; overflow: hidden;
  transition: all 0.35s; color: var(--text-2); font-size: 0.88rem; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0.8rem 1.4rem 1.4rem; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #2B5AEE 50%, var(--blue-light) 100%);
  border-radius: 32px; padding: 5rem 3rem; text-align: center;
  position: relative; overflow: hidden; margin: 0 2rem;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section h2 { font-family: 'Nunito', sans-serif; font-size: 2.8rem; font-weight: 1000; color: #fff; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-white {
  padding: 1rem 2.5rem;
  background: #fff; color: var(--blue);
  font-weight: 900; font-size: 1.05rem;
  border-radius: 14px; text-decoration: none; border: none; cursor: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-white:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

.btn-white-outline {
  padding: 1rem 2.5rem;
  background: transparent; color: #fff;
  font-weight: 800; font-size: 1.05rem;
  border-radius: 14px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.6rem; cursor: none;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--text); color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}
.footer-inner { max-width: 1380px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-logo .logo-text { color: #fff; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 1rem 0; line-height: 1.7; }
.footer-phones a { display: block; color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; }
.footer-phones small { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.footer-col h4 { color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; font-weight: 600; padding: 0.3rem 0; transition: color 0.25s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,27,62,0.6);
  backdrop-filter: blur(8px); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--card); border-radius: 28px;
  padding: 2.5rem; max-width: 480px; width: 90%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: scale(0.9) translateY(20px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.modal h3 { font-family: 'Nunito', sans-serif; font-size: 1.7rem; font-weight: 1000; margin-bottom: 0.4rem; }
.modal p { color: var(--text-2); margin-bottom: 1.5rem; font-size: 0.9rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-2); margin-bottom: 0.4rem; }
.form-group input, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: 12px; color: var(--text);
  font-family: 'Manrope', sans-serif; font-size: 0.95rem;
  transition: border-color 0.25s; outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--blue); }
.modal-actions { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.btn-modal-close {
  padding: 0.85rem 1.5rem; background: var(--bg); border: 2px solid var(--border);
  color: var(--text-2); border-radius: 12px; cursor: none; font-size: 0.9rem; font-weight: 700; transition: all 0.25s;
}
.btn-modal-close:hover { border-color: var(--text-2); }
.modal-trust { display: flex; gap: 1.5rem; margin-top: 1rem; justify-content: center; }
.modal-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-3); font-weight: 600; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BREADCRUMB ─── */
.breadcrumb { font-size: 0.8rem; color: var(--text-3); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--blue); text-decoration: none; font-weight: 600; }

/* ─── MOBILE MENU BUTTON ─── */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 201;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media(max-width:768px){
  .menu-btn { display: flex; }
  nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  nav a {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  .nav-phones { display: none; }
  .btn-cta-header { display: none; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hero-inner { padding: 3rem 1.5rem; }
  .section { padding: 3rem 1.2rem; }
  .hero-card { display: none; }
}

/* ─── HIDE CUSTOM CURSOR ON TOUCH DEVICES ─── */
@media(pointer:coarse){
  body { cursor: auto !important; }
  .cursor-dot, .cursor-ring, #cursorDot, #cursorRing { display: none !important; }
  /* Restore normal cursor for all interactive elements */
  a, button, [class*="btn"], select, input, textarea { cursor: pointer !important; }
}
