/*

TemplateMo 597 Neural Glass

https://templatemo.com/tm-597-neural-glass

*/


@charset "utf-8";
/* CSS Document */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
     background-color: whitesmoke;
     color: #e0a3ff;
     overflow-x: hidden;
     min-height: 100vh;
     font-weight: 400;
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}

html {
  color-scheme: light !important;
}
/* Enhanced background colors - White/Peach/Pastel/Pink harmonious gradient */
.neural-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 223, 186, 0.7) 0%, transparent 80%), /* Peach */
        radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.5) 0%, transparent 80%), /* Light Pink */
        linear-gradient(200deg, #fffbe9 0%, #ffe5ec 30%, #fff 100%); /* White to pastel pink */
    animation: backgroundPulse 40s ease-in-out infinite;
}
/* Dégradé blanc vers la fin */
.neural-background::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px; /* Ajuste selon la douceur du fondu */
    background: linear-gradient(to bottom, transparent, white);
}
 @keyframes backgroundPulse {
     0%, 100% {
         filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
    }
     33% {
         filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
    }
     66% {
         filter: brightness(1.0) saturate(1.5) hue-rotate(-10deg);
    }
}
/* Floating geometric shapes */
 .geometric-shapes {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
}
 .shape {
     position: absolute;
     border: 1px solid rgba(0, 255, 255, 0.3);
     animation: floatShape 20s linear infinite;
}
 .shape:nth-child(1) {
     width: 100px;
     height: 100px;
     left: 10%;
     animation-delay: 0s;
     border-color: rgba(31, 3, 108, 0.4);
}
 .shape:nth-child(2) {
     width: 60px;
     height: 60px;
     left: 70%;
     animation-delay: -5s;
     border-radius: 50%;
     border-color: rgba(147, 112, 219, 0.4);
}
 .shape:nth-child(3) {
     width: 80px;
     height: 80px;
     left: 30%;
     animation-delay: -10s;
     transform: rotate(45deg);
     border-color: rgba(47, 40, 103, 0.4);
}
 .shape:nth-child(4) {
     width: 120px;
     height: 120px;
     left: 50%;
     animation-delay: -15s;
     clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
     background: linear-gradient(45deg, rgba(59, 54, 118, 0.1), transparent);
}
 @keyframes floatShape {
     from {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
    }
     10%, 90% {
         opacity: 1;
    }
     to {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
    }
}


/* Glassmorphism styles */
 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    color: #1d1d1f;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    text-decoration: none;
    transition: all 0.3s ease;
}
 .logo:hover {
     transform: scale(1.05);
}
 .logo-icon {
     width: 40px;
     height: 40px;
     filter: drop-shadow(0 0 10px #e0a3ff);
}
 @keyframes logoGlow {
     0%, 100% {
         filter: drop-shadow(0 0 10px #e0a3ff);
    }
     50% {
         filter: drop-shadow(0 0 20px #ff69b4);
    }
}
 
 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 .hamburger-line {
     width: 25px;
     height: 3px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4);
     margin: 3px 0;
     border-radius: 2px;
     transition: all 0.3s ease;
}
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
    }
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
    }
}

/* Section 1: Modern Redesigned Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 100vh; /* Ajouté: occupe toute la hauteur de la fenêtre */
    width: 100vw;      /* Ajouté: occupe toute la largeur */
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(224, 163, 255, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 10s ease-in-out infinite;
    z-index: -1;
}
@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    padding: 80px 40px;
    margin-top: 120px;
    animation: heroAppear 3.5s ease-out;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1; /* important pour ne pas écraser le texte */
    letter-spacing: -0.01em;
    color: #0a0a0c;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
    margin: 0.2em 0;
    word-break: keep-all; /* évite les coupures bizarres */
    white-space: normal;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.5;
    max-width: 700px;
    margin: 1em auto 0;
    color: #333;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        line-height: 1.2;
        word-break: keep-all; /* garde les mots entiers */
        white-space: normal;
    }

    .hero-content p {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        padding: 0;
        max-width: 90%;
    }
}



