@import url('https://fonts.googleapis.com/css2?family=Trendsansone:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

/* Variables */
:root {
    --primary: 222 100% 56%;
    /* #3055ff en HSL */
    --primary-hex: #3055ff;
    --border: 0 0% 85%;
    --muted: 0 0% 88%;
    --primary-color: #3055ff;
    --secondary-color: #6690ff;
    --accent-color: #3055ff;
    --text-color: #333;
    --light-text: #fff;
    --background-color: #f8faff;
    --transition: all 0.3s ease;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --primary-color: #3055ff;
    /* Ta couleur principale */
    --background-dark: #1e293b;
    /* Couleur de fond sombre pour le body, inspirée de tes titres */
    --light-gray: #f5f6f9;
    /* Fond des onglets inactifs */
    --white: #ffffff;
    --text-color-dark: #1e293b;
    /* Couleur du texte des titres dans le contenu */
    --text-color-light: #475569;
    /* Couleur du texte des paragraphes dans le contenu */
    --active-tab-bg: #ffffff;
    /* Fond de l'onglet actif */
    --active-tab-indicator: var(--primary-color);
    /* Ligne active et icône active */
    --inactive-tab-text: #64748b;
    /* Couleur du texte des onglets inactifs */
    --inactive-tab-icon-filter: grayscale(100%);
    /* Filtre pour les icônes inactives */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --feature-box-bg: #ffffff;
    /* Fond des boîtes de fonctionnalités */
    --feature-box-border: #e2e8f0;
    /* Bordure des boîtes de fonctionnalités */
    --surface-color: #1a1d2d;
    --secondary-text-color: #a0a3af;
    --primary-text-color: #f0f0f5;
    /* Palette de couleurs "Clair & Professionnel" */
    --bg-color: #f4f6fc;
    --accent-color-primary: #3055ff;
    --accent-color-secondary: rgb(246, 81, 29);
    --accent-gradient: linear-gradient(90deg, var(--accent-color-primary), #5A7FFF);
    --border-color: #e0e5f0;
    --shadow-color: rgba(48, 85, 255, 0.1);
    /* NOUVELLE COULEUR POUR LES FORMES */
    --accent-color-primary-light: #e0e7ff;
    /* Métriques de design */
    --border-radius: 12px;
    --transition-speed-fast: 0.2s;
    --transition-speed-medium: 0.4s;
    --font-family: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
    color: var(--text-color);
    background: #fff;
    position: relative;
    display: block;
    justify-content: unset;
    align-items: unset;
    min-height: unset;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#4475ff 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

@media (max-width: 700px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 90px;
    min-height: 90px;
    display: flex;
    align-items: center;
    left: 0;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 90px;
    width: 100%;
}

.logo {
    height: 90px;
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.logo img {
    height: 90px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
    color: #E94F37;
}

.nav-links a:hover::after {
    background-color: #E94F37;
}

.nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 480px;
    height: 80vh;
    max-height: 800px;
    background: #3055ff;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--light-text);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-container.hero-arrow-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
}

.hero-content.left-align {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    z-index: 2;
}

.hero-photo-arrow {
    position: relative;
    flex: 0 0 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    overflow: hidden;
}

.hero-photo-arrow-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-photo-arrow-img img {
    position: static;
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 0;
    display: block;
    left: auto;
    top: auto;
    transform: none;
}

.hero-photo-bandeau {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(48, 85, 255, 0.08);
    padding: 1.2rem 2.2rem 1.1rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    gap: 0.2rem;
    margin-top: 0;
}

.hero-photo-bandeau .name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    margin-bottom: 0.1rem;
}

.hero-photo-bandeau .title {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.hero-photo-bandeau .hero-social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.1rem;
}

.hero-photo-bandeau .hero-social-links .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #e6eeff 60%, #d0e0ff 100%);
    border-radius: 50%;
    color: #3055ff;
    font-size: 1.45rem;
    box-shadow: 0 4px 16px rgba(68, 117, 255, 0.13);
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 2px solid #d0e0ff;
    text-decoration: none;
    outline: 0;
}

.hero-photo-bandeau .hero-social-links .social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px) scale(1.12);
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(48, 85, 255, 0.18);
}

.hero-photo-bandeau .hero-social-links .agency-btn {
    padding: 0 1em;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 20px;
    background: linear-gradient(135deg, #e6eeff 60%, #d0e0ff 100%);
    color: #3055ff;
    margin-left: 0.2rem;
    width: auto;
    height: 42px;
    box-shadow: 0 4px 16px rgba(68, 117, 255, 0.13);
    border: 2px solid #d0e0ff;
    display: flex;
    align-items: center;
    gap: 0.3em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.hero-photo-bandeau .hero-social-links .agency-btn:hover {
    background: #3055ff;
    color: #fff;
    border-color: #3055ff;
    box-shadow: 0 6px 24px rgba(48, 85, 255, 0.18);
}

.hero-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-content .hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-content .hero-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 420px;
}

.hero-content .cta-button {
    border-radius: 12px;
    font-size: 1.1rem;
    padding: 1.2rem 2.4rem;
    font-weight: 600;
    background: #F6511D;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content .cta-button:hover {
    background: #fff;
    color: #F6511D;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-visual,
.hero-photo-card,
.hero-photo,
.hero-ribbon,
.hero-icons {
    display: none !important;
}

/* Expertise Section */
.expertise {
    padding: 30px 0 20px;
    /* background: var(--background-color, #f7f9fc); */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(48, 85, 255, 0.07);
    padding: 1rem 0.7rem 0.7rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

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

.expertise-card:nth-child(1) {
    background: #3055ff;
    color: #fff;
}

.expertise-card:nth-child(2) {
    background: #00c48d;
    color: #fff;
}

.expertise-card:nth-child(3) {
    background: #7c3aed;
    color: #fff;
}

.expertise-card:nth-child(4) {
    background: #ff9900;
    color: #333;
}

.expertise-card .expertise-content {
    flex: 1;
    text-align: center;
}

.expertise-card .expertise-content h3 {
    margin: 0.2rem 0 0.3rem;
    font-size: 1.5rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
    color: inherit;
    text-align: center;
}

.expertise-card .expertise-content p {
    font-size: 1.13rem;
    color: inherit;
    text-align: justify;
}

.expertise-card ul {
    list-style: disc inside;
    margin: 0.2rem 0 0 0;
    padding-left: 0.5em;
    text-align: left;
}

.expertise-card ul li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    font-weight: 500;
    color: inherit;
}

.expertise-card ul li b {
    font-weight: 700;
}

.expertise-card ul li::marker {
    font-size: 1.1em;
}

@media (max-width: 900px) {
    .expertise-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        max-width: 98vw;
    }

    .expertise-card {
        width: 98%;
        padding: 1.5rem 0.7rem 1.2rem;
        flex-direction: column;
    }

    .expertise-card .expertise-content h3,
    .expertise-card .expertise-content p {
        text-align: center;
    }
}

/* Parcours Section */
.parcours {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background-color) 0%, #fff 100%);
    position: relative;
}

