/* ==========================================================================
   Teal Brasil IPTV — Premium Dark Sales Stylesheet
   Design: Aggressive dark theme with teal (#00BFA6) accent
   Font: Poppins (Google Fonts)
   ========================================================================== */

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

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(0, 191, 166, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(0, 191, 166, 0.3);
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00BFA6;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #cccccc;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  color: #cccccc;
  line-height: 1.8;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: #0d0d0d;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00BFA6, #00E5C3, #00BFA6);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #888888;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, #00BFA6, #00D9B8);
  color: #0a0a0a;
  font-weight: 700;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0, 191, 166, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00E5C3, #00F0D0);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 191, 166, 0.5);
}

.btn-outline {
  background: transparent;
  color: #00BFA6;
  border: 2px solid #00BFA6;
  padding: 0.9rem 2rem;
}

.btn-outline:hover {
  background: #00BFA6;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 191, 166, 0.3);
}

.btn-danger {
  background: linear-gradient(135deg, #ff4444, #ff6666);
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 20px rgba(255, 68, 68, 0.3);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #ff6666, #ff8888);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 68, 68, 0.5);
}

.badge-hot {
  display: inline-block;
  background: #ff4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-teal {
  color: #00BFA6;
}

.text-gradient {
  background: linear-gradient(135deg, #00BFA6, #00E5C3, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   3. HEADER
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 191, 166, 0.1);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(0, 191, 166, 0.2);
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00BFA6;
  letter-spacing: -0.5px;
}

.logo span {
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: #cccccc;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00BFA6;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #00BFA6;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: #00BFA6;
}

.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 191, 166, 0.06) 0%, #0a0a0a 70%);
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(0, 191, 166, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(0, 191, 166, 0.02) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, -1%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 191, 166, 0.1);
  color: #00BFA6;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 191, 166, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, #00BFA6, #00E5C3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #999999;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.hero-stat .stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #00BFA6;
  line-height: 1.2;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Page Hero (subpages) */
.page-hero {
  padding: 150px 20px 60px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 191, 166, 0.04) 0%, #0a0a0a 70%);
  position: relative;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: #888888;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   5. FEATURES GRID
   ========================================================================== */

.features {
  padding: 5rem 0;
}

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

.feature-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00BFA6, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 191, 166, 0.3);
  box-shadow: 0 10px 40px rgba(0, 191, 166, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.7;
}

/* ==========================================================================
   6. PRICING
   ========================================================================== */

.pricing {
  padding: 5rem 0;
}

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

.pricing-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: visible;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 191, 166, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
  border: 2px solid #00BFA6;
  transform: scale(1.05);
  z-index: 1;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 191, 166, 0.15);
}

.plan-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00BFA6, #00D9B8);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-card.popular .plan-badge {
  background: linear-gradient(135deg, #ff4444, #ff6666);
  color: #ffffff;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.plan-price {
  text-align: center;
  margin-bottom: 0.25rem;
}

.plan-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00BFA6;
  vertical-align: super;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00BFA6;
  line-height: 1;
}

.plan-price .decimal {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00BFA6;
  vertical-align: super;
}

.plan-period {
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 1.5rem;
}

.plan-discount {
  display: inline-block;
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.plan-features {
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-features li::before {
  content: '✓';
  color: #00BFA6;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
}

.plan-old-price {
  text-align: center;
  font-size: 0.95rem;
  color: #666666;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   7. STEPS / COMO FUNCIONA
   ========================================================================== */

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

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00BFA6, #00D9B8);
  color: #0a0a0a;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 191, 166, 0.25);
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: #888888;
  max-width: 300px;
  margin: 0 auto;
}

/* ==========================================================================
   8. DEVICES
   ========================================================================== */

.devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  min-width: 150px;
  flex: 0 1 auto;
  transition: all 0.4s ease;
}

.device-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 191, 166, 0.3);
  box-shadow: 0 10px 30px rgba(0, 191, 166, 0.08);
}

.device-item .device-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.device-item span,
.device-item p {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */

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

.testimonial-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 191, 166, 0.2);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: #00BFA6;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00BFA6, #00D9B8);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #888888;
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(0, 191, 166, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  gap: 1rem;
}

