/* ============================================
   TUBE THEME v4 - "Clean Light"
   IPTV.TUBE - Orange Accent on White
   Fonts: Outfit + Nunito Sans + Space Grotesk
   ============================================ */

/* --- Design Tokens --- */
:root {
  --primary: #F97316;
  --primary-hover: #EA580C;
  --primary-deep: #C2410C;
  --primary-glow: rgba(249, 115, 22, 0.15);

  --gold: #FBBF24;
  --gold-hover: #F59E0B;
  --gold-glow: rgba(251, 191, 36, 0.2);

  --bg-body: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-light: #FFF7ED;

  --border: #E2E8F0;
  --border-orange: rgba(249, 115, 22, 0.25);

  --heading: #1E293B;
  --text: #475569;
  --text-dim: #64748B;
  --text-faint: #94A3B8;

  --success: #059669;
  --danger: #DC2626;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 50px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s;
}


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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  padding-top: 70px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--primary-hover); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }


/* ==================
   TYPOGRAPHY
   ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

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


/* ==================
   LAYOUT
   ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow { max-width: 820px; }

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}


/* ==================
   BUTTONS
   ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-glow,
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.btn-glow:hover,
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

.btn-gold,
.btn-accent {
  background: linear-gradient(135deg, var(--gold), #F59E0B);
  color: #1E293B;
  font-weight: 700;
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn-gold:hover,
.btn-accent:hover {
  background: linear-gradient(135deg, #FCD34D, var(--gold));
  color: #1E293B;
  box-shadow: 0 0 35px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover,
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-white {
  background: #fff;
  color: var(--primary-deep);
}
.btn-white:hover {
  background: #FFF7ED;
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.btn-lg { padding: 0.95rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }


/* ==================
   HEADER
   ================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: all 0.35s var(--ease);
  background: transparent;
}

.site-header.header-scrolled {
  background: rgba(30, 41, 59, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo { flex-shrink: 0; }
.logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-pill);
  transition: all var(--t) var(--ease);
}
.nav-links a:hover,
.nav-links a.nav-active {
  color: #fff;
  background: rgba(249, 115, 22, 0.12);
}

.nav-cta {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  transition: all var(--t) var(--ease);
  box-shadow: 0 0 15px rgba(249,115,22,0.25);
}
.nav-cta:hover {
  background: var(--primary-hover);
  color: #fff !important;
  box-shadow: 0 0 25px rgba(249,115,22,0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ==================
   MOBILE MENU
   ================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #1E293B;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  gap: 0.25rem;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  color: #CBD5E1;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  transition: all var(--t) var(--ease);
}
.mobile-menu a:hover,
.mobile-menu a.nav-active {
  color: #fff;
  background: rgba(249, 115, 22, 0.12);
}
.mobile-menu .mobile-cta {
  margin-top: auto;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 0.85rem;
}


/* ==================
   HERO SECTION
   ================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0;
  background: #1E293B;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(249,115,22,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(251,191,36,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #1E293B 0%, #253345 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float-glow 6s ease-in-out infinite alternate;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-bottom: 1.5rem;
}
.hero-badge img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  display: inline;
}

.hero-text h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-text h1 strong {
  font-weight: 800;
}

.hero-text > p {
  font-size: 1.15rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Device Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-mockup {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 16/10;
  background: #253345;
  border: 2px solid rgba(249,115,22,0.25);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 20px 60px rgba(0,0,0,0.5);
}
.tv-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(249,115,22,0.3) 0%, rgba(251,191,36,0.15) 50%, rgba(249,115,22,0.2) 100%);
  animation: screen-shift 4s ease-in-out infinite alternate;
}
.tv-mockup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
}

.tv-stand {
  width: 120px;
  height: 8px;
  background: rgba(249,115,22,0.25);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}

@keyframes screen-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* ==================
   FEATURES GRID
   ================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ==================
   PRICING
   ================== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.3rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  padding: 0.65rem 1.75rem;
  border: none;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.pricing-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(249,115,22,0.3);
}
.pricing-tab:hover:not(.active) {
  color: var(--heading);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.pricing-card:hover {
  border-color: var(--border-orange);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px var(--gold-glow);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold), #F59E0B);
  color: #1E293B;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card .duration {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.pricing-card.featured .duration {
  margin-top: 1.75rem;
}

.savings-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #92400E;
  background: rgba(251,191,36,0.15);
  padding: 0.2rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.pricing-features li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.emoji-check { font-size: 0.85rem; }

.pricing-card .btn { width: 100%; }

/* Info box below pricing */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
}
.info-box p { color: var(--text); margin: 0; }
.info-box strong { color: var(--heading); }


/* ==================
   SOCIAL PROOF / TESTIMONIALS
   ================== */
.social-proof {
  padding: 5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: #FBBF24;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-author img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
}
.testimonial-author span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading);
}
.testimonial-author small {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-left: auto;
}

