/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Colors */
    --c-white: #FFFFFF;
    --c-offwhite: #F3F6F9;
    --c-dark: #111827;
    --c-text-primary: #111827;
    --c-text-secondary: #4B5563;
    --c-accent: #4F46E5;
    --c-accent-hover: #4338CA;
    --c-success: #10B981;
    --c-border: #E2E8F0;
    --c-icon-bg: #EEF2FF;
    --c-icon-color: #4F46E5;

    /* Typography - Fluid Scaling */
    --f-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --f-hero-h1: clamp(2.75rem, 5vw + 1rem, 4rem);
    --f-h2: clamp(2rem, 3vw + 1rem, 2.75rem);
    --f-h3: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    --f-body: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    --f-small: 0.875rem;

    /* Spacing & Layout */
    --container-max: 1200px;
    --container-small: 800px;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --section-padding: clamp(4rem, 8vw, 8rem);

    /* UI Details */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Animation Timings */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.3s ease;
    --trans-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--f-family);
    color: var(--c-text-primary);
    background-color: var(--c-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; margin-bottom: var(--space-sm); letter-spacing: -0.01em; }
h1 { font-size: var(--f-hero-h1); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); }
p { color: var(--c-text-secondary); font-size: var(--f-body); margin-bottom: var(--space-md); }
a { color: var(--c-accent); text-decoration: none; transition: color var(--trans-fast); }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-small { max-width: var(--container-small); }
.section-padding { padding: var(--section-padding) 0; }
.bg-offwhite { background-color: var(--c-offwhite); }
.bg-dark { background-color: var(--c-dark); }
.text-center { text-align: center; }
.text-white { color: var(--c-white); }
.text-success { color: var(--c-success); }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-2 { margin-top: 1rem; }
.grid { display: grid; gap: var(--space-md); }

/* ==========================================================================
   COMPONENTS (Buttons, Cards, Badges)
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-size: 1rem; font-weight: 500; text-align: center;
    transition: all var(--trans-fast); cursor: pointer;
    min-height: 48px; min-width: fit-content;
}
.btn-primary { background-color: var(--c-accent); color: var(--c-white); }
.btn-primary:hover {
    background-color: var(--c-accent-hover); transform: translateY(-2px);
    box-shadow: var(--shadow-sm); color: var(--c-white);
}
.btn-ghost { background-color: transparent; color: var(--c-text-primary); }
.btn-ghost:hover { color: var(--c-accent); }
/* Premium Secondary Button */
.btn-secondary {
    background-color: var(--c-offwhite);
    color: var(--c-text-primary);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}
.btn-secondary:hover {
    background-color: #E2E8F0; /* Slightly darker gray on hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--c-text-primary);
}
.btn-small { padding: 8px 16px; min-height: 40px; }
.btn-large { padding: 16px 32px; font-size: 1.125rem; }
.btn-full { width: 100%; }

.card {
    background: var(--c-white); border-radius: var(--radius-md);
    padding: var(--space-md); box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: transform var(--trans-normal), box-shadow var(--trans-normal);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 1000; border-bottom: 1px solid transparent; transition: border-color var(--trans-fast);
}
.site-header.scrolled { border-bottom-color: var(--c-border); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--c-text-primary); }

.menu-toggle { display: none; width: 48px; height: 48px; position: relative; z-index: 1001; }
.hamburger, .hamburger::before, .hamburger::after {
    content: ''; display: block; width: 24px; height: 2px;
    background: var(--c-text-primary); position: absolute; left: 12px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger { top: 23px; }
.hamburger::before { top: -6px; left: 0; }
.hamburger::after { top: 6px; left: 0; }
.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-6px) rotate(-45deg); }

.main-nav { display: flex; align-items: center; gap: var(--space-md); }
.nav-links { display: flex; list-style: none; gap: var(--space-md); }
.nav-links a { color: var(--c-text-secondary); font-weight: 500; }
.nav-links a:hover { color: var(--c-text-primary); }

/* ==========================================================================
   HERO SECTION
 /* ==========================================================================
   HERO SECTION (Bento Box Layout)
   ========================================================================== */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding-top: 120px; /* Pulls content up */
    padding-bottom: 60px;
    position: relative;
    background-color: var(--c-white);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--c-border) 1.5px, transparent 1.5px);
    background-size: 28px 28px; opacity: 0.7; z-index: 0; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; top: -10%; left: 50%;
    transform: translateX(-50%); width: 100vw; max-width: 1000px; height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(255,255,255,0) 60%);
    z-index: 0; pointer-events: none;
}