.faq-question:hover {
  color: #00BFA6;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #00BFA6;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p,
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==========================================================================
   11. CTA SECTIONS
   ========================================================================== */

.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 191, 166, 0.06) 0%, transparent 70%);
  position: relative;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #888888;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  font-size: 1.1rem;
  padding: 1.1rem 3rem;
}

.cta-banner {
  background: linear-gradient(135deg, #00BFA6, #00D9B8);
  color: #0a0a0a;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.cta-banner h2,
.cta-banner h3 {
  color: #0a0a0a;
}

.cta-banner p {
  color: rgba(10, 10, 10, 0.7);
}

.cta-banner .btn {
  background: #0a0a0a;
  color: #00BFA6;
  font-weight: 700;
}

.cta-banner .btn:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.urgency-text {
  color: #ff4444;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   12. CONTACT
   ========================================================================== */

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

.method-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  text-align: center;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 191, 166, 0.3);
  box-shadow: 0 10px 30px rgba(0, 191, 166, 0.08);
}

.method-card .method-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.method-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.method-card p {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 1rem;
}

.method-card a {
  color: #00BFA6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.method-card a:hover {
  color: #00E5C3;
}

.form-section {
  padding: 3rem 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00BFA6;
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555555;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300BFA6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #111111;
  color: #ffffff;
}

.form-submit {
  width: 100%;
}

/* ==========================================================================
   13. CHANNEL PAGE
   ========================================================================== */

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 191, 166, 0.3);
  color: #cccccc;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #00BFA6;
  color: #00BFA6;
}

