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

:root {
    /* Couleurs principales du site */
    --violet: #6a6ad8;
    --violet-clair: #f7f7ff;
    --vert: #428365;
    --jaune: #e3b505;
    --bleu: #1f3a44;
    --bordeaux: #a80774;
    
    /* Couleurs dérivées */
    --dark-teal: #1f3a44; /* bleu */
    --dark-purple: #6a6ad8; /* violet */
    --light-purple: #f7f7ff; /* violet clair */
    --bright-yellow: #e3b505; /* jaune */
    --magenta: #a80774; /* bordeaux */
    --green: #428365; /* vert */
    
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-grey: #6b7280;
}

body {
    font-family: 'Montserrat', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.testimonials .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Text Colors */
.text-teal {
    color: var(--dark-teal);
}

.text-purple {
    color: var(--dark-purple);
}

.text-bordeaux {
    color: var(--bordeaux);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar > .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a,
.nav-menu-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu-link:hover {
    color: var(--dark-purple);
}

.nav-connect-link {
    color: var(--bordeaux);
}

.nav-connect-link:hover {
    color: var(--bordeaux);
    opacity: 0.8;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-connect {
    background: var(--dark-purple);
    color: var(--white);
}

.btn-demo,
a.btn-demo {
    background: var(--bordeaux);
    color: var(--white);
    text-decoration: none;
}

.btn-nav:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section — marge haute identique page Fonctionnalités (navbar fixe) */
.hero {
    padding: 140px 0 80px;
    background: var(--violet-clair);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-title .text-teal {
    color: var(--dark-teal);
}

.hero-title .text-purple {
    color: var(--dark-purple);
}

.text-vert {
    color: var(--vert);
}

.title-arrow {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.25rem;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.btn-primary,
a.btn-primary {
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary .btn-icon,
.btn-primary svg {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-secondary .btn-icon,
.btn-secondary svg {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover svg {
    color: var(--white);
}

.btn-secondary:hover .btn-icon {
    filter: brightness(0) invert(1);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
    align-items: center;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--vert);
    flex-shrink: 0;
}

.arrow-teal-large {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.arrow-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

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

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transform: scale(1.3);
}

.laptop-mockup {
    width: 80%;
    height: 60%;
    background: #1f2937;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.ui-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    max-width: 400px;
}

.ui-card-header {
    background: #3b82f6;
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ui-card-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.ui-card-tabs span {
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border-radius: 4px;
    color: var(--text-dark);
}

.ui-card-tabs span.active {
    background: var(--dark-purple);
    color: var(--white);
}

.ui-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ui-item {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.ui-item strong {
    color: var(--dark-teal);
}

.floating-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.floating-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    width: 85%;
    height: 100%;
    background: var(--dark-teal);
    border-radius: 4px;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

.arrow-yellow-small {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    z-index: 3;
}

.arrow-logo-small {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: var(--white);
}

.trusted-by-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.trusted-by-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.clients-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 2rem;
    animation: scroll-clients 30s linear infinite;
    width: fit-content;
}

.client-logo {
    width: 150px;
    height: 80px;
    background: var(--white);
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    overflow: hidden;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Qualiopi Explanation Section */
.qualiopi-explanation {
    padding: 0 0 80px 0;
    background: var(--white);
}

.explanation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-slider-lead {
    max-width: 680px;
    margin: 1.25rem auto 0;
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.6;
}

.explanation-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.explanation-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.explanation-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.title-line-1,
.title-line-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.5rem;
}

.title-arrow-small {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.25rem;
    object-fit: contain;
}

/* Qualiopi Challenge Section 3 */
.qualiopi-challenge-section-3 {
    padding: 80px 0;
    background: var(--violet-clair);
}

.challenge-section-3-content {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    position: relative;
}

.challenge-section-3-left {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
}

.section-3-arrow-left {
    position: absolute;
    left: -100px;
    width: 80px;
    height: 100%;
    background: var(--bleu);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 1;
}

.section-3-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    align-self: stretch;
}

.challenge-section-3-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.challenge-section-3-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.challenge-section-3-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.challenge-section-3-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.challenge-section-3-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.list-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
    object-fit: contain;
}

.challenge-section-3-cta {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Qualiotech Management Section 5 */
.qualiotech-management-section-5 {
    padding: 80px 0;
    background: var(--white);
}

.management-section-5-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.management-section-5-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.management-section-5-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.management-section-5-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.management-section-5-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

.section-5-image {
    width: 100%;
    max-width: 120%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transform: scale(1.2);
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.management-section-5-cta {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: var(--violet);
}

.statistics-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 3rem;
}

.statistics-section .stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.statistics-section .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.statistics-section .stat-label {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.4;
}

/* Audit Process Section */
.audit-process-section {
    padding: 60px 0;
    background: var(--bleu);
    position: relative;
    overflow: hidden;
}

.audit-process-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.audit-process-title .text-teal {
    color: var(--white);
}

.audit-process-title .comment-normal {
    font-weight: 400;
    font-size: 2rem;
}

.audit-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 2rem 0;
    padding: 0 2rem;
    min-height: 300px;
}

.audit-process-timeline::before {
    content: '';
    position: absolute;
    top: 160px;
    left: 0%;
    right: 0%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 2;
    gap: 1.5rem;
}

.step-1 {
    justify-content: flex-start;
    padding-top: 0;
    align-items: flex-start;
}

.step-1 .process-node-wrapper {
    padding-top: 0;
}

.step-2 {
    justify-content: flex-start;
    padding-top: 130px;
    align-items: flex-start;
}

.step-2 .process-node-wrapper {
    padding-top: 0;
}

.step-3 {
    justify-content: flex-start;
    padding-top: 0;
    align-items: flex-start;
}

.step-3 .process-node-wrapper {
    padding-top: 0;
}

.process-node-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    justify-content: flex-start;
    height: 100%;
}

.process-connector {
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.step-1 .process-connector {
    top: 80px;
    bottom: auto;
    height: 80px;
}

.step-2 .process-connector {
    top: 110px;
    bottom: auto;
    height: 80px;
    transform: translateX(-50%) translateY(-100%);
}

.step-3 .process-connector {
    top: 80px;
    bottom: auto;
    height: 80px;
}

.process-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to top, var(--violet) 0%, var(--bordeaux) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.step-1 .process-node {
    margin-bottom: 110px;
    margin-top: 0;
}

.step-2 .process-node {
    margin-top: 110px;
    margin-bottom: 0;
}

.step-3 .process-node {
    margin-bottom: 110px;
    margin-top: 0;
}

.node-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.process-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    text-align: left;
    max-width: 250px;
    margin: 0;
    display: flex;
    align-items: center;
    height: 80px;
}

.step-1 .process-text {
    margin-top: 0;
    margin-bottom: 110px;
}

.step-2 .process-text {
    margin-top: 110px;
    margin-bottom: 0;
}

.step-3 .process-text {
    margin-top: 0;
    margin-bottom: 110px;
}

.audit-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.shape-white-img {
    position: absolute;
    top: -15px;
    left: -85px;
    width: 280px;
    height: 280px;
    object-fit: contain;
    opacity: 0.5;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    filter: brightness(1.1);
}

.shape-bordeaux-img {
    position: absolute;
    bottom: -15px;
    right: -85px;
    width: 280px;
    height: 280px;
    object-fit: contain;
    opacity: 0.3;
}

/* Unique Features Section with Screenshot */
.unique-features-screenshot {
    padding: 80px 0;
    background: var(--white);
}

.features-screenshot-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

.features-screenshot-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-screenshot-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    padding-left: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-item:nth-child(1) {
    border: 2px solid var(--violet);
}

.feature-item:nth-child(2) {
    border: 2px solid var(--jaune);
}

.feature-item:nth-child(3) {
    border: 2px solid var(--vert);
}

.feature-item:nth-child(4) {
    border: 2px solid var(--bordeaux);
}

.feature-item:nth-child(5) {
    border: 2px solid var(--bleu);
}

.feature-item:nth-child(6) {
    border: 2px solid var(--violet);
}

.features-list .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50% !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.blue-icon {
    background: var(--bleu);
}

.yellow-icon {
    background: var(--jaune);
}

.green-icon {
    background: var(--vert);
}

.purple-icon {
    background: var(--violet-clair);
}

.bordeaux-icon {
    background: var(--bordeaux);
}

.feature-icon-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.feature-icon-delete-file,
.feature-icon-iteration {
    width: 28px;
    height: 28px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.features-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.features-demo-btn,
.features-all-btn {
    white-space: nowrap;
}

.features-screenshot-right {
    flex: 0 0 55%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-start;
}

.screenshot-wrapper {
    position: relative;
    width: 100%;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unique-features-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    align-items: start;
}

.unique-features-collage-left,
.unique-features-collage-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.unique-features-collage-logo-zone {
    display: grid;
    grid-template-rows: auto 1fr auto 1fr auto;
    align-items: center;
    min-height: 0;
}

.unique-features-collage-item--6 {
    grid-row: 1;
}

.unique-features-collage-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    align-self: center;
    flex-shrink: 0;
}

.unique-features-collage-logo--blue {
    grid-row: 3;
    justify-self: center;
}

.unique-features-collage-item--2 {
    grid-row: 5;
    align-self: end;
}

.unique-features-collage-item {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: none;
}

.screenshot-logo {
    position: absolute;
    right: 0;
    top: -200px;
    width: 240px !important;
    height: 240px !important;
    object-fit: contain;
    z-index: 2;
}

/* Method Banner Section */
.method-banner-section {
    padding: 60px 0;
    background: var(--bordeaux);
    text-align: center;
}

.method-banner-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.method-banner-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

/* Operational Reality Section */
.operational-reality-section {
    padding: 80px 0;
    background: var(--violet-clair);
}

.operational-reality-section .container {
    padding-left: 0;
    padding-right: 0;
}

.operational-reality-content {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.operational-reality-left {
    flex: 0 0 50%;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-left: 0;
}

.operational-reality-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, var(--violet-clair), transparent);
    z-index: 1;
    pointer-events: none;
}

.operational-reality-image {
    width: 120%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1.6);
    transform-origin: right center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
}

.faq-title .title-arrow-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question span {
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-dark);
    transition: transform 0.3s ease;
}

.faq-toggle:hover {
    background: var(--violet-clair);
    border-color: var(--violet);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1.5rem;
}

.faq-answer p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.faq-answer a {
    color: var(--violet);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--dark-purple);
}

.faq-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.faq-more-btn {
    border: 1px solid #e5e7eb;
    background: var(--white);
    color: var(--text-dark);
}

.faq-more-btn:hover {
    background: var(--violet-clair);
    border-color: var(--violet);
    color: var(--violet);
}

.faq-more-btn:hover .btn-icon {
    content: url('public/images/Moitie logo droit violet.png');
}

.operational-reality-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.operational-reality-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.operational-reality-title .title-arrow-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.operational-reality-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.operational-reality-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.operational-reality-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.operational-reality-features .feature-arrow {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.operational-reality-cta {
    margin-top: 1rem;
}

.operational-reality-cta-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.operational-reality-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.operational-btn {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    color: var(--white);
    max-width: 350px;
    width: 100%;
}

.operational-btn-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.operational-btn.purple-btn {
    background: var(--violet);
}

.operational-btn.purple-btn:hover {
    background: var(--dark-purple);
}

.operational-btn.yellow-btn {
    background: var(--jaune);
    color: var(--text-dark);
}

.operational-btn.yellow-btn:hover {
    background: #d4a504;
}

.operational-btn.green-btn {
    background: var(--vert);
}

.operational-btn.green-btn:hover {
    background: #3a7558;
}

.audit-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.audit-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

/* ========== Product Demo Slider ========== */
.product-slider {
    --ps-bg: #f4f6fb;
    --ps-card: #ffffff;
    --ps-border: #e8ecf4;
    --ps-purple: #6a6ad8;
    --ps-purple-soft: #efeefc;
    --ps-bordeaux: #a80774;
    --ps-green: #428365;
    --ps-green-soft: #e8f3ee;
    --ps-blue-soft: #e8f0ff;
    --ps-text: #1f2937;
    --ps-muted: #6b7280;
    --ps-radius: 16px;
    --ps-duration: 5500ms;

    max-width: 1040px;
    margin: 2.5rem auto 0;
    position: relative;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f7ff 50%, #fff5fb 100%);
    border: 1px solid rgba(106, 106, 216, 0.14);
    box-shadow:
        0 4px 6px rgba(31, 58, 68, 0.04),
        0 24px 60px rgba(106, 106, 216, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    isolation: isolate;
}

.product-slider::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(106, 106, 216, 0.18), transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: psGlow 8s ease-in-out infinite alternate;
}

@keyframes psGlow {
    from { transform: translateX(-8%) scale(1); opacity: 0.7; }
    to { transform: translateX(8%) scale(1.1); opacity: 1; }
}

.product-slider-chrome {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ps-border);
}

.product-slider-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.product-slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.product-slider-dots span:nth-child(1) { background: #ff5f57; }
.product-slider-dots span:nth-child(2) { background: #febc2e; }
.product-slider-dots span:nth-child(3) { background: #28c840; }

.product-slider-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--ps-bg);
    color: var(--ps-muted);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
}

.product-slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ps-purple), var(--ps-bordeaux));
    transform-origin: left;
}