.parcours .intro {
    font-size: 1.25rem;
    color: var(--primary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.mon-parcours {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mon-parcours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
}

.mon-parcours p {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.mon-parcours p:last-child {
    margin-bottom: 0;
}

.mon-parcours p::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(68, 117, 255, 0.1);
}

/* Ajout d'une animation au survol */
.mon-parcours:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 40px rgba(68, 117, 255, 0.15);
}

/* Style pour les dates importantes */
.date-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .parcours {
        padding: 4rem 0;
    }

    .mon-parcours {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .mon-parcours p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .parcours .intro {
        font-size: 1.1rem;
        margin: 0 1rem 2rem;
    }

    .hero-photo-arrow-img img {
        width: 180px;
        height: 180px;
    }
}

/* Réalisations Section */
.realisations {
    padding: 100px 0;
    background: var(--background-color);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.realisation-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.realisation-content {
    padding: 2rem;
}

.realisation-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.results {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.realisation-content ul {
    list-style: none;
}

.realisation-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

/* Contact Section */
.contact {
    padding: 10px 0;
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 2rem 0;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-container.hero-arrow-layout {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .hero-photo-arrow {
        flex: 0 0 400px;
        height: 400px;
        margin-top: 20px;
    }

    .hero-photo-arrow-img::before {
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
    }

    .hero-content.left-align {
        align-items: center;
        text-align: center;
    }

    .expertise-card,
    .outil-card,
    .offre-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }

    .expertise-card h3 {
        font-size: 2rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .header,
    .nav-container {
        height: 70px;
        min-height: 70px;
    }

    .logo {
        height: 70px;
        margin-right: 1rem;
    }

    .logo img {
        height: 70px;
        max-width: 160px;
    }

    .hero {
        padding-top: 70px;
        min-height: 320px;
        height: auto;
        max-height: none;
    }

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

    .hero-photo {
        width: 90px;
        height: 90px;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: var(--transition);
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px !important;
        padding-right: 0 !important;
    }

    .timeline-content::before {
        left: -40px !important;
    }
}

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

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Section Mes Outils */
.outils {
    padding: 100px 0;
    background: var(--background-color);
}

.outils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

.outil-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(48, 85, 255, 0.1);
    overflow: visible;
}

.outil-card:hover {
    transform: translateY(-8px);
    border-color: #3055ff;
    box-shadow: 0 16px 48px rgba(48, 85, 255, 0.12);
}

.outil-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.outil-card:hover img {
    transform: scale(1.12);
}

.outil-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3055ff;
    margin-bottom: 0.8rem;
    text-align: center;
}

.outil-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    text-align: center;
}

/* Style spécial pour les cartes doubles (Excel & Sheets) */
.outil-card.outil-card-double .outil-double-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.outil-card.outil-card-double .outil-img-left,
.outil-card.outil-card-double .outil-img-right {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.outil-card.outil-card-double:hover .outil-img-left {
    transform: scale(1.12) rotate(-5deg);
}

.outil-card.outil-card-double:hover .outil-img-right {
    transform: scale(1.12) rotate(5deg);
}

.outil-diagonal-bar {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #3055ff 0%, #7b5be6 100%);
    border-radius: 2px;
    transform: rotate(-45deg);
}

/* Style spécial pour la carte IA avec multiple logos */
.outil-card .ia-logos {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.outil-card .ia-logos img {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
}

.outil-card .ia-logos img:first-child {
    width: 44px;
    height: 44px;
}

/* Animation d'entrée AOS personnalisée */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .outils-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 0 10px;
    }

    .outil-card {
        padding: 1.5rem;
    }

    .outil-card h3 {
        font-size: 1.2rem;
    }

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

.outil-card .outil-double-img,
.outil-card>div:first-child {
    position: relative;
    z-index: 2;
}

.outil-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.outil-card p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Pour les cartes doubles (Excel & Sheets) */
.outil-card-double .outil-double-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8faff 60%, #e6eeff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(68, 117, 255, 0.08);
    margin-bottom: 1rem;
    transition: box-shadow 0.2s, border-color 0.2s;
    padding: 0;
}

.outil-card-double:hover .outil-double-img {
    box-shadow: 0 8px 24px rgba(68, 117, 255, 0.15);
}

.outil-img-left,
.outil-img-right {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.2s;
    padding: 0;
    background: none;
}

.outil-card-double:hover .outil-img-left,
.outil-card-double:hover .outil-img-right {}

.outil-diagonal-bar {
    width: 18px;
    height: 3px;
    background: linear-gradient(90deg, #e6eeff 0%, var(--primary-color) 100%);
    border-radius: 2px;
    margin: 0 4px;
}

/* Section Mes Offres */
.offres {
    width: 100%;
}

.offres>.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.offre-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    /* color: #2d3748; */
    /* background: linear-gradient(135deg, #3055ff 0%, #2041cc 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

.offre-desc {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}


.offre-card .cta-button {
    margin-top: auto;
    align-self: flex-start;
}

.offre-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.4em 1em;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(48, 85, 255, 0.10);
    letter-spacing: 1px;
}

.offres-consigne {
    text-align: center;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.offre-card.selectable {
    cursor: pointer;
    border: 1px solid #e0e5f0;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: var(--card-shadow);
}

.offre-card.selectable.selected {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(48, 85, 255, 0.18);
    background: #f0f5ff;
}

#valider-offres {
    display: block;
    margin: 2.5rem auto 0 auto;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .offres-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offre-card {
        min-height: 0;
    }
}

.offres-choisies-message {
    background: #f0f5ff;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(48, 85, 255, 0.07);
    transition: background 0.2s, color 0.2s;
}

.cloud-divider {
    position: relative;
    width: 100%;
    height: 120px;
    z-index: 1;
}


h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #3055ff;
    margin-top: 2.2rem;
    margin-bottom: 1.1rem;
    letter-spacing: -0.5px;
    position: relative;
}


.mes-outils h3::after {
    margin: 12px 0 0 0;
}

@keyframes morph {
    0% {
        border-radius: 90% 60% 80% 70% / 80% 90% 60% 70%;
    }

    50% {
        border-radius: 60% 100% 70% 100% / 100% 70% 100% 60%;
    }

    100% {
        border-radius: 90% 60% 80% 70% / 80% 90% 60% 70%;
    }
}

/* Cartes premium par section */
.expertise-card--blue,
.outil-card--green,
.offre-card--orange {
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(48, 85, 255, 0.13), 0 1.5px 8px rgba(246, 81, 29, 0.07);
    background: #fff;
    position: relative;
    overflow: hidden;
    border: none;
    padding-top: 2.5rem;
}


.expertise-card--blue::before {
    background: linear-gradient(120deg, #3055ff 60%, #4475ff 100%);
    opacity: 0.18;
}

.expertise-card--blue h3 {
    color: #3055ff;
    position: relative;
    z-index: 2;
}

.offre-card--orange h3 {
    color: #F6511D;
    position: relative;
    z-index: 2;
}

.expertise-card--blue {
    border: 2.5px solid #3055ff22;
}

.outil-card--green {
    border: 2.5px solid #1ecb7c22;
}

.offre-card--orange {
    border: 2.5px solid #F6511D22;
}

.expertise-card--blue:hover,
.outil-card--green:hover,
.offre-card--orange:hover {
    box-shadow: 0 16px 48px rgba(48, 85, 255, 0.18), 0 6px 24px rgba(246, 81, 29, 0.13);
    transform: translateY(-8px) scale(1.04);
    border-color: #3055ff;
}

@media (max-width: 900px) {

    .expertise-card--blue,
    .outil-card--green,
    .offre-card--orange {
        border-radius: 18px;
        padding-top: 1.5rem;
    }

    .expertise-card--blue::before,
    .outil-card--green::before,
    .offre-card--orange::before {
        height: 50px;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }
}

.btn-modern {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--light-text);
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 117, 255, 0.2);
}

.btn-modern:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-modern--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-modern--secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

/* Orange Button */
.btn-modern--orange {
    background: #E94F37;
}

.btn-modern--orange:hover {
    box-shadow: 0 4px 12px rgba(233, 79, 55, 0.2);
}

/* Replace old button styles */
.cta-button,
.btn-split,
.offre-card .cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--light-text);
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover,
.btn-split:hover,
.offre-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 117, 255, 0.2);
}

