/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --bleu-majeste: #4230D6;
    --orange-flamme: #FF8000;
    --mauve: #C4A9FA;
    --cyan: #80FFE8;
    --noir-profond: #171615;
    --blanc-doux: #F8F4EC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--blanc-doux);
    color: var(--noir-profond);
    overflow-x: hidden;
}

/* ============================================
   NETWORK BACKGROUND - PLUS VISIBLE
   ============================================ */
.network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(66, 48, 214, 0.25), transparent);
    height: 2px;
    width: 100%;
    animation: flowRight 15s linear infinite;
}

.network-line.vertical {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(66, 48, 214, 0.25), transparent);
    animation: flowDown 15s linear infinite;
}

@keyframes flowRight {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes flowDown {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* ============================================
   COMMON ELEMENTS
   ============================================ */
.section-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 700;
    color: var(--noir-profond);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn--primary {
    background: var(--bleu-majeste);
    color: white;
    border-color: var(--bleu-majeste);
}

.btn--primary:hover {
    background: transparent;
    color: var(--bleu-majeste);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 48, 214, 0.2);
}


.btn--lg {
    padding: 18px 50px;
    font-size: 15px;
}

/* ============================================
   HERO SECTION - CENTERED VERSION WITH GSAP
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 80px 80px;
    background: linear-gradient(135deg, var(--blanc-doux) 0%, rgba(196, 169, 250, 0.05) 100%);
}

.hero--centered {
    justify-content: center;
    text-align: center;
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero__wrapper--centered {
    justify-content: center;
    flex-direction: column;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__content--centered {
    max-width: 1000px;
    text-align: center;
}

/* Animated Title Styles */
.hero__title--animated {
    perspective: 1000px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    margin-right: 0.2em;
    will-change: transform, opacity;
}

.title-word:last-child {
    margin-right: 0;
}

/* Gradient Orbs - Decorative Background Elements */
.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(66, 48, 214, 0.25) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.hero__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 169, 250, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
}

.hero__gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(128, 255, 232, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Particles container */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(45px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--noir-profond);
}

.hero__title .title-italic {
    font-style: italic;
    color: var(--bleu-majeste);
    position: relative;
}

.hero__title .highlight {
    color: var(--bleu-majeste);
    position: relative;
    background: linear-gradient(
        90deg,
        var(--bleu-majeste) 0%,
        var(--mauve) 50%,
        var(--bleu-majeste) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(196, 169, 250, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--noir-profond);
    opacity: 0.8;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   CLIENT TYPE SECTION - JE SUIS...
   ============================================ */
.client-type {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--blanc-doux) 0%, white 100%);
    position: relative;
}

.client-type__container {
    max-width: 1000px;
    margin: 0 auto;
}

.client-type__title {
    text-align: center;
    margin-bottom: 50px;
}

.client-type__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.client-type__card {
    border-radius: 24px;
    padding: 45px 40px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image avocat */
.client-type__card:nth-child(1) {
    background-image: linear-gradient(135deg, rgba(66, 48, 214, 0.88), rgba(23, 22, 21, 0.75)),
                      url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&q=80');
}

/* Image expert-comptable */
.client-type__card:nth-child(2) {
    background-image: linear-gradient(135deg, rgba(255, 128, 0, 0.85), rgba(23, 22, 21, 0.75)),
                      url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=800&q=80');
}

.client-type__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-majeste), var(--mauve));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.client-type__card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.client-type__card:hover::before {
    transform: scaleX(1);
}

.client-type__card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--blanc-doux), rgba(255, 255, 255, 0.8));
}

.client-type__card:nth-child(2):hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.client-type__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s ease;
}

.client-type__card:nth-child(2) .client-type__icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.client-type__card:hover .client-type__icon {
    transform: scale(1.1) rotate(-5deg);
}

.client-type__card-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.client-type__card-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.client-type__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.client-type__card:nth-child(2) .client-type__link {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.client-type__link:hover {
    background: white;
    color: var(--bleu-majeste);
    border-color: white;
    transform: translateX(5px);
}

.client-type__card:nth-child(2) .client-type__link:hover {
    color: var(--orange-flamme);
}

.client-type__link svg {
    transition: transform 0.3s ease;
}

.client-type__link:hover svg {
    transform: translateX(5px);
}

/* Responsive Client Type */
@media (max-width: 768px) {
    .client-type {
        padding: 80px 30px;
    }

    .client-type__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .client-type__card {
        padding: 35px 30px;
    }

    .client-type__icon {
        width: 75px;
        height: 75px;
    }

    .client-type__card-title {
        font-size: 24px;
    }

    .client-type__link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CONCIERGERIE SECTION - VERSION MODERNE
   ============================================ */
.conciergerie {
    padding: 120px 80px;
    background: white;
    position: relative;
}

.conciergerie__container {
    max-width: 1400px;
    margin: 0 auto;
}

.conciergerie__title {
    text-align: center;
    margin-bottom: 20px;
}

.conciergerie__text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--noir-profond);
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.conciergerie__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.conciergerie__feature {
    position: relative;
    display: flex;
    gap: 0;
    padding: 0;
    background: var(--blanc-doux);
    border-radius: 20px;
    border: 2px solid rgba(66, 48, 214, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    min-height: 180px;
}

.conciergerie__feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.conciergerie__feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-majeste), var(--mauve));
    transition: width 0.4s ease;
}