.product-slider.is-playing .product-slider-progress-bar {
    animation: psProgress var(--ps-duration) linear forwards;
}

@keyframes psProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.product-slider-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 460px;
    background: var(--ps-bg);
}

.product-slider-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 0.65rem;
    background: rgba(255, 255, 255, 0.65);
    border-right: 1px solid var(--ps-border);
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.ps-nav-group {
    margin: 0.45rem 0.35rem 0.2rem;
    padding: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ps-muted);
}

.ps-nav-group:first-child {
    margin-top: 0;
}

.ps-nav-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.55rem 0.6rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: var(--ps-text);
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ps-nav-item:hover {
    background: #fff;
    border-color: var(--ps-border);
}

.ps-nav-item.is-active {
    background: #fff;
    border-color: rgba(106, 106, 216, 0.25);
    box-shadow: 0 8px 20px rgba(106, 106, 216, 0.1);
    transform: translateX(2px);
}

.ps-nav-index {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--ps-bg);
    color: var(--ps-muted);
    font-size: 0.68rem;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.ps-nav-item.is-active .ps-nav-index {
    background: linear-gradient(135deg, var(--ps-purple), var(--ps-bordeaux));
    color: #fff;
}

.ps-nav-item.is-active .ps-nav-index--green { background: #2bb17b; }
.ps-nav-item.is-active .ps-nav-index--purple { background: #9e47d0; }
.ps-nav-item.is-active .ps-nav-index--blue { background: #2c83e2; }
.ps-nav-item.is-active .ps-nav-index--bordeaux { background: linear-gradient(135deg, var(--ps-purple), var(--ps-bordeaux)); }
.ps-nav-item.is-active .ps-nav-index--orange { background: #f09424; }

.ps-slide-desc {
    margin: -0.4rem 0 1rem;
    color: var(--ps-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ps-tool-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
}

.ps-tool-ico--green { background: #2bb17b; }
.ps-tool-ico--purple { background: #9e47d0; }
.ps-tool-ico--blue { background: #2c83e2; }
.ps-tool-ico--orange { background: #f09424; }

.ps-tool-ico::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 14px;
    background:
        linear-gradient(#fff, #fff) 0 100% / 4px 8px no-repeat,
        linear-gradient(#fff, #fff) 6px 100% / 4px 12px no-repeat,
        linear-gradient(#fff, #fff) 12px 100% / 4px 10px no-repeat;
}

.ps-tool-ico--purple::before {
    width: 14px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 2px;
    background: transparent;
}

.ps-tool-ico--blue::before {
    width: 16px;
    height: 12px;
    border: none;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    background:
        linear-gradient(#fff, #fff) 2px bottom / 3px 5px no-repeat,
        linear-gradient(#fff, #fff) 7px bottom / 3px 9px no-repeat,
        linear-gradient(#fff, #fff) 12px bottom / 3px 7px no-repeat;
}

.ps-tool-ico--orange::before {
    width: 14px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 2px;
    background: linear-gradient(#fff, #fff) center 4px / 8px 2px no-repeat;
}

/* Kanban */
.ps-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.ps-kanban-col {
    background: #fff;
    border: 1px solid var(--ps-border);
    border-radius: 14px;
    padding: 0.65rem;
    min-height: 180px;
    opacity: 0;
    transform: translateY(12px);
}

.ps-slide.is-active .ps-kanban-col {
    animation: psRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.08s + 0.08s);
}

.ps-kanban-col header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ps-muted);
    margin-bottom: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ps-kanban-col header span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.ps-kanban-col:nth-child(1) header span { background: #f59e0b; }
.ps-kanban-col:nth-child(2) header span { background: #2c83e2; }
.ps-kanban-col:nth-child(3) header span { background: #2bb17b; }

.ps-kanban-card {
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--ps-border);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--ps-text);
}

.ps-kanban-card.is-focus {
    background: #e8f8f1;
    border-color: rgba(43, 177, 123, 0.35);
    box-shadow: 0 6px 14px rgba(43, 177, 123, 0.12);
}

/* Audit prep */
.ps-audit-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ps-audit-filter {
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ps-border);
    opacity: 0;
    transform: translateY(10px);
}

.ps-slide.is-active .ps-audit-filter {
    animation: psRise 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.06s + 0.05s);
}

.ps-audit-filter small {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ps-muted);
    margin-bottom: 0.15rem;
}

.ps-audit-filter strong {
    font-size: 0.88rem;
}

.ps-audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.ps-audit-box {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    opacity: 0;
    transform: translateY(12px);
}

.ps-slide.is-active .ps-audit-box {
    animation: psRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.1s + 0.28s);
}

.ps-audit-box h4 {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 800;
}

.ps-audit-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ps-audit-box li {
    position: relative;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    font-size: 0.78rem;
    color: var(--ps-text);
    background: #f8fafc;
    border-radius: 8px;
}

.ps-audit-box li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #c4b5fd;
    border-radius: 50%;
}

.ps-audit-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
    background: #f7f7ff;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
}

.ps-audit-source strong { font-weight: 700; }

/* LINA */
.ps-lina-steps {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ps-lina-step {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    opacity: 0;
    transform: translateX(16px);
}

.ps-slide.is-active .ps-lina-step {
    animation: psSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.1s + 0.1s);
}

.ps-lina-step.is-done { border-color: rgba(44, 131, 226, 0.25); }
.ps-lina-step.is-active {
    border-color: rgba(106, 106, 216, 0.4);
    background: linear-gradient(180deg, #fff, #f0effc);
    box-shadow: 0 8px 20px rgba(106, 106, 216, 0.1);
    flex-wrap: wrap;
}

.ps-lina-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e5e7eb;
    color: var(--ps-muted);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ps-lina-step.is-done .ps-lina-num {
    background: #2c83e2;
    color: #fff;
}

.ps-lina-step.is-active .ps-lina-num {
    background: linear-gradient(135deg, var(--ps-purple), var(--ps-bordeaux));
    color: #fff;
}

.ps-lina-step strong {
    display: block;
    font-size: 0.9rem;
}

.ps-lina-step small {
    color: var(--ps-muted);
    font-size: 0.75rem;
}

.ps-lina-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-left: auto;
}

/* Veille */
.ps-veille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.ps-veille-card {
    padding: 1rem 0.9rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    opacity: 0;
    transform: scale(0.96);
}

.ps-slide.is-active .ps-veille-card {
    animation: psPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.09s + 0.1s);
}

.ps-veille-card strong {
    font-size: 0.88rem;
}

.ps-veille-card small {
    color: var(--ps-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.ps-veille-note {
    margin: 0;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 0.82rem;
    font-weight: 600;
}

.ps-nav-label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.ps-nav-label strong {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.ps-nav-label small {
    font-size: 0.7rem;
    color: var(--ps-muted);
}

.product-slider-viewport {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.product-slider-track {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.ps-slide {
    position: absolute;
    inset: 0;
    padding: 1.25rem 1.35rem 1.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(36px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
    pointer-events: none;
    overflow: auto;
}

.ps-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 1;
}

.ps-slide.is-exit {
    opacity: 0;
    transform: translateX(-28px) scale(0.985);
}

.ps-slide-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.ps-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ps-purple);
}

.ps-slide-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ps-text);
    line-height: 1.25;
}

.ps-completion {
    min-width: 120px;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ps-border);
    box-shadow: 0 4px 14px rgba(31, 58, 68, 0.04);
    text-align: right;
}

.ps-completion span {
    display: block;
    font-size: 0.68rem;
    color: var(--ps-muted);
    margin-bottom: 0.15rem;
}

.ps-completion strong {
    font-size: 1.05rem;
    color: var(--ps-purple);
}

.ps-completion-bar {
    margin-top: 0.4rem;
    height: 6px;
    border-radius: 999px;
    background: var(--ps-purple-soft);
    overflow: hidden;
}

.ps-completion-bar i,
.ps-att-meter-bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ps-purple), var(--ps-bordeaux));
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-slide.is-active .ps-completion-bar i,
.ps-slide.is-active .ps-att-meter-bar i {
    width: var(--w);
}

.ps-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.ps-kpi {
    position: relative;
    padding: 0.9rem 0.85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    box-shadow: 0 6px 16px rgba(31, 58, 68, 0.04);
    opacity: 0;
    transform: translateY(14px);
}

.ps-slide.is-active .ps-kpi {
    animation: psRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.08s + 0.1s);
}

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

.ps-kpi span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ps-muted);
    margin-bottom: 0.35rem;
}

.ps-kpi strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ps-text);
}

