/* Hero Section Styles */
.home__hero-section {
    position: relative;
    padding: 6rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.home__hero-pattern {
    position: absolute;
    inset: 0;
    background-color: #f8f9fa;
    background-image:
        radial-gradient(rgba(158, 109, 224, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 1;
    z-index: 0;
}

.home__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(158, 109, 224, 0.03) 0%, rgba(66, 153, 225, 0.02) 100%);
    z-index: 0;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, 60px 60px, -60px -60px, 0 0;
    }
}

.home__hero-content {
    position: relative;
    z-index: 2;
}

.home__hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary) 0%, var(--indigo) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.home__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.2s ease-out forwards;
}

.home__hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.4s ease-out forwards;
}

.home__hero-cta .btn-primary {
    position: relative;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    color: var(--white);
}

.home__hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    z-index: -1;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.home__hero-cta .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.home__hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(var(--primary-rgb), 0.3);
}

.home__hero-cta .btn-primary:hover::after {
    left: 0;
}

.home__hero-cta .btn-outline-primary {
    position: relative;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.home__hero-cta .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.home__hero-cta .btn-outline-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.home__hero-cta .btn-outline-primary:hover::before {
    left: 0;
}

/* Responsive styles for hero buttons */
@media (max-width: 576px) {
    .home__hero-cta {
        justify-content: center;
        gap: 0.75rem;
    }

    .home__hero-cta .btn-primary,
    .home__hero-cta .btn-outline-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 489px) {

    .home__hero-cta .btn-primary,
    .home__hero-cta .btn-primary,
    .home__hero-cta .btn-outline-primary {
        height: 50px;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

.text-rough-wrapper {
    position: relative;
    display: inline-block;
    min-width: 150px;
    height: 60px;
}

.text-rough {
    position: relative;
    display: inline-block;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.text-rough::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 5px;
    height: 12px;
    background-color: rgba(var(--primary-rgb), 0.2);
    z-index: -1;
    transform: rotate(-1deg);
    width: 0;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-rough.active {
    opacity: 1;
}

.text-rough.active::after {
    width: 100%;
}

.text-rough.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.home__hero-text-highlight {
    color: var(--primary);
    font-weight: 600;
}

.home__hero-highlight {
    position: relative;
    display: inline-block;
    color: var(--primary);
    z-index: 1;
}

.home__hero-text {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    max-width: 550px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 2.5rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.4s ease-out forwards;
}

.home__hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 540px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.3s ease-out forwards;
}

.home__hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.6s ease-out forwards;
}

.home__hero-btn {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
}

.home__hero-btn--primary {
    background: linear-gradient(45deg, var(--primary) 0%, var(--indigo) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
    min-width: 220px;
}

.home__hero-btn:hover {
    transform: translateY(-3px);
}

.home__hero-btn--primary:hover {
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.25);
}

.home__hero-info {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home__hero-info::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Visual elements */
.home__hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.home__hero-visual::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--indigo-rgb), 0.05) 40%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.home__hero-tech {
    position: relative;
    width: 100%;
    height: 600px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.6s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home__hero-tech-bg {
    position: absolute;
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--indigo-rgb), 0.03) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    border: 1px dashed rgba(var(--primary-rgb), 0.1);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.home__hero-tech-grid {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed rgba(var(--primary-rgb), 0.1);
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--primary-rgb), 0.01) 70%, transparent 100%);
    margin: 0 auto;
    animation: slowRotate 120s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.home__hero-tech-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    animation-play-state: running;
}

.home__hero-tech-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.7), rgba(var(--primary-rgb), 0.1));
    transform-origin: right center;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s 2.5s forwards, pulse-line 4s 3s ease-in-out infinite;
}

.home__hero-tech-item--1::before {
    transform: translate(50%, -50%) rotate(180deg);
}

.home__hero-tech-item--2::before {
    transform: translate(50%, -50%) rotate(225deg);
}

.home__hero-tech-item--3::before {
    transform: translate(50%, -50%) rotate(270deg);
}

