/* Design Tokens & Variables - Reference Design (Laranja & Escuro) */
:root {
  --bg-primary: #121110;       /* Dark charcoal brown */
  --bg-secondary: #1b1918;     /* Medium brown-grey */
  --bg-tertiary: #262321;      /* Lightest brown-grey */
  --text-primary: #f5f4f2;     /* Warm white */
  --text-muted: #9c9793;       /* Warm neutral grey */
  --accent-orange: #ff6b00;    /* Primary brand orange */
  --accent-hover: #e05e00;     /* Darker orange hover state */
  --success-green: #22c55e;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-highlight: rgba(255, 107, 0, 0.15);
  --border-focus: rgba(255, 107, 0, 0.5);
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-600 {
  max-width: 600px;
}

.w-100 {
  width: 100%;
}

.text-orange {
  color: var(--accent-orange);
}

/* Typography & Headers */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  background: linear-gradient(to right, #ffffff, #eae8e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-top: -2rem;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  border-radius: 6px; /* Matching the sharp rectangular button style with very slight rounding */
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  border: 2px solid transparent;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 107, 0, 0.4);
}

.btn-outline:hover {
  background-color: rgba(255, 107, 0, 0.05);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(18, 17, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--transition-normal);
}

.header-scrolled {
  background-color: rgba(18, 17, 16, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  color: var(--accent-orange);
  font-size: 1.75rem;
}

.logo-accent {
  color: var(--accent-orange);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-selector-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.lang-selector-btn:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.05);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 14rem;
  padding-bottom: 10rem;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(to bottom, rgba(18, 17, 16, 0.65) 0%, rgba(18, 17, 16, 0.80) 60%, rgba(18, 17, 16, 0.98) 100%),
    url('fotoback.jpg');
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.03) 0%, rgba(18, 17, 16, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(18, 17, 16, 0) 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 850px;
  line-height: 1.15;
  background: linear-gradient(to bottom, #ffffff 0%, #e2e0db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 3.5rem;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Stats Section */
.stats-section {
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
}

.stat-num {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
}

/* Sponsors Logos Section */
.sponsors-section {
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border-color);
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.sponsor-logo {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  width: 120px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sponsor-logo:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.05);
  transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: rgba(27, 25, 24, 0.2);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.work-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.work-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.03);
}

.work-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 107, 0, 0.08);
  color: var(--accent-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.25rem;
}

.work-icon-box svg {
  width: 28px;
  height: 28px;
}

.work-card-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.work-card-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Channels Section */
.channels-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.125rem;
}

#channel-search {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.125rem 1.5rem 1.125rem 3.5rem;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
}

#channel-search:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
}

.categories-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-tab {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-tab:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.category-tab.active {
  background-color: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  min-height: 200px;
}

.channel-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: all var(--transition-normal);
}

