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

:root {
  /* Colors */
  --bg-dark: #FFFFFF;
  --bg-card: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --accent-primary: #E63946;
  --accent-secondary: #1D3557;
  --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, #FF4D6D 100%);
  --gradient-glow: linear-gradient(90deg, rgba(230, 57, 70, 0.3), rgba(255, 77, 109, 0.3));
  
  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.05);
  --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  
  /* Layout */
  --container-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #FFFFFF;
  background-image:
    /* Soft color blobs in corners */
    radial-gradient(ellipse at 0% 0%,   rgba(230, 57, 70, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%,  rgba(29, 53, 87, 0.07)  0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(230, 57, 70, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 0% 100%,  rgba(29, 53, 87, 0.06)  0%, transparent 45%),
    /* Fine dot grid */
    radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-main);
}
h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 6rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #FF4D6D 0%, var(--accent-primary) 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: #FFF0F2;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

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

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

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section — Cinematic Streamverse Style */
.hero-cinematic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background: transparent;
}

.hero-cinematic-bg {
  position: absolute;
  inset: 1.5rem;
  border-radius: 36px;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background-color: #0f172a;
}

.hero-cinematic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 20, 0.25) 0%,
    rgba(5, 5, 20, 0.50) 40%,
    rgba(5, 5, 20, 0.80) 75%,
    rgba(5, 5, 20, 0.92) 100%
  );
  z-index: 1;
}

.hero-cinematic .container {
  position: relative;
  z-index: 10;
}

.hero-cinematic-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding-top: 4rem;
}

.hero-cinematic-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.8vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-cinematic-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-cinematic-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* White badge variant for dark backgrounds */
.hero-badges-dark {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.badge-text-white {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

/* White outline button for dark backgrounds */
.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  color: #fff;
}

.btn-hero-cta {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border-radius: 50px;
  background: #fff;
  color: #0a0a1a;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35);
  background: #f0f0f0;
}

.btn-hero-cta::before {
  display: none;
}

.hero-cinematic-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Override header for cinematic hero: transparent nav on top of dark image */
.header-hero {
  background: transparent;
  height: 100px;
}

.header-hero .logo,
.header-hero .nav-link,
.header-hero .mobile-menu-btn {
  color: #fff;
}

.header-hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.header-hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header-hero.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.header-hero.scrolled .logo,
.header-hero.scrolled .nav-link,
.header-hero.scrolled .mobile-menu-btn {
  color: var(--text-main);
}

.header-hero.scrolled .btn-outline {
  color: var(--text-main);
  border-color: var(--glass-border);
  background: var(--bg-card);
}

.header-hero.scrolled .btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: #FFF0F2;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-main);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Features Bento Grid */
.features-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
  margin-top: 3rem;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.2);
}

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

.bento-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 15px rgba(230, 57, 70, 0.3);
}

.bento-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.bento-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Background large decorative icon */
.bento-bg-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
  font-size: 6rem;
  color: rgba(230, 57, 70, 0.03);
  z-index: -1;
  transition: all 0.5s ease;
}

.bento-card:hover .bento-bg-icon {
  transform: scale(1.1) rotate(-10deg);
  color: rgba(230, 57, 70, 0.06);
}

/* Spans */
.bento-span-2 {
  grid-column: span 2;
}

.bento-span-row-2 {
  grid-row: span 2;
}

