/* Desktop Styles for QuickWin Catalyst Landing Page */

/* Base Desktop Styles */
@media (min-width: 768px) {
    
    /* Container Updates */
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    /* Section Padding */
    section {
        padding: 5rem 0;
    }
    
    /* Typography */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        color: var(--gray-600);
        text-align: center;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Header */
    .header {
        padding: 1.5rem 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
    
    .logo-text h1 {
        font-size: 1.875rem;
        margin: 0;
        line-height: 1.2;
    }
    
    .logo-text .tagline {
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }
    
    /* Desktop Navigation */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        opacity: 1;
        transform: none;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-radius: var(--radius-sm);
        font-size: 0.875rem;
        white-space: nowrap;
        position: relative;
    }
    
    .nav-link:hover {
        background-color: rgba(43, 90, 160, 0.1);
    }
    
    .nav-link.active::before {
        display: none;
    }
    
    .nav-link.active {
        color: var(--primary-color);
        background-color: rgba(43, 90, 160, 0.1);
    }
    
    .nav-link.cta-nav {
        margin: 0 0 0 0.5rem;
        padding: 0.625rem 1.25rem;
    }
    
    /* Large Desktop Navigation */
    @media (min-width: 1024px) {
        .nav-menu {
            gap: 1rem;
        }
        
        .nav-link {
            font-size: 0.9rem;
            padding: 0.625rem 1.25rem;
        }
        
        .nav-link.cta-nav {
            margin-left: 1rem;
        }
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .logo .tagline {
        font-size: 1rem;
        margin-top: 0.25rem;
    }
    
    /* Hero Section - Full Width Background */
    .hero {
        padding: 6rem 0;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    
    .hero::after {
        width: 50%;
        background: 
            linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0.1) 60%, transparent 100%),
            url('https://page.gensparksite.com/v1/base64_upload/b49b99b1ffde3c3f2c05a1c5e1643a53');
        background-size: cover;
        background-position: center left;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-title .no-break {
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-note {
        font-size: 0.875rem;
        color: var(--gray-500);
        margin-top: 1rem;
        text-align: center;
    }
    

    
    .stat-item {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        font-family: var(--font-secondary);
    }
    
    .stat-label {
        display: block;
        font-size: 0.75rem;
        color: var(--gray-600);
        margin-top: 0.25rem;
    }
    
    /* Problems Section - New Layout */
    .problems-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        align-items: start;
    }
    
    .problems-visual {
        display: flex;
        justify-content: center;
    }
    
    .problems-image {
        width: 100%;
        max-width: 350px;
        height: 500px;
        object-fit: cover;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .problems-image:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    
    .problems-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .problem-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .problem-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    
    .problem-check {
        width: 2rem;
        height: 2rem;
        background: var(--gray-600);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }
    
    .problem-check i {
        font-size: 0.875rem;
        color: var(--white);
    }
    
    .problem-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--gray-900);
        margin-bottom: 0.5rem;
    }
    
    .problem-content p {
        color: var(--gray-600);
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .problem-card h3 {
        font-size: 1.25rem;
    }
    
    /* Results Section */
    .results-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .results-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .result-card.chart-card {
        padding: 2rem;
    }
    
    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .result-percentage {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-color);
        font-family: var(--font-secondary);
    }
    
    .results-summary {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .summary-card {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem;
        background: var(--white);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        transition: transform 0.3s ease;
    }
    
    .summary-card:hover {
        transform: translateY(-4px);
    }
    
    .summary-icon {
        width: 4rem;
        height: 4rem;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .summary-icon i {
        font-size: 1.5rem;
        color: var(--white);
    }
    
    .summary-content .big-number {
        font-size: 2.5rem;
        display: block;
    }
    
    .summary-content .unit {
        font-size: 1rem;
        display: block;
    }
    
    .summary-content .label {
        font-size: 0.875rem;
        display: block;
    }
    
    /* Comparison Section */
    .comparison-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .comparison-wrapper {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .comparison-cards {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
        align-items: stretch;
        margin-bottom: 3rem;
    }
    
    .comparison-card {
        padding: 2.5rem;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .comparison-card .card-header {
        margin-bottom: 1.5rem;
    }
    
    .comparison-visual {
        text-align: center;
        margin: 1.5rem 0;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 200px;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }
    
    .comparison-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-lg);
        transition: transform 0.3s ease;
    }
    
    .comparison-image:hover {
        transform: scale(1.05);
    }
    
    .comparison-arrow {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        position: relative;
    }
    
    .comparison-arrow i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .comparison-arrow span {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--primary-color);
        text-align: center;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
    }
    
    .comparison-list {
        margin-top: auto;
    }
    
    .comparison-list li {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .comparison-cta {
        text-align: center;
    }
    
    /* Testimonials Section - 3 Column Grid */
    .testimonial-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    
    /* Process Section - 2x2 Grid */
    .process-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .process-step {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        margin-bottom: 1.5rem;
    }
    
    .step-content {
        padding-top: 0;
    }
    
    .step-content h3 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-visual {
        margin-top: 1rem;
        width: 100%;
        height: 150px;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }
    
    .step-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-lg);
        transition: transform 0.3s ease;
    }
    
    .step-image:hover {
        transform: scale(1.05);
    }
    
    /* FAQ Section */
    .faq-question h3 {
        font-size: 1.25rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact {
        padding: 6rem 0;
        background-attachment: fixed;
    }
    
        .contact-content {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .highlight-text {
        font-size: 2rem;
    }
    
    .sub-text {
        font-size: 1.25rem;
    }
    
    .availability-status {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .status-header h3 {
        font-size: 1.5rem;
    }
    
    .status-text {
        font-size: 1.25rem;
    }
    
    .urgency-message {
        font-size: 1rem;
    }
    

    
    /* Footer */
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo-image {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.5rem;
    }
    
    /* Floating CTA - Hide on Desktop */
    .floating-cta {
        display: none;
    }
    
    /* Hover Effects Enhancement */
    .btn:hover {
        transform: translateY(-3px);
    }
    
    .result-card:hover,
    .problem-card:hover,
    .testimonial-card:hover {
        transform: translateY(-6px);
    }
    
    /* Additional Visual Enhancements */
    .section-title::after {
        width: 4rem;
        height: 4px;
    }
    
    /* Grid System Utilities */
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Content Width Constraints */
    .content-width {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .narrow-width {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-content {
        gap: 6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .results-grid {
        gap: 4rem;
    }
    
    .comparison-cards {
        gap: 3rem;
    }
}

/* Ultra-wide Desktop */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content {
        gap: 8rem;
    }
}