* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box; /* Assure que padding et border sont inclus dans la largeur */
}

html, body {
    overflow-x: hidden; /* Empêche le défilement horizontal global */
    width: 100%;
    max-width: 100%;
}

.main-header {
    width: 100%;
    margin: 0;
    background-color: #0f172a;
    z-index: 1000;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

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

.container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-header {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 68px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img {
    display: block;
    width: auto;
    height: 40px;
    max-width: 145px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.08);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
    min-width: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #15a0ff;
}

.nav-account-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-avatar,
.nav-avatar-fallback {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    background: #15a0ff;
    color: #ffffff;
}

.btn-contact-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00a2ff, #1c7aff);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 162, 255, 0.24);
}

.btn-contact-header:hover {
    filter: brightness(1.05);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1da1ff, #0096f5);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.section-title-white {
    margin-top: 18px;
    color: #0f172a;
}

.section-title-white::after {
    background-color: #0f6ef2;
}

.section-desc-white {
    margin-top: -28px;
    color: #64748b;
}

.partners-grid-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-bottom: 12px;
    box-shadow: 0 16px 32px rgba(0, 150, 245, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(0, 150, 245, 0.3);
    filter: brightness(1.02);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    border: 1px solid #dbe8f8;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.1);
    filter: brightness(0.99);
}

.home-hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
}

.home-hero .btn-primary {
    min-width: 250px;
    min-height: 58px;
    padding: 14px 24px;
    font-size: 15px;
    border: 0;
}

.home-hero .btn-secondary {
    min-width: 250px;
    height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.home-hero .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.1);
    filter: brightness(0.99);
}

.btn-primary:hover {
    background-color: #006cdb;
    transform: translateY(-2px);
}

.stats-section {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eef2f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #006cdb;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-size: 32px;
    margin: 50px 0 40px 0;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 70px;
    height: 4px;
    background-color: #00a2ff;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 40px auto;
    color: #666;
    font-size: 16px;
}

.packs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.pack-card {
    background: #fff;
    border-radius: 16px;
    width: calc(50% - 15px);
    max-width: 480px;
    padding: 40px 30px;
    border: 1px solid #eef2f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.pack-card:hover {
    transform: translateY(-5px);
}

.pack-card.popular {
    border: 2px solid #00a2ff;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a2ff;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.pack-header h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pack-price {
    font-size: 20px;
    font-weight: bold;
    color: #006cdb;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pack-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.pack-features li {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-features li::before {
    content: '✔';
    color: #25d366;
    font-weight: bold;
}