@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.hero-subtitle {
    font-size: 0.9rem;
    color: #e0a3ff;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideInFromLeft 1.2s ease 0.3s forwards;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    position: relative;
    display: inline-block;
    font-weight: 300;
}
.hero-subtitle::before, .hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
    animation: linePulse 3s ease infinite;
}
.hero-subtitle::before {
    left: -60px;
}
.hero-subtitle::after {
    right: -60px;
}
@keyframes linePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #03032e 0%, #5b68db 35%, #3e5ab5 70%, #5635db 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 8s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
.avatar-audio h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #222 0%, #444 40%, #610758 80%, #ff9257 100%), 
                linear-gradient(120deg, rgba(255,255,255,0.18) 10%, transparent 70%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 2s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 520;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
.section.how-it-works-fullscreen h1 {
    font-size: clamp(1.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, #222 0%, #444 40%, #000 80%, #ff9257 100%), 
                linear-gradient(120deg, rgba(255,255,255,0.18) 10%, transparent 70%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 2s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 520;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}

.section.features h1 {
    font-size: clamp(1.5rem, 6vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #222 0%, #444 40%, #000 80%, #ff9257 100%), 
                linear-gradient(120deg, rgba(255,255,255,0.18) 10%, transparent 70%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 2s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 520;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}

.section-tag {
  display: inline-flex;          /* largeur adaptée au contenu */
  align-items: center;           /* centre verticalement l'image et le texte */
  gap: 5px;                      /* espace entre image et texte */
  border: 1.5px solid #000;      /* bordure */
  padding: 1px 5px;              /* espace entre bordure et contenu */
  border-radius: 13px;           /* coins arrondis */
  
  /* centrage horizontal */
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.section-tag .small-text {
  font-size: 14px;
  font-weight: 500;
}
@keyframes modernGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-description {
    max-width: 700px;
    margin: 40px auto 50px;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.9s forwards;
    text-align: center;
}
.hero-description p {
    font-size: 1.2rem;
    color: #090606;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modern-container {
    padding: 100px;
    width: 95%;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(50px);
    position: relative;
    z-index: 2;
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* colonnes flexibles */
    gap: 40px;
    margin: 60px auto 50px;
    max-width: 640px;
    opacity: 0;
    animation: slideUpStagger 1.2s ease 1.2s forwards;
}

/* Réduction de l'espace et marges pour tablettes */
@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
        margin: 50px auto 40px;
    }
}

/* Adaptation pour mobile (1 ou 2 colonnes selon la largeur) */
@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin: 40px auto 35px;
    }
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(224, 163, 255, 0.06), rgba(255, 105, 180, 0.04));
    border: 1px solid rgba(3, 76, 246, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    color: #1d1d1f; /* Ajouté: texte noir */
}
.hero-stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(14, 156, 212, 0.3);
    box-shadow: 0 20px 40px rgba(224, 163, 255, 0.1);
}
.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d1d1f; /* Modifié: noir */
    display: block;
    text-shadow: 0 0 15px rgba(224, 163, 255, 0.15); /* Optionnel: ombre plus discrète */
    margin-bottom: 8px;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: #86868b; /* Modifié: gris Apple */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}
@keyframes slideUpStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonSlideUp 1.2s ease 1.5s forwards;
}
@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(180deg, #3056c0, rgb(1, 8, 105));
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(224, 163, 255, 0.2);
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #e0a3ff;
    color: #e0a3ff;
    box-shadow: 0 4px 15px rgba(224, 163, 255, 0.1);
}
.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(224, 163, 255, 0.3);
}
.cta-button.secondary:hover {
    background: rgba(224, 163, 255, 0.08);
    box-shadow: 0 12px 30px rgba(224, 163, 255, 0.2);
}
/* Section 2: Diagonal Features */
 .features {
     padding: 150px 0;
     position: relative;
     overflow: hidden;
     background-color: white;
}
 .features::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 120px;
     background: linear-gradient(to top, #fff, transparent);
     z-index: -1;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 140px;
    margin-left: 80px;
    margin-right: 80px;
    color: #a259ff;
    position: relative;
    color: #fff;
    text-shadow:
        0 0 2px #a259ff,
        0 0 8px #e0a3ff,
        0 0 1px #9370db;
    animation: sectionTitleGlow 2.5s ease-in-out infinite;
}

