/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.nav {
  padding: 0.75rem 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--motiva-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--motiva-gradient);
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: hsl(var(--muted));
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: hsl(var(--foreground));
  transition: all 0.3s ease;
  margin: 2px 0;
}

.mobile-nav {
  display: none;
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
}

.mobile-nav-content {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--motiva-primary);
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .whatsapp-text {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(235, 31, 143, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 50% 120%, rgba(148, 23, 235, 0.1) 0%, transparent 60%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  max-width: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-media-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-play-btn {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hero-play-btn i {
  margin-left: 0.25rem;
}

.hero-floating-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  pointer-events: auto;
}

.floating-stat-1 {
  top: -0.5rem;
  right: -0.5rem;
}

.floating-stat-2 {
  bottom: -0.5rem;
  left: -0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--motiva-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-center {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(235, 31, 143, 0.1);
  color: var(--motiva-primary);
  border: 1px solid rgba(235, 31, 143, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-heading {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hero-iptv {
  color: var(--motiva-primary);
  font-size: 1.75rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-iptv {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-iptv {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 24rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-trust {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 24rem;
  line-height: 1.5;
}

/* Features Section */
.features-section {
  background: hsl(var(--muted) / 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem auto;
  background: var(--motiva-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-title {
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.feature-description {
  color: hsl(var(--muted-foreground));
}

/* Pricing Section */
.pricing-section {
  background: hsl(var(--background));
}

.device-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.device-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 0.25rem;
}

.device-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.device-option.active {
  background: hsl(var(--background));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.device-option i {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.device-option.active i {
  color: hsl(var(--foreground));
}

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

.device-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.device-desc {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0.25rem 0;
}

.device-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.currency-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.currency-options {
  display: flex;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 0.25rem;
}

.currency-option {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.currency-option.active {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--motiva-primary);
  box-shadow: 0 8px 25px rgba(235, 31, 143, 0.15);
  transform: scale(1.05);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--motiva-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.popular-badge {
  position: absolute;
  top: -0;
  right: -0;
  background: var(--motiva-primary);
  color: white;
  padding: 0.5rem;
  border-bottom-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--motiva-gradient);
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pricing-badge.secondary {
  background: hsl(var(--secondary));
  color: white;
}

.pricing-devices {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-symbol {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.price-monthly {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pricing-features i {
  color: var(--motiva-primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-btn.primary {
  background: var(--motiva-gradient);
  color: white;
}

.pricing-btn.primary:hover {
  box-shadow: 0 0 20px rgba(235, 31, 143, 0.3), 0 0 40px rgba(148, 23, 235, 0.2);
}

.pricing-btn.secondary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.pricing-btn.secondary:hover {
  background: hsl(var(--primary) / 0.9);
}

.pricing-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Lifetime Plan */
.lifetime-plan {
  max-width: 28rem;
  margin: 0 auto;
}

.lifetime-card {
  position: relative;
  background: hsl(var(--card));
  border: 2px solid var(--motiva-primary);
  border-radius: var(--radius);
  padding: 2rem;
}

.lifetime-header {
  text-align: center;
  margin-bottom: 2rem;
}

.lifetime-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lifetime-title i {
  color: var(--motiva-primary);
}

.lifetime-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--motiva-gradient);
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.lifetime-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.lifetime-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.lifetime-price .price-symbol {
  font-size: 2rem;
}

.lifetime-price .price-amount {
  font-size: 4rem;
  background: var(--motiva-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lifetime-price .price-decimal {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.lifetime-features {
  list-style: none;
  margin-bottom: 2rem;
}

.lifetime-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.lifetime-features i {
  color: var(--motiva-primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.lifetime-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--motiva-gradient);
  color: white;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lifetime-btn:hover {
  box-shadow: 0 0 20px rgba(235, 31, 143, 0.3), 0 0 40px rgba(148, 23, 235, 0.2);
}

.pricing-disclaimers {
  text-align: center;
  margin-top: 2rem;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.security-info {
  background: hsl(var(--muted) / 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Channels Section */
.channels-section {
  background: hsl(var(--muted) / 0.3);
}

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

.channels-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--motiva-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

.channels-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.category-item {
  text-align: center;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-item i {
  font-size: 2rem;
  color: var(--motiva-primary);
  margin-bottom: 1rem;
}

.category-item h3 {
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.category-item p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.channels-cta {
  margin-top: 3rem;
}

/* Services Section */
.services-section {
  background: hsl(var(--background));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem auto;
  background: var(--motiva-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.service-title {
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.service-description {
  color: hsl(var(--muted-foreground));
}

/* Testimonials Section */
.testimonials-section {
  background: hsl(var(--muted) / 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: #fbbf24;
}

.testimonial-text {
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.author-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* How It Works Section */
.how-it-works-section {
  background: hsl(var(--background));
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--motiva-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
}

.step-title {
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.step-description {
  color: hsl(var(--muted-foreground));
}

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  text-align: left;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  margin: 1rem 0 1.5rem 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.footer-title {
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--motiva-primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.footer-contact i {
  color: var(--motiva-primary);
}

.footer-contact a {
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--motiva-primary);
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
}

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

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

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--motiva-primary);
}

.separator {
  color: hsl(var(--muted-foreground));
}

/* Hero responsive adjustments */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
  }

  .hero-right {
    order: -1;
  }

  .hero-left {
    text-align: center;
    align-items: center;
  }

  .hero-description {
    max-width: 32rem;
    margin: 0 auto 2rem auto;
  }

  .hero-trust {
    max-width: 30rem;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

  .floating-stat {
    position: relative;
    display: inline-block;
    margin: 0.5rem;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .hero-floating-stats {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    min-height: calc(100vh - 4rem);
  }

  .hero-grid {
    max-width: 100%;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-iptv {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.875rem;
    max-width: 26rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }

  .hero-play-btn {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
  }

  .floating-stat {
    padding: 1rem;
  }

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

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