.btn-pack {
    display: block;
    text-align: center;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.pack-card.popular .btn-pack {
    background: #00a2ff;
}

.pack-card.popular .btn-pack:hover {
    background: #006cdb;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.partner-card {
    background: white;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 22px 18px 18px;
    width: 212px;
    max-width: 212px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Animation pour les cartes partenaires */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.partner-logo-box {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Assure que l'image remplit l'espace */
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; /* Ajoute une transition douce pour l'animation */
}

.partner-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.partner-sub {
    font-size: 12px;
    color: #7f8c8d;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #f4f8ff;
    color: #006cdb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #d8e7ff;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.partner-link:hover {
    background: #e9f2ff;
    border-color: #c9ddff;
    transform: translateY(-1px);
}

.partner-card:hover .partner-logo-box img {
    transform: scale(1.08); /* Agrandit légèrement l'image au survol de la carte */
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.service-block {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border-left: 5px solid #00a2ff;
}

.service-block h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.info-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    border-left: 5px solid #00a2ff;
}

.info-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

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

.info-item h4 {
    color: #7f8c8d;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-item a {
    color: #00a2ff;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #00a2ff;
}

.btn-submit {
    background: #00a2ff;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #006cdb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.main-footer {
    margin-top: 56px;
    background:
        radial-gradient(circle at 6% 0%, rgba(102, 81, 255, 0.22), transparent 36%),
        radial-gradient(circle at 93% 10%, rgba(27, 105, 255, 0.18), transparent 34%),
        linear-gradient(145deg, #0b1326 0%, #0a1222 52%, #090f1b 100%);
    color: #d8dfef;
    font-size: 15px;
}

.footer-shell {
    padding: 52px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(230px, 1.15fr) minmax(160px, 0.85fr) minmax(180px, 0.95fr) minmax(220px, 1fr) minmax(250px, 1.1fr);
    gap: 28px;
    align-items: start;
}

.footer-brand {
    max-width: 260px;
    justify-self: start;
}

.footer-brand p,
.footer-newsletter p,
.footer-contact-list span,
.footer-col a,
.footer-bottom p,
.footer-legal a {
    color: #b8c4dc;
}

.footer-values {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-values li {
    display: grid;
    gap: 2px;
}

.footer-values strong {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.1;
}

.footer-values span {
    color: #9caaca;
    font-size: 14px;
}

.footer-col h3,
.footer-newsletter h3 {
    margin: 0 0 16px; /* Changed */
    color: #ffffff;
    font-size: 22px; /* Changed */
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.footer-col {
    display: grid;
    gap: 11px;
}

.footer-col a {
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover,
.footer-legal a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid; /* Changed */
    gap: 12px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: start;
}

.footer-contact-list a {
    color: #d1d9ed;
    text-decoration: none;
}

.footer-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(110, 124, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(157, 176, 255, 0.2);
}

.footer-newsletter p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-quote-btn {
    display: inline-block;
    width: 100%;
    margin-top: 12px;
    border: 0;
    border-radius: 10px;
    padding: 13px 16px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(90deg, #6a45ff 0%, #7f39ff 48%, #4f7df9 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 25px rgba(89, 82, 246, 0.38);
}

.footer-quote-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(89, 82, 246, 0.46);
}

.footer-legal-links {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(162, 173, 214, 0.18);
    display: grid;
    gap: 8px;
    justify-items: start;
}

.footer-legal-links a {
    color: #9caaca;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

@media (max-width: 1320px) {
    .footer-top {
        grid-template-columns: 1.15fr 0.95fr 0.95fr;
        gap: 24px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 460px;
    }
}

@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand,
    .footer-newsletter {
        max-width: none;
    }
}

.footer-middle {
    border-bottom: 1px solid rgba(162, 173, 214, 0.18);
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, rgba(27, 105, 255, 0.1), rgba(27, 105, 255, 0.4), rgba(27, 105, 255, 0.1));
    text-align: center;
    padding: 16px 0;
}

.footer-middle p {
    margin: 0;
    color: #bec9e2;
}

.footer-middle strong {
    color: #9a72ff;
}

.footer-bottom {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 18px 0 24px;
}

.footer-bottom p {
    margin: 0;
    justify-self: start;
}

.footer-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-legal a {
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-transform: lowercase;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: rgba(122, 96, 255, 0.8);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

.chatbot-launcher {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a2ff, #006cdb);
    border-radius: 50%;
    border: 0;
    box-shadow: 0 4px 12px rgba(0,108,219,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chatbot-launcher:hover { transform: scale(1.05); }
.chatbot-launcher svg { width: 28px; height: 28px; fill: white; }

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    border: 1px solid #e1e8ed;
}

.chat-window.is-open {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #00a2ff, #006cdb);
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header .close-btn {
    cursor: pointer;
    font-size: 22px;
    color: white;
    background: transparent;
    border: 0;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f7f9fb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.4; }
.msg.bot { background-color: #e3f2fd; color: #0d47a1; align-self: flex-start; border-top-left-radius: 2px; }
.msg.user { background-color: #006cdb; color: white; align-self: flex-end; border-top-right-radius: 2px; }
.msg.typing { opacity: 0.75; font-weight: 700; letter-spacing: 2px; }

.chat-suggestions { display: flex; flex-wrap: wrap; gap: 5px; padding: 8px 15px; background: #f7f9fb; border-bottom: 1px solid #eee; }
.suggest-tag { background: white; border: 1px solid #006cdb; color: #006cdb; padding: 4px 10px; border-radius: 15px; font-size: 12px; cursor: pointer; }
.suggest-tag:hover { background: #006cdb; color: white; }

.chat-input-area { padding: 12px; background: white; border-top: 1px solid #eee; display: flex; gap: 8px; }
.chat-input-area input { flex: 1; padding: 10px; border: 1px solid #ccc; border-radius: 20px; outline: none; font-size: 14px; }
.chat-input-area button { background: #006cdb; color: white; border: none; padding: 0 15px; border-radius: 20px; cursor: pointer; font-weight: bold; }
.chat-input-area button:disabled { opacity: 0.65; cursor: not-allowed; }

@media (max-width: 768px) {
    .pack-card, .partner-card { width: 100%; }
    .flex-header { flex-direction: column; gap: 15px; text-align: center; }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
    }
    .info-grid { flex-direction: column; gap: 25px; text-align: center; }
    .hero-text h1 { font-size: 30px; }
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }
    .chat-window {
        left: 15px;
        right: 15px;
        bottom: 95px;
        width: auto;
        max-width: none;
    }

    .footer-shell {
        padding-top: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-logo {
        width: 112px;
        margin-bottom: 12px;
    }

    .footer-col h3,
    .footer-newsletter h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-legal,
    .footer-social {
        justify-content: center;
    }
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(58, 123, 213, 0.08), transparent 22%),
        radial-gradient(circle at 78% 22%, rgba(0, 162, 255, 0.11), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    padding: 34px 0 22px;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.45) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(520px, 0.6fr);
    gap: 28px;
    align-items: center;
}

.home-hero-copy h1 {
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.08;
    color: #0f172a;
    letter-spacing: -1.1px;
    margin-bottom: 14px;
    max-width: 520px;
}

.home-hero-copy p {
    color: #5b677d;
    font-size: 14px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 18px;
}

.home-hero-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    max-width: 360px;
}

.home-hero-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.home-hero-point span {
    color: #7e57c2;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.home-hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/tech1.png') center center/100% auto no-repeat;
}

.home-hero-visual .home-device,
.home-hero-visual .home-hero-glow {
    display: none;
}

.home-hero-glow {
    position: absolute;
    right: 44px;
    top: 52px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 121, 255, 0.42), rgba(28, 121, 255, 0));
}

.home-device {
    position: absolute;
    border-radius: 26px;
    background: linear-gradient(145deg, #0f172a 0%, #0b1220 60%, #18263f 100%);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.26);
}

.home-device::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 22% 26%, rgba(59, 130, 246, 0.55), transparent 22%),
        radial-gradient(circle at 78% 56%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(180deg, #10192d 0%, #08111f 100%);
}

.home-device::after {
    content: '';
    position: absolute;
    inset: 32px 20px 20px;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
        linear-gradient(135deg, rgba(59,130,246,0.18), rgba(14,165,233,0.08));
}

.device-laptop {
    width: 400px;
    height: 290px;
    right: 0;
    top: 70px;
    transform: perspective(1100px) rotateY(-16deg) rotateX(6deg);
}

.device-laptop::before {
    background:
        radial-gradient(circle at 62% 40%, rgba(96, 165, 250, 0.58), transparent 20%),
        radial-gradient(circle at 35% 54%, rgba(255,255,255,0.12), transparent 20%),
        linear-gradient(180deg, #10192d 0%, #08111f 100%);
}

.device-laptop::after {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03)),
        radial-gradient(circle at 74% 28%, rgba(59,130,246,0.55), transparent 18%),
        radial-gradient(circle at 52% 52%, rgba(14,165,233,0.18), transparent 24%);
}

.device-phone {
    width: 118px;
    height: 240px;
    left: 74px;
    top: 110px;
    transform: rotate(-8deg);
    z-index: 2;
}

.device-phone::before {
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,0.12), transparent 16%),
        radial-gradient(circle at 42% 52%, rgba(34,197,94,0.22), transparent 16%),
        linear-gradient(180deg, #111827 0%, #07111f 100%);
}

.device-phone::after {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        radial-gradient(circle at 50% 30%, rgba(96,165,250,0.5), transparent 16%),
        radial-gradient(circle at 62% 72%, rgba(59,130,246,0.16), transparent 18%);
}

.home-services {
    padding: 34px 0 28px;
    background: linear-gradient(135deg, #0f4fc6 0%, #0a66d8 55%, #0f7bff 100%);
}

.home-services .section-title {
    color: #ffffff;
    margin-top: 0;
}

.home-services .section-title::after {
    background-color: #ffffff;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-service-card {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    min-height: 180px;
}

.home-service-card-highlight {
    border-color: rgba(0, 162, 255, 0.28);
    box-shadow: 0 18px 40px rgba(0, 162, 255, 0.08);
}

.home-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #006cdb;
    font-size: 24px;
    margin-bottom: 14px;
}

.home-service-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}

.home-service-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
}

.home-service-card a {
    color: #006cdb;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.home-dashboard-section {
    padding: 28px 0 8px;
}

.home-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 18px;
    align-items: stretch;
}

.home-stats-card {
    background: linear-gradient(135deg, #0f172a, #16355c);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-stats-grid div {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 18px 16px;
    color: #fff;
    text-align: center;
}

.home-stats-grid strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 8px;
}

.home-stats-grid span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.home-account-card {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.home-account-head h2 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
}

.home-account-head p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}

.home-account-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
}

.home-account-menu {
    display: grid;
    gap: 8px;
}

.home-account-menu a {
    background: #f8fbff;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    padding: 11px 12px;
    text-decoration: none;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.home-account-menu a.is-active {
    background: #eaf3ff;
    color: #006cdb;
    border-color: #cbe0ff;
}

.home-account-details {
    background: #fbfdff;
    border: 1px solid #edf3fb;
    border-radius: 16px;
    padding: 16px;
}

.home-account-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 14px;
}

.home-account-user img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dbeafe;
}

.home-account-user span,
.home-account-info span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.home-account-user strong,
.home-account-info strong {
    color: #0f172a;
    font-size: 14px;
}

.home-account-info {
    display: grid;
    gap: 12px;
}

.home-account-info-login {
    min-height: 144px;
    display: flex;
    align-items: center;
}

.home-account-info-login p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.home-account-user-guest strong {
    font-size: 17px;
}

.home-account-login {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-account-info div {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.home-account-info div:last-child {
    border-bottom: 0;
}

.home-account-btn {
    width: 100%;
    margin-top: 14px;
}

.home-about-section {
    padding: 40px 0 18px;
}
/* Fin de la section "À propos" */

.home-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
}

.section-title-left {
    text-align: left;
    margin: 0 0 18px;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.home-about-copy p {
    color: #64748b;
    margin-bottom: 20px;
    max-width: 520px;
}

.home-about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-about-item {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.home-about-item h3 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 8px;
}

.home-about-item p {
    color: #64748b;
    font-size: 14px;
}

.home-about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-visual img {
    max-width: 100%;
}

/* Section "Pourquoi nous choisir" */
.home-why-us-section {
    padding: 34px 0 44px;
    background:
        radial-gradient(circle at 14% 18%, rgba(32, 132, 255, 0.08), transparent 26%),
        radial-gradient(circle at 86% 20%, rgba(14, 90, 230, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.home-why-us-shell {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dce9fb;
    border-radius: 20px;
    padding: 18px 18px 20px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}

.home-why-us-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 16px;
}

.home-why-us-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf3ff;
    border: 1px solid #d8e8ff;
    color: #1573ee;
    letter-spacing: 0.4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.home-why-us-heading h2 {
    margin: 0;
    font-size: clamp(33px, 3.9vw, 52px);
    line-height: 1.08;
    color: #0f2250;
    letter-spacing: -0.6px;
}

.home-why-us-heading h2 span {
    color: #1573ee;
}

.home-why-us-heading p {
    margin: 12px auto 0;
    max-width: 650px;
    color: #5f708d;
    font-size: 17px;
    line-height: 1.55;
}

.home-why-us-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
    gap: 18px;
    align-items: stretch;
}

.home-why-us-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-why-us-card {
    background: #ffffff;
    border: 1px solid #deebfc;
    border-radius: 15px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(8, 63, 139, 0.06);
    min-height: 230px;
    height: 230px;
    display: flex;
    flex-direction: column;
}

.home-why-us-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dceaff;
    background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 100%);
    margin-bottom: 12px;
    transform: scale(1.1);
}

.home-why-us-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1573ee;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-why-us-card h3 {
    margin: 0 0 8px;
    color: #102d63;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.12;
}

.home-why-us-card p {
    margin: 0;
    color: #5d6f8d;
    font-size: 15px;
    line-height: 1.45;
    flex: 1;
}

.home-why-us-card-line {
    display: block;
    width: 40px;
    height: 3px;
    border-radius: 99px;
    background: #2084ff;
    margin-top: 12px;
    transition: width 0.4s ease;
}

.home-why-us-card:hover .home-why-us-card-line {
    width: 100px;
}

.home-why-us-visual {
    display: flex;
    align-items: stretch;
}

.home-why-us-visual-box {
    position: relative;
    border-radius: 26px;
    border: 1px solid #dce9fb;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 20px 42px rgba(9, 64, 139, 0.1);
    padding: 8px;
    width: 100%;
    overflow: visible;
}

.home-why-us-visual-box::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 24px;
    width: 72px;
    height: 18px;
    background-image: radial-gradient(#9bc7ff 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    opacity: 0.75;
}

.home-why-us-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 428px;
    border-radius: 22px;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.home-why-us-visual:hover img {
    transform: scale(1.07);
}

.home-why-us-visual-badge {
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: calc(100% - 34px);
    background: #ffffff;
    border: 1px solid #deebfc;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(10, 73, 157, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    color: #152b57;
}

.home-why-us-visual-badge strong {
    color: #0d61e1;
}

.home-why-us-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a7dff, #0e6be8);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-why-us-badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-why-us-footer {
    display: none;
}

@media (max-width: 1160px) {
    .home-why-us-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 980px) {
    .home-why-us-grid {
        grid-template-columns: 1fr;
    }

    .home-why-us-visual img {
        min-height: 340px;
    }

    .home-why-us-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .home-why-us-shell {
        padding: 14px;
    }

    .home-why-us-heading h2 {
        font-size: clamp(28px, 7vw, 36px);
    }

    .home-why-us-heading p {
        font-size: 15px;
    }

    .home-why-us-cards {
        grid-template-columns: 1fr;
    }

    .home-why-us-card {
        min-height: auto;
        height: auto;
    }

    .home-why-us-visual img {
        min-height: 280px;
    }

    .home-why-us-visual-badge {
        width: calc(100% - 22px);
    }
}
/* Fin de la section "Pourquoi nous choisir" */

/* ===== HOME RESULTS SECTION ===== */
.home-results-section {
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #0c1e45 0%, #0f2d5c 50%, #0a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.home-results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(21, 115, 238, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(21, 115, 238, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.home-results-section .container {
    position: relative;
    z-index: 1;
}

.home-results-heading {
    text-align: center;
    margin-bottom: 60px;
}

.home-results-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: #1573ee;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.home-results-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(33px, 3.9vw, 52px);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.6px;
}

.home-results-heading h2 span {
    color: #1573ee;
    font-weight: 900;
}

.home-results-heading p {
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
}

/* Realisations Page Controls */
.realisations-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(21, 115, 238, 0.15);
}

.realisations-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: rgba(21, 115, 238, 0.1);
    border: 1px solid rgba(21, 115, 238, 0.2);
    color: #cddcff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: rgba(21, 115, 238, 0.2);
    border-color: rgba(21, 115, 238, 0.4);
}

