/* ============================================================
   UVISION IPTV — Main Stylesheet
   Design: Premium Dark Luxury | Red + Black + White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --bg:           #080808;
  --bg-card:      #111111;
  --bg-elevated:  #181818;
  --bg-border:    #222222;
  --red:          #e5001a;
  --red-dark:     #b00015;
  --red-glow:     rgba(229, 0, 26, 0.25);
  --white:        #ffffff;
  --gray-light:   #cccccc;
  --gray:         #888888;
  --gray-dark:    #444444;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-red:   0 0 40px rgba(229,0,26,0.3);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1200px;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--gray-light); line-height: 1.75; }

.text-red   { color: var(--red); }
.text-gray  { color: var(--gray); }
.text-white { color: var(--white); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 580px; margin: 16px auto 0; font-size: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-dark);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid transparent;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.98);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo svg { width: 44px; height: 44px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-logo-text span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--gray-light);
  font-size: 1rem;
  display: block;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229,0,26,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 80% 100%, rgba(229,0,26,0.08) 0%, transparent 60%),
              var(--bg);
}
.hero-grid-overlay {
  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;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,0,26,0.12);
  border: 1px solid rgba(229,0,26,0.3);
  color: var(--red);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--red); }
.hero p.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--gray-light);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--red); }
.hero-stat .lbl {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-visual {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.06;
  pointer-events: none;
}

/* ── Trust Badges ────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  padding: 24px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(229,0,26,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(229,0,26,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(229,0,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(145deg, #151515, #111);
  box-shadow: var(--shadow-red);
}
.pricing-card.featured:hover { box-shadow: 0 0 60px rgba(229,0,26,0.4); }
.badge-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan { font-size: 0.85rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pricing-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 16px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-currency { font-size: 1.4rem; font-weight: 700; color: var(--gray-light); }
.pricing-amount { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; }
.pricing-period { font-size: 0.9rem; color: var(--gray); }
.pricing-save {
  display: inline-block;
  background: rgba(229,0,26,0.12);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(229,0,26,0.2);
}
.pricing-divider { border: none; border-top: 1px solid var(--bg-border); margin: 20px 0; }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Features ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(229,0,26,0.2);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(229,0,26,0.25); transform: translateY(-3px); }
.stars { color: #ffd700; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #800010);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-country { font-size: 0.8rem; color: var(--gray); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #150002, #0d0000);
  border: 1px solid rgba(229,0,26,0.3);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(229,0,26,0.2) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(229,0,26,0.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  gap: 16px;
  font-size: 0.95rem;
}
.faq-arrow {
  width: 28px; height: 28px;
  background: rgba(229,0,26,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--red);
  font-style: normal;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--red); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(229,0,26,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.blog-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.blog-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: rgba(229,0,26,0.1);
  color: var(--red);
  border: 1px solid rgba(229,0,26,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.blog-card p { font-size: 0.88rem; flex: 1; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--gray); }
.read-more { color: var(--red); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { color: var(--red-dark); }

/* ── Channels Page ───────────────────────────────────────── */
.channel-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
  color: var(--gray-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.country-section { margin-bottom: 48px; }
.country-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-border);
}
.country-flag { font-size: 2rem; }
.country-name { font-family: var(--font-display); font-size: 1.6rem; }
.country-count { margin-left: auto; font-size: 0.85rem; color: var(--gray); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.channel-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.channel-item:hover {
  border-color: rgba(229,0,26,0.3);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.channel-logo-sm {
  width: 28px; height: 28px;
  background: rgba(229,0,26,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 140px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229,0,26,0.12) 0%, transparent 70%), var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--bg-border);
}
.page-hero p { max-width: 580px; margin: 16px auto 0; font-size: 1.05rem; }

/* ── Trial Page ──────────────────────────────────────────── */
.trial-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-light);
}
.form-control {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
}
.form-control::placeholder { color: var(--gray); }
.form-control option { background: var(--bg-card); }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--gray); margin-top: 16px; }

