/* OVIASOFT - Design Minimaliste B2B Professionnel 2024 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Palette Sobre & Professionnelle */
    --dark: #0a0f1c;
    --dark-soft: #1a202e;
    --gray-900: #2d3748;
    --gray-700: #4a5568;
    --gray-500: #718096;
    --gray-300: #cbd5e0;
    --gray-100: #edf2f7;
    --white: #ffffff;
    --off-white: #f7fafc;
    
    /* Couleurs Oviasoft */
    --primary-blue: #00A3E0;
    --primary-pink: #E91E8C;
    --accent: #00A3E0;
    --accent-light: #00B8FF;
    --accent-dark: #0088C0;
    
    /* État */
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    
    /* Spacing Système */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Shadows Subtiles */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border Radius Minimal */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reduce motion for users who prefer it - Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-wide {
    max-width: 1400px;
}

.container-narrow {
    max-width: 900px;
}

/* Header Minimaliste */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--dark);
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}

.nav-links a svg {
    transition: transform 0.2s ease;
}

.nav-links a:hover svg {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    padding: 10px;
    pointer-events: auto;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
}

/* Hero Minimaliste */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-32) 0 var(--space-24);
    background: var(--white);
}

.hero-content {
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.hero h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: var(--space-6);
}

.hero-lead {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: var(--space-10);
    max-width: 700px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 500;
}

/* Buttons Minimalistes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-soft);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-link {
    background: transparent;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0;
    font-weight: 600;
}

.btn-link:hover {
    opacity: 0.8;
}

.btn-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

/* Sections */
.section {
    padding: var(--space-24) 0;
}

.section-sm {
    padding: var(--space-16) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

.section-header {
    max-width: 700px;
    margin-bottom: var(--space-16);
}

.section-eyebrow {
    font-size: var(--text-sm);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: var(--space-5);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Grid System Flexible */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards Minimalistes */
.card {
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.card-description {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    padding: var(--space-10);
    background: var(--off-white);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-pink)) 1;
}

.service-number {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.service-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.service-description {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

/* Social Proof Section */
.proof-section {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-20) 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-3);
}

.proof-label {
    font-size: var(--text-base);
    color: var(--gray-300);
    font-weight: 500;
}

/* Testimonial */
.testimonial {
    padding: var(--space-10);
    background: var(--off-white);
    border-radius: var(--radius-xl);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--primary-blue), var(--primary-pink)) 1;
}

.testimonial-quote {
    font-size: var(--text-xl);
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    font-size: var(--text-base);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* CTA Section Minimaliste */
.cta-section {
    padding: var(--space-24) 0;
    background: var(--off-white);
}

.cta-box {
    padding: var(--space-20);
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.cta-box p {
    font-size: var(--text-lg);
    color: var(--gray-300);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Forms Minimalistes */
.form-inline {
    display: flex;
    gap: var(--space-3);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
}

.feature-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.feature-content p {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-8);
    align-items: center;
    opacity: 0.4;
    filter: grayscale(100%);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-700);
}

/* Footer Minimaliste */
footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-column h3 {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-8);
    text-align: center;
    font-size: var(--text-sm);
}