.cta-button:active,
.btn-split:active,
.offre-card .cta-button:active {
    transform: translateY(0);
}

/* Remove old complex button styles */
.btn-split::before,
.btn-split::after {
    display: none;
}

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

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

.blob-morphing {
    position: absolute;
    pointer-events: none;
}

.blob-morphing-right {
    z-index: 0;
    right: 2vw;
    bottom: -80px;
    width: 600px;
    height: 600px;
}

.blob-morphing-left {
    z-index: 0;
    left: 50%;
    bottom: -40px;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
}

@media (max-width: 900px) {
    .blob-morphing-right {
        width: 320px;
        height: 320px;
        right: 0;
        bottom: -40px;
    }

    .blob-morphing-left {
        width: 120px;
        height: 120px;
        bottom: -20px;
    }
}

/* Expertise pleine largeur */
.expertise-fullwidth {
    width: 100%;
    padding: 0 0;
}

.expertise-block {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 350px;
    padding: 40px 5vw;
    color: #fff;
}

.expertise-block--blue {
    background: #fff;
    color: #1877f2;
}

.expertise-block--blue h3,
.expertise-block--blue p,
.expertise-block--blue ul,
.expertise-block--blue li {
    color: #1877f2;
}

.expertise-block--blue ul {
    list-style-type: disc;
}

.expertise-block--green {
    background: #00c48d;
}

.expertise-block--orange {
    background: #ff9900;
}

.expertise-block--purple {
    background: #7c3aed;
}

.expertise-content {
    flex: 1;
    padding: 0 60px;
}

.expertise-content h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.expertise-content ul {
    margin: 20px 0 0 0;
    padding-left: 20px;
}

@media (max-width: 900px) {
    .expertise-block {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .expertise-content {
        padding: 0 20px;
    }
}

.hero-floating-photo {
    position: absolute;
    right: 7vw;
    bottom: -40px;
    z-index: 10;
    pointer-events: none;
}

.hero-floating-photo .hero-photo-bandeau {
    position: absolute;
    left: 48%;
    bottom: 62px;
    transform: translateX(-50%);
    z-index: 20;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-floating-photo img {
    width: 540px;
    max-width: 65vw;
    height: auto;
    box-shadow: none;
    border-radius: 24px;
    transform: rotate(2deg) scale(1.04);
    background: none;
    display: block;
}

@media (max-width: 900px) {
    .hero-floating-photo {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -24px;
    }

    .hero-floating-photo .hero-photo-bandeau {
        left: 50%;
        bottom: 28px;
        transform: translateX(-50%);
    }
}

.blob-morphing {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.blob-morphing-left {
    top: -80px;
    left: -120px;
    width: 420px;
    height: 420px;
}

.blob-morphing-right {
    bottom: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
}

@media (max-width: 900px) {
    .blob-morphing-left {
        top: -40px;
        left: -60px;
        width: 180px;
        height: 180px;
    }

    .blob-morphing-right {
        bottom: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
    }
}

/* Animations blobs morphing façon CodePen */
@keyframes blob-move-1 {
    0% {
        transform: scale(1) translate(10px, -30px);
    }

    38% {
        transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg);
    }

    40% {
        transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg);
    }

    78% {
        transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg);
    }

    80% {
        transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg);
    }

    100% {
        transform: scale(1) translate(10px, -30px);
    }
}