.home__hero-tech-item--4::before {
    transform: translate(50%, -50%) rotate(315deg);
}

.home__hero-tech-item--5::before {
    transform: translate(50%, -50%) rotate(0deg);
}

.home__hero-tech-item--6::before {
    transform: translate(50%, -50%) rotate(45deg);
}

.home__hero-tech-item--7::before {
    transform: translate(50%, -50%) rotate(90deg);
}

.home__hero-tech-item--8::before {
    transform: translate(50%, -50%) rotate(135deg);
}

/* Positions calculées pour former un cercle parfait */
.home__hero-tech-item--1 {
    top: 60px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation: fadeInScale 0.5s 0.8s ease-out forwards;
}

.home__hero-tech-item--2 {
    top: 110px;
    right: 110px;
    transform: translate(50%, -50%) scale(0.8);
    animation: fadeInScaleRight 0.5s 1s ease-out forwards;
}

.home__hero-tech-item--3 {
    top: 50%;
    right: 60px;
    transform: translate(50%, -50%) scale(0.8);
    animation: fadeInScaleRight 0.5s 1.2s ease-out forwards;
}

.home__hero-tech-item--4 {
    bottom: 110px;
    right: 110px;
    transform: translate(50%, 50%) scale(0.8);
    animation: fadeInScaleBottomRight 0.5s 1.4s ease-out forwards;
}

.home__hero-tech-item--5 {
    bottom: 60px;
    left: 50%;
    transform: translate(-50%, 50%) scale(0.8);
    animation: fadeInScaleBottom 0.5s 1.6s ease-out forwards;
}

.home__hero-tech-item--6 {
    bottom: 110px;
    left: 110px;
    transform: translate(-50%, 50%) scale(0.8);
    animation: fadeInScaleBottom 0.5s 1.8s ease-out forwards;
}

.home__hero-tech-item--7 {
    top: 50%;
    left: 60px;
    transform: translate(-50%, -50%) scale(0.8);
    animation: fadeInScale 0.5s 2s ease-out forwards;
}

.home__hero-tech-item--8 {
    top: 110px;
    left: 110px;
    transform: translate(-50%, -50%) scale(0.8);
    animation: fadeInScale 0.5s 2.2s ease-out forwards;
}

.home__hero-tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    animation: none;
}

.home__hero-tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
}

.home__hero-tech-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 5s linear infinite;
    opacity: 0;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    20% {
        opacity: 0;
    }

    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

.home__hero-tech-item:hover .home__hero-tech-icon::after {
    opacity: 1;
    animation: shimmer 1.5s linear;
}

.home__hero-tech-icon--primary {
    color: var(--primary);
}

.home__hero-tech-icon--secondary {
    color: var(--secondary);
}

.home__hero-tech-icon--success {
    color: var(--success);
}

.home__hero-tech-icon--info {
    color: var(--info);
}

.home__hero-tech-icon--warning {
    color: var(--warning);
}

.home__hero-tech-icon--danger {
    color: var(--danger);
}

.home__hero-tech-icon--purple {
    color: var(--purple);
}

.home__hero-tech-icon--cyan {
    color: var(--cyan);
}

.home__hero-tech-item:hover .home__hero-tech-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.15);
}

.home__hero-tech-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
}

.home__hero-tech-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.25);
    position: relative;
    z-index: 15;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.25);
    }

    50% {
        box-shadow: 0 20px 45px rgba(var(--primary-rgb), 0.4);
    }

    100% {
        box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.25);
    }
}

.home__hero-tech-logo i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.home__hero-tech-logo span {
    font-size: 0.9rem;
    font-weight: 600;
}

.home__hero-tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1) 0, rgba(var(--primary-rgb), 0.1) 1px, transparent 1px),
        linear-gradient(to right, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 25px 25px, 25px 25px;
    opacity: 0.5;
}

.home__hero-tech-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 225px;
    height: 225px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(var(--primary-rgb), 0.15);
    border-radius: 50%;
    animation: pulse-border 4s ease-in-out infinite;
}