/* Utilities */
.bg-dark { background: var(--dark); }
.bg-light { background: var(--off-white); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.font-bold { font-weight: 700; }

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero h1 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
    .section-title { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
}

@media (max-width: 768px) {
    :root { font-size: 16px; } /* Best practice: minimum 16px for mobile */
    
    nav { height: 70px; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--space-6);
        box-shadow: var(--shadow-lg);
        gap: var(--space-4);
        z-index: 999;
    }
    
    .nav-links.active { display: flex; }
    .mobile-menu { 
        display: flex !important;
        z-index: 1002 !important;
    }
    
    .hero { 
        min-height: 80vh; 
        padding-top: var(--space-20);
        padding-bottom: var(--space-16);
    }
    /* Ensure nav stays above and menu is clickable */
    nav { position: relative; z-index: 1001; }
    header { z-index: 1000; }
    /* Push slider content a bit lower to create extra space under header */
    .slide-content { transform: translate(-50%, -43%); }
    .hero h1 { 
        font-size: clamp(2rem, 7vw, 2.5rem); /* Minimum 32px */
        line-height: 1.3;
        margin-bottom: var(--space-6);
    }
    .hero-lead { 
        font-size: 1.125rem; /* 18px minimum */
        line-height: 1.6;
    }
    .hero-stats { flex-direction: column; gap: var(--space-6); }
    
    /* Hero with background image adjustments */
    .hero[style*="background"] {
        min-height: 60vh;
        padding: var(--space-16) 0;
    }
    
    .hero[style*="background"] img[style*="position: absolute"] {
        object-position: center center;
    }
    
    .hero[style*="background"] .hero-content {
        max-width: 100%;
        padding: 0 var(--space-5);
        text-align: center;
    }
    
    .hero[style*="background"] h1 {
        font-size: 2rem !important; /* 32px */
        line-height: 1.3 !important;
    }
    
    .hero[style*="background"] .hero-lead {
        font-size: 1.125rem !important; /* 18px */
        line-height: 1.6 !important;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }
    
    /* Reverse order on mobile for better UX */
    .grid-2 > div[style*="order: 2"] { order: 1 !important; }
    .grid-2 > div[style*="order: 1"] { order: 2 !important; }
    
    .section { padding: var(--space-12) 0; }
    .section-lg { padding: var(--space-16) 0; }
    
    /* Improve readability on mobile */
    p {
        font-size: 1rem; /* 16px minimum */
        line-height: 1.6;
    }
    
    .card-title,
    .service-title {
        font-size: 1.25rem; /* 20px minimum */
        line-height: 1.3;
    }
    
    .card-description,
    .service-description {
        font-size: 1rem; /* 16px minimum */
        line-height: 1.6;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: var(--space-8); 
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .form-inline { flex-direction: column; }
    
    .btn-group { 
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
        max-width: 100%;
    }
    .btn-group .btn { 
        width: 100%; 
        justify-content: center;
        padding: 0.875rem 1.5rem; /* 14px 24px - minimum touch target 48px */
        font-size: 1rem; /* 16px minimum */
        min-height: 48px; /* Touch target best practice */
        text-align: center;
    }
    
    .card, .service-card { padding: var(--space-6); }
    
    .cta-box { padding: var(--space-12); }
}

@media (max-width: 480px) {
    :root { font-size: 16px; } /* Never go below 16px */
    
    .container { padding: 0 var(--space-5); }
    
    .hero h1 { 
        font-size: 1.875rem; /* 30px */
        line-height: 1.3;
    }
    
    .section-title { 
        font-size: 1.5rem; /* 24px */
        line-height: 1.3;
    }
    
    .logo img { height: 36px; }
    
    .stat-number { font-size: var(--text-3xl); }
    
    /* Footer adjustments for mobile */
    .footer-bottom {
        padding-top: var(--space-6);
    }
    
    .footer-bottom p {
        font-size: 0.875rem; /* 14px minimum for legal text */
        line-height: 1.6;
        margin-bottom: var(--space-2);
    }
    
    .footer-bottom a {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* Carousel / Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: var(--dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0.5) 0%, rgba(10, 15, 28, 0.7) 100%);
    z-index: 3;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    max-width: 900px;
    padding: 0 var(--space-6);
    color: var(--white);
    text-align: center;
}

.slide-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slide-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow-prev {
    left: var(--space-6);
}

.slider-arrow-next {
    right: var(--space-6);
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .hero-slider {
        height: 600px;
    }
    
    .slide-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 650px; /* Increased for better content display */
    }
    
    .slide-overlay {
        background: linear-gradient(to top, rgba(10, 15, 28, 0.92) 0%, rgba(10, 15, 28, 0.7) 60%, rgba(10, 15, 28, 0.5) 100%);
    }
    
    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        width: 100%;
        padding: var(--space-12) var(--space-5) 0; /* Top padding to avoid header overlap */
        text-align: center;
    }
    
    .slide-eyebrow {
        font-size: 0.75rem; /* 12px */
        padding: 0.5rem 1rem;
        margin-bottom: var(--space-8); /* Even more spacing from header */
    }
    
    .slide-title {
        font-size: 1.75rem !important; /* 28px minimum */
        line-height: 1.4 !important; /* More line-height for breathing */
        margin-bottom: var(--space-5) !important; /* More spacing */
        text-align: center;
    }
    
    .slide-description {
        font-size: 1rem !important; /* 16px minimum */
        line-height: 1.6 !important; /* More line-height */
        margin-bottom: var(--space-8) !important; /* More spacing before buttons */
        text-align: center;
    }
    
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .slider-arrow-prev {
        left: var(--space-3);
    }
    
    .slider-arrow-next {
        right: var(--space-3);
    }
    
    .slider-nav {
        bottom: var(--space-5);
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 650px; /* Increased for better readability */
    }
    
    .slide-content {
        padding: var(--space-16) var(--space-4) 0; /* More top padding to avoid header overlap */
        transform: translate(-50%, -42%);
    }
    
    .slide-eyebrow {
        font-size: 0.625rem; /* 10px */
        padding: 0.4rem 0.8rem;
        margin-bottom: var(--space-8); /* Even more spacing from header */
    }
    
    .slide-title {
        font-size: 1.5rem !important; /* 24px minimum */
        line-height: 1.5 !important; /* More breathing */
        margin-bottom: var(--space-5) !important; /* More spacing */
    }
    
    .slide-description {
        font-size: 0.9375rem !important; /* 15px */
        line-height: 1.6 !important; /* More breathing */
        margin-bottom: var(--space-8) !important; /* More spacing before buttons */
    }
    
    .slider-arrow {
        display: none;
    }
    
    .slider-nav {
        bottom: var(--space-4);
    }
}

/* Animations subtiles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}