@keyframes sectionTitleGlow {
    0%, 100% {
        text-shadow:
            0 0 2px #a259ff,
            0 0 8px #e0a3ff,
            0 0 1px #9370db;
    }
    50% {
        text-shadow:
            0 0 8px #e0a3ff,
            0 0 16px #a259ff,
            0 0 4px #9370db;
    }
}
 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #00ffff, #ff0080);
     border-radius: 2px;
}
 .features-container {
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 20px;
}
 .diagonal-grid {
     display: flex;
     flex-direction: column;
     gap: 200px;
}
 .feature-row {
     display: flex;
     align-items: center;
     gap: 140px;
     position: relative;
}
 .feature-row:nth-child(even) {
     flex-direction: row-reverse;
}
 .feature-content {
     flex: 1;
     padding: 50px;
     transform: skew(-5deg);
     transition: all 0.4s ease;
}
 .feature-content:hover {
     transform: skew(-5deg) translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}
 .feature-visual {
     flex: 1;
     height: 300px;
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     transition: all 0.4s ease;
}
 .feature-visual:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(224, 163, 255, 0.3);
}
 .feature-visual::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.1), rgba(255, 105, 180, 0.1));
     z-index: 1;
     backdrop-filter: blur(1px);
     transition: all 0.4s ease;
}
 .feature-visual:hover::before {
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.2));
}
 .feature-row:nth-child(1) .feature-visual {
     background-image: url('images/templatemo-neural-01.jpg');
}
 .feature-row:nth-child(2) .feature-visual {
     background-image: url('images/templatemo-neural-02.jpg');
}
 .feature-row:nth-child(3) .feature-visual {
     background-image: url('images/templatemo-neural-03.jpg');
}
 .feature-icon {
     font-size: 4rem;
     margin-bottom: 25px;
     background: linear-gradient(45deg, #ff0080, #8000ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .feature-content h3 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: #ffffff;
}
 .feature-content p {
     font-size: 1.1rem;
     color: #cccccc;
     line-height: 1.8;
}
/* Section 3: Enhanced Hexagonal Showcase */
 .showcase {
     padding: 150px 0;
     position: relative;
     overflow-x: hidden;
}
 .hexagon-container {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
 .hexagon {
     width: 220px;
     height: 290px;
     position: relative;
     margin: 20px;
}
 .hexagon-inner {
     width: 100%;
     height: 100%;
     position: relative;
     border-radius: 25px;
     padding: 50px 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon:nth-child(odd) .hexagon-inner {
     background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
     border: 1px solid rgba(0, 255, 255, 0.3);
}
 .hexagon:nth-child(even) .hexagon-inner {
     background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
     border: 1px solid rgba(255, 0, 128, 0.3);
}
 .hexagon-icon {
     font-size: 2.8rem;
     margin-bottom: 20px;
     transform: rotate(-10deg);
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-icon {
     transform: rotate(0deg);
}
 .hexagon h4 {
     font-size: 1.3rem;
     color: #160606;
     transform: rotate(0deg);
     margin-bottom: 15px;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
}
 .hexagon:hover h4 {
     transform: rotate(0deg);
}
 .hexagon:hover p {
     transform: rotate(0deg);
}


@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}
 @media (max-width: 768px) {
     .hero-content {
         padding: 40px 20px;
    }
     .hero h1 {
         font-size: clamp(1.8rem, 8vw, 3rem);
    }
     .hero-description p {
         font-size: 1.1rem;
    }
     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         margin: 40px auto 35px;
    }
     .hero-stat {
         padding: 15px;
    }
     .hero-stat-number {
         font-size: 1.5rem;
    }
     .hero-subtitle::before, .hero-subtitle::after {
         width: 25px;
    }
     .hero-subtitle::before {
         left: -35px;
    }
     .hero-subtitle::after {
         right: -35px;
    }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .cta-button {
         width: 100%;
         max-width: 280px;
         text-align: center;
    }
    /* Update the existing hexagon styles for mobile */
    .hexagon {
        width: 280px;  /* Increased from 180px */
        height: 320px; /* Increased from 200px */
        margin: 30px auto; /* Center and add more spacing */
    }
    
    .hexagon-inner {
        padding: 60px 35px; /* More padding for larger content area */
    }
    
    .hexagon-icon {
        font-size: 3.5rem; /* Larger icon */
        margin-bottom: 25px;
    }
    
    .hexagon h4 {
        font-size: 1.6rem; /* Larger heading */
        margin-bottom: 20px;
    }
    
    .hexagon p {
        font-size: 1.1rem; /* Larger text */
        max-width: 200px; /* More width for text */
        line-height: 1.6;
    }
    
    .hexagon-container {
        gap: 20px; /* Reduce gap since boxes are larger */
    }
     .section-title {
         margin-bottom: 60px;
    }
     .features, .showcase, .timeline, .contact {
         padding: 80px 0;
    }
     .timeline {
         padding: 60px 0;
    }
     .footer-links {
         gap: 20px;
         margin-bottom: 25px;
    }
     .footer-links a {
         font-size: 0.85rem;
    }
}
/* Enhanced scrollbar */
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.8);
     border-radius: 6px;
}
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #ffffff, #8d8a8d);
     border-radius: 3px;
}