.filter-btn.active {
    background: #1573ee;
    color: #ffffff;
    border-color: #1573ee;
}

.realisations-search input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(21, 115, 238, 0.2);
    border-radius: 999px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    min-width: 280px;
    outline: none;
}

.realisations-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 32px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modal-fade-in 0.3s cubic-bezier(.22,1,.36,1);
}

@keyframes modal-fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.modal-content h3 {
    font-size: 24px;
    color: #0d1f4e;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.modal-left h4, .modal-right h4 {
    font-size: 16px;
    color: #1573ee;
    margin-bottom: 12px;
}

.modal-left img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.modal-right #modalAdMedia {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-right #modalAdMedia img,
.modal-right #modalAdMedia video {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.modal-right p {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

@media (max-width: 820px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .realisations-controls {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Stats for results section */
.home-results-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 24px 0;
    border-top: 1px solid rgba(21, 115, 238, 0.15);
    border-bottom: 1px solid rgba(21, 115, 238, 0.15);
    background: rgba(21, 115, 238, 0.05);
}

.home-results-stat-item {
    text-align: center;
    color: #ffffff;
    min-width: 150px;
}

.home-results-stat-item strong {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: #1cb0f6;
    margin-bottom: 8px;
}

.home-results-stat-item span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1.4;
}