.conciergerie__feature:hover::before {
    width: 100%;
}

.conciergerie__feature:hover {
    transform: translateY(-10px);
    border-color: var(--bleu-majeste);
    box-shadow: 0 20px 50px rgba(66, 48, 214, 0.15);
}

.conciergerie__feature-image {
    flex-shrink: 0;
    width: 35%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 18px 0 0 18px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.conciergerie__feature:hover .conciergerie__feature-image {
    transform: scale(1.05);
}

/* Images Unsplash pour chaque feature */
.conciergerie__feature[data-feature="internet"] .conciergerie__feature-image {
    background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=400&q=80');
}

.conciergerie__feature[data-feature="printer"] .conciergerie__feature-image {
    background-image: url('https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?w=400&q=80');
}

.conciergerie__feature[data-feature="software"] .conciergerie__feature-image {
    background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=400&q=80');
}

.conciergerie__feature[data-feature="phone"] .conciergerie__feature-image {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=400&q=80');
}

.conciergerie__feature-content {
    flex: 1;
    margin-left: 35%;
    padding: 30px 35px;
}

.conciergerie__feature-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--noir-profond);
}

.conciergerie__feature-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--noir-profond);
    opacity: 0.7;
}

.conciergerie__highlight {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--bleu-majeste) 0%, rgba(196, 169, 250, 0.9) 100%);
    border-radius: 20px;
    color: white;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    box-shadow: 0 20px 50px rgba(66, 48, 214, 0.2);
}

.conciergerie__highlight strong {
    font-weight: 700;
    font-size: 22px;
}

/* ============================================
   ALERT STATS SECTION
   ============================================ */
.alert-stats {
    padding: 100px 80px;
    background: var(--bleu-majeste);
    position: relative;
    overflow: hidden;
}

.alert-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 169, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.alert-stats__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.alert-stats__header {
    text-align: center;
    margin-bottom: 60px;
}

.alert-stats__title {
    color: white;
    margin-bottom: 15px;
}

.alert-stats__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.alert-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-card__number {
    font-family: 'Baloo 2', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.stat-card__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.stat-card__description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stat-card__source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.alert-stats__cta {
    text-align: center;
}

.alert-stats__cta-text {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
}

.alert-stats .btn--primary {
    background: var(--blanc-doux);
    color: var(--bleu-majeste);
    border-color: var(--blanc-doux);
}

.alert-stats .btn--primary:hover {
    background: var(--bleu-majeste);
    color: var(--blanc-doux);
    border-color: var(--blanc-doux);
    box-shadow: 0 10px 30px rgba(66, 48, 214, 0.25);
}

/* ============================================
   SERVICES SECTION - AVEC IMAGES CORPORATE
   ============================================ */
.services {
    padding: 120px 80px;
    background: var(--blanc-doux);
    position: relative;
}

.services__container {
    max-width: 1400px;
    margin: 0 auto;
}

.services__header {
    margin: 0 auto 80px;
    text-align: center;
}

.services__title {
    margin-bottom: 20px;
}

.services__subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--noir-profond);
    opacity: 0.7;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    min-height: 500px;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Images de fond corporate pour chaque service */
.service-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.service-card:hover .service-card__bg {
    transform: scale(1.05);
}

/* Images Unsplash corporate */
.service-card[data-service="coordination"] .service-card__bg {
    background-image: linear-gradient(135deg, rgba(66, 48, 214, 0.85), rgba(196, 169, 250, 0.85)),
                      url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&q=80');
}

.service-card[data-service="support"] .service-card__bg {
    background-image: linear-gradient(135deg, rgba(255, 128, 0, 0.85), rgba(255, 128, 0, 0.75)),
                      url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?w=800&q=80');
}

.service-card[data-service="security"] .service-card__bg {
    background-image: linear-gradient(135deg, rgba(196, 169, 250, 0.85), rgba(128, 255, 232, 0.75)),
                      url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=800&q=80');
}