.ps-kpi svg {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 16px;
    height: 16px;
    color: var(--ps-purple);
    opacity: 0.55;
}

.ps-timeline-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.ps-tl-item {
    position: relative;
    padding: 0.85rem 0.75rem 0.85rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ps-border);
    opacity: 0;
    transform: translateY(12px);
}

.ps-slide.is-active .ps-tl-item {
    animation: psRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.35s + var(--i, 0) * 0.07s);
}

.ps-tl-item:nth-child(1) { --i: 0; }
.ps-tl-item:nth-child(2) { --i: 1; }
.ps-tl-item:nth-child(3) { --i: 2; }
.ps-tl-item:nth-child(4) { --i: 3; }

.ps-tl-item span {
    position: absolute;
    left: 0;
    top: 0.85rem;
    bottom: 0.85rem;
    width: 3px;
    border-radius: 999px;
    background: #d1d5db;
}

.ps-tl-item.is-done span { background: var(--ps-green); }
.ps-tl-item.is-active {
    border-color: rgba(106, 106, 216, 0.35);
    background: linear-gradient(180deg, #fff, var(--ps-purple-soft));
}
.ps-tl-item.is-active span {
    background: var(--ps-purple);
    box-shadow: 0 0 0 4px rgba(106, 106, 216, 0.15);
}

.ps-tl-item p {
    margin: 0 0 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.ps-tl-item small {
    color: var(--ps-muted);
    font-size: 0.68rem;
}

.ps-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.ps-badge-purple {
    background: var(--ps-purple-soft);
    color: var(--ps-purple);
}

.ps-badge-green {
    background: var(--ps-green-soft);
    color: var(--ps-green);
}

.ps-courses {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.ps-course {
    display: flex;
    background: #fff;
    border: 1px solid var(--ps-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(31, 58, 68, 0.04);
    opacity: 0;
    transform: translateX(20px);
}

.ps-slide.is-active .ps-course {
    animation: psSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.1s + 0.12s);
}

@keyframes psSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

.ps-course-accent {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--ps-purple), var(--ps-bordeaux));
}

.ps-course-body {
    flex: 1;
    padding: 0.9rem 1rem;
}

.ps-course-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.ps-course-top h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.ps-course-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.ps-tag {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    background: var(--ps-purple-soft);
    color: var(--ps-purple);
}

.ps-tag-green {
    background: var(--ps-green-soft);
    color: var(--ps-green);
}

.ps-tag-blue {
    background: var(--ps-blue-soft);
    color: #3b5bcc;
}

.ps-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    font-size: 0.75rem;
    color: var(--ps-muted);
}