@keyframes blob-move-2 {
    0% {
        transform: scale(1) translate(0, 0);
    }

    30% {
        transform: scale(1.1, 0.9) translate(-40vw, 20vh) rotate(120deg);
    }

    32% {
        transform: scale(1.1, 0.9) translate(-40vw, 20vh) rotate(120deg);
    }

    70% {
        transform: scale(0.9, 1.2) translate(10vw, 40vh) rotate(-30deg);
    }

    72% {
        transform: scale(0.9, 1.2) translate(10vw, 40vh) rotate(-30deg);
    }

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

@keyframes blob-move-3 {
    0% {
        transform: scale(1) translate(0, 0);
    }

    25% {
        transform: scale(0.95, 1.1) translate(-20vw, 10vh) rotate(80deg);
    }

    27% {
        transform: scale(0.95, 1.1) translate(-20vw, 10vh) rotate(80deg);
    }

    60% {
        transform: scale(1.2, 0.8) translate(30vw, 30vh) rotate(-40deg);
    }

    62% {
        transform: scale(1.2, 0.8) translate(30vw, 30vh) rotate(-40deg);
    }

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

.blob-1 {
    animation: blob-move-1 18s ease-in-out infinite;
    opacity: 0.18;
}

.blob-2 {
    animation: blob-move-2 22s ease-in-out infinite;
    opacity: 0.13;
}

.blob-3 {
    animation: blob-move-3 20s ease-in-out infinite;
    opacity: 0.15;
}

@media (max-width: 900px) {
    .blob-1 {
        width: 120px;
        height: 120px;
        left: -20px;
        top: -15px;
    }

    .blob-2 {
        width: 80px;
        height: 80px;
        left: 30vw;
        bottom: 10px;
    }

    .blob-3 {
        width: 60px;
        height: 60px;
        right: 2vw;
        top: 20px;
    }
}

/* Section chiffres clés */
.chiffres-cles {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0px 0;
    padding: 0;
}

.chiffres-cles-grid {
    display: flex;
    gap: 2.5rem;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: stretch;
    padding: 0 20px;
}

.chiffre-card {
    padding: 2.2rem 2.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 0;
}

.chiffre-card:hover {
    box-shadow: none;
    transform: none;
}

.chiffre-valeur {
    font-size: 2.7rem;
    font-weight: 800;
    color: #3055ff;
    margin-bottom: 0.5rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
    letter-spacing: -1px;
    min-height: 3.2rem;
    line-height: 1.1;
}

.chiffre-label {
    color: #444;
    font-size: 1.08rem;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 900px) {
    .chiffres-cles-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        padding: 0 8px;
        max-width: 100%;
    }

    .chiffre-card {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }

    .chiffre-valeur {
        font-size: 2rem;
        min-height: 2.2rem;
    }
}

/* Modal Mentions légales */
.modal-mentions {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 32, 48, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-mentions-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(48, 85, 255, 0.13);
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    max-width: 700px;
    width: 98vw;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    color: #222;
}

.modal-mentions-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    text-align: center;
}

.modal-mentions-content p {
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

.modal-mentions-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #3055ff;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-mentions-close:hover {
    color: #E94F37;
}

@media (max-width: 800px) {
    .modal-mentions-content {
        max-width: 98vw;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }

    .modal-mentions-content h2 {
        font-size: 1.1rem;
    }
}

.outil-card.outil-card--green {
    min-height: 220px;
    padding: 2.2rem 2rem 1.7rem 2rem;
    font-size: 1.13rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(48, 85, 255, 0.10), 0 1.5px 8px rgba(246, 81, 29, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    text-align: center;
    overflow: visible;
}

.outil-card.outil-card--green h3 {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2CE2E8 !important;
}

.outil-card.outil-card--green .fa,
.outil-card.outil-card--green .fab,
.outil-card.outil-card--green .fas {
    color: #2CE2E8 !important;
}

.outil-card.outil-card--green p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 1.08rem;
    padding: 0 0.5rem;
}

/* Modernisation avancée des cartes offres */
.offre-card {
    background: linear-gradient(135deg, #fafdff 60%, #eaf3fa 100%);
    border-radius: 2.2rem;
    box-shadow: 0 8px 32px rgba(44, 127, 232, 0.13), 0 1.5px 8px rgba(44, 127, 232, 0.07);
    padding: 2.5rem 2rem 2.2rem 2.5rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s cubic-bezier(.4, 2, .6, 1);
    border: none;
    margin-bottom: 0.5rem;
    overflow: visible;
}

.offre-card:hover {
    transform: scale(1.045) translateY(-6px);
    box-shadow: 0 16px 48px 0 rgba(44, 127, 232, 0.18), 0 6px 24px rgba(44, 127, 232, 0.13);
    z-index: 2;
}

.offre-card.selectable.selected {
    box-shadow: 0 0 0 4px #2C7FE8, 0 16px 48px 0 rgba(44, 127, 232, 0.18);
    border: none;
    background: linear-gradient(135deg, #3055ff 0%, #2041cc 100%);
}

.offre-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #F6511D;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #3055ff 0%, #2041cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offre-card .cta-button {
    margin-top: auto;
    align-self: flex-start;
    background: linear-gradient(90deg, #2C7FE8 60%, #4df2f7 100%);
    color: #fff;
    border-radius: 1.2rem;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    box-shadow: 0 2px 8px rgba(44, 127, 232, 0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    letter-spacing: 0.04em;
}

.offre-card .cta-button:hover {
    background: linear-gradient(90deg, #1a5ca8 60%, #2C7FE8 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(44, 127, 232, 0.18);
    transform: scale(1.07);
}

.offre-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #F6511D;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    padding: 0.5em 1.2em;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(246, 81, 29, 0.13);
    letter-spacing: 0.04em;
    z-index: 3;
    text-transform: uppercase;
}

@media (max-width: 900px) {

    .offre-card,
    .offre-card--info {
        min-height: 0;
        padding: 1.2rem 1rem 1.2rem 1rem;
        border-radius: 1.2rem;
    }

    .offre-card--orange::before {
        height: 36px;
        border-top-left-radius: 1.2rem;
        border-top-right-radius: 1.2rem;
    }
}

/* Carte info Mes Offres (première carte) */
.offre-card--info {
    background: #2C7FE8;
    color: #fff;
    border-radius: 2.2rem;
    box-shadow: 0 8px 32px rgba(44, 127, 232, 0.18), 0 1.5px 8px rgba(44, 127, 232, 0.07);
    padding: 2.5rem 2rem 2.2rem 2.5rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.13rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s cubic-bezier(.4, 2, .6, 1);
    border: none;
    text-align: center;
    overflow: visible;
}

.offre-card--info::after {
    display: none;
}

.offre-card--info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.13rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.offre-card--info-arrow {
    display: block;
    font-size: 2.7rem;
    color: #fff;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.7rem;
    line-height: 1;
}

.offre-card--info-arrow::after {
    content: '\2192';
}

.offre-card--info img {
    width: 210px;
    max-width: 98%;
    height: auto;
    margin: 0 auto 0.5rem auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.10));
    background: #fff;
    padding: 22px;
    border-radius: 1.7rem;
    box-shadow: 0 4px 24px rgba(44, 127, 232, 0.10);
}

.offre-card--info:hover {
    transform: scale(1.045) translateY(-6px);
    box-shadow: 0 16px 48px 0 rgba(44, 127, 232, 0.22), 0 6px 24px rgba(44, 127, 232, 0.13);
    z-index: 2;
}

@media (max-width: 900px) {
    .offre-card--info {
        min-height: 0;
        padding: 1.2rem 1rem 1.2rem 1rem;
        border-radius: 1.2rem;
    }

    .offre-card--info img {
        width: 140px;
        max-width: 99%;
        padding: 12px;
        border-radius: 1.1rem;
    }

    .offre-card--info-arrow {
        font-size: 2.1rem;
    }
}

.qui-baseline,
.qui-intro {
    position: relative !important;
    z-index: 100 !important;
}

.qui-suis-je-section .container {
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
}

.qui-suis-je-section .header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-top: 0;
}

