:root {
    --bs-primary: #0d6efd;
    --bs-primary-rgb: 13, 110, 253;
    --bs-primary-dark: #0b5ed7;
    --bs-primary-light: #3d8bfd;
    --primary-color: #0d6efd;
    --secondary-color: #89c440;
    --accent-color: #1a5470;
    --white: #ffffff;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 76px;
}

/* Logo Animation */
.logo-animation, .logo-animation-hero {
    display: flex;
    gap: 2px;
}

.logo-animation-hero {
    margin-bottom: 1rem;
}

.letter-container {
    display: flex;
    gap: 4px;
}

.logo-letter {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    animation: rotateLetter 6s infinite;
}

.logo-animation-hero .logo-letter {
    font-size: 4.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes rotateLetter {
    0%, 20% { transform: rotateY(0deg); }
    25%, 45% { transform: rotateY(180deg); }
    50%, 70% { transform: rotateY(360deg); }
    75%, 95% { transform: rotateY(540deg); }
    100% { transform: rotateY(720deg); }
}

.logo-letter:nth-child(1) { animation-delay: 0s; }
.logo-letter:nth-child(2) { animation-delay: 0.5s; }
.logo-letter:nth-child(3) { animation-delay: 1s; }
.logo-letter:nth-child(4) { animation-delay: 1.5s; }

/* Hero Section Améliorée */
.hero-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    perspective: 1000px;
}

.floating-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--bs-primary), #0043a8);
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    animation: floatShape 8s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    right: 50px;
    animation: floatShape 12s infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation: floatShape 10s infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(0, 20px) rotate(-5deg); }
    75% { transform: translate(-10px, -15px) rotate(3deg); }
}

/* Modern Header Styles */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0043a8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: backgroundMove 30s linear infinite;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.subtitle-elegant {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.feature-item span {
    display: block;
    color: var(--white);
    font-weight: 500;
}

.hero-cta {
    margin: 2.5rem 0;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: var(--white);
    color: var(--bs-primary);
    border: none;
}

.hero-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.floating-cards {
    display: none; /* Hide by default */
}

@media (min-width: 768px) {
    .floating-cards {
        display: flex; /* Show on larger screens */
    }
}

.card-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    z-index: 2;
}

.card-float:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-float-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.card-float-content {
    display: flex;
    flex-direction: column;
}

.card-float-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.card-float-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Positions optimisées des cartes */
.card-float-1 { top: -5%; left: 0; }
.card-float-2 { top: 25%; right: 0; }
.card-float-3 { top: 45%; left: 40%; }
.card-float-4 { top: 15%; right: 55%; }
.card-float-5 { top: 60%; right: 15%; }
.card-float-6 { top: 75%; right: 35%; }
.card-float-7 { top: 35%; right: 45%; }