.bento-span-row-2 .bento-bg-icon {
  bottom: 10px;
  right: -30px;
  font-size: 9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-span-row-2 {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .features-bento {
    grid-template-columns: 1fr;
  }
  .bento-span-2 {
    grid-column: span 1;
  }
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.pricing-card.popular {
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

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

.price-features {
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li i {
  color: var(--accent-primary);
}

/* Testimonials Section (Scrolling Marquee) */
.testimonials-section {
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: #FFF0F2;
}

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.scroll-btn {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: var(--text-main);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  position: absolute;
}
.scroll-btn:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}
#scroll-left { left: 0px; }
#scroll-right { right: 0px; }

.scroller {
  max-width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  width: max-content;
  padding-left: 2rem;
  padding-right: 2rem;
  animation: whatsapp-scroll 45s linear infinite;
}

.scroller__inner:hover {
  animation-play-state: paused;
}

@keyframes whatsapp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 400px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 57, 70, 0.2);
}

.testimonial-card .stars {
  color: #F59E0B;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.testimonial-card .stars i {
  margin-right: 5px;
}

.testimonial-text {
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-author {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-author strong {
  color: var(--text-main);
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 300px;
    padding: 1.5rem;
  }
}

/* WhatsApp Testimonial Card Styles */
.testimonial-card.whatsapp-card {
  width: 320px;
  padding: 1.25rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
}

.whatsapp-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.whatsapp-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.whatsapp-card-info {
  display: flex;
  flex-direction: column;
}

.whatsapp-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.whatsapp-card-subtitle {
  font-size: 0.75rem;
  color: #25D366;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.whatsapp-img-container {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #efeae2;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
}

.whatsapp-img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.testimonial-card.whatsapp-card:hover .whatsapp-img-container img {
  transform: scale(1.02);
}

.whatsapp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.whatsapp-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0ea5e9;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--accent-secondary);
  color: #fff;
  border-top: none;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer .logo, .footer .footer-title {
  color: #fff;
}
.footer p {
  color: rgba(255,255,255,0.7);
}

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

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

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

/* Content Pages (FAQ, Text) */
.page-header {
  padding: 12rem 0 6rem;
  text-align: center;
  background: #FFF0F2;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.faq-question i {
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Devices Section */
.devices-section {
  background: transparent;
}

.devices-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.devices-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.devices-header h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.device-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  width: calc(25% - 1.5rem);
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.device-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px transparent;
  transition: all 0.3s ease;
  pointer-events: none;
}

.device-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.1);
  border-color: transparent;
}

.device-card:hover::after {
  box-shadow: inset 0 0 0 2px var(--accent-primary);
}

.device-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.device-card:hover .device-icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--accent-primary);
}

.device-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.device-card:hover h3 {
  color: var(--accent-primary);
}

.device-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .device-card {
    width: calc(33.333% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .device-card {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 480px) {
  .device-card {
    width: 100%;
  }
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

/* Sports Portrait Cards */
.sports-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}

.sport-portrait-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background: #000;
}

.sport-portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.sport-portrait-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

.sport-portrait-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.sport-portrait-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0.5rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sport-portrait-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .sports-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    .sport-portrait-card {
        aspect-ratio: 4/5;
    }
}

@media (max-width: 768px) {
    .sports-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .sports-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .sport-portrait-card {
        aspect-ratio: 4/5;
        border-radius: 8px;
    }
    .sport-portrait-card img {
        filter: grayscale(0%) brightness(0.85); /* Always show color on mobile */
    }
    .sport-portrait-card .card-overlay {
        padding: 1.5rem 0.25rem 0.5rem;
        font-size: 0.85rem;
        opacity: 1; /* Always show text on mobile */
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    }
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  outline: none;
  font-family: var(--font-main);
  margin-bottom: 1.5rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* ===== 30-Day Guarantee Section ===== */
.guarantee-section {
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}
.guarantee-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.85;
}
.blob-yellow {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  top: -40px; left: 60px;
}
.blob-blue {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #3B82F6, #6366F1);
  top: 30px; right: 80px;
}
.blob-purple {
  width: 45px; height: 45px;
  background: linear-gradient(135deg, #A855F7, #EC4899);
  bottom: 30px; right: 120px;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.guarantee-label {
  display: inline-block;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}
.guarantee-text h2 {
  font-size: 2.5rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.guarantee-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}
.guarantee-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.guarantee-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-weight: 500;
}
.guarantee-point i { color: #22C55E; font-size: 1.1rem; }

/* Guarantee Badge Seal */
.guarantee-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-seal {
  animation: seal-float 3s ease-in-out infinite;
}
@keyframes seal-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.seal-outer {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-ring {
  position: absolute;
  top: 0; left: 0;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #1D3557, #0F172A);
  border-radius: 50%;
  /* Serrated edge using radial-gradient */
  clip-path: polygon(
    50% 0%, 55% 2%, 60% 0%, 65% 3%, 70% 1%, 75% 4%, 80% 2%,
    84% 6%, 88% 4%, 92% 9%, 95% 7%, 98% 12%, 100% 15%,
    99% 20%, 100% 25%, 99% 30%, 100% 35%, 98% 40%, 100% 45%,
    99% 50%, 100% 55%, 99% 60%, 100% 65%, 98% 70%, 100% 75%,
    98% 80%, 95% 84%, 93% 88%, 90% 92%, 87% 95%, 83% 97%,
    80% 99%, 75% 100%, 70% 99%, 65% 100%, 60% 99%, 55% 100%,
    50% 99%, 45% 100%, 40% 99%, 35% 100%, 30% 99%, 25% 100%,
    20% 99%, 17% 97%, 13% 95%, 10% 92%, 7% 88%, 5% 84%,
    2% 80%, 0% 75%, 2% 70%, 0% 65%, 2% 60%, 1% 55%,
    0% 50%, 1% 45%, 0% 40%, 2% 35%, 0% 30%, 1% 25%,
    0% 20%, 2% 15%, 5% 12%, 8% 9%, 12% 6%, 16% 4%,
    20% 2%, 25% 4%, 30% 1%, 35% 3%, 40% 0%, 45% 2%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-ring-text {
  position: absolute;
  top: 10px; left: 10px;
  width: 200px; height: 200px;
}
.seal-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-top: 10px;
}
.seal-stars {
  color: #FFD700;
  font-size: 0.75rem;
  letter-spacing: 3px;
}
.seal-percent {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -1px;
}
.seal-text {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .guarantee-points { align-items: center; }
}

/* ===== Sports Section ===== */
.sports-section {
  background: linear-gradient(135deg, #0F172A 0%, #1D3557 100%);
  color: white;
  overflow: hidden;
  position: relative;
}
.sports-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  border-radius: 50%;
}
.sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sports-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: #E63946;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.sports-text h2 {
  font-size: 2.5rem;
  color: white;
  line-height: 1.2;
}
.sports-text p { color: rgba(255,255,255,0.75); }
.sports-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
}
.sport-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  font-family: var(--font-heading);
  line-height: 1;
}
.sport-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 6px;
}
.sports-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.sports-logo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
}

