@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&amp;display=swap');

.swiper-wrapper {
  transition-timing-function: linear !important;
}

:root {
  --bg-dark: #1e1e24; /* Dark grey */
  --bg-darker: #151519; /* Darker grey */
  --bg-card: #2b2b36; /* Card grey */
  --primary: #B668EB; /* Vibrant Purple */
  --primary-hover: #9D4EDB;
  --text-white: #ffffff;
  --text-light: #a0a0ab;
  --border-color: #3f3f4e;
  --success: #22c55e;
  --warning: #9D4EDB;
  --error: #ef4444;
  --info: #3b82f6;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(182, 104, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(182, 104, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Specific Section Backgrounds */
.bg-darker {
  background-color: var(--bg-darker);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 30, 36, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  z-index: 10;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger svg {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182, 104, 235, 0.15) 0%, rgba(30,30,36,0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content h1 strong {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-apps img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-md);
}

.app-plus {
  color: var(--text-light);
}

/* Intro Section */
.intro-section {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.trust-badge svg {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Cards Common */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 104, 235, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header h2 strong {
  color: var(--primary);
}

/* Steps */
.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(182, 104, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--primary);
}

/* Pricing */
.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 10px 40px rgba(182, 104, 235, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-box {
  margin: 1.5rem 0;
  text-align: center;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-right: 0.5rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.monthly-breakdown {
  color: var(--primary);
  font-weight: 500;
  margin-top: 0.5rem;
}

.features-list {
  margin: 2rem 0;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.features-list li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.payment-methods {
  text-align: center;
  margin-top: 1rem;
}

.payment-methods img {
  height: 24px;
  margin: 0 auto;
  opacity: 0.7;
}

/* Features Mixed Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(182, 104, 235, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Download Section */
.download-card {
  text-align: center;
}

.download-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.download-card:nth-child(1) .download-icon { background: rgba(34, 197, 94, 0.1); color: var(--success); }
.download-card:nth-child(2) .download-icon { background: rgba(59, 130, 246, 0.1); color: var(--info); }
.download-card:nth-child(3) .download-icon { background: rgba(182, 104, 235, 0.1); color: var(--primary); }
.download-card:nth-child(4) .download-icon { background: rgba(234, 179, 8, 0.1); color: var(--warning); }

/* Reviews */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  display: flex;
  color: var(--warning);
  gap: 2px;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* CTA Section */
.cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #ca8a04 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-inner .btn {
  background: #fff;
  color: var(--primary);
}

.cta-inner .btn:hover {
  background: var(--bg-dark);
  color: #fff;
}

/* Blog Section */
.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.category-label {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

/* Social Section */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-5px);
}

.social-wa { background: #25d366; }
.social-email { background: #ea4335; }
.social-fb { background: #1877f2; }
.social-x { background: #000000; border: 1px solid #333; }
.social-yt { background: #ff0000; }

/* Footer */
footer {
  background: #0f0f13;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

/* Swiper Overrides */
.swiper-wrapper {
  transition-timing-function: linear; /* for continuous marquees */
}

.movies-slider-section .swiper-wrapper {
  transition-timing-function: ease;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .grid-4, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .hamburger {
    display: block;
  }
  
  .grid-3, .grid-4, .features-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}


/* --- Installation Grid Styles --- */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.device-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(182, 104, 235, 0.1);
}
.device-card.active {
  border-color: var(--primary);
  background: rgba(182, 104, 235, 0.05);
}
.device-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.device-card .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}
.device-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}
.guide-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .guide-content {
    padding: 1.5rem;
  }
}
.guide-step {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.guide-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
}
.step-number {
  background: var(--primary);
  color: #1a1a1a;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}
.step-content {
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 38px;
}
.tip-box, .warning-box {
  background: rgba(182, 104, 235, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}
.warning-box {
  background: rgba(239, 68, 68, 0.05);
  border-left-color: #EF4444;
}

/* --- Article Design System --- */
.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}
.article-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-white);
  margin: 1rem 0;
  line-height: 1.2;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.article-feature-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
  object-fit: cover;
  max-height: 500px;
}
.article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #c4c4cc;
}
.article-content p {
  margin-bottom: 1.8rem;
}
.article-content h2 {
  color: var(--text-white);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-bottom: 2px solid rgba(182, 104, 235, 0.2);
  padding-bottom: 0.5rem;
  display: inline-block;
}
.article-content h3 {
  color: var(--text-white);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.article-content ul, .article-content ol {
  margin-bottom: 2rem;
  margin-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.8rem;
  position: relative;
}
.article-content ul li {
  list-style-type: none;
}
.article-content ul li::before {
  content: "✓";
  position: absolute;
  left: -1.5rem;
  color: var(--primary);
  font-weight: bold;
}
.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-content a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}
.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  background: rgba(182, 104, 235, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-white);
}
.legal-page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}
.legal-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin: 0;
}

/* --- Article Box Revision --- */
.article-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .article-box {
    padding: 1.5rem;
  }
}
.article-header, .legal-page-header {
  text-align: center;
  margin-bottom: 2rem !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.legal-page-header h1 {
  margin-bottom: 0 !important;
}

.download-card { display: flex; flex-direction: column; height: 100%; }
.download-card .btn { margin-top: auto; }

.pricing-card { text-align: center; }
.pricing-card .features-list { text-align: left; }

/* Desktop Header Center Navigation */
@media (min-width: 769px) {
  .nav-container { position: relative; }
  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  
  .nav-links {
    width: 100%;
    justify-content: center;
    pointer-events: auto;
  }
  
  .nav-links li:last-child {
    position: absolute;
    right: 0;
  }
}

/* Device Swiper Image Fix */
.device-swiper .swiper-slide { display: flex; justify-content: center; align-items: center; padding: 1rem; }
.device-swiper .swiper-slide img { max-width: 120px; max-height: 80px; width: auto; height: auto; object-fit: contain; margin: 0 auto; opacity: 0.8; transition: opacity 0.3s ease; }
.device-swiper .swiper-slide:hover img { opacity: 1; }
