@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
  --bg-main: #080808;
  --bg-card: rgba(255, 255, 255, 0.03);
  --primary: #FFCC00;
  --primary-glow: rgba(255, 204, 0, 0.4);
  --secondary: #DD0000;
  --secondary-glow: rgba(221, 0, 0, 0.4);
  --success: #2ecc71;
  --text-main: #ffffff;
  --text-muted: #8b949e;
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  letter-spacing: 0.01em;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

a {
  text-decoration: none;
  color: inherit;
}

/* UTILS */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-glow {
  background: linear-gradient(135deg, var(--primary), #4facfe);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-main);
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 15px 0;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05); /* Slight scale for animation */
  animation: heroPulse 20s infinite alternate linear;
}

@keyframes heroPulse {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(5,7,10,0.6) 0%, rgba(5,7,10,0.95) 80%);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  animation: fadeUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.stat h3 {
  font-size: 2.5rem;
  font-weight: 900;
}
.stat p {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

/* SECTIONS SHARED */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-card {
  padding: 40px 30px;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(0,242,254,0.1);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* MEDIA SHOWCASE (Devices & Sports) */
.media-showcase {
  display: flex;
  align-items: center;
  gap: 50px;
}
.media-showcase.reverse {
  flex-direction: row-reverse;
}
.media-text {
  flex: 1;
}
.media-img-wrapper {
  flex: 1.2;
  position: relative;
}
.media-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}
.media-img-wrapper:hover img {
  transform: scale(1.03);
}
.media-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
.media-showcase.reverse .media-glow {
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 60%);
}

/* DEVICE BTNS */
.pricing-devices-tabs .device-btn {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-devices-tabs .device-btn:hover {
  border-color: var(--primary);
  background: rgba(255, 204, 0, 0.1);
}
.pricing-devices-tabs .device-btn.active {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px var(--secondary-glow);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(217, 70, 239, 0.15);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 0.8rem;
}
.price-duration {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--primary);
}
.price-card.popular .price-amount {
  color: var(--secondary);
}
.price-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
  flex: 1;
}
.price-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 900;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 50px 0;
  margin-top: 50px;
  text-align: center;
  color: var(--text-muted);
}
footer a {
  color: var(--primary);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .media-showcase, .media-showcase.reverse {
    flex-direction: column;
  }
  .price-card.popular {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  /* Hide FOMO on mobile */
  #wow-fomo { display: none !important; }

  .hero-title { font-size: 2.5rem; }
  .stats { flex-wrap: wrap; }
  .nav-links { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 15px;
    font-size: 0.9rem;
  }
  #navbar .container {
    flex-direction: column;
    padding: 10px 20px;
  }
  .btn { width: 100%; text-align: center; margin-bottom: 10px;}
  .hero-btns { flex-direction: column; gap:0;}
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .pricing-tabs button {
    width: 100%;
  }
}

