/* ==============================================
   DESKTOP APPLE GENIUS REDESIGN V48.4
   NAV ALWAYS VISIBLE + STEP 1/2 SYMMETRICAL
   768px+ ONLY
   ============================================== */

/* =====================================================================
   DESKTOP NAVIGATION - HAMBURGER + BIG LOGO
   ===================================================================== */

@media (min-width: 768px) {
    /* Nav bar - clean and minimal */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 72px; /* Bigger for desktop */
        background: rgba(0, 0, 0, 0.85); /* DARKER opacity as requested */
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    /* Scrolled state - more opacity */
    .nav.scrolled {
        background: rgba(0, 0, 0, 0.95); /* EVEN DARKER when scrolled */
        backdrop-filter: blur(60px);
        -webkit-backdrop-filter: blur(60px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Nav container - proper flex layout */
    .nav-container {
        max-width: 100%;
        height: 100%;
        padding: 0 40px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between !important;
        position: relative;
    }
    
    /* Logo - LEFT SIDE */
    .nav-logo {
        order: 1 !important;
        flex-shrink: 0;
    }
    
    /* BIGGER LOGO */
    .logo-img {
        height: 72px !important; /* EVEN BIGGER desktop logo - V48.0 */
        width: auto;
        transition: transform 0.3s ease;
    }
    
    .logo-img:hover {
        transform: scale(1.05);
    }
    
    /* GORGEOUS HAMBURGER BUTTON - TOP RIGHT */
    .hamburger-btn {
        display: flex !important; /* SHOW on desktop */
        flex-direction: column;
        justify-content: space-around;
        width: 32px;
        height: 24px;
        cursor: pointer;
        position: relative;
        z-index: 99999;
        -webkit-tap-highlight-color: transparent;
        order: 3 !important;
        flex-shrink: 0;
        margin-left: auto !important; /* PUSH TO RIGHT */
    }
    
    .hamburger-btn span {
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
    }
    
    .hamburger-btn:hover span {
        background: #ffffff;
    }
    
    /* Hamburger to X animation */
    .menu-toggle-input:checked ~ .nav-container .hamburger-btn span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
        background: #ffffff;
    }
    
    .menu-toggle-input:checked ~ .nav-container .hamburger-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle-input:checked ~ .nav-container .hamburger-btn span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        background: #ffffff;
    }
    
    /* DESKTOP NAV MENU - HIDDEN (Hamburger menu only) */
    #mainNav .nav-menu,
    nav .nav-menu,
    .nav .nav-menu,
    .nav-menu {
        display: none !important; /* HIDE horizontal nav - Only hamburger menu */
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        align-items: center;
        gap: 32px;
        order: 2 !important;
        flex: 1;
        justify-content: center;
        max-width: 600px;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    
    .nav-link:hover {
        color: #ffffff;
    }
    
    /* Financing Dropdown */
    .nav-dropdown {
        position: relative;
    }
    
    .nav-dropdown-toggle {
        color: rgba(255, 255, 255, 0.85);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s ease;
    }
    
    .nav-dropdown-toggle:hover {
        color: #ffffff;
    }
    
    .dropdown-arrow {
        width: 12px;
        height: 12px;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 20px);
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(40px);
        border-radius: 16px;
        padding: 16px;
        min-width: 280px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 100000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-item {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-title {
        display: block;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .dropdown-desc {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
    }
    
    /* DESKTOP MENU - FULL SCREEN OVERLAY */
    .mobile-menu {
        display: none !important; /* HIDE ON DESKTOP - Only shown when checkbox checked */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #000000 !important;
        background-color: #000000 !important;
        padding: 120px 80px !important;
        overflow-y: auto !important;
        z-index: 9999998 !important;
    }
    
    #menu-toggle:checked ~ .mobile-menu,
    .menu-toggle-input:checked ~ .mobile-menu {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: #000000 !important;
    }
    
    /* Desktop menu links - HUGE and centered */
    .mobile-menu-link {
        display: block;
        padding: 20px 0;
        font-size: 48px !important; /* HUGE Apple-style menu */
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        border-bottom: none !important;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
        z-index: 99999;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .mobile-menu-link:hover {
        color: #ffffff;
        transform: translateX(10px);
    }
    
    /* Desktop menu CTA - centered and prominent */
    .mobile-menu-cta {
        display: inline-block;
        margin-top: 40px;
        padding: 20px 48px;
        background: #A4D233;
        color: #000;
        text-align: center;
        position: relative;
        z-index: 99999;
        pointer-events: auto;
        cursor: pointer;
        border-radius: 16px;
        font-weight: 600;
        font-size: 21px !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-cta:hover {
        background: #8AB62A;
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4);
    }
    
    /* REMOVED - Desktop nav menu should be visible */
    
    /* Prevent body scroll when menu open */
    .menu-toggle-input:checked ~ body {
        overflow: hidden;
    }
    
    /* Trust badges - BLACK OPACITY BACKGROUND */
    .nav-trust-row {
        background: rgba(0, 0, 0, 0.75) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 40px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    /* EQUIPMENT PAGE STYLES */
    .equipment-hero {
        padding: 140px 40px 80px;
        text-align: center;
        background: radial-gradient(circle at 50% 0%, rgba(164, 210, 51, 0.08) 0%, transparent 60%);
        max-width: 900px;
        margin: 0 auto;
    }
    
    .equipment-hero-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(164, 210, 51, 0.12);
        color: #A4D233;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border-radius: 24px;
        margin-bottom: 24px;
    }
    
    .equipment-hero h1 {
        font-size: 72px;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.03em;
        margin-bottom: 24px;
        color: #ffffff;
    }
    
    .equipment-hero p {
        font-size: 21px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.75);
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Equipment Section */
    .equipment-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 40px;
    }
    
    .equipment-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 160px;
        padding: 80px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        transition: all 0.4s ease;
        overflow: visible;
    }
    
    .equipment-card:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(164, 210, 51, 0.2);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .equipment-card:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }
    
    .equipment-card:nth-child(even) .equipment-card-image {
        order: 2;
    }
    
    .equipment-card-image {
        position: relative;
    }
    
    .equipment-card-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }
    
    .equipment-card-content {
        overflow: visible;
        min-width: 0;
        width: 100%;
    }
    
    .equipment-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(139, 92, 246, 0.12);
        color: #A78BFA;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        border-radius: 24px;
        margin-bottom: 16px;
        white-space: nowrap;
        overflow: visible;
        max-width: none;
        width: auto;
    }
    
    .equipment-title {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 12px;
        color: #ffffff;
    }
    
    .equipment-subtitle {
        font-size: 18px;
        font-weight: 600;
        color: #A4D233;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .equipment-description {
        font-size: 18px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 32px;
    }
    
    .equipment-specs {
        margin-bottom: 32px;
    }
    
    .equipment-specs h3 {
        font-size: 21px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #ffffff;
    }
    
    .equipment-specs-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .equipment-specs-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }
    
    .equipment-specs-list li:before {
        content: "✓";
        color: #A4D233;
        font-weight: 700;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .equipment-tech-specs {
        margin-bottom: 32px;
        padding: 24px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .equipment-tech-specs h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
    }
    
    .tech-spec-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tech-spec-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .tech-spec-label {
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .tech-spec-value {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .equipment-cta {
        display: inline-block;
        padding: 18px 40px;
        background: #A4D233;
        color: #000;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .equipment-cta:hover {
        background: #8AB62A;
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4);
    }
    
    /* Equipment CTA Section */
    .equipment-cta-section {
        padding: 100px 40px;
        text-align: center;
        background: radial-gradient(circle at 50% 50%, rgba(164, 210, 51, 0.08) 0%, transparent 60%);
    }
    
    .equipment-cta-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .equipment-cta-section h2 {
        font-size: 56px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #ffffff;
    }
    
    .equipment-cta-section p {
        font-size: 21px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 40px;
    }
    
    .equipment-cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
}

/* =====================================================================
   DESKTOP HERO - OPTIMIZED FOR BIG SCREENS
   ===================================================================== */

@media (min-width: 768px) {
    .hero-fullwidth {
        min-height: 100vh;
        padding: 140px 60px 100px; /* More padding top for bigger nav */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
        /* Base gradient */
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    }
    
    /* Animated wave effect - Actually cool! */
    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Animated gradient wave using your brand colors */
        background: 
            linear-gradient(
                -45deg, 
                rgba(164, 210, 51, 0.1) 0%,
                rgba(0, 255, 148, 0.08) 25%,
                rgba(164, 210, 51, 0.05) 50%,
                rgba(0, 255, 148, 0.08) 75%,
                rgba(164, 210, 51, 0.1) 100%
            );
        background-size: 400% 400%;
        animation: waveGradient 15s ease infinite;
        pointer-events: none;
        z-index: 1;
    }
    
    /* Floating particles overlay */
    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Dot pattern that pulses */
        background-image: 
            radial-gradient(circle, rgba(164, 210, 51, 0.3) 1px, transparent 1px),
            radial-gradient(circle, rgba(0, 255, 148, 0.2) 1px, transparent 1px);
        background-size: 50px 50px, 80px 80px;
        background-position: 0 0, 25px 25px;
        animation: particleFloat 20s linear infinite;
        opacity: 0.4;
        pointer-events: none;
        z-index: 2;
    }
    
    @keyframes waveGradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    @keyframes particleFloat {
        0% {
            transform: translateY(0) translateX(0);
        }
        100% {
            transform: translateY(-30px) translateX(20px);
        }
    }
    
    .hero-bg-image {
        /* Hide background image completely */
        display: none !important;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Subtle radial gradient for depth */
        background: radial-gradient(
            ellipse at center,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 100%
        );
        z-index: 0;
    }
    
    .hero-content-center {
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* MASSIVE headline - OVERRIDE INLINE STYLES */
    h1.hero-title-huge[style],
    .hero-title-huge[style*="font-size"] {
        font-size: 80px !important; /* Apple goes BIG on desktop */
        font-weight: 700 !important;
        line-height: 1.05 !important;
        letter-spacing: -0.04em !important;
        margin-bottom: 24px !important;
        color: #ffffff !important;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    }
    
    .hero-description-center {
        font-size: 24px !important;
        line-height: 1.4 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 48px !important;
    }
    
    /* Quiz container - beautiful and centered */
    #hero-quiz-container,
    .hero-quiz-container {
        max-width: 640px !important;
        margin: 60px auto 40px !important;
        padding: 40px !important;
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 20px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    }
    
    .hero-quiz-label {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }
    
    #hero-quiz-container label,
    .hero-quiz-question label {
        display: block !important;
        font-size: 21px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    #hero-quiz-container select,
    .hero-quiz-dropdown {
        width: 100% !important;
        min-height: 56px !important;
        padding: 0 20px !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 14px !important;
        margin-bottom: 20px !important;
        transition: all 0.3s ease !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        cursor: pointer !important;
    }
    
    #hero-quiz-container select:hover,
    .hero-quiz-dropdown:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    #hero-quiz-container select:focus,
    .hero-quiz-dropdown:focus {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(164, 210, 51, 0.5) !important;
        outline: none !important;
    }
    
    #hero-quiz-container button,
    .hero-quiz-btn {
        width: 100% !important;
        min-height: 56px !important;
        padding: 18px 32px !important;
        background: #A4D233 !important;
        color: #000000 !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        border: none !important;
        border-radius: 14px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    
    #hero-quiz-container button:hover,
    .hero-quiz-btn:hover {
        background: #8AB62A !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4) !important;
    }
    
    /* Quiz result */
    .hero-quiz-result {
        text-align: center;
    }
    
    .hero-quiz-result-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
    }
    
    .hero-quiz-result-amount {
        font-size: 64px !important;
        font-weight: 700 !important;
        color: #A4D233 !important;
        margin-bottom: 16px !important;
    }
    
    .hero-quiz-result-desc {
        font-size: 21px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        margin-bottom: 32px !important;
    }
    
    .hero-quiz-result-cta {
        display: inline-block;
        padding: 18px 48px;
        background: #A4D233;
        color: #000;
        font-weight: 600;
        font-size: 18px;
        border-radius: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .hero-quiz-result-cta:hover {
        background: #8AB62A;
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4);
    }
    
    /* Hero CTA Buttons - NO BORDERS */
    .btn-hero-primary,
    .btn-hero-secondary {
        display: inline-block !important;
        padding: 18px 40px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        border-radius: 14px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .btn-hero-primary {
        background: #A4D233 !important;
        color: #000000 !important;
    }
    
    .btn-hero-primary:hover {
        background: #8AB62A !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4) !important;
    }
    
    .btn-hero-secondary {
        background: transparent !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
    }
    
    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        transform: translateY(-2px) !important;
    }
    
    /* CTA Section Buttons */
    .btn-primary,
    .btn-secondary {
        display: inline-block !important;
        padding: 16px 40px !important;
        font-size: 17px !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .btn-primary {
        background: #A4D233 !important;
        color: #000000 !important;
    }
    
    .btn-primary:hover {
        background: #8AB62A !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 24px rgba(164, 210, 51, 0.4) !important;
    }
    
    .btn-secondary {
        background: transparent !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        transform: translateY(-2px) !important;
    }
}

/* =====================================================================
   DESKTOP SECTIONS - OPTIMIZED SPACING
   ===================================================================== */

@media (min-width: 768px) {
    /* Problem/Solution section */
    .problem-solution {
        padding: 100px 60px !important;
    }
    
    .section-eyebrow {
        font-size: 16px !important;
        margin-bottom: 16px !important;
    }
    
    .section-title {
        font-size: 48px !important;
        line-height: 1.1 !important;
        margin-bottom: 60px !important;
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    /* Comparison section */
    .apple-comparison {
        padding: 100px 60px !important;
    }
    
    .apple-comparison-headline {
        font-size: 48px !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }
    
    .apple-comparison-description {
        font-size: 21px !important;
        margin-bottom: 60px !important;
    }
    
    .apple-comparison-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* 5 columns: MidPay + 4 competitors */
        gap: 24px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .apple-comparison-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 32px;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .apple-comparison-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    
    .apple-comparison-card.featured {
        background: linear-gradient(135deg, rgba(164, 210, 51, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
        border: 2px solid #A4D233;
        box-shadow: 0 12px 40px rgba(164, 210, 51, 0.25);
        order: -1; /* MidPay first */
    }
    
    .apple-comparison-provider {
        font-size: 24px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
    }
    
    .apple-comparison-badge {
        display: inline-block;
        padding: 4px 12px;
        background: #A4D233;
        color: #000;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        border-radius: 12px;
    }
    
    .apple-comparison-rates {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 20px 0;
    }
    
    .apple-comparison-rate-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .apple-comparison-rate-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 500;
    }
    
    .apple-comparison-rate-value {
        font-size: 28px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .apple-comparison-rate-value.best {
        color: #A4D233;
    }
    
    .apple-comparison-savings {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }
    
    .apple-comparison-savings-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .apple-comparison-savings-value {
        font-size: 20px;
        font-weight: 700;
        color: #A4D233;
    }
    
    .apple-comparison-savings-value.baseline {
        color: #A4D233;
        font-size: 20px;
        font-weight: 700;
    }
    
    .apple-comparison-savings-value.loss {
        color: #ff3b30;
    }
    
    /* Features section */
    .features-highlight {
        padding: 100px 60px !important;
    }
    
    /* Footer */
    .footer {
        padding: 48px 60px 32px !important;
        background: #000000;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 32px;
        margin-top: 32px;
    }
    
    .footer-logo {
        height: 40px !important; /* Match nav logo */
        width: auto;
        margin-bottom: 16px;
    }
    
    .footer-heading {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        margin-bottom: 12px !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
    }
    
    .footer-link {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
}

/* =====================================================================
   SCROLL BEHAVIOR - ADD OPACITY TO NAV
   ===================================================================== */

@media (min-width: 768px) {
    /* JavaScript will add .scrolled class */
    body {
        padding-top: 72px; /* Account for fixed nav */
    }
    
    /* FIX HORIZONTAL SCROLL ON VS-GRID */
    .vs-grid {
        gap: 32px !important; /* Reduce from 64px to prevent horizontal scroll */
        max-width: 1200px !important;
        margin: 60px auto !important;
    }
    
    .vs-card {
        padding: 40px 32px !important; /* Reduce padding to fit better */
    }
    
    .vs-rate {
        font-size: 72px !important; /* Reduce from 96px */
    }
}

/* =====================================================================
   HERO FORM - DESKTOP SIZING FIX V48.1
   Make interest buttons and business cards BIGGER on desktop
   Override inline styles with hyper-specific selectors
   ===================================================================== */

@media (min-width: 768px) {
    /* Step 1: Interest checkbox cards - BIGGER - OVERRIDE INLINE STYLES */
    label.interest-checkbox-card[style*="padding"] {
        padding: 32px 24px !important;
        min-height: 140px !important;
        gap: 12px !important;
    }
    
    /* Target the title div - "💳 POS", "₿ CRYPTO", etc. */
    label.interest-checkbox-card[style] div[style*="font-size: 14px"] {
        font-size: 28px !important; /* Icon/emoji size */
        margin-bottom: 0 !important;
    }
    
    /* Target the description div - "Card payments", "Bitcoin & more", etc. */
    label.interest-checkbox-card[style] div[style*="font-size: 11px"] {
        font-size: 14px !important; /* Description size */
    }
    
    /* Step 2: Business type buttons - BIGGER - OVERRIDE INLINE STYLES */
    button.business-type-btn[style*="padding"] {
        padding: 40px 24px !important;
        min-height: 180px !important;
    }
    
    button.business-type-btn[style] > div:first-child {
        font-size: 56px !important; /* Emoji size - HUGE */
        margin-bottom: 16px !important;
    }
    
    button.business-type-btn[style] div.business-type-title[style] {
        font-size: 20px !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
    }
    
    button.business-type-btn[style] div.business-type-desc[style] {
        font-size: 15px !important;
    }
    
    /* Step 1 header text - bigger on desktop */
    div#heroStep1[style] h3[style],
    div#heroStep1 h3[style] {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }
    
    div#heroStep1[style] p[style],
    div#heroStep1 p[style] {
        font-size: 16px !important;
    }
    
    /* Continue button - bigger */
    button#heroStep1Btn[style],
    button#heroStep1Btn {
        padding: 20px 32px !important;
        font-size: 19px !important;
        margin-top: 24px !important;
        min-height: 58px !important;
    }
    
    /* Desktop: Keep nav visible + position form below it - V48.4 */
    body.form-active nav {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    body.form-active #hero-form {
        top: 72px !important; /* Below desktop nav height */
        height: calc(100vh - 72px) !important;
    }
    
    /* Make Step 2 cards SAME SIZE as Step 1 - SYMMETRICAL! V48.4 */
    button.business-type-btn[style*="font-size: 32px"] > div:first-child,
    button.business-type-btn[style] > div:first-child {
        font-size: 28px !important; /* Match Step 1 icons (was 56px) */
        margin-bottom: 8px !important;
    }
    
    button.business-type-btn[style*="padding"] {
        padding: 32px 24px !important; /* Match Step 1 padding */
        min-height: 140px !important; /* Match Step 1 height */
    }
    
    button.business-type-btn[style] div.business-type-title[style] {
        font-size: 18px !important; /* Match Step 1 titles */
    }
    
    button.business-type-btn[style] div.business-type-desc[style] {
        font-size: 14px !important; /* Match Step 1 descriptions */
    }
    
    /* Step 2 heading - match Step 1 size */
    div#heroStep2 h3[style] {
        font-size: 28px !important; /* Match Step 1 heading */
    }
    
    div#heroStep2 p[style] {
        font-size: 16px !important; /* Match Step 1 subtitle */
    }
}