/* Results grid: 3x2 cards */
.home-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.results-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(21, 115, 238, 0.2);
}

.results-card .results-card-logo-img,
.results-card .metric-highlight {
    transition: transform 0.3s ease;
}

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

.results-card:hover .metric-highlight {
    transform: scale(1.1);
}

.results-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f4ff;
}

.results-card-header svg {
    width: 28px;
    height: 28px;
    color: #1573ee;
    flex-shrink: 0;
}
.results-card-image-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-card-ometicone {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.results-card-main-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    background: #eaf3ff;
    padding: 6px;
    border: 1px solid #d8e8ff;
    box-shadow: 0 4px 12px rgba(21, 115, 238, 0.1);
}

.results-card-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: #ffffff;
    border: 1px solid #e6edf5;
}

.results-card-client-name {
    font-size: 15px;
    font-weight: 700;
    color: #0d1f4e;
    line-height: 1.2;
}

.results-card-client-domain {
    display: block;
    font-size: 12px;
    color: #5d6f8d;
    line-height: 1.3;
}

.results-card-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #16a34a;
    margin-top: 5px;
}

.results-card-period {
    font-size: 12px;
    font-weight: 700;
    color: #1573ee;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background-color: #eaf3ff;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #d8e8ff;
    display: inline-flex;
    align-items: center;
}

.results-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric-highlight {
    background: rgba(246, 255, 237, 0.95);
    border: 1px solid #b7eb8f;
    border-radius: 12px;
    padding: 12px 8px;
    transform: scale(1.05); /* Maintenu pour l'état de base */
    box-shadow: 0 4px 15px rgba(82, 196, 26, 0.1);
}

.metric-highlight .metric-value {
    color: #52c41a;
    font-size: 28px;
}

.metric-underline-green {
    border-bottom: 2px solid #b7eb8f;
    padding-bottom: 8px;
    border-radius: 2px;
    margin-bottom: -8px;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #0d1f4e;
    margin-bottom: 4px;
    line-height: 1.2;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: #5d6f8d;
    line-height: 1.4;
}

.results-card-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f4ff;
}

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

.footer-value {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #0d1f4e;
    margin-bottom: 2px;
}

.footer-label {
    display: block;
    font-size: 12px;
    color: #5d6f8d;
    line-height: 1.3;
}

/* Results benefits badges */
.home-results-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
}

.results-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(21, 115, 238, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    min-width: 160px;
    transition: all 0.3s ease;
}