@keyframes pulse-border {
    0% {
        border-color: rgba(var(--primary-rgb), 0.15);
    }

    50% {
        border-color: rgba(var(--primary-rgb), 0.3);
    }

    100% {
        border-color: rgba(var(--primary-rgb), 0.15);
    }
}

.home__hero-tech-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.7), rgba(var(--primary-rgb), 0.1));
    transform-origin: left center;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.home__hero-tech-line--1 {
    width: 140px;
    transform: rotate(-90deg);
    animation: fadeIn 0.3s 0.9s forwards, pulse-line 4s 1.5s ease-in-out infinite;
}

.home__hero-tech-line--2 {
    width: 140px;
    transform: rotate(-45deg);
    animation: fadeIn 0.3s 1.1s forwards, pulse-line 4s 1.7s ease-in-out infinite;
}

.home__hero-tech-line--3 {
    width: 140px;
    transform: rotate(0deg);
    animation: fadeIn 0.3s 1.3s forwards, pulse-line 4s 1.9s ease-in-out infinite;
}

.home__hero-tech-line--4 {
    width: 140px;
    transform: rotate(45deg);
    animation: fadeIn 0.3s 1.5s forwards, pulse-line 4s 2.1s ease-in-out infinite;
}

.home__hero-tech-line--5 {
    width: 140px;
    transform: rotate(90deg);
    animation: fadeIn 0.3s 1.7s forwards, pulse-line 4s 2.3s ease-in-out infinite;
}

.home__hero-tech-line--6 {
    width: 140px;
    transform: rotate(135deg);
    animation: fadeIn 0.3s 1.9s forwards, pulse-line 4s 2.5s ease-in-out infinite;
}

.home__hero-tech-line--7 {
    width: 140px;
    transform: rotate(180deg);
    animation: fadeIn 0.3s 2.1s forwards, pulse-line 4s 2.7s ease-in-out infinite;
}

.home__hero-tech-line--8 {
    width: 140px;
    transform: rotate(225deg);
    animation: fadeIn 0.3s 2.3s forwards, pulse-line 4s 2.9s ease-in-out infinite;
}

@keyframes pulse-line {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1) translate(-50%, -50%);
    }
}

@keyframes fadeInScaleRight {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1) translate(50%, -50%);
    }
}

@keyframes fadeInScaleBottom {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1) translate(-50%, 50%);
    }
}

@keyframes fadeInScaleBottomRight {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1) translate(50%, 50%);
    }
}

@media(max-width: 991px) {
    .home__hero-section {
        padding: 4rem 0 6rem;
        margin-top: 80px;
    }

    .home__hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .home__hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .home__hero-actions {
        align-items: center;
    }

    .home__hero-visual {
        height: auto;
    }

    .home__hero-tech {
        height: 450px;
    }

    .home__hero-tech-bg {
        width: 400px;
        height: 400px;
    }
}

@media(max-width: 768px) {
    .home__hero-section {
        padding: 3rem 0 5rem;
        margin-top: 90px;
    }

    .home__hero-visual {
        height: auto;
    }

    .home__hero-tech {
        height: 400px;
    }

    .home__hero-tech-bg {
        width: 350px;
        height: 350px;
    }

    .home__hero-tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .home__hero-tech-logo {
        width: 100px;
        height: 100px;
    }

    .home__hero-tech-logo i {
        font-size: 2rem;
    }
}

@media(max-width: 576px) {
    .home__hero-section {
        margin-top: 100px;
        padding: 2.5rem 0 4rem;
    }

    .home__hero-tech {
        height: 350px;
    }

    .home__hero-tech-bg {
        width: 300px;
        height: 300px;
    }

    .home__hero-tech-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .home__hero-tech-label {
        font-size: 0.8rem;
    }

    .home__hero-tech-logo {
        width: 90px;
        height: 90px;
    }

    .home__hero-tech-logo i {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .home__hero-tech-logo span {
        font-size: 0.8rem;
    }
}



/* ABOUT SECTION - REFACTORED HERO COMPACT MINIMALISTE */

.home__about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* Pattern de fond */
.home__about-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(rgba(var(--primary-rgb), 0.08) 2px, transparent 2px),
        radial-gradient(rgba(var(--indigo-rgb), 0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.6;
    z-index: 0;
}

.home__about-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--indigo-rgb), 0.02) 100%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

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