.awards-banner {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.award, .madein {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.award i, .madein i {
    font-size: 1.2rem;
}

@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-cards {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .subtitle-elegant {
        font-size: 1.5rem;
    }
}

/* Hero section adjustments for responsiveness */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 1rem; /* Increase padding for mobile */
        text-align: center; /* Center align all text */
    }
    .hero-title {
        font-size: 2rem; /* Adjust font size for hero title */
    }
    .hero-content {
        padding: 1rem; /* Adjust padding for hero content */
        flex-direction: column; /* Stack items vertically */
    }
    .badge-new {
        font-size: 1.2rem; /* Adjust font size for badge */
        margin-bottom: 1rem; /* Add margin for spacing */
    }
    .scroll-indicator {
        margin-top: 2rem; /* Add margin for spacing */
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.subtitle-elegant {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.badge-new {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-item span {
    color: #fff;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary {
    background: #fff !important;
    color: var(--bs-primary) !important;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Button adjustments in hero-cta for responsiveness */
@media (max-width: 767.98px) {
    .hero-cta .btn {
        font-size: 1.2rem; /* Adjust font size for buttons */
        padding: 0.75rem 1.5rem; /* Adjust padding for buttons */
        margin: 0.5rem 0; /* Add margin for spacing */
        width: 100%; /* Full width for buttons */
    }
}

/* Floating Cards Améliorées */
.card-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    z-index: 2;
}

.card-float:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-float-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.card-float-content {
    display: flex;
    flex-direction: column;
}

.card-float-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.card-float-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Positions optimisées des cartes */
.card-float-1 { top: -5%; right: 30%; }
.card-float-2 { top: 25%; right: 10%; }
.card-float-3 { top: 45%; right: 0%; }
.card-float-4 { top: 15%; right: 55%; }
.card-float-5 { top: 60%; right: 15%; }
.card-float-6 { top: 75%; right: 35%; }
.card-float-7 { top: 35%; right: 45%; }

@media (max-width: 1200px) {
    .card-float {
        max-width: 250px;
    }
    
    .hero-image {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .card-float {
        position: relative;
        top: auto !important;
        right: auto !important;
        margin: 1rem auto;
        max-width: 100%;
    }
    
    .floating-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .floating-cards {
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Stretch cards to full width */
        padding: 1rem; /* Add padding around the cards */
        display: none;
    }
    .card-float {
        width: 100%; /* Full width for cards */
        display: flex;
        align-items: center; /* Center icon and text vertically */
        padding: 1rem; /* Add padding inside the card */
        margin: 0.5rem 0; /* Margin between cards */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
        border-radius: 10px; /* Rounded corners */
        background: rgba(255, 255, 255, 0.95); /* Light background */
        transition: transform 0.3s; /* Smooth transition for hover effect */
    }
    .card-float i {
        font-size: 2rem; /* Adjust icon size */
        margin-right: 0.5rem; /* Space between icon and text */
    }
    .card-float span {
        font-size: 1.2rem; /* Adjust text size */
    }
    .card-float:hover {
        transform: translateY(-5px); /* Lift effect on hover */
    }
}

/* Header Professionnel */
.navbar {
    padding: 1.2rem 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0043a8 100%) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar-scrolled {
    padding: 0.8rem 0;
    background: rgba(13, 110, 253, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand::after {
    content: 'ERP';
    position: absolute;
    right: -40px;
    top: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.logo-animation {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-letter {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-letter::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-letter::after {
    transform: scaleX(1);
}

.navbar-brand:hover .logo-letter {
    transform: translateY(-2px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-1px);
}

.navbar-nav .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 50px;
    height: 40px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--bs-primary) 0%, #0043a8 100%);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 1rem 1.5rem !important;
        border-radius: 10px;
        margin: 0.2rem 0;
    }

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

    .navbar-nav .btn {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
}

/* Ajout d'une animation pour le scroll */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.navbar.navbar-scrolled {
    animation: fadeInDown 0.5s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.arrow-scroll span {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: arrow 2s infinite;
}

.arrow-scroll span:nth-child(2) { animation-delay: 0.2s; }
.arrow-scroll span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

@keyframes arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* Dashboard Preview */
.dashboard-preview-container {
    position: relative;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    margin-top: 2rem;
}

.dashboard-preview-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.preview-browser-header {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c940; }

.browser-address {
    flex: 1;
    background: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-address i {
    color: #28a745;
}

.dashboard-preview {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 80%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.preview-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-weight: 700;
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Modules Section */
.module-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.card {
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
    text-align: center;
}

/* Features Section */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--bs-primary);
    margin-right: 0.5rem;
}

/* Contact Form */
.form-control {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
    transform: translateY(-2px);
}

/* Avantages Section */
.bg-gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
    color: #fff;
}

.bg-gradient-light {
    background: var(--bs-primary);
    color: #fff;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid var(--bs-primary);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--bs-primary-dark);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.advantage-card p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: var(--bs-primary) !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar .btn-outline-light {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar-scrolled {
    background: rgba(13, 110, 253, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Clients Section */
.client-logos {
    padding: 2rem 0;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Section */
.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border-radius: 12px !important;
    padding: 1.25rem;
    font-weight: 600;
    color: var(--bs-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--bs-primary-dark);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
    color: var(--bs-primary);
}

.accordion-body {
    padding: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
    color: #fff;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: var(--bs-primary-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--bs-primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card, .hero-section {
    animation: fadeIn 0.8s ease-out;
}

/* Modules Complémentaires Section */
#modules-complementaires {
    background: var(--bs-primary);
    position: relative;
    overflow: hidden;
    color: #fff;
}

#modules-complementaires h2.lead {
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    display: block;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

#modules-complementaires h2.lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: #fff;
}

.module-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.module-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.module-card .icon-wrapper i {
    font-size: 2.25rem;
    color: var(--bs-primary);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.module-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.module-card h3 {
    color: var(--bs-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.module-card p {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Screenshots Slider Section */
#screenshots {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.screenshots-content {
    padding-right: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bs-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #495057;
}

.feature-list i {
    color: var(--bs-primary);
    font-size: 1.5rem;
}

.screenshots-slider {
    position: relative;
    margin: 2rem 0;
}

.slider-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    padding: 1rem;
}

.screenshot-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.screenshot-caption {
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), #fff);
    transition: all 0.3s ease;
}

.screenshot-caption h4 {
    color: var(--bs-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-caption p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.btn-prev, .btn-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev:hover, .btn-next:hover {
    background: var(--bs-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--bs-primary);
    transform: scale(1.2);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide {
    animation: slideIn 0.5s ease-out;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #495057;
    padding: 0.5rem 1rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.feature-list i {
    color: var(--bs-primary);
    font-size: 1.5rem;
}

/* Card Float Animations */
@keyframes floatCard1 {
    0%, 100% { top: -5%; right: 30%; }
    25% { top: 25%; right: 10%; }
    50% { top: 45%; right: 0%; }
    75% { top: 60%; right: 15%; }
}

@keyframes floatCard2 {
    0%, 100% { top: 25%; right: 10%; }
    25% { top: 45%; right: 0%; }
    50% { top: 60%; right: 15%; }
    75% { top: -5%; right: 30%; }
}

@keyframes floatCard3 {
    0%, 100% { top: 45%; right: 0%; }
    25% { top: 60%; right: 15%; }
    50% { top: -5%; right: 30%; }
    75% { top: 25%; right: 10%; }
}

@keyframes floatCard4 {
    0%, 100% { top: 15%; right: 55%; }
    25% { top: -5%; right: 30%; }
    50% { top: 25%; right: 10%; }
    75% { top: 45%; right: 0%; }
}

@keyframes floatCard5 {
    0%, 100% { top: 60%; right: 15%; }
    25% { top: 15%; right: 55%; }
    50% { top: 75%; right: 35%; }
    75% { top: 45%; right: 0%; }
}

@keyframes floatCard6 {
    0%, 100% { top: 75%; right: 35%; }
    25% { top: 60%; right: 15%; }
    50% { top: 15%; right: 55%; }
    75% { top: 25%; right: 10%; }
}

@keyframes floatCard7 {
    0%, 100% { top: 85%; right: 25%; }
    25% { top: 75%; right: 35%; }
    50% { top: 60%; right: 15%; }
    75% { top: 15%; right: 55%; }
}

.card-float {
    position: absolute;
    background: rgba(13, 110, 253, 0.1);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-float:hover {
    transform: scale(1.05);
    background: rgba(13, 110, 253, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-float-1 { animation: floatCard1 20s infinite ease-in-out; }
.card-float-2 { animation: floatCard2 20s infinite ease-in-out; animation-delay: -2.5s; }
.card-float-3 { animation: floatCard3 20s infinite ease-in-out; animation-delay: -5s; }
.card-float-4 { animation: floatCard4 20s infinite ease-in-out; animation-delay: -7.5s; }
.card-float-5 { animation: floatCard5 20s infinite ease-in-out; animation-delay: -10s; }
.card-float-6 { animation: floatCard6 20s infinite ease-in-out; animation-delay: -12.5s; }
.card-float-7 { animation: floatCard7 20s infinite ease-in-out; animation-delay: -15s; }

/* Ensure smooth animation on hover */
.floating-cards:hover .card-float {
    animation-play-state: paused;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bs-primary-dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 1.5rem;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translate(-50%, -5px);
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.arrow-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: -6px;
    animation: scrollArrow 2s infinite;
}

.arrow-scroll span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow-scroll span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}