/* Mobile First Layout */
.hero-container {
    position: relative; z-index: 1; display: flex;
    flex-direction: column; gap: var(--space-lg); align-items: center; text-align: center;
}
.eyebrow {
    display: inline-block; color: var(--c-accent); font-weight: 600;
    font-size: var(--f-small); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-sm);
}
.hero-actions {
    display: flex; flex-direction: column; gap: 16px;
    align-items: center; justify-content: center; width: 100%;
}
.hero-links { 
    display: flex; gap: 12px; flex-wrap: wrap; 
    justify-content: center; width: 100%;
}
.hero-links .btn {
    flex: 1; /* Makes the secondary buttons equal width on mobile */
    min-width: 140px; /* Prevents them from getting too squished */
}


/* --- THE BENTO BOX UI --- */
.hero-bento {
    display: flex;
    flex-direction: column; /* Keeps the nice vertical storytelling */
    gap: 12px; /* Reduced from 16px to save vertical space */
    width: 100%;
    max-width: 380px; /* Made slightly narrower for a sleeker look */
    margin: 0 auto;
}

.bento-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 12px 16px; /* Reduced vertical padding */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Bento Header/Icons */
.bento-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 8px; /* Reduced from 12px */
    font-size: 0.85rem; font-weight: 600; color: var(--c-text-primary);
}

/* ... Keep .bento-icon, .bg-red, .bg-blue, .bento-time, .bento-body, .chat-body, .bento-bubble, .bento-reply exactly as they are ... */