.results-benefit:hover {
    background: rgba(21, 115, 238, 0.12);
    border-color: rgba(21, 115, 238, 0.4);
    transform: translateY(-3px);
}

.results-benefit svg {
    width: 32px;
    height: 32px;
    color: #1573ee;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.results-benefit h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.results-benefit p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .home-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-results-section {
        padding: 60px 0 70px;
    }

    .home-results-grid {
        grid-template-columns: 1fr;
    }

    .results-card {
        padding: 20px;
    }

    .results-card-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .results-card-footer {
        grid-template-columns: 1fr;
    }

    .home-results-benefits {
        gap: 16px;
        padding-top: 24px;
    }

    .results-benefit {
        min-width: 140px;
        padding: 14px 16px;
    }

    .home-results-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .home-results-section {
        padding: 48px 0 56px;
    }

    .results-card-metrics {
        grid-template-columns: 1fr;
    }

    .metric-value {
        font-size: 18px;
    }

    .results-benefit {
        flex: 1;
        min-width: auto;
    }

    .home-results-benefits {
        flex-direction: column;
    }
}

.home-packages {
    padding: 44px 0 34px;
    background:
        radial-gradient(circle at 10% 10%, rgba(44, 120, 255, 0.08), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(16, 98, 228, 0.09), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-packs-showcase {
    max-width: 1240px;
}

.home-packs-heading {
    text-align: center;
    margin-bottom: 30px;
}

.home-packs-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #196ef2, #0d5fe8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.home-packs-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    color: #081f56;
    letter-spacing: -1.2px;
}

.home-packs-heading h2 span {
    color: #1a68f0;
}

.home-packs-heading p {
    margin: 14px auto 0;
    max-width: 620px;
    font-size: clamp(16px, 1.45vw, 24px);
    line-height: 1.45;
    color: #526084;
}

.home-packs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-pack-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9eff9;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    min-height: 548px;
}

.home-pack-card-featured {
    border: 2px solid #1a68f0;
    box-shadow: 0 20px 44px rgba(26, 104, 240, 0.2);
}

.home-pack-badge {
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a68f0, #0f5be6);
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.4px;
    padding: 8px 18px;
    white-space: nowrap;
}

.home-pack-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e9eff9;
    margin-bottom: 18px;
}

.home-pack-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #eaf2ff;
    color: #1a68f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    flex-shrink: 0;
}

.home-pack-head h3 {
    margin: 2px 0 7px;
    color: #0a225c;
    font-size: clamp(34px, 2.3vw, 42px);
    line-height: 1;
    letter-spacing: -0.4px;
}

.home-pack-head p {
    margin: 0;
    color: #50608a;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.45;
}

.home-pack-head p strong {
    color: #193067;
    font-weight: 800;
}

.home-pack-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
    flex: 1;
}

.home-pack-list li {
    position: relative;
    color: #1e325f;
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.38;
    padding-left: 26px;
}

.home-pack-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 1px;
    color: #1a68f0;
    font-size: 13px;
}

.home-pack-list li.excluded {
    color: #94a3b8;
    text-decoration: line-through;
}

.home-pack-list li.excluded::before {
    content: '×';
    color: #ef4444;
    font-size: 16px;
}

.home-pack-btn {
    margin-top: 22px;
    min-height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(16px, 1.05vw, 20px);
    font-weight: 800;
    padding: 0 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 10px;
}

.home-pack-btn span {
    font-size: 16px;
    line-height: 1;
}

.home-pack-btn:hover {
    transform: translateY(-2px);
}

.home-pack-btn-outline {
    border: 2px solid #1a68f0;
    color: #1a68f0;
    background: #ffffff;
}
.home-pack-btn-start {
    border-color: #44b93e;
    color: #2e9933;
    box-shadow: 0 8px 24px rgba(68, 185, 62, 0.15);
}

.home-pack-btn-premium {
    border-color: #9546ee;
    color: #7f32df;
    box-shadow: 0 8px 24px rgba(149, 70, 238, 0.15);
}

.home-pack-btn-boost {
    border-color: #f97316;
    color: #ea580c;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.home-pack-card-start .home-pack-head h3 {
    color: #28a73c;
}

.home-pack-card-start .home-pack-icon {
    background: #eefbea;
    color: #2ba63f;
}

.home-pack-card-start .home-pack-list li::before {
    color: #49be48;
}

.home-pack-card-business .home-pack-head h3 {
    color: #1a68f0;
}

.home-pack-card-business .home-pack-icon {
    background: #eaf2ff;
    color: #1a68f0;
}

.home-pack-card-premium .home-pack-head h3 {
    color: #7f32df;
}

.home-pack-card-premium .home-pack-icon {
    background: #f5edff;
    color: #8d40e7;
}

.home-pack-card-premium .home-pack-list li::before {
    color: #8d40e7;
}

.home-pack-card-boost .home-pack-head h3 {
    color: #ea580c;
}

.home-pack-card-boost .home-pack-icon {
    background: #fff7ed;
    color: #f97316;
    font-size: 24px;
}

.home-pack-btn-solid {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #1a68f0, #0f5be6);
    box-shadow: 0 12px 28px rgba(26, 104, 240, 0.28);
}

.home-packs-benefits {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9eff9;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    background: #ffffff;
}

.home-packs-benefit-item {
    position: relative;
    padding: 14px 16px 14px 56px;
    text-align: left;
}

.home-packs-benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 46px;
    background: #e7eef8;
}

.home-packs-benefit-item::before {
    content: '◉';
    position: absolute;
    left: 18px;
    top: 17px;
    color: #1a68f0;
    font-size: 20px;
    line-height: 1;
}

.home-packs-benefit-secure::before {
    content: '◍';
}

.home-packs-benefit-support::before {
    content: '◌';
}

.home-packs-benefit-results::before {
    content: '▣';
}

.home-packs-benefit-guidance::before {
    content: '✦';
}