/* Badge moderne principal */
.about-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg,
            rgba(var(--primary-rgb), 0.15) 0%,
            rgba(var(--indigo-rgb), 0.1) 100%);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-modern-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.2);
    border-color: rgba(var(--primary-rgb), 0.4);
}

.about-modern-badge .rocket {
    font-size: 1.2rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Nouveau titre avec gradient */
.about-main-heading {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.1s ease-out forwards;
}

.about-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 70%, #667eea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.about-gradient-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 0.8s 0.8s ease-out forwards;
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

/* Nouveau texte descriptif */
.about-description-text {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.2s ease-out forwards;
}

/* Nouveau CTA avec flèche */
.about-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.25);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 3rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.3s ease-out forwards;
}

.about-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.35);
    color: white;
}

.about-cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.about-cta-modern:hover .about-cta-arrow {
    transform: translateX(4px);
}

/* Badges flottants */
.about-floating-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.4s ease-out forwards;
}

.about-floating-badge {
    position: relative;
    background: white;
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.about-floating-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.15);
}

.about-floating-badge:nth-child(1) {
    animation-delay: 0.5s;
}

.about-floating-badge:nth-child(2) {
    animation-delay: 0.6s;
}

.about-floating-badge:nth-child(3) {
    animation-delay: 0.7s;
}

/* Tooltips pour les badges */
.about-floating-badge[data-tooltip] {
    position: relative;
}

.about-floating-badge[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.about-floating-badge[data-tooltip]:after {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.about-floating-badge:hover[data-tooltip]:before,
.about-floating-badge:hover[data-tooltip]:after {
    opacity: 1;
    visibility: visible;
}

/* Dashboard preview frame */
.about-dashboard-frame {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s 0.5s ease-out forwards;
}

.about-dashboard-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--primary-rgb), 0.2);
}

/* Header du dashboard */
.about-dashboard-header {
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.about-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.about-dashboard-dot.red {
    background: #ff5f56;
}

.about-dashboard-dot.yellow {
    background: #ffbd2e;
}

.about-dashboard-dot.green {
    background: #27ca3f;
}

.about-dashboard-frame:hover .about-dashboard-dot.red {
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.4);
}

.about-dashboard-title {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

/* Contenu du dashboard */
.about-dashboard-content {
    position: relative;
    padding: 2rem;
    min-height: 300px;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.about-dashboard-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

/* Indicateur de pulse */
.about-pulse-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 600;
}

.about-pulse-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Badge de statut */
.about-status-badge {
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s ease;
}

.about-dashboard-frame:hover .about-status-badge {
    background: rgba(var(--primary-rgb), 0.15);
    border-color: rgba(var(--primary-rgb), 0.5);
}

/* Animations d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section Styles */
.home__about-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--indigo-rgb), 0.05) 100%);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.home__about-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
    border-color: var(--primary);
}

.home__about-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.home__about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 2rem;
}

.home__about-cta {
    margin-bottom: 2rem;
}

.home__about-text-wrapper {
    margin-bottom: 3rem;
}

.home__about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home__about-image-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.home__about-image {
    position: relative;
    z-index: 1;
}

.home__about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.home__about-image-wrapper:hover img {
    transform: scale(1.05);
}

.home__about-cards-title {
    text-align: center;
    margin-bottom: 3rem;
}