.ps-course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.ps-course-meta i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ps-purple);
    opacity: 0.55;
}

.ps-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.72rem;
    font-weight: 700;
}

.ps-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dc2626;
    animation: psPulse 1.2s ease-in-out infinite;
}

@keyframes psPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}

.ps-attendance {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.ps-att-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ps-border);
    opacity: 0;
    transform: translateY(10px);
}

.ps-slide.is-active .ps-att-row {
    animation: psRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.09s + 0.1s);
}

.ps-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ps-purple), var(--ps-bordeaux));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ps-att-info {
    flex: 1;
    min-width: 0;
}

.ps-att-info strong {
    display: block;
    font-size: 0.88rem;
}

.ps-att-info small {
    color: var(--ps-muted);
    font-size: 0.72rem;
}

.ps-status {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
}

.ps-status.present {
    background: var(--ps-green-soft);
    color: var(--ps-green);
}

.ps-status.pending {
    background: #fff7ed;
    color: #c2410c;
}

.ps-att-footer {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ps-border);
}

.ps-att-meter {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
}

.ps-att-meter span { color: var(--ps-muted); font-weight: 600; }
.ps-att-meter strong { color: var(--ps-purple); font-weight: 800; }

.ps-att-meter-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--ps-purple-soft);
    overflow: hidden;
}

