/* CSS Custom Properties */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --text-white: #ffffff;

  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-dark: #111827;
  --bg-darker: #0f172a;

  --border-color: #e5e7eb;
  --border-dark: #374151;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.nav-logo img {
  height: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

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

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 100PX;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, var(--primary-color) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, var(--secondary-color) 2px, transparent 2px),
    radial-gradient(circle at 40% 80%, var(--accent-color) 2px, transparent 2px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

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

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
}

.feature-item i {
  color: var(--success-color);
  font-size: 1.25rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.cta-note i {
  color: var(--success-color);
}

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

.device-mockup {
  width: 300px;
  height: 200px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.screen {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.streaming-content {
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  height: 100%;
}

.content-item {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-sm);
  animation: pulse 2s ease-in-out infinite;
}

.content-item:nth-child(2) {
  animation-delay: 0.5s;
}
.content-item:nth-child(3) {
  animation-delay: 1s;
}
.content-item:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.brand-scroll {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}

.brand-scroll img {
  height: 40px;
  opacity: 0.6;
  transition: var(--transition);
}

.brand-scroll img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* Features Section */
.features {
  padding: 6rem 0;
}

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

.feature-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Showcase Section */
.showcase {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.showcase-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.showcase-feature i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.content-carousel {
  position: relative;
  /* width: 300px; */
  height: 400px;
  margin: 0 auto;
}

.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.content-slide.active {
  opacity: 1;
}

.content-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: var(--bg-dark);
  color: var(--text-white);
}

.pricing .section-title,
.pricing .section-subtitle {
  color: var(--text-white);
}

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

.pricing-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-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pricing-duration {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-light);
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.pricing-features i {
  color: var(--success-color);
}

.pricing-guarantee {
  text-align: center;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-guarantee i {
  color: var(--success-color);
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
}

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

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

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

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

.faq-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
}

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

.testimonial-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: var(--warning-color);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: var(--text-white);
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background: var(--bg-primary);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--bg-secondary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 10rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.payment-methods {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-methods img {
  /* height: 30px; */
  width: 59px;
  height: 43px;
  background: white;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding: 4rem 0;
  }

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

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

  .device-mockup {
    width: 250px;
    height: 150px;
  }

  .content-carousel {
    width: 200px;
    height: 300px;
  }

  .pricing-card {
    padding: 1.5rem;
  }

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}


/*//////////////////////////////*/


/* =========================
   RESPONSIVE FIX PACK (2025-08)
   ========================= */

/* 1) Normalize hero spacing and image behavior */
.hero { padding-top: 100px; } /* normalize unit case */
img { max-width: 100%; height: auto; display: block; }

/* 2) Header sizing variable for mobile menu placement */
:root { --header-h: 64px; }

/* 3) Mobile nav: slide from under the header (not from bottom) */
@media (max-width: 768px) {
  .header { height: var(--header-h); }           /* makes header height predictable */
  .nav { padding: .75rem 1rem; }

  .nav-logo img { height: 32px; }                /* smaller logo on phones */

  .nav-toggle { display: block; }                /* ensure burger shows */
  
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  /* Lock scroll when menu is open */
  body.no-scroll { overflow: hidden; }
}

/* 4) WhatsApp float button - keep it smaller on tiny screens */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}

/* 5) Safety: prevent tall panels from pushing layout sideways */
.container { overflow-wrap: anywhere; }
/* =========================
   RESPONSIVE HOTFIX PACK
   ========================= */

/* 1) Layout guards */
img, svg, video, canvas {max-width:100%;height:auto}
iframe {max-width:100%}
.container {width: min(1200px, 100% - 2rem); margin-inline:auto;}

/* 2) Fixed header offset + consistent height */
:root { --header-height: 64px; }
.header { height: var(--header-height); }
.nav { height: var(--header-height); padding: 0 1rem; }
body { padding-top: var(--header-height); } /* prevents content hiding under fixed header */

/* 3) Mobile 100vh fix (pairs with JS --vh var below) */
.hero { min-height: calc(var(--vh, 1vh) * 100); padding-top: 2rem; }
@media (max-width: 768px){
  .hero { padding-top: 1rem; }
}

/* 4) Hero grid & mockup on small screens */
.hero-content { gap: 2rem; }
@media (max-width: 768px){
  .hero-content { grid-template-columns: 1fr; text-align:center; }
  .hero-visual { order: -1; } /* show device first on mobile if desired */
  .device-mockup { width: 100%; max-width: 320px; height: 200px; margin-inline:auto; }
}

/* 5) Kill horizontal scrolling + rogue overflow */
html, body { overflow-x: hidden; }
[class*="brand-"], .brand-scroll { overflow:hidden; }
.brand-scroll img { height: 32px; } /* slightly smaller for tiny screens */

/* 6) Navigation (mobile drawer) */
@media (max-width: 768px){
  .nav-toggle { display:block; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events:none;
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1; visibility: visible; pointer-events:auto;
  }
  .nav-list { flex-direction: column; padding: 1rem; gap: .5rem; }
}

/* 7) Showcase carousel & posters sizing */
.content-carousel { width: 100%; 
  /* max-width: 320px;  */
  height: 420px; }
@media (max-width: 480px){
  .content-carousel { max-width: 260px; height: 360px; }
}

/* 8) Pricing cards breathing room */
@media (max-width: 480px){
  .pricing-card { padding: 1.25rem; }
  .price-amount { font-size: 2.6rem; }
}

/* 9) Trust stats stack cleanly */
@media (max-width: 768px){
  .trust-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-stats { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
}
@media (max-width: 480px){
  .trust-stats { grid-template-columns: 1fr 1fr; }
}

/* 10) Prevent whitespace blocks inside sections */
section { overflow: clip; } /* avoids accidental inner overflow causing gaps */
/* Devices / Logos grid – premium responsive */
.devices { padding: 48px 0; }
.devices-head { text-align: center; margin-bottom: 24px; }
.devices-title { margin: 0 0 6px; font-weight: 800; font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.devices-subtitle { color: var(--text-muted, #6b7280); margin: 0; }

.device-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px,1fr));
  gap:clamp(10px,2vw,16px);
  margin:0; padding:0; list-style:none;
}

/* Uniform cards with consistent height */
.device-card{
  background:#fff; /* force light background */
  border:1px solid #e5e7eb; /* light neutral */
  border-radius:14px;
  aspect-ratio:5/2;
  display:grid; place-items:center;
  padding:clamp(10px,2.4vw,18px);
  box-shadow:0 1px 2px rgba(0,0,0,.03);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  overflow:hidden;
  
}
.device-card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  border-color:#86b7fe; /* accent border */
}

/* Logo normalization */
.device-card img{
  max-width:70%;
  max-height:60%;
  object-fit:contain;
  filter:grayscale(0%) contrast(1.05);
  opacity: 1;
  transition:filter .2s ease, opacity .2s ease, transform .2s ease;
  
}
.device-card:hover img,
.device-card:focus-within img{
  filter:none; opacity:1; transform:scale(1.02);
}

/* Feature trio under the grid */
.features-grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:32px;
}
@media (max-width: 768px){
  .features-grid3{ grid-template-columns:1fr; }
}
.feature-card2{
  background:#fff; /* white always */
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:20px;
  display:grid;
  gap:8px;
  text-align:center;
}
.feature-icon2{
  display:grid; place-items:center;
  width:48px;height:48px;margin-inline:auto;
  border-radius:12px;
  background:color-mix(in oklab, var(--gradient-accent,#ff6b35) 20%, #fff 80%);
}
.feature-icon2 i{ font-size:1.2rem; color:#111; }

/* Small screens: smaller cards */
@media (max-width: 380px){
  .device-grid{ grid-template-columns:repeat(auto-fit, minmax(120px,1fr)); }
  .device-card{ aspect-ratio:16/7; }
}


/* 🔄 Infinite marquee effect for brand/movies/sports carousels */
.scroll-container {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.scroll-container img {
  height: 80px; /* adjust to fit design */
  flex: 0 0 auto;
  object-fit: contain;
}

/* Duplicate content wrapper for smooth loop */
.scroller__inner2024 {
  display: flex;
  gap: 2rem;
  animation: scrollLoop 20s linear infinite;
}

@keyframes scrollLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Move half length to loop seamlessly */
}

/* Optional: speed tweaks */
/* .custsport .scroller__inner2024 { animation-duration: 15s; }  sports logos faster */
/* .movies-cust .scroller__inner2024 { animation-duration: 25s; } movies slower */
/* ===== Infinite Slider (continuous) ===== */
.infinite-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.infinite-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
}

.infinite-track img {
  display: block;
  height: 80px;              /* adjust per section with a wrapper if needed */
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(0);      /* show full-color; set 100% if you want grayscale */
}

/* Movies & Sports posters often taller; tweak heights per section */
.movies-showcase .infinite-track img { height: 240px; }
.sports-section  .infinite-track img { height: 180px; }

/* Hover pause cue (optional) */
.infinite-slider:hover { cursor: grab; }

/* Kill legacy marquee animations inside the JS infinite slider */
.infinite-slider .infinite-track {
  animation: none !important;
  transform: translateX(0); /* JS will overwrite this on the next frame */
}

/* If your old CSS targeted `.custsport` specifically, null it here */
.infinite-slider .infinite-track.custsport {
  animation: none !important;
}

/* Give JS full control inside the new engine */
.infinite-slider .infinite-track,
.infinite-slider .infinite-track.movies-cust {
  animation: none !important;
  transform: translateX(0); /* JS will take over next frame */
}

/* Keep movies-specific visuals without motion */
.infinite-slider .infinite-track.movies-cust img {
  height: 240px;          /* your visual sizing */
  object-fit: cover;
  border-radius: 8px;     /* optional polish */
}

/* === KILL LEGACY MARQUEE / TRANSFORMS inside the new slider === */
.infinite-slider .infinite-track,
.infinite-slider .infinite-track * {
  animation: none !important;
  transition: none !important;
}

/* Important: let JS own the transform on its internal motion node */
.infinite-slider .infinite-track {
  transform: none !important;
  will-change: auto !important;
  display: flex; gap: 2rem;
  align-items: center;
  overflow: hidden;
}

/* Default sizing (tweak per lane if needed) */
.infinite-slider .infinite-track img { height: 80px; object-fit: contain; }
.movies-showcase .infinite-slider .infinite-track img { height: 240px; }
.sports-section  .infinite-slider .infinite-track img { height: 180px; }

/* OPTIONAL: pause on hover visual */
.infinite-slider:hover { cursor: grab; }


/* neutralize any legacy marquee animations inside the new slider */
.infinite-slider .infinite-track,
.infinite-slider .infinite-track * { animation: none !important; transition: none !important; }

/* structure */
.infinite-slider { overflow: hidden; }
.infinite-slider .infinite-track { display: flex; gap: 12px; align-items: center; }
.infinite-slider .infinite-track .is-motion { display: flex; gap: inherit; }

/* default logo size (adjust freely) */
.infinite-slider .infinite-track img { height: 90px; object-fit: contain; }

/* example per-lane tuning */
.movies-showcase .infinite-track { gap: 10px; }
.movies-showcase .infinite-track img { height: 200px; }

.sports-section .infinite-track { gap: 12px; }
.sports-section .infinite-track img { height: 160px; }


/* ===== Device logos — polished light design ===== */

/* Section head (optional, if you show a title above the grid) */
.devices-head {
  text-align: center;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.devices-title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #0f172a; /* slate-900 */
}
.devices-subtitle {
  margin: 0;
  color: #64748b; /* slate-500 */
}

/* Grid */
.device-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(12px, 2vw, 16px);
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Cards: light, airy, consistent height */
.device-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);            /* subtle border */
  border-radius: 16px;
  aspect-ratio: 5 / 2;                                  /* consistent tiles */
  display: grid;
  place-items: center;
  padding: clamp(10px, 2.2vw, 18px);
  box-shadow: 0 1px 2px rgba(2, 6, 23, 0.04);           /* soft shadow */
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease;
  overflow: hidden;
}