/* Fixed Support Widgets */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Exact WhatsApp original color */
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-email {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 105px; /* Above whatsapp */
    right: 30px; /* Same right margin as WA */
    background-color: #EA4335; /* Gmail Red / White background */
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(234,67,53,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.float-wa:hover, .float-email:hover { transform: scale(1.1) translateY(-3px); }


/* ==== MOBILE OVERRIDE FIXES ==== */
@media (max-width: 768px) {
  /* 1. TYPOGRAPHY (Police Size) REDUCTION */
  body { font-size: 15px !important; line-height: 1.5 !important; }
  .hero-title { font-size: 2.1rem !important; margin-bottom: 12px !important; }
  .hero-subtitle { font-size: 1rem !important; margin-bottom: 25px !important; }
  .section-head h2 { font-size: 1.7rem !important; margin-bottom: 10px !important; }
  .section-head p { font-size: 0.95rem !important; }
  .stat h3 { font-size: 1.6rem !important; }
  .feature-card h3 { font-size: 1.2rem !important; }
  .price-amount { font-size: 2.2rem !important; }
  .price-duration { font-size: 1.1rem !important; }
  
  /* 2. IMAGE SIZE COMPRESSION */
  .media-img-wrapper img {
    max-width: 85% !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6) !important;
  }
  .media-showcase { gap: 30px !important; flex-direction: column !important; }

  /* 3. HEADER COMPRESSION */
  nav .btn, nav .top-cta { display: none !important; } /* Nav links kept alive */
  nav .container, #navbar .container {
    flex-direction: row !important;
    justify-content: center !important;
    padding: 8px !important;
  }
  nav { padding: 8px 0 !important; }
  nav.scrolled { padding: 5px 0 !important; }
  
  /* 4. SUPPORT WIDGETS SHRINK */
  .float-wa { width: 45px !important; height: 45px !important; bottom: 15px !important; right: 15px !important; box-shadow: 0 2px 10px rgba(37,211,102,0.4) !important;}
  .float-wa svg { width: 22px !important; height: 22px !important; }
  .float-email { width: 45px !important; height: 45px !important; bottom: 70px !important; right: 15px !important; box-shadow: 0 2px 10px rgba(234,67,53,0.4) !important;}
  .float-email svg { width: 22px !important; height: 22px !important; }
  
  /* 5. DEVICES LIST OVERHAUL (Horizontally Scrollable iOS-Style Chips) */
  .pricing-devices-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: 15px !important;
    scrollbar-width: none;
  }
  .pricing-devices-tabs::-webkit-scrollbar { display: none; }
  .pricing-devices-tabs .device-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    white-space: nowrap !important;
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
  }
  
  /* 6. HERO SPACING */
  .hero { padding-top: 90px !important; min-height: 80vh !important; }
  
  
  /* 7. DYNAMIC ISLAND iPHONE FOMO WIDGET */
  @keyframes islandPop {
    0% { transform: translate(-50%, -30px) scaleX(0.2) scaleY(0.5); opacity: 0; }
    50% { transform: translate(-50%, 2px) scaleX(1.05) scaleY(1.1); }
    100% { transform: translate(-50%, 0) scaleX(1) scaleY(1); opacity: 1; }
  }

  #wow-fomo { 
    top: 6px !important;    /* Bind to absolute top bezel */
    bottom: auto !important; /* Disconnect from bottom footer */
    position: fixed !important;
    background: #000000 !important; /* True hardware black */
    color: #ffffff !important;
    width: max-content !important;
    max-width: 90vw !important;
    left: 50% !important; 
    transform: translateX(-50%) !important;
    padding: 8px 18px !important; 
    border-radius: 40px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9), inset 0 0 8px rgba(255,255,255,0.05) !important;
    align-items: center !important;
    z-index: 9999999 !important; /* Overlap absolutely everything */
    animation: islandPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
  }
  
  /* Notification Dot */
  #wow-fomo > div:first-child { 
    width: 14px !important; height: 14px !important; min-width: 14px !important; margin-right: 12px !important; 
    background: #25D366 !important; /* WhatsApp/Action green dot */
    box-shadow: 0 0 10px rgba(37,211,102,0.8) !important;
  }
  #wow-fomo > div:first-child svg { display: none !important; } /* Hide internal SVG to make it purely a hardware LED dot */
  
  /* Text Layout */
  #wow-fomo > div:nth-child(2) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
  }
  
  /* Clean Typography limits */
  #wow-fomo-name { font-size: 0.8rem !important; padding: 0 !important; margin: 0 !important; font-weight: 700 !important; letter-spacing: 0.5px !important; display: inline-block !important; }
  #wow-fomo-action { font-size: 0.8rem !important; margin: 0 !important; display: inline-block !important; color: #a0aec0 !important; font-weight: 500 !important; }
  
  /* Hide all excess bulky UI */
  #wow-fomo-identity { display: none !important; } /* Fake email */
  #wow-fomo > div:nth-child(2) > div:last-child { display: none !important; } /* Timestamp/Stars */
  #wow-fomo span { display: none !important; } /* PRO Badges */

  /* ========================================================= */
  /* 8. ULTIMATE UNIVERSAL CENTERING ENGINE (MOBILE FRIENDLY)  */
  /* ========================================================= */
  
  /* Force all structural text to center */
  body, .container, section, .hero-content, .media-text, .section-head, .seo-silo { 
    text-align: center !important; 
  }
  
  /* Align Flex containers strictly to the dead center vertically and horizontally */
  .hero-content, .media-text, .feature-card, .price-card, .stat, .hero-btns {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Auto margins for paragraphs constraint */
  .feature-card p, .media-text p, .hero-subtitle, .section-head p {
     margin-left: auto !important;
     margin-right: auto !important;
     max-width: 90% !important;
  }
  
  /* Center icons, buttons, and badges */
  .feature-icon, .btn { 
    margin-left: auto !important; 
    margin-right: auto !important; 
    display: flex !important; 
    justify-content: center !important;
  }
  
  /* Force internal elements inside Price Cards to Center align */
  .price-features li { 
    justify-content: center !important; 
    text-align: center !important; 
  }
  .popular-badge {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    transform: none !important;
    display: inline-block !important;
    margin: 0 auto 15px auto !important;
    width: max-content !important;
  }
  
  /* Force Footer SEO links to center perfectly */
  .seo-silo div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .seo-silo h4 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* ========================================================= */
/* 9. SMART RESPONSIVE AUTO-DETECTION ENGINE (CSS)           */
/* ========================================================= */

/* Absolute rule: No element can EVER be wider than the exact phone screen */
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important; 
  width: 100% !important;
  overscroll-behavior-x: none;
}