.ps-docs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ps-doc {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    box-shadow: 0 6px 16px rgba(31, 58, 68, 0.04);
    opacity: 0;
    transform: scale(0.96);
}

.ps-slide.is-active .ps-doc {
    animation: psPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.09s + 0.12s);
}

@keyframes psPop {
    to { opacity: 1; transform: scale(1); }
}

.ps-doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--ps-purple-soft);
    flex-shrink: 0;
    position: relative;
}

.ps-doc-icon::before {
    content: '';
    width: 16px;
    height: 18px;
    border: 2px solid var(--ps-purple);
    border-radius: 3px;
}

.ps-doc-icon[data-icon="list"]::before {
    height: 14px;
    box-shadow: 0 4px 0 -2px var(--ps-purple), 0 8px 0 -2px var(--ps-purple);
    border-left-width: 2px;
    border-right-width: 2px;
}

.ps-doc-icon[data-icon="sign"]::before {
    width: 14px;
    height: 14px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: transparent;
}

.ps-doc-icon[data-icon="chart"]::before {
    width: 16px;
    height: 14px;
    border: none;
    border-bottom: 2px solid var(--ps-purple);
    border-left: 2px solid var(--ps-purple);
    border-radius: 0;
    background:
        linear-gradient(var(--ps-purple), var(--ps-purple)) 2px bottom / 3px 6px no-repeat,
        linear-gradient(var(--ps-purple), var(--ps-purple)) 7px bottom / 3px 10px no-repeat,
        linear-gradient(var(--ps-purple), var(--ps-purple)) 12px bottom / 3px 8px no-repeat;
}

.ps-doc strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.ps-doc small {
    color: var(--ps-muted);
    font-size: 0.7rem;
}

.ps-doc-check {
    margin-left: auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ps-green-soft);
    color: var(--ps-green);
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Automate slide (inside product slider) */
.ps-automate {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.ps-auto-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.ps-auto-step {
    position: relative;
    padding: 0.7rem 0.65rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ps-border);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
}

.ps-slide.is-active .ps-auto-step {
    animation: psRise 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ps-slide.is-active .ps-auto-step:nth-child(1) { animation-delay: 0.05s; }
.ps-slide.is-active .ps-auto-step:nth-child(2) { animation-delay: 0.12s; }
.ps-slide.is-active .ps-auto-step:nth-child(3) { animation-delay: 0.19s; }
.ps-slide.is-active .ps-auto-step:nth-child(4) { animation-delay: 0.26s; }

.ps-auto-step strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ps-muted);
    margin-bottom: 0.2rem;
}

.ps-auto-step span {
    font-size: 0.7rem;
    color: var(--ps-muted);
}

.ps-auto-step.is-done {
    border-color: rgba(66, 131, 101, 0.35);
    background: #f3faf6;
}

.ps-auto-step.is-done strong { color: var(--ps-green); }

.ps-auto-step.is-active {
    border-color: rgba(106, 106, 216, 0.4);
    background: linear-gradient(180deg, #fff, var(--ps-purple-soft));
    box-shadow: 0 8px 20px rgba(106, 106, 216, 0.12);
}

.ps-auto-step.is-active strong { color: var(--ps-purple); }

.ps-auto-mail {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    box-shadow: 0 10px 28px rgba(31, 58, 68, 0.06);
    opacity: 0;
    transform: translateY(14px);
}

.ps-slide.is-active .ps-auto-mail {
    animation: psRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.ps-auto-mail-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ps-auto-mail-top strong {
    display: block;
    font-size: 0.88rem;
}

.ps-auto-mail-top small {
    color: var(--ps-muted);
    font-size: 0.72rem;
}

.ps-auto-mail h4 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 800;
}

.ps-auto-mail > p {
    margin: 0 0 0.75rem;
    color: var(--ps-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.ps-auto-files {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* Evaluations slide */
.ps-eval-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ps-eval-card {
    padding: 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ps-border);
    box-shadow: 0 6px 16px rgba(31, 58, 68, 0.04);
    opacity: 0;
    transform: translateY(12px);
}

.ps-slide.is-active .ps-eval-card {
    animation: psRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d) * 0.09s + 0.1s);
}

.ps-eval-card > strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ps-purple);
}

