/* Desktop Layout Restoration */

/* Restore proper grid layouts for desktop */
@media (min-width: 769px) {
    /* Common WordPress Problems section - proper grid */
    .problems-grid,
    .issue-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        padding: 0 !important;
        margin: 40px 0 !important;
    }
    
    @media (max-width: 1200px) {
        .problems-grid,
        .issue-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
    
    .problem-card,
    .issue-box {
        padding: 25px !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    /* Restore container max-widths and padding */
    .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Hero section proper spacing */
    .hero-section {
        padding: 100px 40px !important;
    }
    
    .hero-content {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    /* Pricing section proper grid */
    .pricing-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .pricing-card {
        width: auto !important;
        max-width: none !important;
    }
    
    /* Section spacing */
    section {
        padding: 60px 40px !important;
    }
    
    .problems-section,
    .features-section,
    .pricing-section,
    .testimonials-section {
        padding: 80px 40px !important;
    }
    
    /* Trust indicators proper layout */
    .trust-indicators {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 40px !important;
        flex-wrap: nowrap !important;
        padding: 30px 20px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    /* Form container proper width */
    .form-container {
        max-width: 800px !important;
        margin: 0 auto !important;
        padding: 40px !important;
    }
    
    /* CTA section proper spacing */
    .cta-section {
        padding: 80px 40px !important;
    }
    
    .cta-buttons {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: nowrap !important;
    }
    
    .btn-primary,
    .btn-outline {
        width: auto !important;
        min-width: 160px !important;
        max-width: none !important;
    }
    
    /* Footer proper layout */
    .site-footer {
        padding: 60px 40px 40px !important;
    }
    
    .footer-content {
        max-width: 1200px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    .footer-column {
        width: auto !important;
        flex: 1 !important;
        margin-bottom: 0 !important;
    }
    
    /* Remove mobile-specific constraints */
    body {
        overflow-x: visible !important;
    }
    
    * {
        max-width: none !important;
    }
    
    .wrap,
    .wrapper,
    .content,
    main,
    .main {
        max-width: 100% !important;
        overflow-x: visible !important;
    }
    
    /* Specific fixes for issue selection grid */
    .issue-selection-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }
    
    @media (max-width: 1024px) {
        .issue-selection-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
}

/* Very specific desktop overrides */
@media (min-width: 1201px) {
    .container {
        max-width: 1200px !important;
    }
    
    .hero-section {
        padding: 120px 40px !important;
    }
    
    .problems-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Fix urgency options on desktop */
@media (min-width: 769px) {
    .urgency-options {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        margin: 20px 0 !important;
    }
}