/* ==================== VARIABLES CSS ==================== */
        :root {
            /* Palette Immobilière Premium */
            --primary: #0059A9;
            --primary-light: #3b82f6;
            --primary-dark: #1e3a8a;
            --secondary: #059669;
            --accent: #f59e0b;
            --gold: #fbbf24;
            
            /* Gradients Modernes */
            --gradient-primary: linear-gradient(135deg, #0059A9 0%, #F17F00 100%);
            --gradient-blue: linear-gradient(135deg, #0059A9 0%, #0059A9 100%);
            --gradient-gold: linear-gradient(135deg, #F17F00 0%, #F17F00 100%);
            --gradient-hero: linear-gradient(135deg, #0059A9 0%, #0059A9 50%, #F17F00 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(0, 89, 169, 0.95) 0%, rgba(241, 127, 0, 0.95) 100%);
            --gradient-over: linear-gradient(135deg, #04dae9 0%, #0059A9 100%);
            --gradient-result: linear-gradient(135deg, #1e3a8a 0%, #fbbf24 100%);

            
            /* Couleurs Neutres */
            --dark: #0f172a;
            --dark-light: #1e293b;
            --gray-900: #1e293b;
            --gray-800: #334155;
            --gray-700: #475569;
            --gray-600: #64748b;
            --gray-500: #94a3b8;
            --gray-400: #cbd5e1;
            --gray-300: #e2e8f0;
            --gray-200: #f1f5f9;
            --gray-100: #f8fafc;
            --white: #ffffff;
            
            /* Typographie */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Poppins', sans-serif;
            
            /* Espacements */
            --section-padding: 100px;
            --container-max: 1320px;
            
            /* Ombres Premium */
            --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
            --shadow-colored: 0 20px 40px rgba(30, 64, 175, 0.2);
            
            /* Rayons */
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-2xl: 2rem;
            --radius-full: 9999px;
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ==================== RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-primary);
            color: var(--gray-900);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        section {
            position: relative;
            overflow: hidden;
        }

        /* ==================== CONTAINER ==================== */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

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

        /* ==================== LOADER PREMIUM ==================== */
        .page-loader {
            position: fixed;
            inset: 0;
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .page-loader.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-2xl);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            animation: pulse 2s ease-in-out infinite;
        }

        .loader-logo i {
            font-size: 48px;
            color: var(--white);
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.9; }
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ==================== NAVBAR PREMIUM ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-md);
            padding: 12px 0;
        }

        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo Premium */
		.logo img {
            height: 60px;
            transition: var(--transition);
        }

        /*.navbar-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 800;
            font-family: var(--font-heading);
            color: var(--white);
            transition: var(--transition);
        }

        .navbar.scrolled .navbar-logo {
            color: var(--primary);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-gold);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .logo-icon:hover {
            transform: rotate(10deg) scale(1.1);
        }

        .logo-icon i {
            font-size: 24px;
            color: var(--white);
        }*/

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            font-weight: 500;
            font-size: 15px;
            color: var(--white);
            border-radius: var(--radius-md);
            transition: var(--transition);
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--gray-900);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
            transition: width var(--transition);
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 60%;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .navbar.scrolled .nav-link:hover {
            background: var(--gray-100);
            color: var(--primary);
        }

        /* Dropdown Language */
        .nav-dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-md);
            color: var(--white);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .navbar.scrolled .dropdown-toggle {
            background: var(--gray-100);
            border-color: var(--gray-300);
            color: var(--gray-900);
        }

        .dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .navbar.scrolled .dropdown-toggle:hover {
            background: var(--gray-200);
            border-color: var(--primary);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            min-width: 180px;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            overflow: hidden;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: var(--gray-900);
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: var(--gray-100);
            border-left-color: var(--primary);
            padding-left: 24px;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: var(--radius-full);
            transition: var(--transition);
        }

        .navbar.scrolled .menu-toggle {
            background: var(--gray-100);
        }

        .navbar.scrolled .menu-toggle span {
            background: var(--gray-900);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 9px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(9px, -9px);
        }

        /* ==================== HERO SECTION ULTRA PREMIUM ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-hero);
            position: relative;
            padding-top: 100px;
            overflow: hidden;
        }

        /* Formes Décoratives Animées */
        .hero-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(40px);
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            top: -10%;
            left: -10%;
            animation: float 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            top: 40%;
            right: -5%;
            animation: float 15s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 300px;
            height: 300px;
            bottom: -5%;
            left: 30%;
            animation: float 18s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -50px) rotate(120deg); }
            66% { transform: translate(-20px, 30px) rotate(240deg); }
        }

        /* Motif de Fond */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Hero Text */
        .hero-text {
            max-width: 600px;
        }

        .hero-title {
            font-family: var(--font-primary);
            font-size: clamp(2rem, 5.5vw, 4rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -4.5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
        }

        .hero-description {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: var(--font-heading);
            color: var(--white);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-lg);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn > * {
            position: relative;
            z-index: 1;
        }

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

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2xl);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--white);
        }

        .btn i {
            font-size: 20px;
        }

        .btn-text {
            text-align: left;
        }

        .btn-text small {
            display: block;
            font-size: 11px;
            opacity: 0.85;
            font-weight: 400;
        }

        .btn-text span {
            display: block;
            font-size: 16px;
            font-weight: 600;
        }

        /* Hero Image */
        .hero-image {
            position: relative;
            animation: heroFloat 6s ease-in-out infinite;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }

        .hero-image-main {
            position: relative;
            z-index: 2;
        }

        .hero-image-main img {
            width: 100%;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-2xl);
            animation: cardFloat 8s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 1s;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .floating-card-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-blue);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .floating-card-icon i {
            font-size: 24px;
            color: var(--white);
        }

        .floating-card h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .floating-card p {
            font-size: 14px;
            color: var(--gray-600);
            margin: 0;
        }

        /* ==================== SECTION TITLE ==================== */
        .section-title {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--gradient-blue);
            color: var(--white);
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-title h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-title .highlight {
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--gray-600);
            line-height: 1.8;
        }

        /* ==================== FEATURES SECTION ==================== */
        .features {
            background: var(--gray-100);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: var(--transition-slow);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-slow);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            background: var(--gradient-blue);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .feature-icon i {
            font-size: 32px;
            color: var(--white);
        }

        .feature-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .feature-card p {
            color: var(--gray-600);
            line-height: 1.8;
            margin: 0;
        }

        /* ==================== PARALLAX VIDEO SECTION ==================== */