.ps-eval-card > small {
    display: block;
    margin: 0.25rem 0 0.65rem;
    color: var(--ps-muted);
    font-size: 0.75rem;
}

.ps-eval-wide {
    grid-column: 1 / -1;
}

.ps-eval-wide-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ps-eval-wide-top h4 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 800;
}

.ps-eval-wide-top p {
    margin: 0;
    color: var(--ps-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.ps-eval-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.ps-eval-list li {
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: var(--ps-purple-soft);
    color: var(--ps-text);
    font-size: 0.78rem;
    font-weight: 600;
}

.product-slider-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.9rem 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid var(--ps-border);
}

.ps-arrow {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--ps-border);
    background: #fff;
    color: var(--ps-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ps-arrow:hover {
    background: var(--ps-purple);
    border-color: var(--ps-purple);
    color: #fff;
    transform: translateY(-1px);
}

.ps-dots {
    display: flex;
    gap: 0.45rem;
}

.ps-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, background 0.3s ease;
}

.ps-dot.is-active {
    width: 26px;
    background: linear-gradient(90deg, var(--ps-purple), var(--ps-bordeaux));
}

@media (max-width: 900px) {
    .product-slider-body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-slider-nav {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--ps-border);
        padding: 0.75rem;
        gap: 0.4rem;
        scrollbar-width: none;
        max-height: none;
    }

    .product-slider-nav::-webkit-scrollbar { display: none; }

    .ps-nav-group {
        display: none;
    }

    .ps-nav-item {
        flex: 0 0 auto;
        min-width: 150px;
    }

    .product-slider-viewport,
    .product-slider-track {
        min-height: 460px;
    }

    .ps-kpis {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-timeline-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-docs {
        grid-template-columns: 1fr;
    }

    .ps-auto-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-eval-list {
        grid-template-columns: 1fr;
    }

    .ps-kanban {
        grid-template-columns: 1fr;
    }

    .ps-audit-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-audit-grid {
        grid-template-columns: 1fr;
    }

    .ps-veille {
        grid-template-columns: 1fr;
    }

    .ps-lina-actions {
        margin-left: 0;
        width: 100%;
    }

    .product-slider-viewport,
    .product-slider-track {
        min-height: 520px;
    }
}

@media (max-width: 600px) {
    .product-slider {
        border-radius: 16px;
        margin-top: 1.5rem;
    }

    .product-slider-url {
        font-size: 0.68rem;
    }

    .ps-slide {
        padding: 1rem;
    }

    .ps-slide-header {
        flex-direction: column;
    }

    .ps-slide-header h3 {
        font-size: 1.05rem;
    }

    .ps-kpis {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .ps-kpi strong {
        font-size: 1rem;
    }

    .product-slider-viewport,
    .product-slider-track {
        min-height: 520px;
    }

    .ps-course-meta {
        flex-direction: column;
        gap: 0.35rem;
    }

    .ps-auto-mail-top {
        flex-wrap: wrap;
    }

    .ps-eval-grid {
        grid-template-columns: 1fr;
    }
}

.devices-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    min-height: 500px;
}

.device-laptop {
    width: 600px;
    height: 400px;
    position: relative;
    z-index: 2;
}

.device-tablet {
    width: 250px;
    height: 350px;
    position: absolute;
    left: 10%;
    bottom: 0;
    z-index: 3;
}

.device-mobile {
    width: 150px;
    height: 280px;
    position: absolute;
    right: 10%;
    bottom: 0;
    z-index: 3;
}

.device-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid #e5e7eb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title.white {
    color: var(--white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-grey);
    text-align: center;
    margin-bottom: 3rem;
}

.device-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    min-height: 400px;
}

