*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

:root {
    --blue: #3f51b5;
    --blue-light: #5c6bc0;
    --blue-dark: #283593;
    --accent: #7c8ff5;
    --bg: #f5f6fa;
    --white: #ffffff;
    --text: #1a1d2e;
    --muted: #6b7280;
    --dot-color: #dde0f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.example::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ─── HERO ─── */
.hero {
    min-height: max-content;
    max-height: 100vh;
    padding-top: 64px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 40%, rgba(63, 81, 181, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 70%, rgba(92, 107, 192, 0.06) 0%, transparent 50%),
        var(--bg);
}

/* Dot grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(63, 81, 181, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-inner {
    width: max-content;
    margin: 0 30px 20px !important;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--blue);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 460px;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 600;
}

.hero-form {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(63, 81, 181, 0.18);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.hero-form input::placeholder {
    color: #b0b5c9;
}

.hero-left-col .btn-cta {
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(63, 81, 181, 0.3);
}

.hero-left-col .btn-cta:hover {
    background: var(--blue-light);
    box-shadow: 0 6px 22px rgba(63, 81, 181, 0.4);
    transform: translateY(-1px);
}

.vr-line {
    height: 500px;
    width: 1px;
    background-color: rgba(216, 216, 216, 0.792);
}

/* ─── RIGHT: CIRCLE + APPS ─── */
.hero-right {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
}

.orbit-container {
    position: relative;
    width: 450px;
    height: 450px;
}

/* Center core */
.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #3f51b5;
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(63, 81, 181, 0.2), 0 0 0 1px rgba(63, 81, 181, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.orbit-core .core-icon {
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.orbit-core .core-icon img {
    width: 85%;
    height: 85%;
    margin-top: 10px;
}

/* Orbit rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(63, 81, 181, 0.12);
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: rotateRing 20s linear infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    animation: rotateRing 30s linear infinite reverse;
}

.ring-3 {
    width: 450px;
    height: 450px;
    border-style: dashed;
    border-color: rgba(63, 81, 181, 0.07);
}

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

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

/* App nodes */
.app-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    margin-left: -26px;
    border-radius: 14px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    z-index: 5;
    /* Pas de transition sur transform ici pour ne pas ralentir l'orbite */
}

.app-node:hover {
    transform: translate(var(--tx), var(--ty)) scale(1.2) !important;
    z-index: 20;
    box-shadow: 0 8px 28px rgba(63, 81, 181, 0.25);
    transition: box-shadow 0.2s, transform 0.15s;
}

.app-node .tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1d2e;
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
}

.app-node:hover .tooltip {
    opacity: 1;
}

.app-node img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

/* App SVG icons inline */
.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating stats cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(63, 81, 181, 0.12), 0 0 0 1px rgba(63, 81, 181, 0.06);
    z-index: 15;
    animation: floatY 4s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: -2s;
}

