/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #a855f7;
  --accent: #6c47ff;
  --bg: #07070f;
  --bg2: #0f0f1a;
  --bg3: #151525;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text: #f0f0f5;
  --muted: #7777aa;
  --gold: #f59e0b;
  --green: #10b981;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(108,71,255,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%; backdrop-filter: blur(20px);
  background: rgba(7,7,15,0.85); border-bottom: 1px solid var(--glass-border);
  transition: all .3s;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 40px; }
.nav-logo-text { font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .3s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: #25d366; color: #fff !important; -webkit-text-fill-color: #fff !important;
  padding: .55rem 1.25rem; border-radius: 50px; font-weight: 700;
  font-size: .875rem; transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,.5); background: #1ebe5d; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 5% 5rem; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,71,255,.25) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 80%, rgba(168,85,247,.15) 0%, transparent 60%),
              var(--bg);
}
.hero-bg-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .12; z-index: 1; }
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .04;
  background-image: linear-gradient(rgba(168,85,247,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(168,85,247,.5) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0%{transform:translateY(0)} 100%{transform:translateY(60px)} }

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3);
  color: var(--gold); padding: .4rem 1rem; border-radius: 50px;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,.2)} 50%{box-shadow:0 0 0 8px rgba(245,158,11,0)} }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 60%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}
.hero p { font-size: 1.15rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; max-width: 560px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff; padding: .9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; transition: all .3s;
  box-shadow: 0 4px 20px rgba(108,71,255,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(108,71,255,.6); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--glass-border); color: var(--text);
  padding: .9rem 2rem; border-radius: 50px; font-weight: 600;
  font-size: 1rem; backdrop-filter: blur(10px); background: var(--glass);
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2rem; border-top: 1px solid var(--glass-border); flex-wrap: wrap;
}
.stat h3 { font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat p { color: var(--muted); font-size: .85rem; margin-top: .2rem; }

/* ===== SECTION BASE ===== */
section { padding: 6rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; color: var(--primary); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all .3s;
}
.about-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.about-card i { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; }
.about-card h4 { font-weight: 700; margin-bottom: .3rem; }
.about-card p { color: var(--muted); font-size: .85rem; line-height: 1.5; }
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem; transition: all .3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: rgba(168,85,247,.3); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(108,71,255,.2), rgba(168,85,247,.2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: transform .3s;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-icon i { font-size: 1.4rem; color: var(--primary); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ===== CHANNELS ===== */
.channels { background: var(--bg2); }
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.channel-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: all .3s;
}
.channel-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow); }
.channel-icon {
  width: 62px; height: 62px; border-radius: 16px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(108,71,255,.15), rgba(168,85,247,.15));
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.channel-card:hover .channel-icon { transform: scale(1.1) rotate(-5deg); }
.channel-icon i { font-size: 1.6rem; color: var(--primary); }
.channel-card h3 { font-weight: 700; margin-bottom: .4rem; }
.channel-card p { color: var(--muted); font-size: .85rem; }
.channel-count { color: var(--primary); font-weight: 700; font-size: 1.05rem; margin-top: .5rem; }

/* ===== COMPATIBILITY ===== */
.compat-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.compat-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  width: 140px; transition: all .3s;
}
.compat-item:hover { border-color: var(--accent); transform: translateY(-5px); }
.compat-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: .75rem; }
.compat-item span { font-size: .85rem; font-weight: 600; color: var(--muted); }

/* ===== PLANS ===== */
.plans { background: var(--bg); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }
.plan-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
  position: relative; transition: all .3s; overflow: hidden;
}
.plan-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,71,255,.05), rgba(168,85,247,.05));
  opacity: 0; transition: opacity .3s;
}
.plan-card:hover::before { opacity: 1; }
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.plan-featured {
  border-color: var(--gold) !important; transform: scale(1.03);
  box-shadow: 0 0 40px rgba(245,158,11,.15);
}
.plan-featured:hover { transform: scale(1.03) translateY(-8px); }
.featured-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), #f97316);
  color: #000; font-size: .7rem; font-weight: 800; padding: .3rem 1.2rem;
  border-radius: 0 0 12px 12px; text-transform: uppercase; letter-spacing: 1px;
}
.plan-badge {
  display: inline-block; padding: .35rem 1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; margin-bottom: 1.25rem; margin-top: .5rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: .5rem; }
.plan-price { margin: 1rem 0; }
.plan-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--muted); vertical-align: top; margin-top: .5rem; display: inline-block; }
.plan-price .amount { font-size: 3rem; font-weight: 900; line-height: 1; }
.plan-price .period { color: var(--muted); font-size: .85rem; }
.plan-features { margin: 1.5rem 0; text-align: left; }
.plan-features li {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 0; border-bottom: 1px solid var(--glass-border);
  font-size: .9rem; color: var(--muted);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); font-size: .8rem; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; padding: .85rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
  transition: all .3s; text-align: center;
}
.plan-btn-featured {
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #000; box-shadow: 0 4px 20px rgba(245,158,11,.3);
}
.plan-btn-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,.5); }
.plan-btn-normal {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text);
}
.plan-btn-normal:hover { background: linear-gradient(135deg, var(--accent), var(--primary)); border-color: transparent; transform: translateY(-2px); }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg2); }
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track { display: flex; gap: 1.5rem; transition: transform .5s cubic-bezier(.25,.1,.25,1); }
.review-card {
  min-width: 320px; flex: 0 0 320px; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.75rem; transition: all .3s;
}
.review-card:hover { border-color: rgba(168,85,247,.3); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff; flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 700; }
.review-date { color: var(--muted); font-size: .8rem; margin-top: .1rem; }
.review-stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; }
.review-text { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--glass-border);
  background: var(--glass); color: var(--text); cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--primary); border-color: var(--primary); }
.carousel-dots { display: flex; gap: .5rem; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-border); cursor: pointer; transition: all .3s; }
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: rgba(168,85,247,.4); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; user-select: none;
}
.faq-question span { font-weight: 600; font-size: 1rem; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,71,255,.2), rgba(168,85,247,.2));
  display: flex; align-items: center; justify-content: center; transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: linear-gradient(135deg, var(--accent), var(--primary)); }
.faq-icon i { font-size: .85rem; color: var(--primary); }
.faq-item.open .faq-icon i { color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--muted); line-height: 1.7; font-size: .95rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(108,71,255,.15), rgba(168,85,247,.1));
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem;
}
.cta-section p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.countdown { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.countdown-item { text-align: center; }
.countdown-item .num {
  display: block; font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  min-width: 70px;
}
.countdown-item .lbl { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2); border-top: 1px solid var(--glass-border);
  padding: 4rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo-text { font-size: 1.6rem; display: block; margin-bottom: .75rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .3s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-weight: 700; margin-bottom: 1.25rem; color: var(--text); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: var(--muted); font-size: .9rem; transition: color .3s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: .85rem; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; contain: layout; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PERFORMANCE ===== */
.navbar { will-change: padding; }
.why-card, .plan-card, .channel-card, .review-card { will-change: transform; }
.hero-grid { will-change: transform; }
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-grid { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: var(--bg2);
    padding: 1.5rem 5%; border-bottom: 1px solid var(--glass-border); gap: 1rem;
  }
  .nav-links.open .nav-cta { display: inline-flex; width: fit-content; }
  .about-grid { grid-template-columns: 1fr; }
  .about-cards { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .review-card { min-width: 280px; flex-basis: 280px; }
  .plan-featured { transform: scale(1); }
}
