.footer-brand .logo-image {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-heading);
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
/* =========================================
   RESPONSIVE OPTIMIZATION
   ========================================= */

/* Large Tablets & Laptops (1024px - 1280px) */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablets & iPad Pro (769px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .pricing-grid, 
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 grid */
    }
}

/* Mobile & Tablets (Max 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-primary);
        z-index: 2000; /* High z-index to cover everything */
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-close-btn {
        background: none;
        border: none;
        color: var(--text-heading);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 0; /* Reduced padding */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtler separator */
        width: 100%;
        display: block;
        text-align: center; /* Center text */
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-toggle {
        justify-content: center;
    }

    .nav-dropdown-menu {
        display: none;
        position: static;
        width: min(280px, calc(100vw - 48px));
        min-width: 0;
        margin: 8px auto 18px;
        background: rgba(255, 255, 255, 0.04);
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        text-align: center;
    }

    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
        transform: none !important;
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }

    .mobile-only-btn {
        margin-top: 25px;
        width: 100%;
        text-align: center;
        display: flex !important;
        justify-content: center;
        padding: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(58, 122, 254, 0.3); /* Glow effect */
        transform: scale(1.02); /* Slightly larger */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-actions .btn {
        display: none; /* Hide "Free Trial" button on mobile header */
    }
    
    /* Hero */
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    /* Grids -> Single Column */
    .stats-grid,
    .pricing-grid, 
    .steps-grid, 
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }
    
    /* Timeline - Mobile Stacked Cards (Bulletproof) */
    .timeline {
        padding: 0 !important;
        margin-top: 40px !important;
    }

    .timeline-line {
        display: none !important;
    }
    
    .timeline-item {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 24px 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        display: none !important;
    }
    
    /* Hide connectors */
    .timeline-item::before,
    .timeline-content::after {
        display: none !important;
    }
    
    .timeline-content {
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 24px !important;
        box-shadow: none !important;
    }

    /* Footer */
    .footer-grid {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}