/* Base lock for all images/videos to instantly fit any screen natively */
img, picture, video, svg, iframe, figure {
    max-width: 100% !important;
    height: auto !important;
}

/* Tablet Detection Mode */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title { font-size: 3.5rem !important; }
  .media-img-wrapper img { max-width: 95% !important; }
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }

  
  
  /* 9. PRICING TABS (STANDARD / PREMIUM) CENTERING */
  .plan-toggles {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 10px !important;
    margin: 0 auto 20px auto !important;
  }
  .plan-toggles .device-btn {
    flex: 1 1 50% !important;
    max-width: 160px !important;
    font-size: 0.9rem !important;
    padding: 12px 0 !important;
    text-align: center !important;
    margin: 0 !important;
  }


  /* 10. DEVICES LIST (1 LINE AUTOFIT & SCROLL) */
  .pricing-devices-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important; /* Forces left-alignment to prevent cutoff */
    align-items: center !important;
    overflow-x: auto !important;
    width: 100vw !important; /* Break out of container constraints */
    margin-left: -20px !important; /* Offset parent padding */
    padding: 5px 20px 15px 20px !important;
    gap: 10px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-devices-tabs::-webkit-scrollbar { display: none; }
  
  .pricing-devices-tabs .device-btn {
    font-size: 0.75rem !important;
    padding: 8px 14px !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }

  /* 11. PRICING TABLES SHRINK & CENTER */
  .pricing-grid {
    gap: 15px !important;
    padding: 0 10px !important;
  }
  .price-card {
    padding: 20px 15px !important; /* Reduces massive padding */
    margin: 0 auto !important;
    max-width: 320px !important; /* Restricts the cards from stretching too wide */
  }
  .price-amount { 
    font-size: 1.8rem !important; /* Shrink from 2.2rem to 1.8rem */
    margin-bottom: 5px !important; 
  }
  .price-duration { 
    font-size: 0.9rem !important; 
    margin-bottom: 10px !important; 
  }
  .price-features {
    margin: 10px 0 !important;
  }
  .price-features li { 
    font-size: 0.8rem !important; 
    padding: 3px 0 !important;
    margin-bottom: 4px !important; 
  }

}
  /* ====== PREMIUM REDESIGN BUNDLE ====== */

  /* Center the Logo on Mobile */
  @media(max-width: 768px) {
    #navbar .container, .navbar .container {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
    }
    #navbar img, .navbar img {
      margin: 0 auto !important;
      display: block !important;
    }
    
    /* Center Stats Blocks */
    .stats {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      width: 100% !important;
    }
    .stat {
      text-align: center !important;
      margin: 0 auto 15px auto !important;
      width: 100% !important;
    }
    .stat h3, .stat p { text-align: center !important; }
    
    
    /* Premium Full-Width Pricing Real Estate */
    .pricing-grid {
      /* display dynamic via JS */
      flex-direction: column !important;
      align-items: center !important;
      width: 100% !important;
      padding: 0 10px !important;
    }
    .price-card {
      width: 100% !important;
      max-width: 450px !important; /* Allow it to fully breathe on mobile */
      padding: 30px 25px !important;
      margin: 0 auto 25px auto !important;
      border-radius: 20px !important;
      box-shadow: 0 15px 35px rgba(0,0,0,0.6) !important;
      border: 1px solid rgba(255,255,255,0.08) !important;
      background: linear-gradient(145deg, rgba(20,24,30,0.9), rgba(10,12,15,0.95)) !important;
      backdrop-filter: blur(15px) !important;
      box-sizing: border-box !important;
    }
    /* Popular/Bestseller Glow Enhancement */
    .price-card.popular {
      border: 2px solid #dd0000 !important;
      box-shadow: 0 20px 50px rgba(221,0,0,0.3), inset 0 0 20px rgba(221,0,0,0.1) !important;
      transform: scale(1.02) !important;
    }
    
    .price-amount { 
      font-size: 2.8rem !important; 
      font-weight: 900 !important;
      margin-bottom: 5px !important;
      text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }
    .price-card.popular .price-amount { color: #dd0000 !important; }
    
    .price-duration {
      font-size: 1.1rem !important;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 800;
    }
    
    .price-features {
      margin: 25px 0 !important;
    }
    .price-features li { 
      font-size: 1.05rem !important; 
      padding: 8px 0 !important; 
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .price-features li:last-child { border-bottom: none; }
    
    .price-card .btn { 
      margin-top: 15px !important; 
      padding: 16px !important; 
      font-size: 1.1rem !important;
      font-weight: 800 !important;
      border-radius: 40px !important;
      letter-spacing: 0.5px;
    }

    /* Prevent Images from Grinding Cut-Off */
    img, .blog-content img {
      object-fit: contain !important;
      max-width: 100% !important;
      height: auto !important;
    }
    .hero-bg {
      object-fit: cover !important;
      object-position: top center !important;
    }
  }

  /* WOW Design for Standard & Premium Tabs */
  .plan-toggles .device-btn {
    background: linear-gradient(145deg, #181c25 0%, #0d1016 100%) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(0,0,0,0.6) !important;
    color: #a0aec0 !important;
    border-radius: 12px !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }
  .plan-toggles .device-btn:hover, .plan-toggles .device-btn.active {
    background: linear-gradient(135deg, #dd0000 0%, #ff3333 100%) !important;
    border-color: #ff6666 !important;
    box-shadow: 0 0 25px rgba(221,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.3) !important;
    color: #ffffff !important;
    transform: scale(1.08) translateY(-3px) !important;
  }

  /* Ultimate PRO Bestseller Ribbon & Glow */
  .pro-bestseller {
    background: linear-gradient(135deg, rgba(80, 0, 0, 0.8) 0%, rgba(20, 5, 5, 0.95) 100%) !important;
    border: 2px solid #dd0000 !important;
    box-shadow: 0 0 40px rgba(221, 0, 0, 0.4), inset 0 0 20px rgba(221, 0, 0, 0.2) !important;
    transform: scale(1.04);
    position: relative;
    z-index: 10;
  }
  @media(max-width: 768px){ .pro-bestseller { transform: scale(1.02); margin: 15px auto !important; } }
  
  .pro-bestseller::before {
    content: '👑 ULTIMATE BESTSELLER 👑';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FFD700, #FFAA00, #FFD700);
    background-size: 200% auto;
    color: #000;
    font-weight: 900;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.6);
    white-space: nowrap;
    animation: goldShine 3s infinite linear;
  }
  @keyframes goldShine { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

  /* ====== PERFECT MOBILE HEADER & MAGIC PREMIUM ====== */

  @media(max-width: 768px) {
    #navbar .container, .navbar .container {
      display: flex !important;
      flex-direction: row !important; /* LOGO LEFT, MENU RIGHT */
      justify-content: space-between !important;
      align-items: center !important;
      width: 100% !important;
    }
    
    #navbar img, .navbar img {
      margin: 0 !important;
      display: block !important;
    }
    
    .nav-links {
      display: flex !important;
      gap: 15px !important;
      margin-left: auto !important; /* Push nav to the right */
      margin-right: 0 !important;
      padding: 0 !important;
      margin-top: 0 !important;
    }
  }

  /* Dropdown Styles */
  .drop-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.8);
    z-index: 1000;
    min-width: 160px;
    top: 35px;
    left: 0;
  }
  .dropdown-content a { color: #ccc !important; padding: 10px 15px !important; display: block; border-bottom: 1px solid #222; }
  .header-dropdown:hover .dropdown-content { display: block; }

  /* Magic Premium Glow */
  .magic-premium-btn {
    position: relative;
    overflow: hidden;
    animation: premiumGlowPulse 2.5s infinite;
  }
  .magic-premium-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,204,0,0.5), transparent);
    transform: rotate(45deg);
    animation: magicSweep 3s infinite linear;
  }
  @keyframes premiumGlowPulse {
    0% { box-shadow: 0 0 10px rgba(255,204,0,0.4); }
    50% { box-shadow: 0 0 25px rgba(255,204,0,0.8); }
    100% { box-shadow: 0 0 10px rgba(255,204,0,0.4); }
  }
  @keyframes magicSweep {
    0% { left: -100%; top: -100%; }
    100% { left: 100%; top: 100%; }
  }

  /* NUCLEAR FOMO KILL ON MOBILE */
  @media(max-width: 768px) {
      #wow-fomo, #wow-fomo * { display: none !important; opacity: 0 !important; visibility: hidden !important; animation: none !important; }
  }

  /* Horiztonal Device Scroll Padding Fix */
  .pricing-devices-tabs {
    padding: 0 15px !important;
  }