@keyframes floatY {

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

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

.float-card.top-left {
    top: -50px;
    left: -150px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-card.top-right {
    top: -100px;
    right: -200px;
    gap: 2px;
}

.float-card.top-right .fc-text>div {
    margin-top: 5px;
    display: flex;
    gap: 5px;
}

.float-card.top-right span {
    background-color: #1a1d2e17;
    padding: 2.5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.float-card.bottom-right {
    bottom: -20px;
    right: -150px;
}

.float-card.bottom-left {
    bottom: -100px;
    left: -150px;
    width: max-content;
}

.float-card.bottom-left .fc-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.float-card.float-card.bottom-left div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    padding: 0px 2.5px;
}

.float-card.bottom-left>div span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-card.bottom-left>div span svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.float-card.float-card.bottom-left div p {
    margin-left: 10px;
    padding: 2.5px 20px;
    background-color: #abafc44b;
    border-radius: 4px;
    font-size: 0.80rem;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: end;
}

#listenText::after,
#translateText::after {
    content: "|";
    margin-left: 3px;
    opacity: 1;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.float-card .fc-icon {
    margin: 0px;
    width: 40px;
    height: 40px;
    background: rgba(63, 81, 181, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fc-icon img {
    width: 30px;
    height: 30px;
}

.float-card .fc-text p {
    font-size: 0.80rem;
    color: var(--muted);
}

.float-card .fc-text strong {
    font-size: 1rem;
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.float-card.bottom-right p {
    font-size: 0.80rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.lang-flags {
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 15px;
    border-radius: 20px;
    background: rgba(100, 105, 114, 0.184);
}

.lang-flags .flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -10px;
    border: 2px solid #ede7e7;


}

.lang-more {
    margin-left: 6px;
    font-size: 11px;
    font-weight: 600;
    background: #f0f2ff;
    color: #3f51b5;
    border-radius: 999px;
    padding: 3px 8px;
    border: 2px solid white;
}

/* ─── LOGOS BAR ─── */
.logos-bar {
    background: white;
    border-top: 1px solid rgba(63, 81, 181, 0.06);
    border-bottom: 1px solid rgba(63, 81, 181, 0.06);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 40px;
    color: #a0a8c0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.stat-item svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    opacity: 0.6;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── FEATURES ─── */

.features {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.features-pro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.features-pro-title {
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}


.features-pro .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-label {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    margin-top: 50px;
}

.section-title {
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

body>section:nth-child(6)>section.features>h3 {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    margin: 0 auto 0px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(132, 140, 161, 0.283);
}


.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(63, 81, 181, 0.09);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
}


.use-cases-section {
    padding-top: 60px !important;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 24px 20px;
    height: 250px !important;
    min-height: 250px !important;
    border: 1px solid rgba(63, 81, 181, 0.08);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(63, 81, 181, 0.1);
}

.uc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(63, 81, 181, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.uc-icon svg {
    width: 20px;
    height: 20px;
}

.uc-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.uc-content p {
    font-size: 1rem;
    line-height: 1.6;
}



/* ─── COMPARISON TABLE ─── */
.cmp-table {
    width: 100% !important;
    border-collapse: separate;  /* au lieu de collapse */
    border-spacing: 0;          /* évite les espaces entre cellules */
    border-radius: 12px;
    overflow: hidden;           /* clip les coins */
    font-size: 0.9rem;
    border: 1px solid rgba(132, 140, 161, 0.283);  
}

body > section:nth-child(9) > div {
    width: 100% !important;
    max-width: 100% !important;
}
body > section:nth-child(9) {
    margin-bottom: 10px !important;
}
.cmp-table th {
    padding: 20px 12px;
    text-align: left;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    border-bottom: 0.5px solid rgba(0, 0, 0, .08);
    background: rgba(63, 81, 181, .04);
    width: 200px;
}

.cmp-table td {
    padding: 15px 12px;
    border-bottom: 0.5px solid rgba(42, 42, 42, 0.104);
    color: #111;
    vertical-align: middle;
    font-size: 0.9rem;
}
.cmp-table td, .cmp-table th {
    text-align: left;
    padding: 20px;
}

/* coin haut-gauche */
.cmp-table thead tr th:first-child {
    border-radius: 12px 0 0 0;
}

/* coin haut-droit */
.cmp-table thead tr th:last-child {
    border-radius: 0 12px 0 0;
}

/* coin bas-gauche */
.cmp-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

/* coin bas-droit */
.cmp-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

.col-h {
    background: rgba(63, 81, 181, .04) !important;
    font-weight: 600;
    color: #3f51b5 !important;
    font-size: 0.9rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    padding: 2px 15px;
    border-radius: 999px;
    font-weight: 500;
}

.chip.yes {
    background: #eaf3de;
    color: #3B6D11;
    border: 1px solid #c6e0a4;
}

.chip.no {
    background: #fcebeb;
    color: #A32D2D;
    border: 1px solid #f5c6c6;
}

.chip.partial {
    background: #faeeda;
    color: #854F0B;
    border: 1px solid #f0cfa4;
}



/* ── CTA ── */
.footer-cta {
    background: var(--blue);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -50px;
}

/* ── CTA Section améliorée ── */
.footer-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 120, 255, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(79, 100, 220, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 80%, rgba(50, 70, 200, 0.25) 0%, transparent 50%),
        #3f51b5;
}

/* Grille géométrique en overlay */
.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Points décoratifs coins */
.footer-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 12px 12px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
}

/* S'assurer que le contenu passe au-dessus des overlays */
.footer-cta>* {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 26px;
    position: relative;
    font-weight: 300;
}

.footer-cta .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.footer-cta .hero-form {
    display: flex;
    gap: 10px;
    margin: 0px;
    max-width: 600px;
}

.footer-cta .hero-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(63, 81, 181, 0.18);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    outline: none;
    width: 250px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-cta .hero-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.footer-cta .hero-form input::placeholder {
    color: #b0b5c9;
}


.footer-cta .btn-cta {
    background: white;
    color: var(--blue);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-cta .btn-cta:hover {
    background: #f0f2ff;
    transform: translateY(-1px);
}

.footer-cta .btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-cta .btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.2);
}


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

@media (max-width: 600px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── FOOTER ─── */
footer {
    background: white;
    border-top: 1px solid rgba(63, 81, 181, 0.07);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.partners {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.partners a {
    margin-top: 3px;
}

.partners img {
    height: 28px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s;
    cursor: pointer;
}

.partners p {
    font-size: 0.9rem;
    font-weight: bold;
}

footer .footer-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

footer .footer-links a {
    font-size: 0.83rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: var(--blue);
}

footer .footer-copy {
    font-size: 0.8rem;
    color: #c0c5d8;
}

/* Entrance animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-left>* {
    animation: fadeUp 0.7s ease both;
}

.hero-left>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-left>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-left>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-left>*:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-left>*:nth-child(5) {
    animation-delay: 0.5s;
}

.hero-right {
    animation: fadeUp 0.9s 0.3s ease both;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-right {
        display: none;
    }

    .hero-form {
        margin: 0 auto 32px;
    }

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

    .nav-links {
        display: none;
    }
}

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