/* ── Blog Article ────────────────────────────────────────── */
.article-hero {
  padding: 140px 24px 60px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(229,0,26,0.1) 0%, transparent 70%), var(--bg);
  border-bottom: 1px solid var(--bg-border);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.article-date { font-size: 0.85rem; color: var(--gray); }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--gray-light);
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
  margin: 16px 0 24px 20px;
}
.article-body li {
  color: var(--gray-light);
  margin-bottom: 10px;
  padding-left: 8px;
}
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-callout {
  background: rgba(229,0,26,0.08);
  border: 1px solid rgba(229,0,26,0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.article-callout p { margin: 0; font-size: 0.95rem; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-method-icon {
  width: 52px; height: 52px;
  background: rgba(229,0,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(229,0,26,0.2);
}
.contact-method-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-method-value { font-weight: 600; font-size: 1rem; }

/* ── Order Pages ─────────────────────────────────────────── */
.order-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.order-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-red);
}
.order-steps { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.order-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 20px;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.order-wa-btn {
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all var(--transition);
  text-decoration: none;
}
.order-wa-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.3); color: white; }

/* ── Terms/Refund Pages ──────────────────────────────────── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-body h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--white); }
.legal-body h3 { font-size: 1.15rem; margin: 24px 0 10px; color: var(--gray-light); font-family: var(--font-body); font-weight: 700; }
.legal-body p { margin-bottom: 16px; font-size: 0.92rem; }
.legal-body ul { margin: 12px 0 20px 20px; }
.legal-body li { color: var(--gray-light); margin-bottom: 8px; list-style: disc; font-size: 0.92rem; }
.legal-date { font-size: 0.85rem; color: var(--gray); margin-bottom: 40px; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: wa-bounce 3s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-bounce {
  0%, 90%, 100% { transform: scale(1); }
  95% { transform: scale(1.08); }
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid var(--bg-border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand p { font-size: 0.88rem; color: var(--gray); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--gray-light); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--gray); }
.footer-bottom-links a:hover { color: var(--red); }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--gray-dark); }

/* ── Dividers & Misc ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--bg-border); margin: 0; }
.highlight { background: rgba(229,0,26,0.08); border: 1px solid rgba(229,0,26,0.15); border-radius: var(--radius); padding: 20px 24px; }
.pill { display: inline-block; background: rgba(229,0,26,0.1); border: 1px solid rgba(229,0,26,0.2); color: var(--red); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }

/* ── Scroll Animation ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .trust-bar-inner { gap: 16px; }
  .channels-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-grid { max-width: 100%; }
}

/* ── Image Placeholders (SVG-based visual blocks) ───────── */
.img-block {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  overflow: hidden;
  position: relative;
}
.img-block-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  text-align: center;
}

/* ── Notification Banner ─────────────────────────────────── */
.notif-bar {
  background: var(--red);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
}
.notif-bar a { color: white; text-decoration: underline; }

/* ── Plan Order Pages ─────────────────────────────────── */
.plan-badge-top {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  color: var(--gray-300);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.popular-badge {
  background: rgba(229,0,26,0.15);
  border-color: var(--red);
  color: var(--red);
}
.order-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-top: 60px;
}
@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
}
.order-plan-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 100px;
  position: relative;
  overflow: hidden;
}
.featured-plan-card {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(229,0,26,0.15);
}
.popular-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}
.order-plan-header { margin-bottom: 2rem; }
.plan-name-lg {
  font-size: 1rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.plan-price-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
}
.plan-price-lg span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray-400);
  font-weight: 400;
}
.plan-per {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
}
.order-features-list {
  list-style: none;
  margin-bottom: 2rem;
}
.order-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--bg-border);
}
.order-features-list li:last-child { border-bottom: none; }
.check { color: #22c55e; font-size: 1rem; flex-shrink: 0; }
.check-bonus { color: var(--red); }
.btn-full { width: 100%; text-align: center; display: block; }
.order-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.78rem;
  margin-top: 0.8rem;
}
.order-info-col { display: flex; flex-direction: column; }
.order-info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.order-info-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.order-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.order-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-text strong { display: block; margin-bottom: 0.2rem; font-size: 0.95rem; }
.step-text p { color: var(--gray-400); font-size: 0.85rem; margin: 0; }
.devices-grid-sm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.device-tag {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: var(--gray-300);
}
.compare-plans-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.compare-plan {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s;
  cursor: pointer;
}
.compare-plan:hover { border-color: var(--red); }
.compare-plan.current {
  border-color: var(--red);
  background: rgba(229,0,26,0.08);
}
.cp-duration { font-size: 0.75rem; color: var(--gray-400); }
.cp-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--white); }
.cp-tag { font-size: 0.7rem; color: var(--red); font-weight: 600; }
.cp-save { font-size: 0.7rem; color: #22c55e; font-weight: 600; }
.trust-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .trust-grid-2 { grid-template-columns: 1fr; }
  .compare-plans-mini { grid-template-columns: 1fr; }
}
.trust-item-lg {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.trust-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.trust-item-lg strong { display: block; margin-bottom: 0.3rem; }
.trust-item-lg p { color: var(--gray-400); font-size: 0.85rem; margin: 0; }
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.why-list li { font-size: 0.92rem; }
.active-link { color: var(--red) !important; }