.home-packs-benefit-item strong {
    display: block;
    color: #0a225c;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.25;
}

.home-packs-benefit-item span {
    display: block;
    margin-top: 3px;
    color: #5f7098;
    font-size: clamp(12px, 0.86vw, 14px);
    line-height: 1.4;
}

.home-packs-note {
    margin: 14px 0 0;
    text-align: center;
    color: #4f5f83;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.55;
}

.home-faq-section {
    position: relative;
    padding: 44px 0 38px;
    background:
        radial-gradient(circle at 3% 80%, rgba(156, 188, 255, 0.38), transparent 34%),
        radial-gradient(circle at 96% 4%, rgba(176, 203, 255, 0.3), transparent 24%),
        linear-gradient(180deg, #f2f7ff 0%, #e8f1ff 55%, #e4eeff 100%);
    overflow: hidden;
}

.home-faq-section::before,
.home-faq-section::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#b8d2ff 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.45;
    pointer-events: none;
}

.home-faq-section::before {
    left: -20px;
    bottom: 80px;
}

.home-faq-section::after {
    right: 30px;
    top: 92px;
}

.home-faq-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
    max-width: 1400px;
    gap: 26px;
    align-items: stretch;
}

.home-faq-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(189, 212, 248, 0.75);
    border-radius: 22px;
    padding: 22px 22px 18px;
    box-shadow: 0 14px 35px rgba(46, 96, 178, 0.13);
}

.home-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d8e8ff;
    color: #2365db;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.home-faq-badge::before {
    content: '?';
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(145deg, #2471ff, #1a56d8);
    font-size: 14px;
}

.home-faq-left h2 {
    margin: 18px 0 8px;
    line-height: 0.95;
}

.home-faq-left h2 span,
.home-faq-left h2 strong {
    display: block;
    letter-spacing: -0.02em;
}

.home-faq-left h2 span {
    color: #0d1b44; /* Couleur du texte "Questions" */
    font-size: clamp(40px, 4vw, 70px);
    font-weight: 900;
}

.home-faq-left h2 strong {
    color: #2d67ff;
    font-size: clamp(40px, 4vw, 68px);
    font-weight: 900;
}

.home-faq-left p {
    max-width: 420px;
    color: #5b6f92;
    font-size: 15px;
    line-height: 1.55;
}

.home-faq-line {
    display: inline-block;
    width: 58px;
    height: 4px;
    border-radius: 999px;
    margin-top: 10px;
    background: linear-gradient(90deg, #2d67ff, #5e98ff);
}

.home-faq-visual {
    margin: 16px 0 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.12));
    display: flex;
    justify-content: center;
    padding: 8px 8px 0;
}

.home-faq-visual img {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(54, 97, 184, 0.18));
}

.home-faq-help {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: start;
    border: 1px solid #d9e7ff;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef5ff, #e5f0ff);
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.home-faq-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dfeeff;
    color: #1457d8;
    font-size: 24px;
}

.home-faq-help-copy h3 {
    color: #1c3161;
    font-size: 22px;
    margin-bottom: 7px;
}

.home-faq-help-copy p {
    color: #59709a;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.home-faq-help-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.faq-help-btn {
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    padding: 11px 10px;
    line-height: 1.1;
}

.faq-help-btn-whatsapp {
    background: linear-gradient(180deg, #24ce67, #1ab455);
    color: #ffffff;
}

.faq-help-btn-outline {
    background: #ffffff;
    border: 1px solid #b8d2ff;
    color: #2c63db;
}

.home-faq-right {
    height: 100%;
    display: grid;
    gap: 11px;
}

.home-faq-item {
    background: #ffffff;
    border: 1px solid #d9e8ff;
    border-radius: 17px;
    box-shadow: 0 10px 22px rgba(57, 94, 160, 0.09);
    overflow: hidden;
}

.home-faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    gap: 14px;
    align-items: center;
    text-align: left;
    padding: 18px 20px;
    color: #1b2d5e;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.home-faq-question-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(150deg, #2d77ff, #2465d8);
    font-size: 19px;
    font-weight: 800;
}

.home-faq-question-icon {
    transition: background 0.3s ease, color 0.3s ease;
}

.home-faq-item:hover .home-faq-question-icon {
    background: #00a2ff; /* Fatiweb blue */
    color: #ffffff; /* Ensure text is white on hover */
}

.home-faq-chevron {
    justify-self: end;
    color: #3470e5;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.2s ease; /* Conserve la transition existante */
    transform: rotate(0deg); /* État par défaut : non tourné */
}

.home-faq-item.is-open .home-faq-chevron {
    transform: rotate(180deg); /* État ouvert : tourné de 180 degrés */
}

.home-faq-panel {
    max-height: 0; /* État initial : replié */
    opacity: 0;    /* État initial : masqué */
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out; /* Transitions fluides */
    padding: 0 20px 0px; /* Ajuste le padding pour l'état replié */
}

.home-faq-item.is-open .home-faq-panel {
    max-height: 500px; /* Hauteur suffisamment grande pour le contenu */
    opacity: 1;        /* Entièrement visible */
    padding: 0 20px 16px; /* Restaure le padding pour l'état ouvert */
}

.home-faq-answer-box {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    border: 1px solid #dce9ff;
    border-radius: 14px;
    background: linear-gradient(180deg, #f3f8ff, #edf5ff);
    padding: 14px;
}

.home-faq-answer-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2c68dd;
    background: #e4efff;
    font-size: 25px;
}