.qui-title.section-title {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.1rem;
    gap: 0;
}

.qui-title.section-title::after {
    display: none;
}

.qui-title-underline {
    width: 48px;
    height: 3px;
    background: #2C7FE8;
    border-radius: 2px;
    margin: 6px auto 2.8rem auto;
    display: block;
}

@media (max-width: 900px) {
    .qui-title-underline {
        width: 32px;
        height: 2px;
        margin: 4px auto 1.5rem auto;
    }
}

.qui-baseline-inline {
    color: #2C7FE8;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: -0.3rem;
    margin-bottom: 0.1rem;
    opacity: 0.92;
    background: none;
    font-family: inherit;
    box-shadow: none;
    display: block;
    text-align: center;
}

.qui-intro {
    color: #222;
    background: none;
    font-size: 1.13rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 900px;
}

.qui-intro p {
    text-align: center;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.qui-intro b {
    color: #3055ff;
    font-weight: 700;
}

.qui-parcours {
    margin: 0 auto 2.2rem auto;
}

.qui-parcours h3 {
    font-size: 1.25rem;
    color: #3055ff;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3055ff, #2C7FE8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.qui-parcours p {
    margin-bottom: 1.1rem;
    color: #222;
    font-size: 1.08rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(44, 127, 232, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e5f0;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(44, 127, 232, 0.13);
    border-color: #3055ff;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3055ff, #2C7FE8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.7rem;
}

.value-description {
    color: #222;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .qui-suis-je-section .container {
        padding: 1.2rem;
    }

    .qui-title.section-title {
        font-size: 1.3rem;
    }

    .qui-title.section-title::after {
        width: 32px;
        height: 2px;
        margin: 8px auto 0 auto;
    }

    .qui-baseline-inline {
        font-size: 0.98rem;
        margin-bottom: 0.7rem;
    }

    .qui-intro,
    .qui-parcours {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1rem 0.7rem;
    }

    .value-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

.qui-parcours.mes-outils h3 {
    text-align: left;
    justify-content: flex-start;
    display: block;
}

.cta-boost-visibilite {
    margin: 2.5rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #3055ff 0%, #7b5be6 100%);
    border-radius: 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 24px rgba(44, 127, 232, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 800px;
}

.cta-boost-visibilite:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(44, 127, 232, 0.20);
}

.cta-boost-visibilite h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #fff;
}

.cta-boost-visibilite p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .cta-boost-visibilite {
        margin: 2rem auto;
        padding: 1.5rem;
        border-radius: 18px;
    }

    .cta-boost-visibilite h2 {
        font-size: 1.4rem;
    }

    .cta-boost-visibilite p {
        font-size: 1rem;
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px 45px 25px 45px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-label-dot {
    width: 8px;
    height: 8px;
    background: #3055ff;
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse 2s infinite;
}


.expertise-cards-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1100px;
}

@media (max-width: 900px) {
    .expertise-cards-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 98vw;
    }
}

.expertise-cards-2x2 .expertise-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(48, 85, 255, 0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    min-height: 0;
}

.expertise-cards-2x2 .expertise-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expertise-cards-2x2 .expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.7rem 0;
    color: #3055ff;
    text-align: center;
}

.expertise-cards-2x2 .expertise-card p,
.expertise-cards-2x2 .expertise-card ul,
.expertise-cards-2x2 .expertise-card ul li {
    color: #111;
}

.expertise-cards-2x2 .expertise-card ul {
    display: block !important;
    list-style: disc inside !important;
    text-align: left !important;
    margin: 1rem 0 0 0 !important;
    padding-left: 0 !important;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif !important;
    white-space: normal !important;
}

.expertise-cards-2x2 .expertise-card ul li {
    display: list-item !important;
    color: #111 !important;
    font-size: 1rem !important;
    margin-bottom: 0.3rem !important;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif !important;
    font-weight: 500 !important;
    white-space: normal !important;
}

.expertise .expertise-img img {
    max-width: 100px;
    max-height: 100px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-photo-bandeau,
.hero-photo-bandeau * {
    pointer-events: auto !important;
    user-select: text !important;
}

.tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    margin-bottom: 0;
}

.tab {
    flex: 1;
    padding: 18px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: #3055ff;
    border-radius: 0;
    position: relative;
    outline: none;
    box-shadow: none;
    border-right: 1px solid #e2e8f0;
}

.tab:last-child {
    border-right: none;
}

.tab.active {
    background: #f0f6ff;
    color: #023F92;
    box-shadow: 0 2px 8px rgba(44, 55, 130, 0.07);
    z-index: 1;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #3055ff;
    border-radius: 2px 2px 0 0;
}

.tab i {
    margin-right: 0.5em;
    font-size: 1.1em;
    vertical-align: middle;
}

.tab:hover:not(.active) {
    background: #f4f8ff;
    color: #2563eb;
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        border-radius: 0 0 20px 20px;
    }

    .tab {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0;
    }

    .tab:last-child {
        border-bottom: none;
    }
}