.channel-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.channel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.channel-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-special {
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.badge-live {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-vod {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-sports {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-movies {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-series {
  background-color: rgba(236, 72, 153, 0.1);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-kids {
  background-color: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-doc {
  background-color: rgba(20, 184, 166, 0.1);
  color: #20b8a6;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.badge-news {
  background-color: rgba(107, 114, 128, 0.1);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.2);
}

.badge-music {
  background-color: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.channel-media-icon {
  font-size: 1.5rem;
}

.channel-title {
  font-size: 1.125rem;
  font-weight: 800;
}

.channel-quality {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-orange);
  background-color: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.15);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

/* Plans Section */
.plans-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  align-items: stretch;
}

.plan-card {
  background-color: #121214;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 3.5rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card.plan-highlighted {
  background-color: var(--accent-orange);
  border: none;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.plan-card.plan-highlighted:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 0, 0.25);
}

.plan-lightning {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  transform: rotate(15deg);
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.plan-highlighted .plan-name {
  color: #ffffff;
}

.plan-price {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-val {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.plan-highlighted .price-val {
  color: #ffffff;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-highlighted .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.plan-features {
  list-style: none;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.9375rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.plan-highlighted .plan-features li {
  color: #ffffff;
}

.plan-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--accent-orange);
  border-radius: 50%;
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 900;
  flex-shrink: 0;
}

.plan-highlighted .plan-features li::before {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-plan-orange {
  background-color: var(--accent-orange);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-plan-orange:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-plan-white-orange {
  background-color: #ffffff;
  color: var(--accent-orange);
  border: none;
  border-radius: 12px;
  padding: 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-plan-white-orange:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Movies Showcase Section */
.movies-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: rgba(27, 25, 24, 0.2);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.movie-card {
  text-align: left;
}

.movie-poster {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.movie-card:hover .movie-poster {
  transform: scale(1.03);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.05);
}

/* Beautiful custom posters backgrounds */
.poster-1 {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="300" viewBox="0 0 200 300"><rect width="200" height="300" fill="%23262321"/><path d="M20 50h160v200H20z" fill="%231b1918" opacity="0.5"/><text x="100" y="150" fill="%23ff6b00" font-size="64" font-weight="900" text-anchor="middle">❄️</text></svg>');
}
.poster-2 {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="300" viewBox="0 0 200 300"><rect width="200" height="300" fill="%23262321"/><path d="M20 50h160v200H20z" fill="%231b1918" opacity="0.5"/><text x="100" y="150" fill="%23ff6b00" font-size="64" font-weight="900" text-anchor="middle">🛠️</text></svg>');
}
.poster-3 {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="300" viewBox="0 0 200 300"><rect width="200" height="300" fill="%23262321"/><path d="M20 50h160v200H20z" fill="%231b1918" opacity="0.5"/><text x="100" y="150" fill="%23ff6b00" font-size="64" font-weight="900" text-anchor="middle">🎧</text></svg>');
}
.poster-4 {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="300" viewBox="0 0 200 300"><rect width="200" height="300" fill="%23262321"/><path d="M20 50h160v200H20z" fill="%231b1918" opacity="0.5"/><text x="100" y="150" fill="%23ff6b00" font-size="64" font-weight="900" text-anchor="middle">💥</text></svg>');
}

.movie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.movie-poster:hover .movie-overlay {
  opacity: 1;
}

.play-icon {
  width: 56px;
  height: 56px;
  background-color: var(--accent-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
  transform: scale(0.9);
  transition: transform var(--transition-fast);
}

.movie-poster:hover .play-icon {
  transform: scale(1);
}

.movie-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Why Choose Us Section */
.why-us-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  transition: all var(--transition-normal);
}

.why-card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 107, 0, 0.08);
  color: var(--accent-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Frequently Asked Questions Section */
.faq-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: rgba(27, 25, 24, 0.2);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1.125rem;
  font-weight: 800;
  text-align: left;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-arrow {
  color: var(--accent-orange);
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-panel p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.03);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  text-align: left;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 5rem;
  color: rgba(255, 107, 0, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.test-stars {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.test-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.test-author {
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Bottom CTA Section */
.bottom-cta-section {
  position: relative;
  padding: 10rem 0;
  background-color: #0c0b0a;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.bottom-cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, rgba(12, 11, 10, 0) 80%);
  z-index: 1;
  pointer-events: none;
}

.cta-title {
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Footer Section */
.footer {
  background-color: #070707;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-orange);
}

/* WhatsApp Floating Widget */
.whatsapp-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background-color: var(--success-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  z-index: 99;
  transition: all var(--transition-fast);
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .works-grid, .devices-grid, .channels-grid, .movies-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid, .faq-accordion-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .works-grid, .devices-grid, .channels-grid, .movies-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions, .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn, .cta-actions .btn {
    width: 100%;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Subscription Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  color: var(--text-primary);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
}
.form-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.btn-block {
  width: 100%;
}