.parallax-video {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
}

/* Video Background Wrapper */
.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Vidéo plein écran */
.parallax-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.parallax-video-bg.loaded {
    opacity: 1;
}

/* Fallback Image */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 1s ease;
    background-image: url('{% static "landing/images/parallax/video.png" %}');
}

.video-fallback.hidden {
    opacity: 0;
}

/* Overlay */
.parallax-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 89, 169, 0.7) 0%,
        rgba(30, 64, 175, 0.6) 50%,
        rgba(124, 58, 237, 0.7) 100%
    );
    z-index: 2;
}

/* Container */
.parallax-video .container {
    position: relative;
    z-index: 10;
}

.parallax-video .row {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* Contenu centré */
.video-content-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Icône vidéo animée */
.video-icon-animated {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.video-icon-animated i {
    font-size: 48px;
    color: #fbbf24;
    margin-left: 6px;
    z-index: 2;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Anneaux de pulsation */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(251, 191, 36, 0.6);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Titre principal */
.video-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 8px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    max-width: 900px;
}



/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .parallax-video {
        height: 80vh;
        min-height: 500px;
    }

    .video-title-main {
        font-size: clamp(2rem, 5vw, 4rem);
    }

    .video-icon-animated {
        width: 100px;
        height: 100px;
    }

    .video-icon-animated i {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .parallax-video {
        height: 70vh;
        min-height: 450px;
    }

    .video-title-main {
        font-size: clamp(1.75rem, 4.5vw, 3rem);
        padding: 0 20px;
    }

    .video-content-center {
        gap: 24px;
    }

    .video-icon-animated {
        width: 80px;
        height: 80px;
    }

    .video-icon-animated i {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .parallax-video {
        height: 60vh;
        min-height: 400px;
    }

    .video-title-main {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

/* ==================== ANIMATIONS WOW ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

        /* ==================== HOW IT WORKS ==================== */
        .how-it-works {
			background: var(--white);
			position: relative;
		}

		.how-it-works::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 300px;
			background: linear-gradient(180deg, var(--gray-100) 0%, transparent 100%);
			z-index: 0;
		}

		.how-it-works .container {
			position: relative;
			z-index: 1;
		}

		.steps-container {
			display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
			margin-bottom: 60px;
			align-items: center;
		}

		.step-card {
			position: relative;
			background: var(--white);
			padding: 40px 30px;
			border-radius: var(--radius-2xl);
			box-shadow: var(--shadow-md);
			border: 2px solid var(--gray-200);
			transition: var(--transition-slow);
			text-align: center;
			height: 100%;
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.step-card:hover {
			transform: translateY(-12px);
			box-shadow: var(--shadow-xl);
			border-color: var(--primary);
		}

		.step-number {
			width: 80px;
			height: 80px;
			background: var(--gradient-blue);
			color: var(--white);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 2.5rem;
			font-weight: 900;
			font-family: var(--font-heading);
			margin: 0 auto 24px;
			box-shadow: var(--shadow-colored);
			position: relative;
			z-index: 2;
		}

		.step-number span {
			position: relative;
			z-index: 2;
		}

		.step-circle {
			position: absolute;
			inset: -10px;
			border: 3px dashed var(--primary-light);
			border-radius: 50%;
			opacity: 0.3;
			animation: rotate 20s linear infinite;
		}

		@keyframes rotate {
			from { transform: rotate(0deg); }
			to { transform: rotate(360deg); }
		}

		.step-icon {
			width: 72px;
			height: 72px;
			background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
			border-radius: var(--radius-xl);
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 24px;
			transition: var(--transition);
		}

		.step-card:hover .step-icon {
			background: var(--gradient-blue);
			transform: scale(1.1) rotate(10deg);
		}

		.step-icon i {
			font-size: 32px;
			color: var(--primary);
			transition: var(--transition);
		}

		.step-card:hover .step-icon i {
			color: var(--white);
		}

		.step-card h3 {
			font-family: var(--font-heading);
			font-size: 1.5rem;
			font-weight: 700;
			color: var(--gray-900);
			margin-bottom: 16px;
		}

		.step-card p {
			color: var(--gray-600);
			line-height: 1.8;
			margin: 0;
		}

		.step-card p strong {
			color: var(--primary);
			font-weight: 600;
		}

		/* Connection Lines */
		.step-connector {
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 0 20px;
		}

		.step-connector i {
			font-size: 32px;
			color: var(--primary);
			animation: pulse-arrow 2s ease-in-out infinite;
		}

		@keyframes pulse-arrow {
			0%, 100% { 
				transform: translateX(0);
				opacity: 0.5;
			}
			50% { 
				transform: translateX(10px);
				opacity: 1;
			}
		}

		/* ==================== RESULT HIGHLIGHT ==================== */
		.result-highlight {
			background: var(--gradient-hero);
			border-radius: var(--radius-2xl);
			padding: 48px;
			box-shadow: var(--shadow-2xl);
			position: relative;
			overflow: hidden;
		}

		.result-highlight::before {
			content: '';
			position: absolute;
			inset: 0;
			background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23fff' opacity='0.03'/%3E%3C/svg%3E");
		}

		.result-content {
			display: flex;
			gap: 32px;
			align-items: center;
			position: relative;
			z-index: 1;
		}

		.result-icon {
			width: 100px;
			height: 100px;
			min-width: 100px;
			background: var(--gradient-result);
			backdrop-filter: blur(10px);
			border: 2px solid rgba(255, 255, 255, 0.3);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			animation: pulse 2s ease-in-out infinite;
            margin-top: 5rem;
		}

		.result-icon i {
			font-size: 48px;
			color: var(--white);
		}

		.result-text {
			flex: 1;
             display: flex;
             flex-direction: column;
             align-items: center;
		}

		.result-text h3 {
			font-family: var(--font-heading);
			font-size: 3rem;
			font-weight: 800;
			color: var(--white);
			margin-bottom: 20px;
			letter-spacing: -0.5px;
            text-align: center;
		}

		.result-text p {
			display: flex;
			flex-wrap: wrap;
			gap: 20px;
			margin-bottom: 16px;
		}

        .result-subtitle {
            align-self: stretch;
            text-align: left;
        }

		.benefit-tag {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 10px 20px;
			/*background: rgba(255, 255, 255, 0.2);*/
            background: var(--gradient-over);
			backdrop-filter: blur(10px);
			border: 1px solid rgba(255, 255, 255, 0.3);
			border-radius: var(--radius-full);
			color: var(--white);
			font-weight: 600;
			font-size: 18px;
			transition: var(--transition);
		}

		.benefit-tag:hover {
			background: rgba(255, 255, 255, 0.3);
			transform: translateY(-2px);
		}

		.benefit-tag i {
			color: var(--gold);
			font-size: 16px;
		}

		.result-subtitle {
			font-size: 1.25rem;
			color: rgba(255, 255, 255, 0.95);
			font-weight: 600;
			font-style: italic;
			margin: 0 !important;
		}

		/* ==================== RESPONSIVE ==================== */
		@media (max-width: 1200px) {
			.steps-container {
				grid-template-columns: 1fr;
				gap: 40px;
			}

			.step-connector {
				display: none;
			}

			.step-card {
				max-width: 600px;
				margin: 0 auto;
			}
		}

		@media (max-width: 768px) {
			.result-content {
				flex-direction: column;
				text-align: center;
			}

			.result-icon {
				margin: 0 auto;
			}

			.result-text p {
				justify-content: center;
			}

			.result-text h3 {
				font-size: 1.75rem;
			}

			.benefit-tag {
				font-size: 14px;
				padding: 8px 16px;
			}
		}

		@media (max-width: 480px) {
			.result-highlight {
				padding: 32px 24px;
			}

			.result-icon {
				width: 80px;
				height: 80px;
				min-width: 80px;
			}

			.result-icon i {
				font-size: 36px;
			}

			.result-text p {
				flex-direction: column;
			}

			.benefit-tag {
				width: 100%;
				justify-content: center;
			}

			.why-image {
				display: none;
			}
		}

        /* ==================== WHY CHOOSE SECTION ==================== */
        .why-choose {
            background: var(--gray-100);
        }

        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .why-image {
            position: relative;
            position: sticky;
            top: 100px;
        }

        .why-image img {
            width: 100%;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-xl);
        }

        /* Section de profil */
        .profile-section {
            margin-bottom: 48px;
        }

        .profile-section:last-child {
            margin-bottom: 0;
        }

        .profile-header {
            margin-bottom: 24px;
        }

        .profile-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            border-radius: var(--radius-lg);
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            box-shadow: var(--shadow-md);
        }

        .chercheur-badge {
            background: linear-gradient(135deg, #0059A9 0%, #0059A9 100%);
            color: var(--white);
        }

        .bailleur-badge {
            background: linear-gradient(135deg, #F17F00 0%, #F17F00 100%);
            color: var(--white);
        }

        .profile-badge i {
            font-size: 1.2rem;
        }

        /* Features */
        .why-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-feature-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            border-left: 4px solid transparent;
        }

        .why-feature-item:hover {
            box-shadow: var(--shadow-lg);
        }

        /* Chercheur items */
        .profile-section:first-of-type .why-feature-item {
            border-left-color: #0059A9;
        }

        /* Bailleur items */
        .profile-section:last-of-type .why-feature-item {
            border-left-color: #F17F00;
        }

        .why-feature-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chercheur-icon {
            background: linear-gradient(135deg, #0059A9 0%, #0059A9 100%);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
        }

        .bailleur-icon {
            background: linear-gradient(135deg, #F17F00 0%, #F17F00 100%);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
        }

        .why-feature-icon i {
            font-size: 24px;
            color: var(--white);
        }

        .why-feature-content h4 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .why-feature-content p {
            color: var(--gray-600);
            margin: 0;
            line-height: 1.6;
        }

        /* Séparateur visuel entre les deux profils */
        .profile-section:first-of-type::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background: linear-gradient(
                90deg, 
                transparent 0%, 
                var(--gray-300) 50%, 
                transparent 100%
            );
            margin-top: 48px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-image {
                position: relative;
                top: 0;
                order: -1;
            }

            .profile-section {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 576px) {
            .profile-badge {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .why-feature-item {
                flex-direction: column;
                gap: 16px;
            }

            .why-feature-icon {
                margin: 0 auto;
            }

            .why-feature-content {
                text-align: center;
            }

            .profile-section:first-of-type::after {
                margin-top: 32px;
            }
        }

        /* ==================== DAILY LIFE SECTION ==================== */
        .daily-life {
            background: var(--white);
        }

        .daily-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .daily-image {
            position: relative;
            order: 2;
        }

        .daily-image img {
            width: 100%;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-xl);
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .benefit-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: var(--gray-100);
            border-radius: var(--radius-lg);
            transition: var(--transition);
        }

        .benefit-item:hover {
            background: var(--white);
            box-shadow: var(--shadow-md);
            transform: translateX(8px);
        }

        .benefit-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon i {
            font-size: 14px;
            color: var(--white);
        }

        .benefit-item p {
            color: var(--gray-700);
            margin: 0;
        }

        /* ==================== SCREENSHOTS SECTION ==================== */
        
        .screenshots {
            background: #0059A9;
            position: relative;
        }

        .screenshots::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%23fff' opacity='0.02'/%3E%3C/svg%3E");
        }

        .screenshots .section-title h2,
        .screenshots .section-title p {
            color: var(--white);
        }

        /* Scroll Indicator */
        /*.scroll-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
            padding: 16px 32px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-full);
            color: var(--white);
            font-weight: 600;
            animation: bounce 2s ease-in-out infinite;
        }*/

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /*.scroll-indicator i {
            font-size: 24px;
            color: var(--gold);
            animation: point 1.5s ease-in-out infinite;
        }*/

        @keyframes point {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(8px); }
        }

        /*.scroll-indicator i:last-child {
            animation-direction: reverse;
        }*/

        /* Screenshots Slider Container */
        .screenshots-slider-container {
            position: relative;
            padding: 0 60px;
        }

        .screenshots-slider {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 0 40px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
            scroll-behavior: smooth;
        }

        .screenshots-slider::-webkit-scrollbar {
            height: 8px;
        }

        .screenshots-slider::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
        }

        .screenshots-slider::-webkit-scrollbar-thumb {
            background: var(--gradient-blue);
            border-radius: var(--radius-full);
        }

        .screenshot-item {
            flex: 0 0 320px;
            scroll-snap-align: center;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .screenshot-item img {
            width: 100%;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-2xl);
            border: 4px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .screenshot-overlay {
            position: absolute;
            inset: 0;
            background: rgba(30, 64, 175, 0.95);
            border-radius: var(--radius-2xl);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            opacity: 0;
            transition: var(--transition);
        }

        .screenshot-item:hover .screenshot-overlay {
            opacity: 1;
        }

        .screenshot-overlay i {
            font-size: 48px;
            color: var(--white);
        }

        .screenshot-overlay p {
            color: var(--white);
            font-weight: 600;
            margin: 0;
        }

        .screenshot-item:hover {
            transform: scale(1.05);
        }

        .screenshot-item:hover img {
            border-color: var(--gold);
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            z-index: 10;
        }

        .slider-arrow:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow:hover i {
            color: var(--white);
        }

        .slider-arrow i {
            font-size: 20px;
            color: var(--primary);
            transition: var(--transition);
        }

        .slider-arrow-left {
            left: 0;
        }

        .slider-arrow-right {
            right: 0;
        }

        /* ==================== LIGHTBOX MODAL ==================== */
        .lightbox-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .lightbox-modal.active {
            display: flex;
        }

        .lightbox-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }

        .lightbox-content {
            position: relative;
            z-index: 1;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-2xl);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            z-index: 2;
        }

        .lightbox-close:hover {
            background: var(--primary);
            transform: rotate(90deg);
        }

        .lightbox-close i {
            font-size: 20px;
            color: var(--dark);
            transition: var(--transition);
        }

        .lightbox-close:hover i {
            color: var(--white);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            z-index: 2;
        }

        .lightbox-nav:hover {
            background: var(--white);
        }

        .lightbox-nav i {
            font-size: 24px;
            color: var(--white);
            transition: var(--transition);
        }

        .lightbox-nav:hover i {
            color: var(--primary);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-full);
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
        }
        /*.screenshots {
            background: var(--dark);
            position: relative;
        }

        .screenshots::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%23fff' opacity='0.02'/%3E%3C/svg%3E");
        }

        .screenshots .section-title h2,
        .screenshots .section-title p {
            color: var(--white);
        }

        .screenshots-slider {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 0 40px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
        }

        .screenshots-slider::-webkit-scrollbar {
            height: 8px;
        }

        .screenshots-slider::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
        }

        .screenshots-slider::-webkit-scrollbar-thumb {
            background: var(--gradient-blue);
            border-radius: var(--radius-full);
        }

        .screenshot-item {
            flex: 0 0 320px;
            scroll-snap-align: center;
            position: relative;
            transition: var(--transition);
        }

        .screenshot-item:hover {
            transform: scale(1.05);
        }

        .screenshot-item img {
            width: 100%;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-2xl);
            border: 4px solid rgba(255, 255, 255, 0.1);
        }*/

        /* ==================== FAQ SECTION ==================== */
        .faq {
            background: var(--gray-100);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius-xl);
            margin-bottom: 16px;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--gray-900);
            user-select: none;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: var(--gradient-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .faq-icon i {
            color: var(--white);
            transition: transform var(--transition);
        }

        .faq-item.active .faq-icon i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 28px 24px;
            color: var(--gray-600);
            line-height: 1.8;
        }

        .faq-cta {
            text-align: center;
            margin-top: 48px;
            padding: 40px;
            background: var(--white);
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-md);
        }

        .faq-cta h3 {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .faq-cta p {
            color: var(--gray-600);
            margin-bottom: 24px;
        }

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

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

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: var(--gradient-hero);
            position: relative;
            padding: 100px 0;
            text-align: center;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='2' fill='%23fff' opacity='0.1'/%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 24px;
        }

        .cta-section p {
            font-size: 1.375rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 48px;
        }

        .app-stores {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 32px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-xl);
            color: var(--white);
            transition: var(--transition);
        }

        .store-btn:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-2xl);
        }

        .store-btn i {
            font-size: 40px;
        }

        .store-info {
            text-align: left;
        }

        .store-info small {
            display: block;
            font-size: 12px;
            opacity: 0.9;
        }

        .store-info span {
            font-size: 18px;
            font-weight: 700;
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact {
            background: var(--white);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--gradient-blue);
            padding: 48px;
            border-radius: var(--radius-2xl);
            color: var(--white);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .contact-info h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
        }

        .contact-info-item:last-child {
            margin-bottom: 0;
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info-icon i {
            font-size: 20px;
        }

        .contact-info-content h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-info-content p {
            opacity: 0.9;
            margin: 0;
        }

        .contact-form-wrapper {
            background: var(--gray-100);
            padding: 48px;
            border-radius: var(--radius-2xl);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--gray-300);
            border-radius: var(--radius-lg);
            font-family: var(--font-primary);
            font-size: 15px;
            color: var(--gray-900);
            background: var(--white);
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
        }

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

        select.form-control {
            cursor: pointer;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient-blue);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-colored);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .alert {
            padding: 16px 20px;
            border-radius: var(--radius-lg);
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .alert-success {
            background: #d1fae5;
            color: #065f46;
            border-left: 4px solid #10b981;
        }

        .alert-danger {
            background: #fee2e2;
            color: #991b1b;
            border-left: 4px solid #ef4444;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 32px;
        }

        .footer-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            max-width: 500px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 800;
            font-family: var(--font-heading);
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-logo .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-gold);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo .logo-icon i {
            font-size: 24px;
            color: var(--white);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin: 0;
        }

        .footer-social h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-blue);
            transform: scale(0);
            transition: transform var(--transition);
            border-radius: 50%;
        }

        .social-link:hover::before {
            transform: scale(1);
        }

        .social-link i {
            color: var(--white);
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        .social-link:hover {
            border-color: transparent;
            transform: translateY(-4px);
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            margin: 0;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-legal {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .legal-link {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
        }

        .legal-link:hover {
            color: var(--white);
            text-decoration: underline;
        }

        .separator {
            color: rgba(255, 255, 255, 0.3);
        }

        /* ==================== LEGAL MODALS ==================== */
        .legal-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .legal-modal.active {
            display: flex;
        }

        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            z-index: 1;
            background: var(--white);
            border-radius: var(--radius-2xl);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-2xl);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 32px;
            border-bottom: 2px solid var(--gray-200);
        }

        .modal-header h2 {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .modal-header i {
            color: var(--primary);
        }

        .modal-close {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-close:hover {
            background: var(--primary);
            transform: rotate(90deg);
        }

        .modal-close i {
            font-size: 18px;
            color: var(--gray-700);
            transition: var(--transition);
        }

        .modal-close:hover i {
            color: var(--white);
        }

        .modal-body {
            padding: 32px;
            overflow-y: auto;
            flex: 1;
        }

        .modal-body h3 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-top: 24px;
            margin-bottom: 12px;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--gray-800);
            margin-top: 20px;
            margin-bottom: 8px;
        }

        .modal-body p {
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .modal-body ul {
            margin-left: 24px;
            margin-bottom: 16px;
        }

        .modal-body ul li {
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .modal-body a {
            color: var(--primary);
            font-weight: 600;
            transition: var(--transition);
        }

        .modal-body a:hover {
            text-decoration: underline;
        }

        .update-date {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-200);
            color: var(--gray-500);
            font-size: 14px;
        }

        .modal-footer {
            padding: 24px 32px;
            border-top: 2px solid var(--gray-200);
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
           /* .scroll-indicator {
                flex-direction: column;
                gap: 8px;
            }*/

            .screenshots-slider-container {
                padding: 0 40px;
            }

            .screenshot-item {
                flex: 0 0 280px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
            }

            .slider-arrow i {
                font-size: 16px;
            }

            .lightbox-nav {
                width: 48px;
                height: 48px;
            }

            .lightbox-nav i {
                font-size: 20px;
            }

            .footer-social{
                text-align: center;
            }

            .footer-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }

            .modal-content {
                max-height: 95vh;
            }

            .modal-header {
                padding: 24px;
            }

            .modal-header h2 {
                font-size: 1.5rem;
            }

            .modal-body {
                padding: 24px;
            }

            .modal-footer {
                flex-direction: column-reverse;
            }

            .modal-footer .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .screenshot-item {
                flex: 0 0 240px;
            }

            .screenshots-slider-container {
                padding: 0 30px;
            }
        }
        /*.footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-about h3 {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--gradient-blue);
            transform: translateY(-4px);
        }

        .social-link i {
            color: var(--white);
        }

        .footer-links h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 8px;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
        }*/

        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: var(--gradient-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: var(--shadow-xl);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2xl);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 80px;
            }

            .hero-content,
            .why-choose-content,
            .daily-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-content{
                padding: 40px 20px;
            }

            
            .hero-image,
            .daily-image {
                order: -1;
            }

			.daily-image{
				display: none;
			}

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-info {
                position: static;
            }

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

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            .hero-title {
                line-height: 1.35;
            }

            .feature-card {
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .feature-card h3{
                text-align: center;
            }

            .section-title h2{
                font-size: clamp(1.6rem, 5vw, 3.5rem);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 400px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 32px 32px;
                box-shadow: var(--shadow-2xl);
                transition: right var(--transition-slow);
                align-items: flex-start;
                gap: 0;
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid var(--gray-200);
            }

            .nav-link {
                color: var(--gray-900) !important;
                padding: 8px 0;
            }

            .dropdown-toggle {
                background: var(--gray-100);
                border-color: var(--gray-300);
                color: var(--gray-900);
                width: 100%;
                justify-content: space-between;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                margin-top: 12px;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .features-grid,
            .steps-container {
                grid-template-columns: 1fr;
            }

            .app-stores {
                flex-direction: column;
            }

            .store-btn {
                width: 100%;
                justify-content: center;
            }

            /*.footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .screenshot-item {
                flex: 0 0 280px;
            }*/
        }

        @media (max-width: 480px) {
            /*.screenshot-item {
                flex: 0 0 240px;
            }*/

            .contact-form-wrapper {
                padding: 32px 24px;
            }
        }
/* ==================== CONFIRMATION MODAL ==================== */
.confirmation-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.confirmation-modal.active {
    display: flex;
}

/* Backdrop */
.confirmation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Dialog */
.confirmation-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Content */
.confirmation-modal-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header */
.confirmation-modal-header {
    padding: 20px 24px 0;
    text-align: right;
}

.confirmation-modal-close {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.confirmation-modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.confirmation-modal-close i {
    font-size: 18px;
    color: var(--gray-600);
}

/* Body */
.confirmation-modal-body {
    padding: 24px 40px 32px;
    text-align: center;
}

/* Icon */
.modal-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success Icon */
.modal-icon.success {
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon.success .icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0059A9 0%, #0059A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 89, 169, 0.3);
}

.modal-icon.success .icon-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 4px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.modal-icon.success i {
    font-size: 56px;
    color: var(--white);
    animation: checkPop 0.5s ease 0.3s both;
}

@keyframes checkPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Error Icon */
.modal-icon.error {
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon.error .icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.modal-icon.error .icon-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 4px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    animation: rippleError 1.5s ease-out infinite;
}

@keyframes rippleError {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.modal-icon.error i {
    font-size: 56px;
    color: var(--white);
    animation: errorShake 0.5s ease 0.3s both;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
}

@keyframes iconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Title */
.confirmation-modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Message */
.confirmation-modal-message {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.modal-footer {
    padding: 0 40px 40px;
    text-align: center;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

/* Success Button */
.modal-btn.success {
    background: linear-gradient(135deg, #0059A9 0%, #0059A9 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.modal-btn.success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 89, 169, 0.4);
}

/* Error Button */
.modal-btn.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.modal-btn.error:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .confirmation-modal-dialog {
        max-width: 95%;
    }

    .confirmation-modal-body {
        padding: 24px 30px 32px;
    }

    .modal-footer {
        padding: 0 30px 32px;
    }

    .modal-icon {
        width: 100px;
        height: 100px;
    }

    .modal-icon.success .icon-circle,
    .modal-icon.error .icon-circle {
        width: 100px;
        height: 100px;
    }

    .modal-icon.success i,
    .modal-icon.error i {
        font-size: 48px;
    }

    .confirmation-modal-title {
        font-size: 1.625rem;
    }

    .confirmation-modal-message {
        font-size: 1rem;
    }

    .modal-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .confirmation-modal-body {
        padding: 20px 24px 28px;
    }

    .modal-footer {
        padding: 0 24px 32px;
    }

    .modal-icon {
        width: 90px;
        height: 90px;
    }

    .modal-icon.success .icon-circle,
    .modal-icon.error .icon-circle {
        width: 90px;
        height: 90px;
    }

    .modal-icon.success i,
    .modal-icon.error i {
        font-size: 40px;
    }

    .confirmation-modal-title {
        font-size: 1.5rem;
    }
}