.sports-logo-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sports-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sports-logo-card:hover img {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

/* Orbit Animation */
.sports-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.orbit-container {
  position: relative;
  width: 460px;
  height: 460px;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  z-index: 10;
  box-shadow: 0 0 30px rgba(230,57,70,0.6), 0 0 60px rgba(230,57,70,0.3);
  letter-spacing: 2px;
  gap: 4px;
}
.live-dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
/* Single-ring orbit */
.orbit-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.orbit-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  will-change: transform;
  pointer-events: all;
}

/* Visible orbit track rings */
.orbit-track {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  transform: translate(-50%, -50%);
  animation: slow-pulse 4s ease-in-out infinite;
}
.orbit-track-inner {
  width: 290px; height: 290px;
}
@keyframes slow-pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.6;  }
}
.orbit-track-outer {
  width: 440px; height: 440px;
  animation-delay: -2s;
}

/* Circular channel badges */
.badge-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.badge-circle:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}
.badge-circle.bein      { background: #00529B; color: white; }
.badge-circle.sky       { background: #00B2E3; color: white; }
.badge-circle.espn      { background: #CC0000; color: white; }
.badge-circle.dazn      { background: #F8FF00; color: #0A0A0A; }
.badge-circle.canal     { background: #1A1A1A; color: white; border-color: #555; }
.badge-circle.eurosport { background: #FF6600; color: white; }
.badge-circle.nbc       { background: #6C3483; color: white; }
.badge-circle.tnt       { background: #C0392B; color: white; }

@media (max-width: 900px) {
  .sports-grid { grid-template-columns: 1fr; }
  .sports-visual { min-height: 300px; }
  .orbit-container { width: 280px; height: 280px; }
  .orbit-5, .orbit-6, .orbit-7, .orbit-8 { display: none; }
}

.sports-section {
  padding-bottom: 1.5rem !important;
}

/* Sports Events Scroller */
.sports-events-scroller {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.sports-events-scroller__inner {
  display: inline-flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: sports-scroll 60s linear infinite;
}

.sports-events-scroller__inner:hover {
  animation-play-state: paused;
}

.sports-events-scroller__inner img {
  height: 48px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%) brightness(200%);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Visual Weight Balancing for individual logos */
.sports-events-scroller__inner img[alt="NBA"] {
  height: 65px;
}
.sports-events-scroller__inner img[alt="Wimbledon"] {
  height: 56px;
}
.sports-events-scroller__inner img[alt="Champions League"] {
  height: 64px;
}
.sports-events-scroller__inner img[alt="ATP Tour"] {
  height: 52px;
}
.sports-events-scroller__inner img[alt="NFL"] {
  height: 54px;
}
.sports-events-scroller__inner img[alt="WBC Boxing"] {
  height: 54px;
}
.sports-events-scroller__inner img[alt="UFC"] {
  height: 38px;
}
.sports-events-scroller__inner img[alt="Premier League"] {
  height: 50px;
}
.sports-events-scroller__inner img[alt="LaLiga"] {
  height: 36px;
}
.sports-events-scroller__inner img[alt="Bundesliga"] {
  height: 38px;
}
.sports-events-scroller__inner img[alt="Serie A"] {
  height: 42px;
}
.sports-events-scroller__inner img[alt="Formula 1"] {
  height: 32px;
}

.sports-events-scroller__inner img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.1);
}

@keyframes sports-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 2.5rem)); }
}


/* ===== Dynamic Divider ===== */
.dynamic-divider {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.2), var(--accent-primary), rgba(230, 57, 70, 0.2), transparent);
  position: relative;
}

.glow-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 80px;
  height: 5px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-primary), 0 0 30px var(--accent-primary);
  animation: scanning-light 5s ease-in-out infinite alternate;
}