.home-faq-answer-box p {
    color: #4f6389;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1080px) {
    .home-faq-shell {
        grid-template-columns: 1fr;
    }

    .home-faq-left {
        max-width: 740px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-faq-section {
        padding: 34px 0 28px;
    }

    .home-faq-left {
        padding: 18px;
    }

    .home-faq-left h2 span,
    .home-faq-left h2 strong {
        font-size: clamp(34px, 11vw, 48px);
    }

    .home-faq-help {
        grid-template-columns: 1fr;
    }

    .home-faq-help-actions {
        grid-template-columns: 1fr;
    }

    .home-faq-trigger {
        font-size: 18px;
        padding: 15px 14px;
        grid-template-columns: 30px 1fr 20px;
        gap: 10px;
    }

    .home-faq-question-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .home-faq-answer-box {
        grid-template-columns: 40px 1fr;
        padding: 12px;
    }

    .home-faq-answer-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .home-faq-answer-box p {
        font-size: 14px;
    }
}

.home-packs-note-mark {
    position: relative;
    display: inline-flex;
    width: 20px;
    height: 18px;
    background: #facc15;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    margin-right: 8px;
    vertical-align: -1px;
}

.home-packs-note-mark::after {
    content: '!';
    position: absolute;
    left: 50%;
    bottom: 1px;
    transform: translateX(-50%);
    color: #dc2626;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 1120px) {
    .home-packs-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-packs-benefit-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-packages {
        padding: 34px 0 26px;
    }

    .home-packs-heading {
        margin-bottom: 22px;
    }

    .home-packs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-pack-card,
    .home-pack-card-featured {
        grid-column: auto;
        min-height: auto;
        padding: 22px 18px;
    }

    .home-pack-head {
        gap: 11px;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .home-pack-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .home-pack-btn {
        min-height: 52px;
    }

    .home-packs-benefits {
        grid-template-columns: 1fr;
        margin-top: 18px;
        border-radius: 14px;
    }

    .home-packs-note {
        margin-top: 12px;
    }

    .home-packs-benefit-item {
        padding-left: 52px;
    }

    .home-packs-benefit-item::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-packs-kicker {
        min-height: 30px;
        padding: 0 18px;
        font-size: 12px;
    }

    .home-pack-badge {
        font-size: 11px;
        padding: 7px 14px;
        top: -13px;
    }
}

.home-trust-section {
    padding: 28px 0 24px;
    background-color: #ffffff;
    color: #333;
    width: 100%;
    margin-left: 0;
    overflow: visible;
}

.home-trust-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.home-trust-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    border: 1px solid #e6edf5;
    border-radius: 28px;
    padding: 34px 36px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
    width: 100%;
}

.home-trust-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf5ff;
    color: #006cdb;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.home-trust-title {
    font-size: 46px;
    line-height: 1.08;
    color: #333;
    margin-bottom: 12px;
    font-weight: 800;
}

.home-trust-desc {
    color: #64748b;
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.home-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.home-trust-stat {
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.home-trust-stat strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #006cdb;
    margin-bottom: 6px;
}

.home-trust-stat span {
    display: block;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.home-trust-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-trust-actions .btn-secondary {
    min-width: 220px;
}

.home-trust-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.home-trust-visual img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(15, 23, 42, 0.12));
    transition: transform 0.3s ease;
}

