/* ============================================
   PRESTIK GROUP - CSS ULTRA-MODERNE OPTIMISÉ
   Design System Professionnel 2025
   VERSION: Responsive Parfait
   ============================================ */

:root {
    /* Couleurs principales */
    --primary: #FF6B00;
    --primary-light: #FF8C3A;
    --primary-dark: #E65100;
    --accent: #FF9933;
    
    /* Neutres */
    --dark: #0A0A0A;
    --darker: #050505;
    --gray-900: #1A1A1A;
    --gray-800: #2A2A2A;
    --gray-700: #3A3A3A;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #AAAAAA;
    --gray-300: #CCCCCC;
    --gray-200: #EEEEEE;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF9933 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.20);
    --shadow-glow: 0 0 40px rgba(255,107,0,0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Sora', 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   NAVBAR MODERNE
   ============================================ */

.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.navbar-modern.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Brand */
.brand-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    transition: transform 0.3s ease;
}

.brand-modern:hover {
    transform: translateY(-2px);
}

.brand-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-modern:hover .brand-logo-img {
    transform: scale(1.05);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition-base);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
    background: rgba(255,107,0,0.08);
}

.nav-item.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* CTA Button */
.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 0.938rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(255,107,0,0.3);
    transition: var(--transition-base);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,0,0.4);
    color: white;
}

.btn-cta-nav i {
    transition: transform var(--transition-base);
}

.btn-cta-nav:hover i {
    transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    z-index: 10;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SLIDER - OPTIMISÉ RESPONSIVE
   ============================================ */

.hero-slider-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
}

.hero-swiper-main {
    width: 100%;
    height: 100%;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

/* Slide Content */
.slide-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-row {
    min-height: 100vh;
}

/* Hero Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-title {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif; /* police explicite */
    font-size: 1.8rem;      /* taille de base réduite */
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.4px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Responsive pour tablettes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
}

/* Responsive pour mobiles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem;
    }
}


.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
     font-size: 0.95rem;
    /*font-size: clamp(1rem, 2vw, 1.25rem);*/
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary-hero,
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary-hero {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 32px rgba(255,107,0,0.4);
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,107,0,0.5);
    color: white;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.btn-primary-hero i,
.btn-secondary-hero i {
    transition: transform var(--transition-base);
    font-size: 0.875rem;
}

.btn-primary-hero:hover i {
    transform: translateX(3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    width: fit-content;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-chip i {
    color: var(--primary);
    font-size: 0.813rem;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.platform-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    transition: var(--transition-base);
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.platform-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.platform-badge span {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Slider Navigation */
.slider-nav-wrapper {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-nav-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.slider-nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.slider-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    opacity: 1;
    transition: var(--transition-base);
}

.slider-pagination .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--gradient-primary);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 1.5s infinite;
}

@keyframes wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER MODERNE
   ============================================ */

.footer-modern {
    background: var(--gradient-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    color: white;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.938rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.938rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   RESPONSIVE - OPTIMISÉ TOUTES TAILLES
   ============================================ */

/* Tablette Landscape - 1024px */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(1.875rem, 5vw, 3.5rem);
    }
    
    .slider-nav-wrapper {
        bottom: 3rem;
        right: 2rem;
    }
    
    .scroll-indicator {
        left: 2rem;
    }
}

/* Tablette Portrait - 991px */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-base);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 1rem 1.25rem;
    }
    
    .btn-cta-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }
    
    .slider-nav-wrapper {
        display: none;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .navbar-modern {
        padding: 1rem 0;
    }
    
    .brand-logo-img {
        height: 50px;
    }
    
    .hero-slider-modern {
        min-height: 100vh;
    }
    
    .hero-row {
        padding: 2rem 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.938rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.938rem;
    }
    
    .hero-stats {
        flex-direction: column;
        width: 100%;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.813rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-chip {
        font-size: 0.813rem;
        padding: 0.5rem 1rem;
    }
    
    .platform-badges {
        flex-wrap: wrap;
        gap: 0.875rem;
        width: 100%;
    }
    
    .platform-badge {
        flex: 1;
        min-width: calc(33.333% - 0.6rem);
        padding: 1.25rem 0.75rem;
    }
    
    .platform-badge i {
        font-size: 1.75rem;
    }
    
    .slider-pagination {
        bottom: 6rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
}

/* Mobile Medium - 576px */
@media (max-width: 576px) {
    .brand-logo-img {
        height: 42px;
    }
    
    .hero-badge {
        font-size: 0.688rem;
        padding: 0.5rem 0.875rem;
    }
    
    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .hero-stats {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-chip {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
    
    .platform-badges {
        gap: 0.75rem;
    }
    
    .platform-badge {
        min-width: calc(50% - 0.375rem);
        padding: 1rem;
    }
    
    .platform-badge i {
        font-size: 1.5rem;
    }
    
    .platform-badge span {
        font-size: 0.75rem;
    }
    
    .slider-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .slider-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 3px;
    }
    
    .slider-pagination .swiper-pagination-bullet-active {
        width: 45px;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.813rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.75rem 1.125rem;
        font-size: 0.813rem;
    }
    
    .stat-value {
        font-size: 1.625rem;
    }
    
    .platform-badge {
        min-width: 100%;
    }
}

/* Mobile Extra Small - 360px */
@media (max-width: 360px) {
    .brand-logo-img {
        height: 38px;
    }
    
    .hero-title {
        font-size: 1.375rem;
        letter-spacing: -0.3px;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.625rem;
        padding: 0.375rem 0.75rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-stats {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.688rem;
    }
}

/* Landscape Mobile - Height based */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-slider-modern {
        min-height: 100vh;
    }
    
    .hero-row {
        padding: 1rem 0;
    }
    
    .hero-badge {
        margin-bottom: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.25rem;
    }
    
    .hero-actions {
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 1px;
        height: 30px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}