.filter-btn.active {
  background: #00BFA6;
  color: #0a0a0a;
  border-color: #00BFA6;
  font-weight: 600;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.channel-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.channel-card:hover {
  border-color: rgba(0, 191, 166, 0.2);
  transform: translateY(-3px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-header .card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  flex-grow: 1;
}

.card-header .count-badge {
  background: rgba(0, 191, 166, 0.15);
  color: #00BFA6;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  color: #cccccc;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  text-align: center;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1rem;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00BFA6;
  display: block;
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: #888888;
  margin-top: 0.25rem;
}

/* ==========================================================================
   14. FAQ PAGE SPECIFIC
   ========================================================================== */

.faq-category {
  margin-bottom: 2rem;
}

.faq-category-title {
  color: #00BFA6;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 191, 166, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-category-title .cat-icon {
  font-size: 1.3rem;
}

/* ==========================================================================
   15. COMPARISON TABLE
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #111111;
  font-size: 0.95rem;
}

.comparison-table th {
  background: #1a1a1a;
  color: #00BFA6;
  font-weight: 700;
  padding: 1rem 1.2rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid rgba(0, 191, 166, 0.2);
}

.comparison-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #cccccc;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check {
  color: #00BFA6;
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-table .cross {
  color: #ff4444;
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-table th.hl,
.comparison-table td.hl {
  background: rgba(0, 191, 166, 0.06);
}

.comparison-table th.hl {
  background: rgba(0, 191, 166, 0.15);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: #888888;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #00BFA6;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00BFA6;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #666666;
}

/* ==========================================================================
   17. WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   18. ANNOUNCEMENT BAR & URGENCY / SALES ELEMENTS
   ========================================================================== */

.announcement-bar {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 15px rgba(255, 68, 68, 0.4);
  animation: announcementShimmer 3s ease-in-out infinite;
}

@keyframes announcementShimmer {
  0%, 100% { background: linear-gradient(135deg, #ff4444, #cc0000); }
  50% { background: linear-gradient(135deg, #cc0000, #ff4444); }
}

.announcement-bar p {
  color: #ffffff;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.announcement-bar a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

.announcement-bar a:hover {
  color: #FFD700;
}

/* Push header down when announcement bar is present */
.announcement-bar + .header,
.announcement-bar ~ .header {
  top: 40px;
}

/* Push page content down for announcement + header */
.announcement-bar ~ .header ~ .nav-overlay ~ .page-hero,
.announcement-bar ~ .header ~ .nav-overlay ~ .hero {
  padding-top: 190px;
}

/* Trust Badges */
.trust-badges {
  padding: 2rem 0;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: #cccccc;
  transition: all 0.3s ease;
}

.badge-item:hover {
  border-color: rgba(0, 191, 166, 0.3);
  background: rgba(0, 191, 166, 0.05);
}

.badge-item .badge-icon {
  font-size: 1.2rem;
}

/* Social Proof Bar */
.social-proof-bar {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.05), rgba(0, 191, 166, 0.02));
  border-top: 1px solid rgba(0, 191, 166, 0.1);
  border-bottom: 1px solid rgba(0, 191, 166, 0.1);
}

.proof-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

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

.proof-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #00BFA6;
  line-height: 1.2;
}

.proof-label {
  font-size: 0.85rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Guarantee Card */
.guarantee-card {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.08), rgba(0, 191, 166, 0.02));
  border: 2px solid rgba(0, 191, 166, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.guarantee-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.guarantee-card p {
  font-size: 1.05rem;
  color: #aaaaaa;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Plan Note */
.plan-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888888;
  margin-top: 1rem;
  font-style: italic;
}

/* CTA Buttons row */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Payment Methods section */
.payment-methods {
  padding: 4rem 0;
}

.payment-methods .badges-grid {
  gap: 2rem;
}

.payment-methods .badge-item {
  border-radius: 16px;
  padding: 1.5rem 2rem;
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
  flex: 1 1 200px;
}

.payment-methods .badge-item .badge-icon {
  font-size: 2rem;
}

.countdown-bar {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  z-index: 999;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.countdown-bar + main,
.countdown-bar ~ .hero,
.countdown-bar ~ .page-hero {
  margin-top: 45px;
}

.flash-badge {
  display: inline-block;
  background: #ff4444;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  animation: pulse 1.5s ease-in-out infinite;
}

.discount-tag {
  position: absolute;
  top: 15px;
  right: -10px;
  background: #ff4444;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem 0.3rem 0.8rem;
  transform: rotate(5deg);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
}

.discount-tag::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  border-left: 5px solid transparent;
  border-top: 5px solid #cc0000;
}

.limited-offer {
  border: 2px dashed #ff4444;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 68, 68, 0.03);
}

.limited-offer p {
  color: #ff4444;
  font-weight: 600;
}

/* ==========================================================================
   19. ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.popular {
    transform: scale(1);
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

/* Tablet Portrait / Mobile */
@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Mobile Nav */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #0a0a0a;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    gap: 0;
    z-index: 1001;
    border-left: 1px solid rgba(0, 191, 166, 0.1);
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-menu a::after {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 130px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  /* Page Hero */
  .page-hero {
    padding: 120px 20px 40px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  /* Grids to single column */
  .features-grid,
  .pricing-grid,
  .pricing-grid.cols-4,
  .testimonials-grid,
  .steps-grid,
  .methods-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: scale(1);
  }

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

  /* Section titles */
  .section-title {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  /* Channels */
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Comparison Table */
  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.8rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form */
  .form-wrapper {
    padding: 1.5rem;
  }

  /* Announcement bar */
  .announcement-bar {
    font-size: 0.78rem;
    padding: 8px 15px;
  }

  .announcement-bar + .header,
  .announcement-bar ~ .header {
    top: 36px;
  }

  .announcement-bar ~ .header ~ .nav-overlay ~ .page-hero,
  .announcement-bar ~ .header ~ .nav-overlay ~ .hero {
    padding-top: 170px;
  }

  .proof-items {
    gap: 1.5rem;
  }

  .proof-number {
    font-size: 1.5rem;
  }

  /* Countdown bar */
  .countdown-bar {
    font-size: 0.8rem;
    padding: 8px 15px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  section {
    padding: 3.5rem 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  h2,
  .section-title {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .plan-price .amount {
    font-size: 2.8rem;
  }

  .btn-primary {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  .devices-grid {
    gap: 0.75rem;
  }

  .device-item {
    min-width: 120px;
    padding: 1.2rem 1rem;
  }
}