.tabs-vertical-wrapper {
    display: flex;
    gap: 0;
}

.tabs.tabs-vertical {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    background: #f8f9fa;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 2px 8px rgba(44, 55, 130, 0.04);
    border-right: 1px solid #e2e8f0;
}

.tab-contents {
    flex: 1;
    background: #fff;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 24px rgba(2, 63, 146, 0.10), 0 1.5px 6px rgba(44, 55, 130, 0.08);
    padding: 32px;
    min-width: 0;
    border: 2px solid #d1d5db;
    margin-left: -2px;
}

@media (max-width: 900px) {
    .tabs-vertical-wrapper {
        flex-direction: column;
    }

    .tabs.tabs-vertical {
        flex-direction: row;
        min-width: 0;
        border-radius: 20px 20px 0 0;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
    }

    .tab-contents {
        border-radius: 0 0 20px 20px;
        padding: 24px;
    }
}

.tab-contents {
    box-shadow: 0 4px 24px rgba(2, 63, 146, 0.10), 0 1.5px 6px rgba(44, 55, 130, 0.08);
}

.tabs.tabs-vertical .tab {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f8f9fa;
    color: #3055ff;
    border: 2px solid #d1d5db;
    border-left-width: 6px;
    border-radius: 16px 0 0 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(44, 55, 130, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.tabs.tabs-vertical .tab img {
    margin-right: 1em;
    vertical-align: middle;
    flex-shrink: 0;
}

.tabs.tabs-vertical .tab:last-child {
    margin-bottom: 0;
}

.tabs.tabs-vertical .tab.active {
    background: #f4f8ff;
    color: #023F92;
    border-color: #3055ff;
    border-left-width: 8px;
    box-shadow: 0 4px 16px rgba(44, 55, 130, 0.13);
    z-index: 3;
}

.tabs.tabs-vertical .tab:hover:not(.active) {
    background: #eaf1ff;
    color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(44, 55, 130, 0.13);
    z-index: 2;
}

/* Ancienne ligne désactivée pour éviter le bug d'affichage 3+1 */
/* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.features-grid .feature-title {
    font-weight: 700;
    color: #3055ff;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.08em;
}

/* Centrage horizontal du label dans son parent */
.container,
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tab-contents,
.tab-content {
    text-align: left;
}

/* Section Contact Responsive et Largeur */
.contact-content {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-left,
.contact-right {
    flex: 1 1 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-right {
    align-self: flex-end;
}

.contact-form {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

@media (min-width: 900px) {
    /* Rien à changer ici, déjà couvert */
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        min-width: 0;
        display: block;
    }
}


/* ====== Styles personnalisés pour la nouvelle section Expertise ====== */
:root {
    --primary-color: #3055ff;
    /* Ta couleur principale */
    --background-dark: #1e293b;
    /* Couleur de fond sombre pour le body, inspirée de tes titres */
    --light-gray: #f5f6f9;
    /* Fond des onglets inactifs */
    --white: #ffffff;
    --text-color-dark: #1e293b;
    /* Couleur du texte des titres dans le contenu */
    --text-color-light: #475569;
    /* Couleur du texte des paragraphes dans le contenu */
    --active-tab-bg: #ffffff;
    /* Fond de l'onglet actif */
    --active-tab-indicator: var(--primary-color);
    /* Ligne active et icône active */
    --inactive-tab-text: #64748b;
    /* Couleur du texte des onglets inactifs */
    --inactive-tab-icon-filter: grayscale(100%);
    /* Filtre pour les icônes inactives */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --feature-box-bg: #ffffff;
    /* Fond des boîtes de fonctionnalités */
    --feature-box-border: #e2e8f0;
    /* Bordure des boîtes de fonctionnalités */
}

body {
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
    color: var(--text-color);
    background: var(--background-color);
    position: relative;
    display: block;
    justify-content: unset;
    align-items: unset;
    min-height: unset;
    line-height: 1.6;
}

.main-section {
    width: 90%;
    max-width: 1200px;
    padding: 40px 0;
    /* Ajusté pour laisser de l'espace pour le label au-dessus */
    text-align: center;
    margin: 0 auto;
}



.tabs-container {
    display: flex;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px var(--shadow-medium);
    overflow: hidden;
}

.vertical-tabs {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    width: 280px;
    background-color: #3056ff70;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-button {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    text-align: left;
    border: none;
    background-color: transparent;
    color: var(--inactive-tab-text);
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0 12px 12px 0;
    margin: 5px 15px;
}

.tab-button:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--text-color-dark);
    /* Texte légèrement plus foncé au survol */
}

.tab-button.active {
    background-color: var(--active-tab-bg);
    color: var(--text-color-dark);
    /* Texte sombre pour l'onglet actif */
    font-weight: 600;
    box-shadow: 0 5px 15px var(--shadow-light);
    transform: translateX(10px);
    margin-right: -10px;
    z-index: 1;
}

/* Ligne d'indicateur active */
.tab-button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background-color: var(--active-tab-indicator);
    /* Utilise la couleur principale */
    border-radius: 0 5px 5px 0;
}

.tab-icon {
    width: 32px;
    /* Assure une taille fixe pour les images d'icônes */
    height: 32px;
    object-fit: contain;
    margin-right: 15px;
    vertical-align: middle;
    transition: filter 0.3s ease;
    /* Transition pour le filtre */
    filter: var(--inactive-tab-icon-filter);
    /* Applique le filtre par défaut */
}

.tab-button.active .tab-icon {
    filter: none;
    /* Supprime le filtre pour l'icône active */
}

.tab-content-wrapper {
    flex-grow: 1;
    padding: 40px;
    text-align: left;
    color: var(--text-color-light);
    width: 100%;
    min-width: 0;
    /* max-width: 700px; supprimé */
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.8em;
    color: var(--text-color-dark);
    /* Utilise la couleur sombre pour les titres */
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-content p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

/* Styles pour les Feature Boxes */
.features-grid {
    display: grid;
    /* 2 colonnes sur desktop, 1 sur mobile */
    gap: 20px;
    /* Espace entre les boîtes */
    margin-top: 30px;
}

.feature-box {
    background-color: var(--feature-box-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--feature-box-border);
    text-align: left;
    box-shadow: 0 2px 8px var(--shadow-light);
    /* Ombre pour chaque boîte */
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Espace entre les éléments internes */
}

.feature-box .feature-title {
    font-weight: 600;
    color: var(--text-color-dark);
    font-size: 1.1em;
    display: flex;
    /* Pour aligner l'icône de coche avec le titre */
    align-items: center;
}

.feature-box p {
    font-size: 0.95em;
    color: var(--text-color-light);
    line-height: 1.5;
    margin-bottom: 0;
    /* Pas de marge en bas du paragraphe dans la boîte */
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* Taille de l'icône de coche */
    height: 24px;
    color: var(--primary-color);
    /* Couleur de la coche */
    margin-right: 10px;
    /* Espace entre la coche et le titre */
}

/* Animation de fondu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Media Queries pour la responsivité */
@media (max-width: 992px) {
    .tabs-container {
        flex-direction: column;
    }

    .vertical-tabs {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        /* Permet aux onglets de passer à la ligne */
        justify-content: center;
        padding: 10px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .tab-button {
        margin: 5px;
        border-radius: 8px;
        transform: translateX(0) !important;
        box-shadow: none !important;
        padding: 12px 20px;
        /* Ajuste le padding des boutons */
    }

    .tab-button.active::before {
        /* Ligne horizontale en bas pour les onglets horizontaux */
        width: 100%;
        height: 5px;
        top: auto;
        bottom: 0;
        left: 0;
        transform: translateY(0);
        border-radius: 5px 5px 0 0;
    }

    .tab-content-wrapper {
        padding: 20px;
    }

    .section-label {
        font-size: 0.8em;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .main-section {
        padding: 20px;
    }

    .tab-content h3 {
        font-size: 1.6em;
    }

    .tab-content p {
        font-size: 0.9em;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Une seule colonne sur les très petits écrans */
    }
}

@media (max-width: 480px) {
    .tab-button {
        font-size: 0.8em;
        padding: 8px 12px;
        flex-direction: column;
        text-align: center;
    }

    .tab-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* ====== Fin des styles personnalisés Expertise ====== */

/* Ajout d'un conteneur pour aligner la puce et le titre */
.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

/* --- Section Offres (nouveau design organique) --- */
.offres-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colonnes sur desktop */
    gap: 2.5rem;
    position: relative;
    min-height: unset;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .offres-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .offres-container {
        grid-template-columns: 1fr;
    }
}

.offre-card {
    position: relative;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 70px 20px 70px 40px;
}

.offre-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.offre-card.selected {
    background: linear-gradient(135deg, #3055ff 0%, #22d3ee 100%);
    color: white;
    transform: rotate(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px #3055ff52;
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 5;
}

.offre-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
}

.offre-card.selected h3 {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: initial !important;
}

.offre-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.offre-card.selected .offre-desc {
    color: rgba(255, 255, 255, 0.9);
}

.offre-card ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
}

.offre-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4a5568;
}

.offre-card.selected li {
    color: rgba(255, 255, 255, 0.9);
}

.offre-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3055ff;
    color: white;
    padding: 6px 12px;
    border-radius: 15px 25px 15px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.offre-badge.gratuit {
    background: #3055ff;
    border-radius: 25px 8px 25px 8px;
}

.info-card {
    background: linear-gradient(135deg, #3055ff 0%, #2041cc 100%);
    color: white;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.btn-container {
    margin-top: 40px;
    text-align: center;
    position: static;
    transform: none;
}

.btn-modern {
    background: #ffffff;
    color: #3055ff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px 60px 30px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.05);
    border-radius: 60px 20px 60px 20px;
}

.selection-counter {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #F6511D;
    color: white;
    padding: 12px 20px;
    border-radius: 25px 8px 25px 8px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.selection-counter.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: -1;
}

.floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    background: #667eea;
    border-radius: 50% 20% 50% 20%;
    top: 100px;
    right: 50px;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    background: #4ade80;
    border-radius: 30% 70% 30% 70%;
    bottom: 200px;
    left: 100px;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    border-radius: 70% 30% 70% 30%;
    top: 300px;
    left: 300px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (max-width: 768px) {
    .offre-card {
        padding: 20px;
    }
}

/* --- Fin Section Offres --- */

/* === EXPERTISE TABS (ISOLÉ, CLAIR & PROFESSIONNEL) === */
.expertise-tabs-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(48, 85, 255, 0.1);
    border: 1px solid #e0e5f0;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-tabs-nav {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-active-tab-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 58px;
    background: linear-gradient(180deg, #3055ff 0%, #5A7FFF 100%);
    border-radius: 0 4px 4px 0;
    transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px #3055ff44;
    z-index: 20;
}

.expertise-tab-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: 58px;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: #000000;
    background-color: transparent;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
    z-index: 1;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-tab-button:hover {
    background-color: #f4f6fc;
    color: #3055ff;
}

.expertise-tab-button[aria-selected="true"] {
    color: #3055ff;
    background-color: #f4f6fc;
    font-weight: 700;
}

.expertise-tab-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.expertise-tab-panels {
    padding: 0 1rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-tab-panel {
    animation: expertise-fadeIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-tab-panel[hidden] {
    display: none;
}

@keyframes expertise-fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.expertise-tab-panel h3 {
    margin-top: 0;
    font-size: 2.25rem;
    font-weight: 700;
    color: #3055ff;
    margin-bottom: 1.5rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-tab-panel p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #000000;
    max-width: 75ch;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-feature-box {
    background-color: #f4f6fc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e5f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(48, 85, 255, 0.1);
}

.expertise-feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-feature-check .fa-check-circle {
    color: #3055ff;
}

.expertise-feature-title {
    font-weight: 700;
    color: #1d2b4e;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

.expertise-feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6a7795;
    margin: 0;
    font-family: 'Trend Sans One', 'Trendsansone', Arial, sans-serif;
}

/* Check orange pour la section Offres */
.offre-feature-check {
    display: inline-flex;
    align-items: center;
    margin-right: 0.55em;
    font-size: 1.1em;
}

.offre-feature-check .fa-check-circle {
    color: #F6511D;
    font-size: 1.1em;
    vertical-align: middle;
}

.offre-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    position: relative;
    padding-left: 0;
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    font-weight: 500;
    color: inherit;
}

/* Floating shapes décoratives sous la hero */
.floating-shapes-bg {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.floating-shape {
    position: absolute;
    opacity: 0.13;
    border-radius: 50%;
    filter: blur(0.5px);
    animation: float-shape 12s ease-in-out infinite;
    will-change: transform;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3055ff 60%, #5A7FFF 100%);
    left: 10vw;
    top: 10vh;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F6511D 60%, #ff8a4d 100%);
    left: 70vw;
    top: 25vh;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22d3ee 60%, #4ade80 100%);
    left: 40vw;
    top: 60vh;
    animation-delay: 4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed 60%, #a78bfa 100%);
    left: 80vw;
    top: 70vh;
    animation-delay: 6s;
}

@keyframes float-shape {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) scale(1.08) rotate(8deg);
    }

    50% {
        transform: translateY(20px) scale(0.95) rotate(-6deg);
    }

    75% {
        transform: translateY(-15px) scale(1.05) rotate(4deg);
    }

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

/* ===== SECTION 6 : FORMES FLOTTANTES EN ARRIÈRE-PLAN ===== */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    will-change: transform;
    border-radius: 50%;
    animation-name: moveAndWander;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}

@keyframes moveAndWander {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.2);
    }

    100% {
        transform: translate(60vw, -70vh) rotate(360deg) scale(1);
    }
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -10vh;
    left: -20vw;
    background: radial-gradient(circle, var(--accent-color-primary-light), transparent 60%);
    opacity: 0.5;
    animation-duration: 45s;
}

.shape-2 {
    width: 800px;
    height: 800px;
    bottom: -30vh;
    right: -40vw;
    background: radial-gradient(circle, var(--accent-color-primary), transparent 70%);
    opacity: 0.2;
    animation-duration: 60s;
    animation-delay: -10s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    bottom: 20vh;
    left: -25vw;
    background: radial-gradient(circle, var(--accent-color-primary-light), transparent 65%);
    opacity: 0.6;
    animation-direction: alternate-reverse;
    animation-duration: 50s;
    animation-delay: -20s;
}

.area {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    border-radius: 50%;
    opacity: 0.18;
    animation: animate-circles 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3055FF 60%, #2C7FE8 100%);
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #F6511D 60%, #3055FF 100%);
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3DC6FF 60%, #2CE2E8 100%);
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2CE2E8 60%, #30FFCB 100%);
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3055FF 60%, #2C7FE8 100%);
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #F6511D 60%, #3055FF 100%);
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3DC6FF 60%, #2CE2E8 100%);
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #2CE2E8 60%, #30FFCB 100%);
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #3055FF 60%, #2C7FE8 100%);
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F6511D 60%, #3055FF 100%);
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate-circles {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.parcours-trajet-separator {
    margin: 2.2rem 0;
    text-align: center;
}

.parcours-trajet-separator svg {
    width: 100%;
    max-width: 1000px;
    height: 190px;
    display: block;
}

@media (max-width: 900px) {
    .qui-intro {
        font-size: 1rem;
        padding: 0 0.7rem;
        margin-bottom: 1.2rem;
    }

    .qui-intro p {
        font-size: 0.98rem;
    }

    .parcours-trajet-separator {
        margin: 1.2rem 0;
    }

    .parcours-trajet-separator svg {
        height: 110px;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .qui-intro {
        font-size: 0.97rem;
        padding: 0 0.2rem;
    }

    .qui-intro p {
        font-size: 0.93rem;
    }

    .parcours-trajet-separator svg {
        height: 60px;
    }
}

/* Synchronisation JS de la hauteur du formulaire avec la carte */
@media (max-width: 900px) {
    .contact-right {
        padding: 2rem !important;
    }

    .contact-form {
        padding: 0 !important;
    }
}

.contact-form .btn-modern {
    background: #3055ff !important;
    color: #fff !important;
    border: none;
}

#mail-success-popup {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 127, 232, 0.10);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.mail-success-popup-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 48px 0 rgba(44, 127, 232, 0.25), 0 2px 8px rgba(44, 127, 232, 0.10);
    padding: 2.5em 2.5em 1.5em 2.5em;
    max-width: 90vw;
    width: 370px;
    text-align: center;
    position: relative;
    animation: popup-fade-in 0.4s cubic-bezier(.4, 0, .2, 1);
}

@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.mail-success-message {
    font-size: 1.15em;
    color: #3055ff;
    margin-bottom: 1.5em;
    font-weight: 500;
}

.mail-success-logo img {
    margin-top: 1.2em;
    height: 48px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#mail-success-popup .section-label {
    font-size: 1.3em;
    font-weight: 800;
    color: #3055ff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

#mail-success-popup .section-label-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #3055ff;
    border-radius: 50%;
    margin-right: 0.5em;
}

@media (max-width: 768px) {
    .expertise-tabs-container {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }

    .expertise-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .expertise-tab-button {
        min-width: 120px;
        height: 44px;
        font-size: 0.95rem;
        border-radius: 8px 8px 0 0;
        padding: 0 0.7rem;
        justify-content: center;
        text-align: center;
    }

    .expertise-active-tab-indicator {
        display: none;
    }

    .expertise-tab-panels {
        padding: 0;
    }

    .expertise-tab-panel h3 {
        font-size: 1.3rem;
    }

    .expertise-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .expertise-feature-box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .expertise-tabs-nav {
        flex-direction: column;
        gap: 0.3rem;
    }

    .expertise-tab-button {
        min-width: unset;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.5rem 0.3rem;
        border-radius: 6px;
    }

    .expertise-tab-panel h3 {
        font-size: 1.1rem;
    }

    .expertise-feature-box {
        padding: 0.7rem;
    }
}

@media (max-width: 768px) {
    .expertise-tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        overflow-x: unset;
        overflow-y: unset;
        width: 100%;
        margin-bottom: 1rem;
        gap: 0.5rem;
        justify-content: center;
        align-items: stretch;
    }

    .expertise-tab-button {
        flex: 1 1 40%;
        min-width: 120px;
        max-width: 48%;
        height: 44px;
        font-size: 0.95rem;
        border-radius: 8px 8px 0 0;
        padding: 0 0.7rem;
        justify-content: center;
        text-align: center;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .expertise-tabs-nav {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.3rem;
        align-items: stretch;
    }

    .expertise-tab-button {
        min-width: unset;
        max-width: 100%;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.5rem 0.3rem;
        border-radius: 6px;
        white-space: normal;
        word-break: break-word;
    }
}