/* Hover / focus polish */
.device-card:hover,
.device-card:focus-within{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
  border-color: rgba(59, 130, 246, 0.35);               /* blue accent */
}

/* Logos: normalized sizing + grayscale to color on hover for brand consistency */
.device-card img{
  max-width: 72%;
  max-height: 56px;                                     /* desktop logo height */
  object-fit: contain;
  filter: grayscale(0%) contrast(1.05) brightness(0.95);
  opacity: 1;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}
.device-card:hover img,
.device-card:focus-within img{
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

/* Accessibility focus ring */
.device-card:focus-within{
  outline: 3px solid rgba(59, 130, 246, 0.25);
  outline-offset: 2px;
}

/* Tight, balanced mobile layout */
@media (max-width: 1024px){
  .device-grid{ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .device-card img{ max-height: 50px; }
}
@media (max-width: 768px){
  .device-grid{ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .device-card{ aspect-ratio: 16 / 7; }
  .device-card img{ max-height: 44px; }
}
@media (max-width: 480px){
  .device-grid{ gap: 10px; }
  .device-card{ border-radius: 14px; }
  .device-card img{ max-height: 40px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .device-card,
  .device-card img{ transition: none !important; }
  .device-card:hover{ transform: none; }
}

/* Roadmap (matches DexoTV aesthetic) */
.roadmap { padding: 4rem 0; }
.roadmap-row { align-items: center; gap: 2rem 0; }

.roadmap-box, .roadmap-cta {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.timeline {
  position: relative;
  margin: 2rem 0 0 0;
  padding-left: 1.75rem; /* room for line */
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  opacity: 0.25;
  border-radius: 2px;
}
.timeline-item { position: relative; display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: start; }
.timeline-item + .timeline-item { margin-top: 1.25rem; }

.timeline-badge {
  grid-column: 1 / 2;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff; font-weight: 700;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  grid-column: 2 / 3;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
}
.timeline-content h3 { margin: 0 0 .25rem 0; font-size: 1.05rem; }
.timeline-content p { margin: 0; color: var(--text-secondary); }

@media (max-width: 767px) {
  .timeline { padding-left: 1.25rem; }
  .timeline::before { left: 0.5rem; }
  .timeline-item { grid-template-columns: 2.5rem 1fr; }
  .timeline-badge { width: 2.25rem; height: 2.25rem; }
}
.roadmap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;   /* ✅ centers both columns vertically */
}

/* Left & right containers */
.roadmap-left, .roadmap-right {
  padding: 1.5rem;
}

/* Timeline styling same as before */
.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 1.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  opacity: .3;
}
.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.timeline-badge {
  min-width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
}

/* CTA */
.roadmap-cta {
  background: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.roadmap-cta-title {
  margin-bottom: .5rem;
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
  .roadmap-row {
    grid-template-columns: 1fr;
    align-items: start; /* stack normally on mobile */
  }
}
/* Photos in testimonials (AneeTV-like) */
.testimonial-card.with-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-photo {
  margin-top: 0.75rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial-photo img {
  width: 17rem;              /* similar visual weight to AneeTV */
  max-width: 100%;
  height: auto;
  border-radius: 16px;       /* soft rounded corners */
  box-shadow: var(--shadow-md, 0 6px 20px rgba(0,0,0,.12));
}

/* optional: emphasize author name more like a caption above photo */
.testimonial-author {
  text-align: center;
  margin-top: .5rem;
}
.testimonial-author strong {
  display: block;
  font-weight: 700;
}
.testimonial-author span {
  display: block;
  opacity: .8;
  font-size: .95rem;
}

/* spacing harmony with your grid */
.testimonials-grid .testimonial-card.with-photo {
  padding-bottom: 1rem;
}
/* Uniform, responsive testimonial images */
.testimonial-card.with-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Controls the visual size (same across all cards) */
:root {
  /* change width or ratio if you prefer */
  --tphoto-max-w: 420px;
  --tphoto-radius: 18px;
  --tphoto-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.testimonial-photo {
  width: min(100%, var(--tphoto-max-w));
  aspect-ratio: 16 / 9;        /* keeps all images same shape */
  margin: 0.75rem auto 0;
  border-radius: var(--tphoto-radius);
  overflow: hidden;
  box-shadow: var(--tphoto-shadow);
  background: #0b0b0b;         /* nice fallback behind letterboxing */
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* crops to fill the frame uniformly */
  object-position: center;
  display: block;
}

/* Make cards consistent height and tidy spacing */
.testimonials-grid .testimonial-card {
  height: 100%;
}
.testimonials-grid {
  align-items: stretch;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  :root { --tphoto-max-w: 360px; }
}
@media (max-width: 640px) {
  :root { --tphoto-max-w: 100%; } /* full width inside card on phones */
}

