/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800;900&display=swap');

/* ============================================================
   CSS TOKENS — Datoo IPTV Neon Blue Dark Theme
   ============================================================ */
:root {
  --bg:           hsl(222, 47%, 4%);
  --bg-alt:       hsl(222, 47%, 3%);
  --foreground:   hsl(210, 40%, 96%);
  --muted:        hsl(215, 20%, 50%);
  --card-bg:      hsl(220, 40%, 7%);
  --border:       hsl(220, 30%, 14%);

  --primary:      hsl(196, 100%, 50%);   /* #00d4ff */
  --primary-dim:  hsl(196, 100%, 50%, 0.1);
  --gold:         hsl(45, 100%, 55%);

  --glow-sm:  0 0 12px hsl(196 100% 50% / 0.5);
  --glow-md:  0 0 24px hsl(196 100% 50% / 0.6);
  --glow-lg:  0 0 48px hsl(196 100% 50% / 0.5), 0 0 80px hsl(196 100% 50% / 0.25);
  --glow-gold:0 0 20px hsl(45 100% 55% / 0.6), 0 0 40px hsl(45 100% 55% / 0.3);

  --radius:   0.875rem;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(196 100% 50% / 0.07) 0%, transparent 60%);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: hsl(220, 40%, 8%); }
::-webkit-scrollbar-thumb { background: hsl(196 100% 50% / 0.4); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: hsl(196 100% 50% / 0.7); }
::selection { background: hsl(196 100% 50% / 0.25); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section-pad { padding-block: 5rem; }
@media (min-width: 768px)  { .section-pad { padding-block: 7rem; } }
@media (min-width: 1024px) { .section-pad { padding-block: 9rem; } }

/* ============================================================
   GRID BACKGROUND
   ============================================================ */
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(hsl(196 100% 50% / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsl(196 100% 50% / 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.text-gradient-blue {
  background: linear-gradient(135deg, hsl(196 100% 60%) 0%, hsl(220 100% 70%) 50%, hsl(196 100% 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shimmer {
  background: linear-gradient(90deg, hsl(196 100% 60%), hsl(220 100% 80%), hsl(196 100% 90%), hsl(220 100% 80%), hsl(196 100% 60%));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.text-muted { color: var(--muted); }
.hidden { display: none !important; }

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass {
  background: hsl(220 40% 8% / 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid hsl(196 100% 50% / 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3);
}

.glass-card {
  background: hsl(220 40% 8% / 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(196 100% 50% / 0.12);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.glass-card:hover {
  border-color: hsl(196 100% 50% / 0.35);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge-neon {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: hsl(196 100% 50% / 0.1);
  border: 1px solid hsl(196 100% 50% / 0.3);
  box-shadow: var(--glow-sm);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-neon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  background: hsl(196 100% 50% / 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid hsl(196 100% 50% / 0.5);
  box-shadow: var(--glow-sm), inset 0 1px 0 hsl(196 100% 90% / 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-neon:hover {
  background: hsl(196 100% 50% / 0.18);
  border-color: hsl(196 100% 60%);
  box-shadow: var(--glow-md), inset 0 1px 0 hsl(196 100% 90% / 0.15);
  color: hsl(196, 100%, 70%);
  transform: translateY(-2px) scale(1.02);
}

.btn-neon:active { transform: translateY(0) scale(0.99); }

.btn-neon-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: hsl(222, 47%, 4%);
  background: linear-gradient(135deg, #ffc107, #ff9800);
  box-shadow: var(--glow-gold);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px hsl(45 100% 55% / 0.7), 0 0 60px hsl(45 100% 55% / 0.4);
  filter: brightness(1.08);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider-neon {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(196 100% 50% / 0.4), transparent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.6s ease-out forwards;
}
.animate-float { animation: float 4s ease-in-out infinite; }
.delay-0   { animation-delay: 0ms;   }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}

#site-header.scrolled {
  background: hsl(222 47% 4% / 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(196 100% 50% / 0.1);
  box-shadow: 0 0 30px hsl(196 100% 50% / 0.05);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(196 100% 40%), hsl(220 100% 50%));
  box-shadow: 0 0 16px hsl(196 100% 50% / 0.4);
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--foreground); background: hsl(255 255% 255% / 0.05); }

/* Header CTA */
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: flex; align-items: center; gap: 0.75rem; } }

/* Mobile hamburger */
#mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
#mobile-toggle:hover { color: var(--foreground); background: hsl(255 255% 255% / 0.05); }
@media (min-width: 768px) { #mobile-toggle { display: none; } }

/* Mobile menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid hsl(196 100% 50% / 0.1);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0.75rem;
  transition: color 0.2s, background 0.2s;
}
#mobile-menu a:hover { color: var(--foreground); background: hsl(255 255% 255% / 0.05); }
#mobile-menu .btn-neon { margin: 0.5rem 1.5rem 0; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-glow-top {
  position: absolute;
  top: -10rem; left: 50%; transform: translateX(-50%);
  width: 56rem; height: 37.5rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, hsl(196 100% 50%) 0%, hsl(220 100% 50% / 0%) 70%);
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  top: 33%; right: -8rem;
  width: 31rem; height: 31rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, hsl(220 100% 60%) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  bottom: 0; left: -8rem;
  width: 25rem; height: 25rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, hsl(196 100% 40%) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4rem;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-copy { display: flex; flex-direction: column; gap: 2rem; }

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
}
.hero-sub strong { color: var(--foreground); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}
.hero-secondary-cta:hover { color: var(--foreground); }
.hero-secondary-cta .play-circle {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.hero-secondary-cta:hover .play-circle { border-color: var(--primary); }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.trust-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem;
}
.hero-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 33%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}
.hero-badge-live {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: hsl(220 40% 8% / 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid hsl(196 100% 50% / 0.4);
}
.live-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: pulse-dot 2s infinite;
}
.hero-badge-live span.label { color: hsl(196, 100%, 70%); }
.hero-badge-4k {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: hsl(196, 100%, 60%);
  background: hsl(220 40% 8% / 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid hsl(196 100% 50% / 0.4);
  box-shadow: var(--glow-sm);
}
.hero-glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  box-shadow: 0 0 60px 10px hsl(196 100% 50% / 0.15);
  pointer-events: none;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  padding: 1.25rem;
  text-align: center;
}
.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.stat-icon svg {
  width: 1.25rem; height: 1.25rem;
  color: var(--primary);
  filter: drop-shadow(0 0 6px var(--primary));
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
#features {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: hsl(196 100% 50% / 0.1);
  border: 1px solid hsl(196 100% 50% / 0.2);
  box-shadow: 0 0 20px hsl(196 100% 50% / 0.1);
}
.feature-icon-wrap svg {
  width: 1.75rem; height: 1.75rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary));
}

.feature-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-highlights { display: flex; flex-direction: column; gap: 0.625rem; }

.feature-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.feature-highlight-item svg {
  width: 1rem; height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-highlight-item span { color: hsl(210 40% 85%); }

.feature-accent-line {
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, hsl(196 100% 50% / 0.6), hsl(196 100% 50% / 0.1));
  margin-top: auto;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.pricing-savings-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.savings-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: hsl(196 100% 50% / 0.07);
  border: 1px solid hsl(196 100% 50% / 0.15);
  color: hsl(196, 100%, 65%);
}
.savings-pill svg { width: 0.875rem; height: 0.875rem; }
.savings-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: hsl(142 71% 45% / 0.15);
  color: hsl(142, 71%, 55%);
}
.savings-pill.gold-pill {
  background: hsl(45 100% 55% / 0.1);
  border-color: hsl(45 100% 55% / 0.3);
  color: hsl(45, 100%, 65%);
}
.savings-pill.gold-pill .savings-badge {
  background: hsl(45 100% 55% / 0.2);
  color: hsl(45, 100%, 65%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s;
  background: var(--card-bg);
  border: 1px solid hsl(196 100% 50% / 0.2);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.best-value {
  border-color: hsl(45 100% 55% / 0.4);
  box-shadow: 0 0 40px hsl(45 100% 55% / 0.12), 0 0 80px hsl(45 100% 55% / 0.06);
  transform: scale(1.02);
}
.pricing-card.best-value:hover { transform: scale(1.02) translateY(-4px); }

.plan-badge-bar {
  padding: 0.5rem 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(222, 47%, 4%);
}
.plan-badge-bar.popular { background: linear-gradient(135deg, hsl(196 100% 45%), hsl(220 100% 55%)); }
.plan-badge-bar.best   { background: linear-gradient(135deg, #ffc107, #ff9800); }

.plan-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.plan-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; }
.plan-icon-box {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plan-icon-box svg { width: 1rem; height: 1rem; }
.plan-duration { font-size: 1.125rem; font-weight: 900; }

.plan-tagline { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.25rem; }

.plan-price-main { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.plan-per-month {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.375rem;
}
.plan-per-month svg { width: 0.75rem; height: 0.75rem; color: hsl(142, 71%, 55%); }
.plan-per-month strong { color: var(--foreground); }
.plan-per-month .plan-save { color: hsl(142, 71%, 55%); }

.plan-divider {
  height: 1px;
  margin-block: 1rem;
}

.plan-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; flex: 1; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.plan-feature svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
.plan-feature span { color: hsl(210 40% 85%); }

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.plan-cta svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.plan-cta:hover svg { transform: translateX(4px); }

.plan-cta.neon {
  color: var(--primary);
  background: hsl(196 100% 50% / 0.08);
  border: 1.5px solid hsl(196 100% 50% / 0.5);
  box-shadow: var(--glow-sm);
}
.plan-cta.neon:hover {
  background: hsl(196 100% 50% / 0.18);
  box-shadow: var(--glow-md);
}

.plan-cta.gold {
  color: hsl(222, 47%, 4%);
  background: linear-gradient(135deg, #ffc107, #ff9800);
  box-shadow: var(--glow-gold);
  border: none;
}
.plan-cta.gold:hover {
  box-shadow: 0 0 30px hsl(45 100% 55% / 0.7);
  filter: brightness(1.08);
}

.plan-bottom-line {
  height: 2px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.pricing-guarantee svg { width: 1rem; height: 1rem; color: var(--primary); }
.pricing-guarantee strong { color: var(--foreground); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-icon { width: 1.5rem; height: 1.5rem; color: var(--primary); opacity: 0.4; }

.stars { display: flex; gap: 0.25rem; }
.star { width: 1rem; height: 1rem; }
.star.filled { color: #facc15; fill: #facc15; }
.star.empty  { color: hsl(215 20% 30%); }

.testimonial-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(196 100% 50% / 0.1);
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.testimonial-country { font-size: 0.75rem; color: var(--muted); }
.testimonial-plan-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: hsl(196 100% 50% / 0.1);
  color: hsl(196, 100%, 60%);
  border: 1px solid hsl(196 100% 50% / 0.2);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { background: var(--bg); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 48rem; margin-inline: auto; }

.faq-item {
  overflow: hidden;
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: hsl(196 100% 50% / 0.3); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.faq-chevron {
  width: 1.25rem; height: 1.25rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-body { max-height: 30rem; }

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid hsl(196 100% 50% / 0.1);
}

.footer-top-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(196 100% 50% / 0.4), transparent);
}

.footer-inner { padding-top: 4rem; padding-bottom: 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 20rem;
  margin-top: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.social-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: hsl(220 40% 8%);
  border: 1px solid hsl(196 100% 50% / 0.1);
  color: var(--muted);
  transition: all 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: hsl(196 100% 50% / 0.4);
  color: hsl(196, 100%, 60%);
  box-shadow: 0 0 12px hsl(196 100% 50% / 0.2);
}
.social-icon svg { width: 1rem; height: 1rem; }

.footer-col h3 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--foreground); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(196 100% 50% / 0.08);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-bottom .neon-dot { color: var(--primary); }

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header { text-align: center; max-width: 48rem; margin-inline: auto; margin-bottom: 5rem; }
.section-header h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1.25rem; }
.section-header p  { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   SVG ICON UTILITY
   ============================================================ */
svg { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