.home-trust-projects {
    padding: 26px 0 4px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.partner-logo-box {
    width: 84px;
    height: 84px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.partner-sub {
    font-size: 13px;
    color: #64748b;
}

.partner-card-trust {
    width: 100%;
    max-width: none;
    min-height: 250px;
    padding: 28px 22px 22px;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    border-color: #eef2f7;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.home-trust-visual:hover img {
    transform: scale(1.05);
}

@media (max-width: 1080px) {
    .home-hero-grid,
    .home-dashboard-grid,
    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-visual {
        min-height: 420px;
    }

    .home-services-grid,
    .home-stats-grid,
    .home-about-cards,
    .partners-grid-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-trust-hero {
        grid-template-columns: 1fr;
    }

    .home-trust-visual {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .home-hero-copy h1 {
        font-size: 30px;
    }

    .home-hero-copy p {
        font-size: 15px;
    }

    .home-hero-visual {
        min-height: 360px;
        background-size: 125% auto;
        background-position: center center;
    }

    .home-hero-grid {
        transform: none;
    }

    .home-account-layout {
        grid-template-columns: 1fr;
    }

    .home-services-grid,
    .home-stats-grid,
    .home-about-cards,
    .partners-grid-trust {
        grid-template-columns: 1fr;
    }

    .home-trust-hero {
        padding: 24px 20px;
    }

    .home-trust-title {
        font-size: 28px;
    }

    .home-trust-desc {
        font-size: 15px;
    }

    .home-trust-visual {
        min-height: 180px;
    }
    
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-visual {
        padding-right: 0;
    }

    .partners-grid {
        gap: 14px;
    }

    .partner-card {
        width: 100%;
        max-width: 360px;
    }

    .partner-card-trust {
        min-height: 220px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 560px) {
    .home-hero {
        padding-top: 22px;
    }

    .home-hero-actions {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .home-hero .btn-primary,
    .home-hero .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .home-hero-point {
        white-space: normal;
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .home-hero-visual {
        min-height: 300px;
    }
}

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

.animated-title {
    text-align: center;
    font-size: clamp(28px, 4.5vw, 38px);
    font-weight: 800;
    margin-top: 25px;
    margin-bottom: 55px;
    background: linear-gradient(90deg, #00a2ff, #1c7aff, #7e57c2, #00a2ff);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient-animation 5s linear infinite;
}

@keyframes text-gradient-animation {
    from {
        background-position: 0% center;
    }
    to {
        background-position: -200% center;
    }
}

/* Section "Notre processus" */
/* ===== HOME PROCESS SECTION ===== */
.home-process-section {
    padding: 80px 0 90px;
    background: #f0f5ff;
}

.home-process-heading {
    text-align: center;
    margin-bottom: 56px;
}

.home-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 999px;
    background: #e8f0fe;
    border: 1.5px solid #c5d8ff;
    color: #1573ee;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.home-process-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(33px, 3.9vw, 52px);
    line-height: 1.1;
    color: #0d1f4e;
    letter-spacing: -0.6px;
}

.home-process-heading h2 span {
    color: #1573ee;
}

.home-process-heading p {
    margin: 0 auto 18px;
    max-width: 580px;
    color: #5d6f8d;
    font-size: 17px;
    line-height: 1.6;
}

.home-process-heading-line {
    display: block;
    width: 48px;
    height: 3px;
    background: #1573ee;
    margin: 0 auto;
    border-radius: 2px;
}

/* Animation for process heading */
.home-process-heading > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}

.home-process-heading.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.home-process-heading.is-visible .home-process-kicker { transition-delay: 0.1s; }
.home-process-heading.is-visible h2 { transition-delay: 0.2s; }
.home-process-heading.is-visible p { transition-delay: 0.3s; }
.home-process-heading.is-visible .home-process-heading-line { transition-delay: 0.4s; }

/* Steps grid: 6 columns with dot connectors */
.home-process-grid {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.home-process-step {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 0 10px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s ease;
    position: relative;
}

.home-process-step:hover {
    box-shadow: none;
    border-color: transparent;
}

.home-process-step-number {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #c5d8ff;
    color: #1573ee;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 2;
}

.home-process-step-icon {
    width: 110px;
    height: 110px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    margin: 0 auto 16px;
}

.home-process-step-icon img {
    width: 110px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.home-process-step:hover .home-process-step-icon img {
    transform: scale(1.08);
}
.home-process-step:hover h3 {
    transform: translateY(-3px);
}


.home-process-step-icon svg {
    width: 44px;
    height: 44px;
    stroke: #1573ee;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-process-step h3 {
    margin: 0 0 8px;
    color: #0d1f4e;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}

.home-process-step h3::after {
    content: '';
    display: block;
    width: 28px;
    height: 2.5px;
    background: #1573ee;
    margin: 7px auto 0;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(.22,1,.36,1);
}

.home-process-step:hover h3::after {
    width: 80px;
}

.home-process-step p {
    margin: 0;
    color: #5d6f8d;
    font-size: 13.5px;
    line-height: 1.55;
    flex: unset;
    display: block;
}

/* Dotted connector between steps */
.home-process-connector {
    flex-shrink: 0;
    width: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 48px; /* vertically aligns with icon center */
    font-size: 0;
    opacity: 1;
}

.home-process-connector::before {
    content: '▶';
    display: block;
    color: #1E88FF;
    font-size: 24px;
    line-height: 1;
    opacity: 0.45;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.home-process-connector.is-flashing::before {
    animation: flash-blue 0.8s ease-out;
}

/* Benefits bottom card */
.home-process-benefits {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 8px 32px rgba(14, 60, 140, 0.08);
    border: 1px solid #e2ecff;
}

.home-process-benefits-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.home-process-benefits-rocket {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8 0%, #0f4fc6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(21, 115, 238, 0.3);
}

.home-process-benefits-rocket svg {
    width: 32px;
    height: 32px;
}

.home-process-benefits-text h3 {
    margin: 0 0 6px;
    color: #0d1f4e;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.home-process-benefits-text h3 span {
    color: #1573ee;
}

.home-process-benefits-text p {
    margin: 0;
    color: #5d6f8d;
    font-size: 14px;
    line-height: 1.5;
}

.home-process-benefits-right {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    border-left: 1px solid #e2ecff;
    padding-left: 32px;
}

.home-process-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-width: 90px;
}

.home-process-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    border: 1.5px solid #d2e3ff;
    color: #1573ee;
}

.home-process-benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1573ee;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-process-benefit span {
    color: #0d1f4e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

/* Animation for process steps */
.home-process-grid .home-process-step,
.home-process-grid .home-process-connector {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.5s cubic-bezier(.22,1,.36,1);
}

.home-process-grid.is-visible .home-process-step,
.home-process-grid.is-visible .home-process-connector {
    opacity: 1;
    transform: translateX(0);
}

.home-process-grid.is-visible .home-process-step:nth-child(1) { transition-delay: 0s; }
.home-process-grid.is-visible .home-process-connector:nth-child(2) { transition-delay: 0.15s; }
.home-process-grid.is-visible .home-process-step:nth-child(3) { transition-delay: 0.3s; }
.home-process-grid.is-visible .home-process-connector:nth-child(4) { transition-delay: 0.45s; }
.home-process-grid.is-visible .home-process-step:nth-child(5) { transition-delay: 0.6s; }
.home-process-grid.is-visible .home-process-connector:nth-child(6) { transition-delay: 0.75s; }
.home-process-grid.is-visible .home-process-step:nth-child(7) { transition-delay: 0.9s; }
.home-process-grid.is-visible .home-process-connector:nth-child(8) { transition-delay: 1.05s; }
.home-process-grid.is-visible .home-process-step:nth-child(9) { transition-delay: 1.2s; }
.home-process-grid.is-visible .home-process-connector:nth-child(10) { transition-delay: 1.35s; }
.home-process-grid.is-visible .home-process-step:nth-child(11) { transition-delay: 1.5s; }

@keyframes flash-blue {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}

@media (max-width: 1100px) {
    .home-process-connector {
        width: 20px;
    }
    .home-process-connector::before {
        width: 20px;
    }
    .home-process-step {
        padding: 0 6px;
    }
    .home-process-step-icon,
    .home-process-step-icon img {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 820px) {
    .home-process-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px 0;
    }

    .home-process-step {
        flex: 0 0 calc(33.333% - 12px);
        padding: 0 12px;
    }

    .home-process-connector {
        display: none;
    }

    .home-process-benefits {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .home-process-benefits-left {
        flex-direction: column;
        text-align: center;
    }

    .home-process-benefits-right {
        border-left: none;
        border-top: 1px solid #e2ecff;
        padding-left: 0;
        padding-top: 24px;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .home-process-heading h2 {
        font-size: 28px;
    }

    .home-process-step {
        flex: 0 0 calc(50% - 8px);
    }

    .home-process-benefits-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}