@keyframes scanning-light {
  0% { left: 0%; transform: translateX(-100%); }
  100% { left: 100%; transform: translateX(0%); }
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.03) 20%, rgba(230, 57, 70, 0.03) 80%, transparent);
  padding: 1rem 0;
  white-space: nowrap;
  -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
}

.ticker-content {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.ticker-group span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ticker-group span.dot-sep {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

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

/* Curved Movie Section Inspired by Screenshot */
.curved-movie-section {
  background: transparent;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.curved-movie-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.curved-movie-title {
  color: var(--text-main);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  font-family: var(--font-heading);
}

.curved-movie-btn {
  display: inline-block;
  background: linear-gradient(90deg, #4ADE80, #10B981);
  color: #064E3B;
  font-weight: 700;
  padding: 0.5rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.5px;
  cursor: pointer;
}

.curved-movie-scroller {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 2rem 0 4rem;
  -webkit-mask: linear-gradient(90deg, transparent 0%, white 15%, white 85%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, white 15%, white 85%, transparent 100%);
}

.curved-movie-inner {
  display: inline-flex;
  gap: 1.5rem;
  width: max-content;
  animation: movie-scroll-curved 35s linear infinite;
  padding: 0 2rem;
}

.curved-movie-inner:hover {
  animation-play-state: paused;
}

.cmd-wrapper {
  position: relative;
  width: 150px;
  height: 220px;
  flex-shrink: 0;
}

.cmd-transform {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.cmd-transform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.cmd-transform:hover img {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.25);
  border-color: #fff;
}

.poster-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.55rem;
  pointer-events: none;
}

.curved-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}

.curved-dots .dot {
  width: 25px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.curved-dots .dot.active {
  background: rgba(255,255,255,0.8);
}

@keyframes movie-scroll-curved {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.75rem)); }
}

@media (max-width: 768px) {
  .cmd-wrapper { width: 120px; height: 180px; }
}

/* ===== Blog & SEO Article ===== */
.blog-header {
  padding: 10rem 0 6rem;
  text-align: center;
  background: #FFF0F2;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}
.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  line-height: 1.4;
}
.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
}

/* Article Template */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-header {
  padding: 10rem 0 4rem;
  text-align: center;
}
.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.article-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
}
.article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
  padding-bottom: 4rem;
}
.article-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}
.article-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.article-content p {
  margin-bottom: 1.5rem;
  color: #334155;
}
.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #334155;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content blockquote {
  border-left: 4px solid var(--accent-primary);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  background: #F8FAFC;
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}
.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid var(--glass-border);
}
.article-table th {
  background: #F1F5F9;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 2px solid var(--glass-border);
}
.article-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
  color: #334155;
}
.article-table tr:last-child td {
  border-bottom: none;
}
.author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  margin-bottom: 0.5rem;
}
.author-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