/* Truck / Dispatch Customization */
.bento-truck {
    display: flex; align-items: center; gap: 16px; background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.truck-graphic {
    position: relative; 
    width: 50px; height: 50px; /* Shrunk slightly from 60px */
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.truck-icon { width: 26px; height: 26px; color: #10B981; z-index: 2;} /* Scaled icon to match */

/* Chat Customization */
.chat-body { display: flex; flex-direction: column; gap: 8px; }
.bento-bubble {
    background: #F3F4F6; color: #111827; padding: 10px 14px;
    border-radius: 14px; border-bottom-left-radius: 4px;
    font-size: 0.85rem; display: inline-block; width: fit-content;
}
.bento-reply {
    background: #3B82F6; color: white; padding: 10px 14px;
    border-radius: 14px; border-bottom-right-radius: 4px;
    font-size: 0.85rem; display: inline-block; width: fit-content; align-self: flex-end;
}

/* Truck / Dispatch Customization */
.bento-truck {
    display: flex; align-items: center; gap: 16px; background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.truck-graphic {
    position: relative; width: 60px; height: 60px;
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.truck-icon { width: 32px; height: 32px; color: #10B981; z-index: 2;}

/* Animated dispatch ring */
.pulse-ring {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%; border: 2px solid #10B981;
    animation: dispatchPulse 2s infinite; z-index: 1;
}
@keyframes dispatchPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.truck-status {
    color: #10B981; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.05em; margin-bottom: 4px;
}
.truck-details strong { display: block; font-size: 1rem; color: var(--c-text-primary); }
.truck-details p { margin: 0; font-size: 0.85rem; color: var(--c-text-secondary); }

/* ==========================================================================
   PROBLEM / ICONS
   ========================================================================== */
.card-icon {
    width: 56px; height: 56px; background: var(--c-icon-bg);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-sm); color: var(--c-icon-color);
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.1);
}
.card-icon svg { width: 28px; height: 28px; }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline {
    display: flex; flex-direction: column; gap: var(--space-md);
    position: relative; margin-top: var(--space-lg); padding-left: 24px;
    border-left: 2px solid var(--c-border);
}
.timeline-step { position: relative; padding-left: var(--space-md); }
.timeline-step p { margin-bottom: 0; }
.step-icon {
    position: absolute; left: -41px; top: 0;
    width: 32px; height: 32px; background: var(--c-white);
    border: 2px solid var(--c-accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: var(--c-accent); z-index: 2;
}

/* ==========================================================================
   SPLIT SECTIONS & MOCKUPS
   ========================================================================== */
.split-container { display: flex; flex-direction: column; gap: var(--space-lg); align-items: center; }
.lightbox-trigger { display: block; width: 100%; transition: transform var(--trans-fast); }
.lightbox-trigger:hover { transform: scale(1.02); }

/* iPhone Mockup */
.iphone-mockup {
    width: 100%; max-width: 320px; aspect-ratio: 9/19;
    background: var(--c-white); border: 8px solid #E5E7EB; border-radius: 40px;
    box-shadow: var(--shadow-lg); position: relative; margin: 0 auto;
    overflow: hidden; display: flex; flex-direction: column;
}
.iphone-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 25px; background: #E5E7EB;
    border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; z-index: 10;
}
.chat-interface {
    flex: 1; background: #F3F4F6; padding: 40px 16px 16px;
    display: flex; flex-direction: column; gap: 12px; overflow-y: auto;
    font-size: 13px; line-height: 1.4; text-align: left;
}
.chat-bubble { padding: 10px 14px; border-radius: 18px; max-width: 85%; animation: fadeUp var(--trans-normal) backwards; }
.chat-bubble.received { background: #E5E5EA; color: #000; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble.sent { background: #0B84FF; color: #FFF; align-self: flex-end; border-bottom-right-radius: 4px; }

/* Authentic Gmail Replica */
.gmail-replica {
    width: 100%; background: #FFFFFF; border: 1px solid var(--c-border);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    overflow: hidden; text-align: left; font-family: Arial, sans-serif; color: #202124;
}
.gmail-header-full { padding: 20px 24px 0; }
.gmail-subject-line {
    font-size: 1.25rem; font-weight: 400; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px; line-height: 1.3;
}
.gmail-label {
    font-size: 0.75rem; background: #EEEEEE; padding: 2px 6px;
    border-radius: 4px; color: #5F6368;
}
.gmail-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.gmail-avatar {
    width: 40px; height: 40px; background: #E8710A; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.gmail-sender-info { display: flex; flex-direction: column; line-height: 1.2; }
.gmail-sender-info strong { font-size: 0.9rem; font-weight: 600; }
.gmail-sender-info span { font-size: 0.75rem; color: #5F6368; }
.gmail-timestamp { margin-left: auto; font-size: 0.75rem; color: #5F6368; }

.gmail-content-full {
    padding: 0 24px 24px 76px; border-left: 3px solid #DC2626; margin-left: 24px;
}
.gmail-content-full h3 { color: #DC2626; font-size: 1.1rem; margin-bottom: 20px; font-weight: 600; }
.gmail-content-full p { font-size: 0.95rem; margin-bottom: 12px; color: #202124; }
.gmail-button-large {
    display: inline-block; background: #2563EB; color: white;
    padding: 12px 24px; border-radius: 6px; font-weight: 600; margin-top: 16px; margin-bottom: 40px;
}
.gmail-footer {
    font-size: 0.8rem; color: #5F6368; border-top: 1px solid #E8EAED; padding-top: 16px;
}
.gmail-footer a { color: #1A73E8; }

/* ==========================================================================
   PUNCHY LIST (PSYCHOLOGY)
   ========================================================================== */
.punchy-list {
    display: flex; flex-direction: column; gap: 16px;
    max-width: 500px; margin: 0 auto;
}
.punchy-item {
    background: var(--c-white); border: 1px solid var(--c-border);
    padding: 20px; border-radius: var(--radius-md); display: flex;
    align-items: center; gap: 16px; text-align: left; box-shadow: var(--shadow-sm);
}
.punchy-icon {
    font-size: 1.5rem; background: var(--c-icon-bg); width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; flex-shrink: 0;
}
.punchy-item p { margin-bottom: 0; }

/* ==========================================================================
   ACTIVATION PROCESS
   ========================================================================== */
.process-step { text-align: center; }
.process-num {
    width: 40px; height: 40px; background: var(--c-white);
    border: 2px solid var(--c-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-weight: 700; color: var(--c-text-primary);
}

/* ==========================================================================
   ROI CALCULATOR
   ========================================================================== */
.roi-calculator { background: var(--c-white); padding: var(--space-lg); text-align: left; }
.roi-input-group { margin-bottom: 24px; }
.roi-input-group label { display: block; font-weight: 600; margin-bottom: 8px; }
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 6px; background: var(--c-border);
    border-radius: 4px; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
    height: 24px; width: 24px; border-radius: 50%;
    background: var(--c-accent); cursor: pointer;
    -webkit-appearance: none; margin-top: -9px;
    box-shadow: var(--shadow-sm); transition: transform 0.1s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.roi-result {
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--c-border); text-align: center;
}
.roi-amount { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0; line-height: 1; }
.roi-amount span { font-size: 1rem; color: var(--c-text-secondary); font-weight: 400; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.accordion { border-top: 1px solid var(--c-border); }
.accordion-item { border-bottom: 1px solid var(--c-border); }
.accordion-header {
    width: 100%; text-align: left; padding: 20px 0;
    font-size: 1.125rem; font-weight: 600; display: flex;
    justify-content: space-between; align-items: center; color: var(--c-text-primary);
}
.accordion-icon { font-size: 1.5rem; transition: transform var(--trans-fast); }
.accordion-header[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--trans-normal); }
.accordion-content p { padding-bottom: 20px; margin-bottom: 0; }

/* ==========================================================================
   CONTACT FORM / CTA
   ========================================================================== */
.glow-effect { position: relative; z-index: 1; }
.glow-effect::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%; background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    z-index: -1; pointer-events: none;
}
.contact-card {
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: var(--radius-md); padding: var(--space-lg);
    box-shadow: var(--shadow-xl); max-width: 600px; margin: 0 auto;
}
.contact-form { text-align: left; display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input {
    width: 100%; padding: 12px 16px; border: 1px solid var(--c-border);
    border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem;
    transition: border-color var(--trans-fast);
}
.form-group input:focus {
    outline: none; border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #F8FAFC; border-top: 1px solid var(--c-border); padding: 64px 0 48px;
}
.footer-container { display: flex; flex-direction: column; gap: 24px; text-align: center; align-items: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;}
.text-dark { color: var(--c-text-primary) !important; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.9); z-index: 2000; display: flex;
    align-items: center; justify-content: center; opacity: 0; pointer-events: none;
    transition: opacity var(--trans-fast); padding: 24px; backdrop-filter: blur(5px);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-close { position: absolute; top: 24px; right: 24px; color: white; font-size: 2rem; }
.lightbox-content { max-width: 90vw; max-height: 90vh; overflow-y: auto; }
.lightbox-content * { pointer-events: none; cursor: default; }
.lightbox-content .email-mockup, .lightbox-content .iphone-mockup { transform: scale(1.1); margin: 0 auto; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity var(--trans-slow), transform var(--trans-slow); }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   MEDIA QUERIES (Mobile First -> Expanding)
   ========================================================================== */

/* Tablet & Up */
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); } /* 2x2 for process steps */
    
    .timeline {
        flex-direction: row; border-left: none; border-top: 2px solid var(--c-border);
        padding-left: 0; padding-top: 24px; margin-top: var(--space-xl);
    }
    .timeline-step { flex: 1; padding-left: 0; padding-right: 16px; }
    .step-icon { left: 0; top: -41px; }
}

/* Mobile Menu Overrides (< 1024px) */
@media (max-width: 1023px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute; top: 72px; left: 0; width: 100%;
        background: var(--c-white); padding: var(--space-md);
        box-shadow: var(--shadow-md); flex-direction: column;
        align-items: stretch; transform: translateY(-150%);
        transition: transform var(--trans-slow); z-index: 999;
    }
    .main-nav.open { transform: translateY(0); }
    .nav-links { flex-direction: column; text-align: center; }
    .btn { width: 100%; }
}

/* Desktop & Up */
/* Desktop & Up */
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        position: static; flex-direction: row; background: none; padding: 0;
        box-shadow: none; transform: none; display: flex;
    }
    
    /* Added align-items: center to perfectly balance text and cards */
    .hero-container { flex-direction: row; text-align: left; align-items: center; }
    
    /* Ensure hero buttons align left on desktop */
    .hero-actions { align-items: flex-start; }
    .hero-links { justify-content: flex-start; width: auto; }
    .hero-links .btn { flex: none; } /* Turns off the mobile stretching */
    
    /* NEW: Pushes cards to the right and locks the stack */
    .hero-media { flex: 1.2; display: flex; justify-content: flex-end; }
    .hero-bento { margin: 0; }
    
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    
    .split-container { flex-direction: row; text-align: left; }
    .split-section.reverse .split-container { flex-direction: row-reverse; }
    .split-content, .split-media { flex: 1; }
    
    .footer-container { flex-direction: row; justify-content: space-between; text-align: left; }
}
