.mobile-menu-btn,
.mobile-nav-overlay {
  display: none !important;
}

/* -----------------------------------------
   LAPTOP/TABLET VIEW (max-width: 1200px)
----------------------------------------- */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-top: 40px;
  }
  .hero-content {
    max-width: 100%;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .cta-row {
    justify-content: center;
  }
  .features-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Hero Visual 3D Lock Mobile/Tablet Redesign */
  .hero-visual {
    margin-top: 20px;
    margin-bottom: 30px;
    transform: none;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    overflow: visible;
  }
    
  .center-stage {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: scale(0.9) !important;
    margin: 0 auto;
  }

  .laptop-container {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 500px;
    transform: none !important;
    margin: 0 auto;
  }

  .alert-box {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 420px;
    margin: 0 auto;
    right: 0;
  }
}

@media (max-width: 900px) {
  .feature-showcase {
    margin: 20px;
    border-radius: 25px;
    padding: 50px 20px 80px;
  }

  .f-showcase-visuals {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }

  .f-card-left,
  .f-card-right {
    transform: none;
  }

  .f-laptop-wrapper {
    width: 100%;
    max-width: 450px;
  }

  .f-connecting-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-container {
    padding: 0 15px;
    overflow: hidden;
  }

  .navbar {
    padding: 15px 20px;
    margin: 15px auto 30px;
    border-radius: 15px;
    position: relative;
    overflow: visible !important;
  }

  .logo {
    font-size: 20px;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .nav-links,
  .navbar>.btn-download {
    display: none;
  }

  .mobile-menu-btn {
    display: block !important;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-nav-overlay {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(12, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .mobile-nav-overlay .nav-links-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
  }

  .mobile-nav-overlay .nav-links-mobile a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 500;
    display: block;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-overlay .btn-download {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  .hero {
    flex-direction: column;
    margin-top: 75px;
    margin-bottom: 50px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .btn,
  .btn-glow,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    text-align: center;
  }

  .features-row {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .feature-col {
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Smaller widths for mobile */
  .center-stage {
    transform: scale(0.8) !important;
  }

  .laptop-container {
    max-width: 320px;
  }

  .alert-box {
    max-width: 320px;
  }

  .bg-glow {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }

  .f-hero-title {
    font-size: 28px;
  }

  .f-hero-sub {
    font-size: 14px;
  }

  .f-card {
    width: 100%;
    padding: 25px 20px;
  }

  .f-card h3 {
    font-size: 18px;
  }

  .f-showcase-lock {
    width: 180px;
  }

  footer {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 40px 0 20px;
  }

  .f-col {
    align-items: center;
  }

  .f-socials {
    justify-content: center;
  }
}
/* ==========================================================================
   HOMEPAGE EXPANSION RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 900px) {
    .deepdive-row, .deepdive-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .dd-list li {
        justify-content: center;
    }
    .test-grid {
        grid-template-columns: 1fr;
    }
    .price-mini-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid-home {
        grid-template-columns: 1fr;
    }
    .dd-card {
        height: 300px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .mock-photo {
        width: 150px;
        height: 150px;
    }
    .problem-section {
        padding: 50px 20px;
    }
    .feature-deepdive {
        padding: 60px 20px;
        gap: 80px;
    }
    .testimonials, .pricing-snippet, .faq-section {
        padding: 60px 20px;
    }
}
@media (max-width: 900px) {
    .risk-grid {
        grid-template-columns: 1fr;
    }
}@media (max-width: 900px) {
    .problem-premium-container {
        flex-direction: column;
        text-align: center;
    }
    .problem-text h2 {
        font-size: 36px;
    }
    .risk-stats {
        justify-content: center;
    }
    .glass-window-mockup {
        transform: none !important;
    }
    .problem-section-premium {
        padding: 60px 20px;
    }
}@media (max-width: 900px) {
    .risk-image-container {
        transform: none !important;
        max-width: 100%;
    }
}