.home__about-cards-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.home__about-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    /* height: 100%; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(var(--primary-rgb), 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home__about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.home__about-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home__about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.home__about-card:hover .home__about-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.home__about-card h3 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.home__about-card p {
    color: var(--gray);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.home__about-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(var(--primary-rgb), 0.02) 0%,
            rgba(var(--indigo-rgb), 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.home__about-card:hover .home__about-card-bg {
    opacity: 1;
}

/* Animation classes */
.animate-fade-right {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-0 {
    animation-delay: 0.1s;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for About section */
@media (max-width: 991px) {
    .home__about-section {
        padding: 4rem 0;
    }

    .home__about-heading {
        font-size: 2rem;
        text-align: center;
    }

    .home__about-text {
        text-align: center;
    }

    .home__about-cta {
        text-align: center;
    }

    .home__about-text-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .home__about-section {
        padding: 3rem 0;
    }

    .home__about-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .home__about-heading {
        font-size: 1.8rem;
    }

    .home__about-text {
        font-size: 1rem;
    }

    .home__about-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .home__about-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .home__about-card {
        padding: 1.25rem;
    }

    .home__about-cards-title h3 {
        font-size: 1.5rem;
    }
}

/* Pricing Section */
.home__pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.check-icon {
    width: 24px;
    height: 24px;
    fill: var(--indigo);
    margin-right: 0.5rem;
    vertical-align: -0.125em;

    overflow: hidden;
}

.home__pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml, <svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23e9ecef" /></svg>');
    opacity: 0.4;
}

.home__pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    isolation: isolate;
}

.home__pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--indigo-rgb), 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.home__pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.home__pricing-card:hover::after {
    opacity: 1;
}

.home__pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.home__pricing-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    margin-top: 0.75rem;
}

.price-period {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

.home__pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.home__pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.home__pricing-features li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.home__pricing-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

.home__pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary), var(--indigo));
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}

.home__pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
}

.home__pricing-card.popular {
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    color: white;
}

.home__pricing-card.popular .home__pricing-type,
.home__pricing-card.popular .price,
.home__pricing-card.popular .home__pricing-features li,
.home__pricing-card.popular .home__pricing-features i {
    color: white;
}

.home__pricing-card.popular .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.home__pricing-card.popular .home__pricing-button {
    background: white;
    color: var(--primary);
}

.home__pricing-card.popular .home__pricing-features li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media(max-width: 992px) {
    .home__pricing-card {
        padding: 2rem;
    }

    .price {
        font-size: 3.5rem;
    }
}

@media(max-width: 768px) {
    .home__pricing-card {
        margin-bottom: 2rem;
        width: 80%;
        margin: 0 auto;
    }

    .col-lg-4.mb-4 {
        margin-bottom: 1rem !important;
    }
}



/* Waitlist Section */
.waitlist-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.waitlist-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.waitlist-content {
    flex: 1;
}

.waitlist-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.waitlist-badge i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.waitlist-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
}

.text-highlight {
    position: relative;
    display: inline-block;
    color: #FFD700;
    font-weight: 800;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.waitlist-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.waitlist-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.waitlist-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.waitlist-benefits i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.waitlist-form-container {
    flex: 1;
    max-width: 450px;
}

.waitlist-form-wrapper {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.waitlist-form-content {
    transition: all 0.5s ease-out;
}

.waitlist-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.waitlist-form-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.waitlist-counter {
    font-weight: 700;
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 6px;
}

.waitlist-form {
    width: 100%;
}

.waitlist-form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.waitlist-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

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

.waitlist-button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--indigo));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.waitlist-privacy {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Styles pour les alertes dans le formulaire waitlist */
.waitlist-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInDown 0.3s ease-out;
}

.waitlist-alert.alert-danger {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.waitlist-alert.alert-warning {
    background-color: #fffbeb;
    border: 1px solid #fed7aa;
    color: #d97706;
}

.waitlist-alert i {
    font-size: 1rem;
    flex-shrink: 0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour Turbo Frame - Waitlist Success */
.waitlist-success-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
    background: white;
    animation: successFrameAppear 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.waitlist-success-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 109, 224, 0.1), transparent);
    animation: successShimmer 2s ease-in-out;
}

@keyframes successFrameAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes successShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist-success-icon-frame {
    font-size: 4rem;
    color: var(--indigo);
    margin: 1rem 0;
    animation: successPulse 2s infinite;
}