.service-card[data-service="backup"] .service-card__bg {
    background-image: linear-gradient(135deg, rgba(128, 255, 232, 0.85), rgba(66, 48, 214, 0.75)),
                      url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=800&q=80');
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 45px 40px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card__number {
    font-family: 'Baloo 2', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.service-card__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-card__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.service-card__list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card__list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.service-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card__link:hover {
    background: white;
    color: var(--bleu-majeste);
    transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE SECTION - VERSION PREMIUM
   ============================================ */
.why-choose {
    padding: 120px 80px;
    background: linear-gradient(180deg, white 0%, var(--blanc-doux) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(66, 48, 214, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 128, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose__title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.why-choose__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-majeste), var(--orange-flamme));
    border-radius: 2px;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-choose__item {
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: 24px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.why-choose__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-choose__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-majeste), var(--mauve));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose__item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(66, 48, 214, 0.15);
}

.why-choose__item:hover::before {
    opacity: 1;
}

/* Couleurs différentes pour chaque card */
.why-choose__item:nth-child(1):hover::before {
    background: linear-gradient(90deg, var(--bleu-majeste), var(--mauve));
}

.why-choose__item:nth-child(2):hover::before {
    background: linear-gradient(90deg, var(--orange-flamme), #ffb366);
}

.why-choose__item:nth-child(3):hover::before {
    background: linear-gradient(90deg, var(--mauve), var(--cyan));
}

.why-choose__item:nth-child(4):hover::before {
    background: linear-gradient(90deg, var(--cyan), var(--bleu-majeste));
}

.why-choose__item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 36px;
    transition: all 0.4s ease;
}

/* Couleurs d'icônes pour chaque card */
.why-choose__item:nth-child(1) .why-choose__item-icon {
    background: linear-gradient(135deg, rgba(66, 48, 214, 0.1), rgba(196, 169, 250, 0.15));
}

.why-choose__item:nth-child(2) .why-choose__item-icon {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.1), rgba(255, 179, 102, 0.15));
}

.why-choose__item:nth-child(3) .why-choose__item-icon {
    background: linear-gradient(135deg, rgba(196, 169, 250, 0.15), rgba(128, 255, 232, 0.1));
}

.why-choose__item:nth-child(4) .why-choose__item-icon {
    background: linear-gradient(135deg, rgba(128, 255, 232, 0.15), rgba(66, 48, 214, 0.1));
}

.why-choose__item:hover .why-choose__item-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-choose__item-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--noir-profond);
    line-height: 1.3;
}

.why-choose__item-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--noir-profond);
    opacity: 0.7;
}

/* ============================================
   FINAL CTA SECTION - FOND COLORÉ
   ============================================ */
.final-cta {
    padding: 120px 80px;
    background: linear-gradient(135deg, var(--bleu-majeste) 0%, var(--mauve) 50%, var(--cyan) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.final-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta__content {
    text-align: center;
}

.final-cta__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(35px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.final-cta__text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-cta .btn--primary {
    background: white;
    color: var(--bleu-majeste);
    border-color: white;
}

.final-cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .conciergerie__features {
        grid-template-columns: 1fr;
    }

    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .why-choose__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .hero__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero__gradient-orb--1 {
        width: 350px;
        height: 350px;
    }

    .hero__gradient-orb--2 {
        width: 280px;
        height: 280px;
    }

    .hero__gradient-orb--3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero,
    .conciergerie,
    .services,
    .why-choose,
    .alert-stats,
    .final-cta {
        padding: 80px 30px;
    }

    .hero__wrapper {
        gap: 40px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__gradient-orb {
        filter: blur(60px);
    }

    .hero__gradient-orb--1 {
        width: 250px;
        height: 250px;
        top: -5%;
        right: -10%;
    }

    .hero__gradient-orb--2 {
        width: 200px;
        height: 200px;
        bottom: 5%;
        left: -10%;
    }

    .hero__gradient-orb--3 {
        width: 150px;
        height: 150px;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .conciergerie__features {
        gap: 20px;
    }
    
    .conciergerie__feature {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .conciergerie__feature-image {
        position: relative;
        width: 100%;
        height: 150px;
        margin-left: 0;
        border-radius: 18px 18px 0 0;
    }

    .conciergerie__feature-content {
        margin-left: 0;
        padding: 25px;
    }

    .services__grid {
        gap: 20px;
    }

    .service-card {
        min-height: 450px;
    }

    .service-card__content {
        padding: 30px 25px;
    }

    .alert-stats__grid {
        grid-template-columns: 1fr;
    }

    .why-choose__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .why-choose__item {
        padding: 30px 25px;
    }

    .why-choose__item-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .why-choose__item-title {
        font-size: 18px;
    }
}