/* Legacy proof layout (kept for compat) */
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.proof-main { text-align: center; }
.proof-stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.proof-main blockquote {
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--heading);
  margin: 0 0 1.25rem;
  font-family: var(--font-head);
  font-weight: 400;
}
.proof-main cite {
  display: block;
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.proof-metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.proof-metric:hover { border-color: var(--border-orange); }
.proof-metric-value {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading);
  display: block;
}
.proof-metric-label {
  font-size: 0.82rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  display: block;
}
.stat-number { display: inline; }


/* ==================
   DEVICES STRIP
   ================== */
.devices-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.device-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
}
.device-item span { font-size: 1.25rem; }


/* ==================
   COUNTRY CARD
   ================== */
.country-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.country-card img {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.country-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.country-card h3 span { color: var(--gold); }
.country-card p { color: var(--text-dim); font-size: 0.92rem; margin: 0; }
.country-card .btn { flex-shrink: 0; margin-left: auto; }


/* ==================
   CTA BANNER
   ================== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #7C2D12 0%, #C2410C 40%, #EA580C 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 50%);
}
.cta-banner h2 {
  position: relative;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-banner > .container > p {
  position: relative;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.cta-buttons {
  position: relative;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* Legacy aliases */
.final-cta { padding: 5rem 0; background: linear-gradient(135deg, #7C2D12 0%, #C2410C 40%, #EA580C 100%); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: -25%; width: 150%; height: 200%; background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 50%); }
.final-cta h2 { position: relative; color: #fff; margin-bottom: 0.75rem; }
.final-cta p { position: relative; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2rem; font-size: 1.1rem; }
.final-cta-buttons { position: relative; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta .note { position: relative; margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.45); }


/* ==================
   FOOTER
   ================== */
.site-footer {
  background: #1E293B;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
}
.footer-col p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.7;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #94A3B8;
  padding: 0.3rem 0;
  transition: color var(--t) var(--ease);
}
.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  padding: 2rem 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stats-bar-item .stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.stats-bar-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}


/* ==================
   PAGE HERO (inner pages)
   ================== */
.page-hero {
  position: relative;
  padding: 7rem 0 3.5rem;
  text-align: center;
  background: #1E293B;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(249,115,22,0.12) 0%, transparent 60%);
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  margin-left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-hero-content h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: #94A3B8;
}


/* ==================
   FAQ ACCORDION
   ================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t) var(--ease);
}
.faq-item:hover { border-color: var(--border-orange); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 15px rgba(249,115,22,0.1); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
  transition: color var(--t) var(--ease);
}
.faq-question:hover { color: var(--primary); }

.faq-icon {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.active .faq-answer { max-height: 800px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}
.faq-answer-inner p { margin-bottom: 0.75rem; }
.faq-answer-inner a { color: var(--primary); font-weight: 600; }
.faq-answer-inner a:hover { color: var(--primary-hover); }
.faq-answer-inner ul { margin: 0.5rem 0; padding-left: 1.25rem; list-style: disc; }
.faq-answer-inner li { padding: 0.2rem 0; color: var(--text); }
.faq-answer-inner code {
  font-family: var(--font-mono);
  background: rgba(249,115,22,0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--heading);
}
.faq-answer-inner strong { color: var(--heading); }


/* ==================
   CONTACT FORM
   ================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }

.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading);
  background: #fff;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--danger); }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-result {
  display: inline-block;
  margin-left: 1rem;
  font-weight: 600;
  color: var(--success);
}

.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
}
.contact-info-card h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }
.contact-info-card p { color: var(--text); line-height: 1.75; font-size: 0.94rem; }
.contact-info-card a { font-weight: 600; color: var(--primary); }
.contact-info-card a:hover { color: var(--primary-hover); }

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.15rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
}

.contact-tip {
  margin-top: 1.5rem;
  padding: 1.15rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: var(--r-sm);
}
.contact-tip p { color: var(--text); font-size: 0.88rem; margin: 0; }
.contact-tip strong { color: var(--heading); }
.contact-tip a { color: var(--primary); font-weight: 600; }

.grecaptcha-badge { visibility: hidden; }


/* ==================
   DIVI COMPAT (channels, news, tutorials)
   ================== */
.et_pb_toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--t) var(--ease);
}
.et_pb_toggle:hover { border-color: var(--border-orange); }
.et_pb_toggle_open { border-color: var(--primary); }

.et_pb_toggle_title {
  padding: 1rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  transition: color var(--t);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.et_pb_toggle_title:hover { color: var(--primary); }
.et_pb_toggle_title::after { content: '+'; font-size: 1.35rem; font-weight: 300; color: var(--text-faint); }
.et_pb_toggle_open .et_pb_toggle_title::after { content: '\2212'; color: var(--primary); }

.et_pb_toggle_content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}
.et_pb_toggle_open .et_pb_toggle_content { display: block; }
.et_pb_toggle_content p { margin-bottom: 0.75rem; }
.et_pb_toggle_content a { color: var(--primary); font-weight: 600; }
.et_pb_toggle_content img { border-radius: var(--r-sm); margin: 0.5rem 0; }