.waitlist-success-title-frame {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.waitlist-success-message-frame {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.waitlist-success-details-frame {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #64748b;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.waitlist-success-benefits-frame {
    background-color: rgba(var(--primary-rgb), 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.waitlist-success-benefits-frame p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--dark);
}

.waitlist-success-benefits-frame p:last-child {
    margin-bottom: 0;
}

.waitlist-success-benefits-frame i {
    color: #FFD700;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Canvas Confetti */
.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

@media (max-width: 992px) {
    .waitlist-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .waitlist-form-container {
        max-width: 100%;
        width: 100%;
    }

    .waitlist-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .waitlist-section {
        padding: 4rem 0;
    }

    .waitlist-form-wrapper {
        padding: 1.5rem;
    }

    .waitlist-form-group {
        flex-direction: column;
    }

    .waitlist-button {
        width: 100%;
    }

    .waitlist-title {
        font-size: 1.75rem;
    }

    .waitlist-form-title {
        font-size: 1.5rem;
    }

    .waitlist-form-subtitle {
        font-size: 0.9rem;
    }

    .waitlist-input {
        margin-bottom: 0.75rem;
    }
}

/* Styles pour les anciens boutons newsletter qui pourraient être réutilisés ailleurs */
.newsletter-button {
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.home__newsletter-title {
    font-weight: 900;
}

@media(max-width: 576px) {
    .newsletter-form {
        padding: 1.5rem;
    }

    .newsletter-input {
        padding: 0.75rem 1rem;
    }

    .newsletter-button {
        padding: 0.75rem 2rem;
    }
}


/* FAQ Section Styles */
.home__faq-section {
    background: white;
}

.home__faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home__faq-item:hover {
    background: #f1f3f5;
}

.home__faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2d3436;
    font-weight: 600;
    font-size: 0.9rem;
    user-select: none;
    margin: 0;
}

.home__faq-question .icon-down,
.home__faq-question .icon-up {
    color: var(--primary);
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.home__faq-question i {
    font-size: 1.4rem;
    vertical-align: middle;
    margin-top: -3px;
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home__faq-item.active .home__faq-question i {
    transform: rotate(-180deg);
}

.home__faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    position: relative;
    width: 100%;
}

.home__faq-item.active .home__faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: var(--content-height, 300px);
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

@media(max-width: 768px) {
    .home__faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .home__faq-answer {
        padding: 0 1.25rem;
    }

    .home__faq-item.active .home__faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}


/* Services Section */

.home__services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.home__services-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.home__services-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--primary);
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.service-member {
    background-color: rgba(170, 0, 255, 0.233);
}

.service-member i {
    color: rgb(170, 0, 255);
}

.service-events {
    background-color: rgba(25, 0, 255, 0.233);
}

.service-events i {
    color: rgb(25, 0, 255);
}

.service-money {
    background-color: rgba(3, 194, 9, 0.292);
}

.service-money i {
    color: rgb(3, 194, 9);
}

.service-ia {
    background-color: rgba(1, 216, 249, 0.292);
}

.service-ia i {
    color: rgb(1, 216, 249);
}

.service-analyze {
    background-color: rgba(249, 79, 1, 0.292);
}

.service-analyze i {
    color: rgb(249, 79, 1);
}

.service-communication {
    background-color: rgba(249, 199, 1, 0.292);
}

.service-communication i {
    color: rgb(249, 199, 1);
}


@media (max-width: 768px) {
    .home__services-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .home__services-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .home__services-card h3 {
        font-size: 1.1rem;
    }

    .home__services-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .home__services-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .home__services-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon {
        font-size: 1.75rem;
    }
}

.home__services-card:hover .home__services-icon {
    transform: scale(1.1);
    background: var(--primary, --purple);
}

.service-icon {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.home__services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-), 0.1) 0%, rgba(var(--primary), 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home__services-card:hover::before {
    opacity: 1;
}