.device {
    background: var(--white);
    border: 2px solid var(--dark-teal);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.device.desktop {
    width: 600px;
    height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.device.tablet {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.device.mobile {
    width: 120px;
    height: 200px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: absolute;
    right: -50px;
    top: 60%;
}

/* Qualiopi Challenge Section */
.qualiopi-challenge {
    padding: 80px 0;
    background: var(--white);
}

.challenge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.challenge-list {
    list-style: none;
    margin: 2rem 0;
}

.challenge-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.challenge-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-purple);
    font-size: 1.5rem;
    font-weight: bold;
}

.challenge-visual {
    position: relative;
    min-height: 400px;
}

.arrow-teal {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.arrow-teal.arrow-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-teal.arrow-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-logo-medium {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.arrow-flip {
    transform: scaleX(-1);
}

.arrow-yellow {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-magenta {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Qualiotech Management Section */
.qualiotech-management {
    padding: 80px 0;
    background: var(--white);
}

.workflow-diagram {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-box {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
}

.workflow-box.purple {
    background: var(--dark-purple);
}

.workflow-box.blue {
    background: var(--dark-teal);
}

.workflow-box.yellow {
    background: var(--bright-yellow);
    color: var(--text-dark);
}

/* Audit Preparation Section */
.audit-preparation {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
}

.audit-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.audit-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 3rem auto;
    position: relative;
}

.audit-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--white);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--dark-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-text {
    color: var(--white);
    font-size: 1.1rem;
}

/* Unique Features Section */
.unique-features {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-block {
    padding: 2rem;
    border-radius: 12px;
    background: var(--white);
    border: 2px solid #e5e7eb;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.feature-icon.purple-icon {
    background: var(--dark-purple);
}

.feature-icon.yellow-icon {
    background: var(--bright-yellow);
}

.feature-icon.teal-icon {
    background: var(--dark-teal);
}

.feature-icon.magenta-icon {
    background: var(--magenta);
}

.feature-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-block p {
    color: var(--text-grey);
    line-height: 1.7;
}

.mobile-preview {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 24px;
    margin: 3rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Operational Reality Section */
.operational-reality {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.reality-visual {
    position: relative;
    min-height: 500px;
    margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
}

.faq-title .title-arrow-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
}

.faq-question span {
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-dark);
}

.faq-toggle:hover {
    background: var(--violet-clair);
    border-color: var(--violet);
}

.faq-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.faq-more-btn {
    border: 1px solid #e5e7eb;
    background: var(--white);
    color: var(--text-dark);
}

.faq-more-btn:hover {
    background: var(--violet-clair);
    border-color: var(--violet);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--violet-clair);
}

.testimonials-carousel .testimonial-card.magenta-card:nth-child(4)::before {
    display: none !important;
    content: none !important;
}

.testimonials .container {
    overflow: visible !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: transparent !important;
}

.testimonials .section-title {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-self: flex-start !important;
    gap: 0.5rem !important;
}

.testimonials .section-title .title-line-1,
.testimonials .section-title .title-line-2 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

.testimonials .section-title .title-arrow-small {
    vertical-align: middle !important;
    align-self: center !important;
}

.testimonials-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    max-width: calc(280px * 3 + 2rem * 2 + 80px);
    padding-left: 20px;
    background: transparent !important;
    position: relative;
}

.testimonials-carousel {
    display: flex !important;
    gap: 2rem !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    padding: 2rem 0 !important;
    padding-left: 0 !important;
    padding-right: 80px !important;
    position: relative !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    cursor: grab !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    overscroll-behavior-x: contain !important;
    scroll-snap-type: x mandatory !important;
    /* Force scroll by limiting visible width - show only ~3 cards (280px * 3 + 32px * 2 = 904px) */
    width: 904px !important;
    max-width: 904px !important;
    min-width: 904px !important;
    box-sizing: content-box !important;
    margin-left: auto !important;
    background: var(--violet-clair) !important;
    background-color: var(--violet-clair) !important;
    border-left: none !important;
}

.testimonials-carousel .testimonial-card.magenta-card:nth-child(4) {
    margin-left: 0 !important;
    padding-left: 2rem !important;
    background: var(--magenta) !important;
    background-color: var(--magenta) !important;
    border-left: none !important;
    box-shadow: none !important;
}

.testimonials-carousel .testimonial-card.yellow-card:nth-child(3) {
    margin-right: 0 !important;
    border-right: none !important;
    box-shadow: none !important;
}

.testimonials-carousel > * {
    direction: ltr;
    background: transparent !important;
}

.testimonials-carousel .testimonial-card {
    background-clip: padding-box !important;
    isolation: isolate !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
    overflow: visible !important;
}


/* Ensure no white space between cards - especially between yellow and magenta */
.testimonials-carousel .testimonial-card.yellow-card:nth-child(3) {
    margin-right: 0 !important;
    border-right: none !important;
    padding-right: 2rem !important;
    background: var(--bright-yellow) !important;
    background-color: var(--bright-yellow) !important;
}

.testimonials-carousel .testimonial-card.magenta-card:nth-child(4) {
    margin-left: 0 !important;
    border-left: none !important;
    padding-left: 2rem !important;
    background: var(--magenta) !important;
    background-color: var(--magenta) !important;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonials-carousel .testimonial-card {
    flex-shrink: 0 !important;
    min-width: 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    scroll-snap-align: start;
    display: block !important;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-carousel-wrapper::after {
    display: none !important;
    content: none !important;
}

.testimonials-carousel::after {
    display: none !important;
    content: none !important;
}

.testimonial-card {
    min-width: 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    padding: 1.5rem !important;
    border-radius: 16px !important;
    color: var(--white);
    scroll-snap-align: start;
    position: relative;
    z-index: 10;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.testimonial-card.magenta-card {
    background: var(--magenta) !important;
    background-color: var(--magenta) !important;
    padding: 2rem !important;
    margin: 0 !important;
    margin-left: 0 !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
    overflow: hidden !important;
}

.testimonials-carousel .testimonial-card:first-child {
    margin-left: 0 !important;
    padding-left: 2rem !important;
}

.testimonial-card.magenta-card::before,
.testimonial-card.magenta-card::after {
    display: none !important;
    content: none !important;
}

.testimonial-card.magenta-card * {
    background: transparent !important;
}

.testimonial-card.purple-card {
    background: var(--dark-purple) !important;
    background-color: var(--dark-purple) !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.testimonial-card.yellow-card {
    background: var(--bright-yellow) !important;
    background-color: var(--bright-yellow) !important;
    color: var(--text-dark);
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.testimonial-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: auto;
    line-height: 1.5;
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.8rem;
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.4;
    font-family: 'Montserrat', sans-serif;
    color: inherit;
}

.testimonial-text::after {
    content: '\201D';
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.4;
    font-family: 'Montserrat', sans-serif;
    vertical-align: top;
    color: inherit;
    display: inline-block;
    margin-left: 0.2rem;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: 0;
    opacity: 0.9;
    padding-top: 1rem;
    align-self: flex-start;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-avatar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
}

.testimonials .carousel-pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0 !important;
    margin-left: 0 !important;
    position: relative;
    width: fit-content;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    transform: translateX(0);
    max-width: none !important;
    overflow: visible !important;
    will-change: transform;
}

.testimonials .carousel-pagination.aligned {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.testimonials .pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d3d3d3;
    cursor: pointer;
    transition: width 0.2s ease, border-radius 0.2s ease, background-color 0.2s ease;
    display: inline-block;
    flex-shrink: 0;
}

.testimonials .pagination-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--dark-purple);
    transition: width 0.2s ease, border-radius 0.2s ease, background-color 0.2s ease;
}

.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    margin-left: auto;
}

.carousel-arrow {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid var(--dark-teal) !important;
    background: var(--white) !important;
    color: var(--dark-teal);
    font-size: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}

.carousel-arrow-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
}

.carousel-arrow:hover {
    background: var(--dark-teal) !important;
    color: var(--white);
}

.carousel-arrow:hover .carousel-arrow-icon {
    filter: brightness(0) invert(1) !important;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f3f4f6;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('public/images/2h-media-3q4V539j_bw-unsplash.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.6;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-banner {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--text-dark);
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cta-text-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.cta-highlight {
    color: var(--magenta);
    font-weight: 700;
}

.cta-button {
    background: var(--magenta);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background: var(--bordeaux);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 7, 116, 0.3);
}

.cta-button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Features Banner Section */
.features-banner {
    padding: 60px 0;
    background: var(--violet);
}

.features-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.feature-banner-item h3 {
    white-space: nowrap;
}

.feature-banner-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.feature-icon-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-banner-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-line-1,
.feature-line-2 {
    display: block;
}

@media (max-width: 1024px) {
    .features-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-banner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-banner-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-banner-text {
        font-size: 0.9rem;
    }
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f3f4f6" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark-teal);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Left Section: Logo and Description */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-description-secondary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Center Section: Navigation */
.footer-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
    color: var(--white);
}

/* Right Section: CTA Box */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-cta-box {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
    max-width: 100%;
    width: 100%;
}

.footer-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta-btn {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    color: var(--white);
}

.footer-cta-btn-magenta {
    background: var(--magenta);
}

.footer-cta-btn-magenta:hover {
    background: var(--bordeaux);
    transform: translateY(-2px);
}

.footer-cta-btn-purple {
    background: var(--violet);
}

.footer-cta-btn-purple:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

.footer-btn-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-center {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-right {
        justify-content: stretch;
    }
}

@media (max-width: 768px) {
    .footer-center {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .footer-separator {
        display: none;
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bright-yellow);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.25rem;
        margin: 0;
        background: var(--white);
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
        z-index: 1001;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-description {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .arrow-teal-large {
        display: none;
    }

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

    .challenge-content {
        grid-template-columns: 1fr;
    }

    .audit-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-center {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-right {
        justify-content: stretch;
    }
}

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

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

    .challenge-section-3-content {
        flex-direction: column;
        gap: 2rem;
    }

    .section-3-arrow-left {
        display: none;
    }

    .challenge-section-3-title {
        font-size: 1.75rem;
    }

    .management-section-5-content {
        flex-direction: column;
        gap: 2rem;
    }

    .management-section-5-left,
    .management-section-5-right {
        flex: 0 0 100%;
    }

    .management-section-5-title {
        font-size: 1.75rem;
    }

    .statistics-content {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        min-width: 100%;
    }

    .stat-number {
        font-size: 3rem;
    }

    .audit-process-title {
        font-size: 1.75rem;
    }

    .features-screenshot-content {
        flex-direction: column;
        gap: 2rem;
    }

    .features-screenshot-left,
    .features-screenshot-right {
        flex: 0 0 100%;
    }

    .features-screenshot-title {
        font-size: 1.75rem;
    }

    .unique-features-collage {
        gap: 1rem;
    }

    .unique-features-collage-logo-zone {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: auto !important;
    }

    .unique-features-collage-item--6,
    .unique-features-collage-logo--blue,
    .unique-features-collage-logo--bordeaux,
    .unique-features-collage-item--2 {
        grid-row: auto;
        align-self: auto;
    }

    .screenshot-logo {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100px;
        height: 100px;
        margin-top: 1rem;
    }

    .audit-process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .audit-process-timeline::before {
        display: none;
    }

    .process-step {
        align-items: center !important;
    }

    .process-text {
        text-align: center !important;
        max-width: 100%;
    }

    .audit-logos {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .device-showcase {
        flex-direction: column;
    }

    .device.tablet,
    .device.mobile {
        position: relative;
        transform: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-center {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-right {
        justify-content: stretch;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .footer-separator {
        display: none;
    }
}/* Animations d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Classes d'animation */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.animated.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll.animated.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animated.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Délai d'animation pour les éléments successifs */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ========== Contact page ========== */
.contact-page {
    padding-top: 100px;
    background: var(--white);
}

.contact-hero {
    padding: 4rem 0 2.5rem;
    background:
        radial-gradient(ellipse 70% 80% at 10% 0%, rgba(106, 106, 216, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(168, 7, 116, 0.08), transparent 50%),
        linear-gradient(180deg, var(--violet-clair) 0%, var(--white) 100%);
}

.contact-eyebrow {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(106, 106, 216, 0.12);
    color: var(--violet);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.contact-lead {
    max-width: 640px;
    margin: 0;
    color: var(--text-grey);
    font-size: 1.08rem;
    line-height: 1.65;
}

.contact-body {
    padding: 1rem 0 5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 110px;
}

.contact-info-card {
    padding: 1.6rem 1.5rem;
    border-radius: 20px;
    background: var(--bleu);
    color: #fff;
    box-shadow: 0 18px 40px rgba(31, 58, 68, 0.18);
}

.contact-info-card h2 {
    margin: 0 0 0.65rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.contact-info-card > p {
    margin: 0 0 1.4rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-size: 0.95rem;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-info-list a,
.contact-info-list strong {
    color: #fff;
    text-decoration: none;
    font-weight: 650;
    font-weight: 600;
    font-size: 0.98rem;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

.contact-aside-points {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.contact-point {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: var(--violet-clair);
    border: 1px solid rgba(106, 106, 216, 0.14);
}

.contact-point strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.contact-point span {
    color: var(--text-grey);
    font-size: 0.86rem;
    line-height: 1.45;
}

.contact-form-panel {
    padding: 1.75rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(31, 58, 68, 0.08);
    box-shadow:
        0 4px 6px rgba(31, 58, 68, 0.03),
        0 24px 50px rgba(106, 106, 216, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    background: #fafbfc;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(106, 106, 216, 0.12);
}

.contact-field input.is-invalid,
.contact-field select.is-invalid,
.contact-field textarea.is-invalid {
    border-color: #dc2626;
}

.contact-consent {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: var(--text-grey);
    line-height: 1.5;
}

.contact-consent a {
    color: var(--bordeaux);
    font-weight: 600;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.35rem;
}

.contact-submit {
    border: none;
    cursor: pointer;
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-form-status {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form-status.is-success { color: var(--vert); }
.contact-form-status.is-error { color: #dc2626; }

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

    .contact-aside {
        position: static;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 1.25rem;
    }

    .contact-hero {
        padding: 3rem 0 1.5rem;
    }
}