/* ==================
   CLIENT AREA (Bootstrap 4 overrides)
   ================== */
.client-login-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.client-login-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.client-login-card .form-control {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--heading);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
}
.client-login-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
  background: #fff;
  color: var(--heading);
}
.client-login-card .form-control::placeholder { color: var(--text-faint); }
.client-login-card label { color: var(--text); font-weight: 600; }
.client-login-card .form-text { color: var(--text-dim); }
.client-login-card .form-text a { color: var(--primary); }

.client-login-card .btn-primary,
.client-login-card .btn-primary:focus {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 0.65rem 2rem;
  box-shadow: 0 0 15px rgba(249,115,22,0.3);
  color: #fff;
}
.client-login-card .btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 0 25px rgba(249,115,22,0.45);
  color: #fff;
}

.client-login-card .alert-danger {
  background: rgba(248,113,113,0.1);
  border-color: rgba(248,113,113,0.2);
  color: var(--danger);
  border-radius: var(--r-sm);
}
.client-login-card .alert-success {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.2);
  color: var(--success);
  border-radius: var(--r-sm);
}

/* Dashboard sub-info grid */
.sub-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sub-info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.sub-info-item:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}
.sub-info-item[data-copy] { cursor: copy; }
.sub-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}
.sub-info-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--heading);
  word-break: break-all;
}

/* Bootstrap overrides */
.alert { border-radius: var(--r-sm) !important; }
.alert-success {
  background: rgba(52,211,153,0.1) !important;
  border-color: rgba(52,211,153,0.2) !important;
  color: var(--success) !important;
}
.alert-danger {
  background: rgba(248,113,113,0.1) !important;
  border-color: rgba(248,113,113,0.2) !important;
  color: var(--danger) !important;
}

.btn-success {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  border-radius: var(--r-pill) !important;
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff !important;
}
.btn-success:hover {
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: #fff !important;
}

.btn-secondary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #1E293B !important;
  border-radius: var(--r-pill) !important;
  font-family: var(--font-head);
  font-weight: 700;
}
.btn-secondary:hover {
  background: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
  color: #1E293B !important;
}

/* Modal overrides */
.modal-content {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-lg) !important;
  color: var(--text) !important;
}
.modal-header {
  border-bottom-color: var(--border) !important;
}
.modal-header .modal-title { color: var(--heading) !important; font-family: var(--font-head); }
.modal-header .close { color: var(--text-dim) !important; }
.modal-footer { border-top-color: var(--border) !important; }
.modal-body .table { color: var(--text) !important; }
.modal-body .table td, .modal-body .table th { border-color: var(--border) !important; }

.extend_button {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1.5rem !important;
}
.extend_button:hover {
  background: var(--primary-hover) !important;
}

/* Playlist select */
.swal2-select {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  color: var(--heading) !important;
  border-radius: var(--r-sm) !important;
  padding: 0.5rem !important;
}
.swal2-input {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  color: var(--heading) !important;
  border-radius: var(--r-sm) !important;
}

/* Global form-control */
.form-control {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--heading) !important;
  border-radius: var(--r-sm) !important;
}
.form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1) !important;
  background: #fff !important;
  color: var(--heading) !important;
}
.form-control::placeholder { color: var(--text-faint) !important; }
.form-text { color: var(--text-dim) !important; }
.form-text a { color: var(--primary) !important; }


/* ==================
   COPY TOAST
   ================== */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--border-orange);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}
.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* ==================
   SCROLL TO TOP
   ================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 99;
  box-shadow: 0 0 15px rgba(249,115,22,0.3);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 25px rgba(249,115,22,0.5);
}


/* ==================
   FADE IN
   ================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==================
   RESPONSIVE
   ================== */

/* Tablets */
@media (max-width: 1024px) {
  .hero-text { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .proof-layout { grid-template-columns: 1fr; text-align: center; }
  .proof-metrics { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-info-grid { grid-template-columns: 1fr; }
}

/* Phones */
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .country-card { flex-direction: column; text-align: center; }
  .country-card .btn { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-bar-item .stat-number { font-size: 1.5rem; }
  .hero-badge { font-size: 0.8rem; }
  .cta-buttons, .final-cta-buttons { flex-direction: column; align-items: center; }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .social-proof { padding: 3.5rem 0; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
  .proof-metrics { grid-template-columns: 1fr 1fr; }
  .pricing-tab { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .feature-card { padding: 1.5rem; }
  .mobile-menu { width: 280px; }
}


/* ==================
   PRINT
   ================== */
@media print {
  .site-header,
  .mobile-menu,
  .mobile-overlay,
  .scroll-to-top,
  .stats-bar,
  .cta-banner,
  .final-cta { display: none !important; }
  body { background: #fff; color: #333; padding: 0; }
  .section { padding: 1rem 0; }
}