.title_section {
    /* Style général du conteneur */
    flex-direction: column;
    align-items: center; /* Centrer le texte horizontalement */
    text-align: center;/* Ajouter de l'espace autour */
    width: 100%;   
}
.title_section h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0a0a0c;
    font-size: 2.9rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
    opacity: 0;
    animation: slideInFromRight 1s ease 0.4s forwards;
    margin: 0; /* enlève les marges par défaut */
}

/* Optionnel : Rendre la deuxième ligne légèrement moins dominante */
.title_section h1:last-child {
    font-weight: 400; /* Passer à une graisse plus légère (Regular) */
    color: #86868b; /* Changer la couleur pour un gris plus discret */
    font-size: 2.8rem; /* Laisser la deuxième ligne un peu plus petite */
}
.integration {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  min-height: 100vh; /* occupe tout l'écran */
}
.integration h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 30px;
  background: linear-gradient(135deg, #7fdfff 0%, #a259ff 35%, #ff69b4 70%, #ffd6a5 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: modernGradient 4s ease infinite;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-shadow: none;
  opacity: 0;
  animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}

/* Style pour l'avatar audio avec animation de glow */
.avatar-audio {
  text-align: center;
  padding: 40px;
  font-family: sans-serif;
}

.avatar-container {
  display: inline-block;
  position: relative;
  margin-top: 30px;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(28, 54, 54, 0.4);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

/* Glow animé */
.avatar-container.playing .avatar {
  animation: glowPulse 1.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 20px rgba(195, 42, 119, 0.4),
                0 0 40px rgba(144, 10, 216, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(195, 42, 119, 0.8),
                0 0 80px rgba(144, 10, 216, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(195, 42, 119, 0.4),
                0 0 40px rgba(144, 10, 216, 0.2);
  }
}

.play-btn {
  background: linear-gradient(135deg, #e0a3ff, #ff69b4);
  border: none;
  color: white;
  font-size: 15px;
  padding: 15px 25px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}
.play-btn:hover {
  transform: scale(1.1);
}

/* Animation du texte */
.avatar-audio-title,
.avatar-audio-desc {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.avatar-audio-title.animate-text,
.avatar-audio-desc.animate-text {
  opacity: 1;
  transform: translateY(20px);
}

.general_p {
        font-size: 1rem;
        color: #717070;
        text-align: center;
        font-weight: 400;
}



    .faq_7 * {
  font-family: Nunito, sans-serif;
}

.faq_7 .responsive-cell-block {
  min-height: 75px;
}

.faq_7 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.faq_7 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.faq_7 .faq-head-bg {
  background-color: #03a9f4;
  color: white;
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 80px;
  padding-left: 60px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: auto;
}

.faq_7 .text-blk.faq-heading1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 900;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .text-blk.faq-subheading {
  font-size: 18px;
  line-height: 26px;
}

.faq_7 .faq-dropdown-bg {
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 80px;
  padding-left: 60px;
}

.faq_7 .faq {
  display: block;
  flex-direction: column;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #aaaaaa;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
}

.faq_7 .faq-question-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .faq-question-container:hover {
  cursor: pointer;
}

.faq_7 .text-blk.faq-questions {
  color: #525252;
  font-size: 20px;
}

.faq_7 .text-blk.faq-answer {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  color: #9c9c9c;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .text-blk.faq-subheading {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 590px;
  font-size: 18px;
}

.faq_7 .answer-box {
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: max-height;
}

.faq_7 .faq.active .openimg {
  transform: rotate(180deg);
}

.faq_7 .openimg {
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  transition-delay: 0s;
  transition-property: transform;
}

.faq_7 .faq.active .answer-box {
  max-height: 550px;
}

.faq_7 .faq-head-content {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 450px;
}

.faq_7 .container-block {
  max-width: 800px;
}

@media (max-width: 1024px) {
  .faq_7 .text-blk.faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq_7 .text-blk.faq-heading1 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .faq_7 .faq-head-content {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 500px;
    text-align: center;
  }

  .faq_7 .faq-head-bg {
    padding-top: 50px;
    padding-right: 60px;
    padding-bottom: 30px;
    padding-left: 60px;
  }

  .faq_7 .faq-dropdown-bg {
    padding-top: 50px;
    padding-right: 60px;
    padding-bottom: 50px;
    padding-left: 60px;
  }

  .faq_7 .text-blk.faq-questions {
    font-size: 18px;
  }

  .faq_7 .text-blk.faq-answer {
    font-size: 16px;
  }

  .faq_7 .text-blk.faq-subheading {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-5.faq-head-bg {
    padding-top: 80px;
    padding-right: 30px;
    padding-bottom: 80px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-7.faq-dropdown-bg {
    padding-top: 80px;
    padding-right: 30px;
    padding-bottom: 80px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-5.faq-head-bg {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-7.faq-dropdown-bg {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
  }

  .faq_7 .text-blk.faq-answer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
    font-size: 16px;
  }

  .faq_7 .text-blk.faq-questions {
    font-size: 18px;
  }

  .faq_7 .text-blk.faq-heading1 {
    font-size: 26px;
  }

  .faq_7 .text-blk.faq-subheading {
    font-size: 17px;
    line-height: 24px;
  }
}

#data-privacy .text-block p {
  transition: opacity .6s ease, transform .6s ease;
  color: #000;
}




/* --- SUPER CHATGPT VOICE BACKGROUND --- */
/* Background WAVES pulsantes façon ChatGPT Voice */
.ai-waves-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle,
        rgba(255,255,255,0.8) 0%,
        rgba(150,200,255,0.5) 50%,
        rgba(100,150,255,0.35) 70%,
        rgba(50,120,255,0.25) 0%
    );
    opacity: 0.7;

    mask: radial-gradient(circle at center,
        black 0%,
        transparent 70%
    );

    animation: wavePulse 4s ease-in-out infinite,
               waveDistort 6s ease-in-out infinite;
    filter: blur(60px);
}

/* Pulsation principale */
@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(1); opacity: 0.75; }
}

/* Déformation organique */
@keyframes waveDistort {
    0% { border-radius: 50%; }
    25% { border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%; }
    50% { border-radius: 60% 40% 45% 55% / 50% 40% 60% 50%; }
    75% { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
    100% { border-radius: 50%; }
}

/* Pour que le contenu reste dessus */
.modern-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .modern-container {
        padding: 50px 20px;
    }
}

