/* ============================================
   OSKALA THEME - CSS VARIABLES
   ============================================ */
:root {
    --primary: #00aaa8;
    --primary-dark: #009090;
    --primary-light: #e0f7f6;
    --petrol: rgb(30, 89, 115);
    --navy: #2d3e50;
    --navy-light: #3d5a6c;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   BASE & RESETS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-oskala {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

    .navbar-oskala.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-oskala .navbar-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        position: relative;
    }

.navbar-logo {
    height: 54px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Logo blanc visible par défaut, logo sombre caché */
.navbar-logo-white {
    height: 54px;
    opacity: 1 !important;
}

.navbar-logo-dark {
    height: 128px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0 !important;
}

/* Au scroll : logo blanc caché, logo sombre visible */
.navbar-oskala.scrolled .navbar-logo-white {
    opacity: 0 !important;
}

.navbar-oskala.scrolled .navbar-logo-dark {
    opacity: 1 !important;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 170, 168, 0.3);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.navbar-oskala.scrolled .logo-text {
    color: var(--navy);
}

.navbar-oskala .nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-oskala.scrolled .nav-link {
    color: var(--gray-600) !important;
}

.navbar-oskala .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-oskala.scrolled .navbar-toggler {
    color: var(--navy);
}

/* Dropdown Menu Oskala */
.dropdown-menu-oskala {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 260px;
    margin-top: 10px;
}

    .dropdown-menu-oskala .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 8px;
        color: var(--gray-700);
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .dropdown-menu-oskala .dropdown-item:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .dropdown-menu-oskala .dropdown-item i {
            width: 20px;
            text-align: center;
            font-size: 16px;
            color: var(--primary);
        }

        .dropdown-menu-oskala .dropdown-item span {
            flex: 1;
        }

.navbar-oskala .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
    border-top-width: 5px;
    border-right-width: 4px;
    border-left-width: 4px;
}

/* Buttons */
.btn-oskala {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-oskala {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 170, 168, 0.35);
}

    .btn-primary-oskala:hover {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 170, 168, 0.45);
    }

.btn-secondary-oskala {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.25);
}

    .btn-secondary-oskala:hover {
        background: var(--petrol);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(45, 62, 80, 0.35);
    }

.btn-white-oskala {
    background: white;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .btn-white-oskala:hover {
        background: white;
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.btn-outline-oskala {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-outline-oskala:hover {
        background: var(--primary);
        color: white;
    }

.btn-lg-oskala {
    padding: 16px 36px;
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 50%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 170, 168, 0.4);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

    .particle:nth-child(1) {
        left: 10%;
        top: 20%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        left: 20%;
        top: 80%;
        animation-delay: 2s;
    }

    .particle:nth-child(3) {
        left: 30%;
        top: 40%;
        animation-delay: 4s;
    }

    .particle:nth-child(4) {
        left: 40%;
        top: 60%;
        animation-delay: 1s;
    }

    .particle:nth-child(5) {
        left: 50%;
        top: 30%;
        animation-delay: 3s;
    }

    .particle:nth-child(6) {
        left: 60%;
        top: 70%;
        animation-delay: 5s;
    }

    .particle:nth-child(7) {
        left: 70%;
        top: 50%;
        animation-delay: 2.5s;
    }

    .particle:nth-child(8) {
        left: 80%;
        top: 20%;
        animation-delay: 1.5s;
    }

    .particle:nth-child(9) {
        left: 90%;
        top: 60%;
        animation-delay: 3.5s;
    }

    .particle:nth-child(10) {
        left: 15%;
        top: 50%;
        animation-delay: 4.5s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-30px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-15px) translateX(-10px) scale(1);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-40px) translateX(15px) scale(1.3);
        opacity: 0.9;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 170, 168, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 170, 168, 0.1) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 170, 168, 0.15);
    border: 1px solid rgba(0, 170, 168, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 170, 168, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 170, 168, 0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

    .hero h1 span {
        background: linear-gradient(135deg, var(--primary) 0%, #4dd9d7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.hero-target {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

    /* !important requis : la classe utilitaire Bootstrap .link-secondary impose sa couleur avec !important */
    .hero-cta .link-secondary {
        color: rgba(255, 255, 255, 0.92) !important;
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-color: rgba(255, 255, 255, 0.4) !important;
        font-weight: 500;
        transition: color 0.3s, text-decoration-color 0.3s;
    }

        .hero-cta .link-secondary:hover {
            color: #ffffff !important;
            text-decoration-color: var(--primary) !important;
        }

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

    .stat-value span {
        color: var(--primary);
    }

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Colonne hero étroite en lg : resserre les stats pour éviter le passage à la ligne */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .hero-stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* Hero Mockup Wrapper */
.hero-visual {
    position: relative;
    padding-bottom: 60px;
    padding-right: 40px;
}

.hero-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 0 30px 60px -30px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .hero-mockup {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-browser {
    background: var(--gray-800);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 20px 20px 0 0;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .browser-dot.red {
        background: #ff5f57;
    }

    .browser-dot.yellow {
        background: #febc2e;
    }

    .browser-dot.green {
        background: #28c840;
    }

.mockup-content {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 20px 20px;
}

.mockup-ui {
    width: 92%;
    aspect-ratio: 16 / 9.4;
    margin: 4.5% 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 130px 1fr;
    overflow: hidden;
    text-align: left;
}

.mockup-sidebar {
    background: var(--navy);
    padding: 18px 16px;
}

.mockup-logo-dot {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--primary);
    margin-bottom: 20px;
}

.mockup-sidebar-item {
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    margin-bottom: 14px;
}

    .mockup-sidebar-item.active {
        background: var(--primary);
    }

.mockup-main {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-title-bar {
    width: 38%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
}

.mockup-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--petrol) 100%);
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .mockup-card strong {
        font-family: var(--font-display);
        font-size: clamp(14px, 1.4vw, 20px);
        line-height: 1;
        color: var(--navy);
    }

    .mockup-card em {
        font-style: normal;
        font-size: 10px;
        font-weight: 700;
        color: var(--success);
    }

.mockup-card-label {
    display: block;
    width: 55%;
    height: 7px;
    background: var(--gray-200);
    border-radius: 4px;
}

.mockup-panels {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.mockup-panel {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.mockup-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 7%;
    min-height: 0;
}

    .mockup-bars i {
        flex: 1;
        height: var(--h);
        background: var(--gray-300);
        border-radius: 4px 4px 0 0;
        animation: mockup-bar-grow 0.9s ease both;
    }

        .mockup-bars i.hi {
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

@keyframes mockup-bar-grow {
    from { height: 0; }
}

.mockup-slot-row {
    display: flex;
    gap: 6px;
}

    .mockup-slot-row i {
        display: block;
        height: 14px;
        border-radius: 7px;
        width: var(--w);
    }

    .mockup-slot-row .s-teal { background: var(--primary); opacity: 0.85; }
    .mockup-slot-row .s-blue { background: #3b82f6; opacity: 0.75; }
    .mockup-slot-row .s-amber { background: var(--warning); opacity: 0.8; }
    .mockup-slot-row .s-purple { background: #8b5cf6; opacity: 0.75; }

/* Mockup schématique sur petits écrans : proportions resserrées */
@media (max-width: 576px) {
    .mockup-ui {
        grid-template-columns: 72px 1fr;
    }

    .mockup-sidebar {
        padding: 12px 10px;
    }

    .mockup-logo-dot {
        width: 20px;
        height: 20px;
        margin-bottom: 14px;
    }

    .mockup-main {
        padding: 12px;
        gap: 8px;
    }

    .mockup-card {
        padding: 8px;
        gap: 3px;
    }

        .mockup-card em {
            font-size: 9px;
        }

    .mockup-slot-row i {
        height: 9px;
        border-radius: 5px;
    }
}

.hero-phone {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    background: var(--gray-900);
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: rotate(5deg);
    animation: phone-float 4s infinite ease-in-out;
    z-index: 10;
}

@keyframes phone-float {
    0%, 100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-10px);
    }
}

.phone-screen {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 22px;
    height: 280px;
    overflow: hidden;
}

    /* Capture réelle de l'app dans le téléphone du hero */
    .phone-screen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
    }

.phone-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.phone-text {
    font-size: 12px;
    text-align: center;
    opacity: 0.9;
}

/* ============================================
   PAGE HERO (Pages internes)
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

    .page-hero .hero-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: white;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   MODULE CARDS (Page Features)
   ============================================ */
.module-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .module-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .module-card:hover {
        border-color: var(--primary);
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 170, 168, 0.15);
    }

        .module-card:hover::before {
            transform: scaleX(1);
        }

.module-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.module-card:hover .module-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.module-title {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.module-intro {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .module-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        font-size: 14px;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
    }

        .module-list li:last-child {
            border-bottom: none;
        }

        .module-list li i {
            color: var(--primary);
            margin-top: 3px;
            flex-shrink: 0;
        }

/* ============================================
   PRICING TOGGLE
   ============================================ */
/* Avantages inclus dans toutes les offres */
.pricing-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.pricing-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

    .pricing-perk i {
        color: var(--primary);
    }

/* Sélecteur de période Mensuel / Annuel */
.billing-toggle {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: 50px;
    padding: 6px;
    gap: 4px;
}

.billing-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.25s ease;
}

    .billing-option.active {
        background: var(--white);
        color: var(--gray-900);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .billing-option:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

.billing-save {
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 40px 0 80px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gray-400);
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

/* Starter - Gris */
.pricing-card-starter::before {
    background: linear-gradient(90deg, #6b7280 0%, #9ca3af 100%);
}

.pricing-card-starter:hover {
    border-color: #6b7280;
}

.pricing-card-starter .price-amount {
    color: #6b7280;
}

/* Team - Violet */
.pricing-card-team::before {
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
}

.pricing-card-team:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.pricing-card-team .price-amount {
    color: #7c3aed;
}

/* Biz - Primary/Turquoise (featured) */
.pricing-card-featured::before {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: 4px;
}

.pricing-card-featured {
    border: 2px solid var(--primary);
}

    .pricing-card-featured:hover {
        border-color: var(--primary);
        box-shadow: 0 20px 60px rgba(0, 170, 168, 0.2);
    }

    .pricing-card-featured .price-amount {
        color: var(--primary);
    }

/* Enterprise - Navy/Premium */
.pricing-card-enterprise {
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    border-color: transparent;
}

    .pricing-card-enterprise::before {
        display: none;
    }

    .pricing-card-enterprise:hover {
        box-shadow: 0 20px 60px rgba(45, 62, 80, 0.3);
    }

    .pricing-card-enterprise .pricing-name,
    .pricing-card-enterprise .price-amount,
    .pricing-card-enterprise .pricing-features li {
        color: white;
    }

    .pricing-card-enterprise .pricing-tagline,
    .pricing-card-enterprise .price-period,
    .pricing-card-enterprise .pricing-billing {
        color: rgba(255, 255, 255, 0.75);
    }

    .pricing-card-enterprise .pricing-users {
        background: rgba(255, 255, 255, 0.15);
        color: white;
    }

        .pricing-card-enterprise .pricing-features li i {
            color: var(--primary);
        }

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-header {
    padding: 32px 24px 16px;
    text-align: center;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.pricing-body {
    padding: 0 24px 32px;
    text-align: center;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
}

.price-old {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 8px;
}

.pricing-billing {
    font-size: 13px;
    color: var(--gray-600);
    margin: 6px 0 14px;
}

.pricing-users {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.btn-block-oskala {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 24px 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}

.pricing-card-enterprise .pricing-features {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

    .pricing-features li i {
        color: var(--primary);
        font-size: 12px;
    }

.pricing-note {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.table-comparison {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .table-comparison thead {
        background: var(--navy);
        color: white;
    }

        .table-comparison thead th {
            padding: 20px 16px;
            font-weight: 600;
            font-size: 15px;
            border: none;
        }

    .table-comparison tbody th,
    .table-comparison tbody td {
        padding: 14px 16px;
        vertical-align: middle;
        border-color: var(--gray-100);
    }

    .table-comparison tbody th {
        font-weight: 500;
        font-size: 14px;
    }

    .table-comparison tbody td {
        font-size: 14px;
    }

.table-section-header {
    background: var(--gray-100);
}

    .table-section-header th {
        color: var(--gray-600) !important;
        font-weight: 600 !important;
    }

.table-comparison .text-primary {
    color: var(--primary) !important;
}

/* ============================================
   ARTICLE PAGES
   ============================================ */
.article-hero {
    padding-bottom: 60px;
}

.article-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.article-hero h1 {
    max-width: 900px;
    margin: 0 auto 16px;
}

.article-hero-meta {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 24px;
}

    .article-hero-meta i {
        margin-right: 6px;
    }

/* Article Container */
.article-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section {
    margin-bottom: 48px;
}

    .article-content-section h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--primary);
    }

    .article-content-section h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--petrol);
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .article-content-section p {
        font-size: 16px;
        color: var(--gray-700);
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .article-content-section a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }

        .article-content-section a:hover {
            text-decoration: underline;
        }

    .article-content-section ul,
    .article-content-section ol {
        margin: 20px 0;
        padding-left: 24px;
    }

        .article-content-section ul li,
        .article-content-section ol li {
            font-size: 16px;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 12px;
        }

            .article-content-section ul li strong,
            .article-content-section ol li strong {
                color: var(--gray-900);
            }

/* Article Testimonials */
.article-testimonial {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8f4f4 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border-left: 4px solid var(--primary);
}

.article-testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-testimonial-author {
    margin: 0;
}

    .article-testimonial-author strong {
        display: block;
        font-size: 15px;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .article-testimonial-author span {
        font-size: 14px;
        color: var(--gray-500);
    }

.article-testimonial-position {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

/* Article Content Block */
.article-content-block {
    margin-bottom: 48px;
}

    .article-content-block h2 {
        font-size: 26px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--primary);
    }

    .article-content-block h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--petrol);
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .article-content-block p {
        font-size: 16px;
        color: var(--gray-700);
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .article-content-block a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }

        .article-content-block a:hover {
            text-decoration: underline;
        }

        .article-content-block a.btn-oskala {
            color: white;
            text-decoration: none;
        }

            .article-content-block a.btn-oskala:hover {
                text-decoration: none;
            }

    .article-content-block ul,
    .article-content-block ol {
        margin: 20px 0;
        padding-left: 24px;
    }

        .article-content-block ul li,
        .article-content-block ol li {
            font-size: 16px;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 12px;
        }

            .article-content-block ul li strong,
            .article-content-block ol li strong {
                color: var(--gray-900);
            }

/* Article CTA Inline */
.article-cta-inline {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: var(--gray-50);
    border-radius: 16px;
}

/* Article FAQ */
.article-faq {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 40px;
    margin-top: 48px;
}

    .article-faq h2 {
        font-size: 24px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 32px;
        padding-bottom: 0;
        border-bottom: none;
        text-align: center;
    }

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

    .faq-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.faq-question {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

    .faq-answer a {
        color: var(--primary);
        text-decoration: none;
    }

        .faq-answer a:hover {
            text-decoration: underline;
        }

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-section {
    padding: 0 0 80px;
}

/* Featured Resource Card (Livre Blanc) */
.featured-resource-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 62, 80, 0.3);
}

.featured-resource-image {
    height: 100%;
    min-height: 300px;
}

    .featured-resource-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.featured-resource-content {
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.resource-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-resource-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.resource-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

    .resource-meta i {
        margin-right: 6px;
    }

.resource-excerpt {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Resource Cards (Articles) */
.resource-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

    .resource-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

.resource-card-image {
    height: 200px;
    overflow: hidden;
}

    .resource-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.resource-card:hover .resource-card-image img {
    transform: scale(1.05);
}

.resource-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-category {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.resource-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.resource-meta-small {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.resource-excerpt-small {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.resource-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

    .resource-link:hover {
        gap: 12px;
        color: var(--primary-dark);
    }

@media (max-width: 991.98px) {
    .featured-resource-content {
        padding: 32px;
    }

        .featured-resource-content h2 {
            font-size: 24px;
        }
}

/* ============================================
   MOBILE APP PAGE STYLES
   ============================================ */

/* Hero App */
.hero-app {
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 50%, var(--primary) 100%);
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

    .hero-badge-small i {
        font-size: 14px;
    }

.hero-badge-rating {
    background: rgba(245, 158, 11, 0.3);
}

    .hero-badge-rating i {
        color: #f59e0b;
    }

/* App Hero Visual */
.app-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.app-mockup-phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

    /* Style Android - bords moins arrondis */
    .app-mockup-phone.android {
        border-radius: 32px;
    }

/* Caméra punch-hole Android (remplace le notch iPhone) */
.phone-camera {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 0 0 2px #222;
}

/* Ancien notch iPhone - caché par défaut */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
    display: none;
}

.phone-screen-content {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: white;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

    .app-floating-badge i {
        color: var(--primary);
        font-size: 18px;
    }

.badge-nfc {
    top: 20%;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.badge-offline {
    bottom: 25%;
    left: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Video Demo Section */
.video-demo-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    display: block;
    position: relative;
}

    .video-thumbnail img {
        width: 100%;
        display: block;
    }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 170, 168, 0.4);
}

.video-thumbnail:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-dark);
}

.demo-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

    .demo-highlights li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        font-size: 15px;
        color: var(--gray-700);
    }

    .demo-highlights i {
        color: var(--primary);
        font-size: 18px;
    }

/* App Features Section */
.app-features-section {
    padding: 100px 0;
    background: white;
}

.app-feature-card {
    position: relative;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

    .app-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-light);
    }

    .app-feature-card.featured {
        border-color: var(--primary);
        background: linear-gradient(135deg, rgba(0, 170, 168, 0.03) 0%, rgba(0, 170, 168, 0.08) 100%);
    }

    .app-feature-card .feature-badge {
        position: absolute;
        top: -10px;
        right: 20px;
        background: var(--primary);
        color: white;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 20px;
    }

.app-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 170, 168, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .app-feature-icon i {
        font-size: 24px;
        color: var(--primary);
    }

.app-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.app-feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Offline Section */
.offline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    color: white;
}

    .offline-section .section-label {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .offline-section .section-title {
        color: white;
    }

    .offline-section .section-subtitle {
        color: rgba(255, 255, 255, 0.8);
    }

.offline-features {
    margin-top: 32px;
}

.offline-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.offline-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 170, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .offline-icon i {
        font-size: 20px;
        color: var(--primary);
    }

.offline-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.offline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.offline-visual {
    display: flex;
    justify-content: center;
}

.offline-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offline-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

    .offline-card-header i {
        color: #f59e0b;
        font-size: 20px;
    }

    .offline-card-header span {
        font-weight: 600;
        font-size: 14px;
    }

.offline-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

    .offline-stat .stat-number {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary);
    }

    .offline-stat .stat-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
    }

.offline-card-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

    .offline-card-footer i {
        color: #10b981;
        margin-right: 8px;
    }

/* NFC Section */
.nfc-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.nfc-benefits {
    margin-top: 24px;
}

.nfc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-700);
}

    .nfc-benefit i {
        color: var(--primary);
        font-size: 18px;
    }

.nfc-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nfc-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.nfc-phone, .nfc-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.nfc-phone {
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    color: white;
}

.nfc-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.nfc-waves {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nfc-waves span {
        width: 4px;
        height: 20px;
        background: var(--primary);
        border-radius: 2px;
        animation: wave 1s ease-in-out infinite;
    }

        .nfc-waves span:nth-child(2) {
            height: 30px;
            animation-delay: 0.2s;
        }

        .nfc-waves span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes wave {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.nfc-caption {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Compatibility Section */
.compatibility-section {
    padding: 80px 0;
    background: white;
}

.compat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .compat-card:hover {
        background: white;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

.compat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .compat-icon i {
        font-size: 28px;
        color: white;
    }

.compat-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.compat-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.compat-note {
    font-size: 15px;
    color: var(--gray-600);
}

    .compat-note i {
        color: #3ddc84;
        margin-right: 8px;
    }

/* App Testimonials Section */
.app-testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.app-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .app-testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

.testimonial-rating {
    margin-bottom: 16px;
}

    .testimonial-rating i {
        color: #f59e0b;
        font-size: 16px;
    }

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 170, 168, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .author-avatar i {
        font-size: 20px;
        color: var(--primary);
    }

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* App FAQ Section */
.app-faq-section {
    padding: 100px 0;
    background: white;
}

/* CTA App */
.cta-app .cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

    .cta-app .cta-note i {
        color: #f59e0b;
    }

/* Responsive */
@media (max-width: 991px) {
    .app-mockup-phone {
        width: 240px;
        height: 480px;
    }

    .app-floating-badge {
        display: none;
    }

    .video-demo-section,
    .app-features-section,
    .offline-section,
    .nfc-section,
    .app-testimonials-section,
    .app-faq-section {
        padding: 60px 0;
    }

    .nfc-animation {
        padding: 40px;
        gap: 24px;
    }

    .nfc-phone, .nfc-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero-badges-row {
        justify-content: center;
    }

    .app-hero-visual {
        padding: 20px;
        margin-top: 40px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* ============================================
   BENEFIT ICONS COLORÉES
   ============================================ */
.benefit-icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.25) 100%) !important;
}

    .benefit-icon-blue i {
        color: #3b82f6 !important;
    }

.benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%) !important;
}

    .benefit-icon-green i {
        color: #10b981 !important;
    }

.benefit-icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%) !important;
}

    .benefit-icon-purple i {
        color: #8b5cf6 !important;
    }

/* ============================================
   REPORT EXAMPLE SECTION
   ============================================ */
.report-example-section {
    padding: 100px 0;
    background: white;
}

.report-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.report-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 24px;
    width: 320px;
    border: 1px solid var(--gray-200);
}

.report-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 16px;
}

.report-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.report-company strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.report-company span {
    font-size: 11px;
    color: var(--gray-500);
}

.report-field {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.field-label {
    font-size: 12px;
    color: var(--gray-500);
}

.field-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.report-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin: 16px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-checklist {
    margin-bottom: 16px;
}

.check-item {
    font-size: 11px;
    color: var(--gray-600);
    padding: 4px 0;
}

    .check-item i {
        margin-right: 8px;
    }

    .check-item .fa-check-square {
        color: #10b981;
    }

    .check-item .fa-square {
        color: var(--gray-300);
    }

.report-photos {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.photo-thumb {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: 6px;
}

.report-signature {
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.signature-box span {
    font-size: 10px;
    color: var(--gray-500);
}

.signature-line {
    height: 40px;
    border-bottom: 1px solid var(--gray-300);
    margin-top: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30'%3E%3Cpath d='M5,25 Q15,5 30,20 T55,15 T80,22 T95,10' fill='none' stroke='%232d3e50' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E") no-repeat center;
    background-size: 80%;
}

.report-badge-pdf {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #dc2626;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

    .report-badge-pdf i {
        margin-right: 4px;
    }

.report-features {
    margin-top: 32px;
}

.report-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.report-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.report-feature-text strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 2px;
}

.report-feature-text span {
    font-size: 13px;
    color: var(--gray-600);
}

/* ============================================
   CTA BANNER (Bandeau coloré)
   ============================================ */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--petrol) 50%, var(--navy) 100%);
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-banner-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-white-oskala {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

    .btn-outline-white-oskala:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        color: white;
    }

@media (max-width: 991px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-actions {
        justify-content: center;
    }
}

/* ============================================
   INDUSTRIES SECTION (Métiers avec illustrations)
   ============================================ */
.industries-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

.industry-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .industry-illustration i {
        font-size: 40px;
        color: white;
        z-index: 2;
    }

.industry-cleaning {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.industry-maintenance {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.industry-construction {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.industry-facility {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.industry-person {
    position: absolute;
    bottom: 10px;
    right: 15px;
    opacity: 0.3;
}

.person-head {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 4px;
}

.person-body {
    width: 24px;
    height: 20px;
    background: white;
    border-radius: 12px 12px 0 0;
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.usecases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.usecase-tag {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

    .usecase-tag:hover {
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: 0 4px 12px rgba(0, 170, 168, 0.15);
    }

    .usecase-tag i {
        margin-right: 8px;
        color: var(--primary);
    }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        border-color: var(--primary-light);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

.testimonial-rating {
    margin-bottom: 16px;
}

    .testimonial-rating i {
        color: #f59e0b;
        font-size: 16px;
    }

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

@media (max-width: 991px) {
    .report-example-section,
    .industries-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .report-mockup {
        margin-bottom: 40px;
    }

    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner-text h3 {
        font-size: 22px;
    }
}

/* ============================================
   VIDEO OVERLAY & GOOGLE PLAY BADGE
   ============================================ */
.video-link {
    position: relative;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-link:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.google-play-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

    .google-play-badge:hover {
        transform: scale(1.05);
    }

.store-rating {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray-600);
}

    .store-rating .rating-stars {
        color: #f59e0b;
        margin-right: 8px;
    }

    .store-rating strong {
        color: var(--navy);
    }

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots-section {
    padding: 100px 0;
    background: white;
}

.screenshots-gallery {
    margin-top: 40px;
}

.screenshot-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .screenshot-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .screenshot-item img {
        width: 100%;
        height: auto;
        display: block;
    }

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .screenshots-section {
        padding: 60px 0;
    }

    .play-overlay {
        font-size: 40px;
    }

    .google-play-badge {
        height: 50px;
    }
}

/* ============================================
   RESOURCES PREVIEW SECTION (Homepage)
   ============================================ */
.resources-preview-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.resource-highlight {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.resource-highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.resource-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.resource-highlight p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.resource-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

    .resource-link:hover {
        gap: 10px;
        color: var(--primary-dark);
    }

.resource-visual {
    position: relative;
}

.resource-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .resources-preview-section {
        padding: 60px 0;
    }

    .resource-visual {
        margin-top: 40px;
    }
}

/* ============================================
   CGV PAGE SPECIFIC STYLES
   ============================================ */
.cgv-toc-section {
    padding: 0 0 40px;
}

.cgv-toc {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
}

    .cgv-toc h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 20px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .cgv-toc ol {
        columns: 2;
        column-gap: 40px;
        margin: 0;
        padding: 0;
        list-style: none;
        counter-reset: item;
    }

        .cgv-toc ol li {
            counter-increment: item;
            margin-bottom: 10px;
            font-size: 14px;
            break-inside: avoid;
        }

            .cgv-toc ol li::before {
                content: counter(item) ". ";
                font-weight: 600;
                color: var(--primary);
            }

    .cgv-toc a {
        color: var(--gray-600);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .cgv-toc a:hover {
            color: var(--primary);
        }

@media (max-width: 576px) {
    .cgv-toc ol {
        columns: 1;
    }
}

.cgv-preambule .legal-block {
    background: linear-gradient(135deg, var(--gray-50) 0%, #f0f4f8 100%);
    border-left: 4px solid var(--primary);
}

.legal-block h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 20px;
    margin-bottom: 12px;
}

.cgv-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
    text-align: center;
}

    .cgv-footer p {
        font-size: 14px;
        color: var(--gray-500);
        margin-bottom: 8px;
    }

    .cgv-footer a {
        color: var(--primary);
        text-decoration: none;
    }

        .cgv-footer a:hover {
            text-decoration: underline;
        }

/* ============================================
   LEGAL PAGES (Mentions Légales, Privacy, CGU)
   ============================================ */
.legal-section {
    padding: 0 0 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-update-date {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-article {
    margin-bottom: 40px;
}

    .legal-article h2 {
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--primary);
    }

.legal-block {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 24px 28px;
}

    .legal-block p {
        font-size: 15px;
        color: var(--gray-700);
        line-height: 1.8;
        margin-bottom: 16px;
    }

        .legal-block p:last-child {
            margin-bottom: 0;
        }

    .legal-block ul {
        margin: 16px 0 0;
        padding-left: 20px;
    }

        .legal-block ul li {
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 8px;
        }

    .legal-block a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }

        .legal-block a:hover {
            text-decoration: underline;
        }

    .legal-block h3 {
        font-size: 17px;
        font-weight: 600;
        color: var(--petrol);
        margin-top: 24px;
        margin-bottom: 12px;
        padding-left: 12px;
        border-left: 3px solid var(--primary);
    }

        .legal-block h3:first-child {
            margin-top: 0;
        }

.legal-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

    .legal-item:last-child {
        margin-bottom: 0;
    }

.legal-label {
    font-weight: 600;
    color: var(--gray-900);
    min-width: 220px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .legal-item {
        flex-direction: column;
    }

    .legal-label {
        min-width: auto;
        margin-bottom: 4px;
    }
}

/* ============================================
   SOFTENA PAGE - SERVICE CARDS
   ============================================ */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 24px;
    height: 100%;
    transition: all 0.4s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SOFTENA PAGE - FEATURES DETAIL
   ============================================ */
.features-detail-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.feature-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-detail-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.feature-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-detail-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        color: var(--gray-700);
        font-size: 15px;
    }

        .feature-detail-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }

/* ============================================
   SOFTENA PAGE - CLOUD SECTION
   ============================================ */
.cloud-section {
    padding: 80px 0;
    background: var(--white);
}

.cloud-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

    .cloud-card:hover {
        background: var(--white);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

.cloud-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.cloud-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.cloud-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SOFTENA PAGE - STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
}

.stats-section .stat-item {
    padding: 24px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 4px;
}

.stats-section .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    margin-bottom: 0;
}

/* ============================================
   SOFTENA PAGE - ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.6;
    text-align: right;
    padding-right: 24px;
    border-right: 3px solid var(--primary);
}

.about-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

    .about-content p:last-child {
        margin-bottom: 0;
    }

.about-values {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-values li {
        background: var(--white);
        border-radius: 12px;
        padding: 16px 20px;
        margin-bottom: 12px;
        font-size: 14px;
        color: var(--gray-700);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

        .about-values li strong {
            color: var(--primary);
        }

/* ============================================
   SOFTENA PAGE - REFERENCES SECTION
   ============================================ */
.references-section {
    padding: 80px 0 120px;
    background: var(--white);
}

.reference-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

    .reference-card:hover {
        background: var(--white);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

.reference-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .reference-logo img {
        max-height: 64px;
        max-width: 170px;
        object-fit: contain;
    }

.reference-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.reference-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.reference-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .reference-link:hover {
        color: var(--primary-dark);
    }

    .reference-link i {
        margin-left: 4px;
        font-size: 12px;
    }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 0 0 80px;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
}

    .contact-form-card .form-label {
        font-weight: 600;
        font-size: 14px;
        color: var(--gray-700);
        margin-bottom: 8px;
    }

    .contact-form-card .form-control,
    .contact-form-card .form-select {
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 12px 16px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

        .contact-form-card .form-control:focus,
        .contact-form-card .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 170, 168, 0.1);
        }

    .contact-form-card .input-group-text {
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        border-radius: 12px 0 0 12px;
        color: var(--gray-500);
    }

    .contact-form-card .input-group .form-control {
        border-radius: 0 12px 12px 0;
    }

    .contact-form-card textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.contact-info-content a {
    font-size: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .contact-info-content a:hover {
        color: var(--primary-dark);
    }

.contact-info-content address {
    font-style: normal;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
}

    .map-section iframe {
        width: 100%;
        filter: grayscale(20%);
    }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0 120px;
}

    .faq-section .accordion-item {
        border: 1px solid var(--gray-200);
        border-radius: 12px !important;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .faq-section .accordion-button {
        font-weight: 600;
        font-size: 16px;
        color: var(--gray-900);
        padding: 20px 24px;
        background: white;
    }

        .faq-section .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: var(--primary-light);
            box-shadow: none;
        }

        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: var(--gray-200);
        }

        .faq-section .accordion-button::after {
            background-size: 16px;
        }

    .faq-section .accordion-body {
        padding: 0 24px 24px;
        font-size: 15px;
        color: var(--gray-600);
        line-height: 1.7;
    }

/* Button outline dark */
.btn-outline-dark-oskala {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--gray-700);
}

    .btn-outline-dark-oskala:hover {
        border-color: var(--gray-900);
        color: var(--gray-900);
    }

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .trust-logos:hover {
        opacity: 0.8;
        filter: grayscale(50%);
    }

.trust-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ============================================
   POURQUOI OSKALA (Benefits)
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .benefit-card:hover {
        border-color: var(--primary);
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 170, 168, 0.15);
    }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.4s ease;
}

    .feature-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 170, 168, 0.1);
    }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-title {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-weight: 700;
}

.feature-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   COMPARISON SECTION (Avant/Après)
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.comparison-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .comparison-card.before {
        border: 2px solid var(--gray-200);
    }

    .comparison-card.after {
        border: 2px solid var(--primary);
        box-shadow: 0 20px 60px rgba(0, 170, 168, 0.15);
    }

        .comparison-card.after::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.comparison-card.before .comparison-badge {
    background: var(--gray-100);
    color: var(--gray-500);
}

.comparison-card.after .comparison-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.comparison-title {
    font-size: 24px;
    margin-bottom: 24px;
}

.comparison-card.before .comparison-title {
    color: var(--gray-600);
}

.comparison-card.after .comparison-title {
    color: var(--gray-900);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .comparison-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 15px;
    }

        .comparison-list li:last-child {
            border-bottom: none;
        }

.comparison-card.before .comparison-list li i {
    color: var(--danger);
    margin-top: 3px;
}

.comparison-card.after .comparison-list li i {
    color: var(--success);
    margin-top: 3px;
}

.comparison-card.before .comparison-list li {
    color: var(--gray-500);
}

.comparison-card.after .comparison-list li {
    color: var(--gray-700);
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 40px rgba(0, 170, 168, 0.3);
    animation: arrow-pulse 2s infinite ease-in-out;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ============================================
   APP MOBILE SECTION
   ============================================ */
.app-section {
    padding: 100px 0;
    background: var(--white);
}

.app-phone {
    width: 280px;
    max-width: 100%;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.app-phone-screen {
    background: white;
    border-radius: 32px;
    height: 500px;
    overflow: hidden;
}

.app-phone-header {
    background: var(--petrol);
    padding: 40px 20px 20px;
    color: white;
    text-align: center;
}

    .app-phone-header h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .app-phone-header p {
        font-size: 12px;
        opacity: 0.7;
        margin: 0;
    }

.app-phone-content {
    padding: 20px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

    .app-item:hover {
        background: var(--primary-light);
        transform: translateX(4px);
    }

.app-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.app-item:hover .app-item-icon {
    background: var(--primary);
    color: white;
}

.app-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.app-item-sub {
    font-size: 11px;
    color: var(--gray-500);
    margin: 0;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--warning);
    font-size: 16px;
}

.rating-text {
    font-size: 13px;
    color: var(--gray-600);
}

.app-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 20px;
}

.app-text > p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.app-features {
    margin-bottom: 32px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

    .app-feature i {
        width: 24px;
        height: 24px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--primary);
    }

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--gray-900);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

    .store-btn:hover {
        background: var(--gray-800);
        transform: translateY(-2px);
        color: white;
    }

    .store-btn i {
        font-size: 28px;
    }

.store-btn-text span {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
}

.store-btn-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   USE CASES
   ============================================ */
.usecases-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.usecase-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

    .usecase-card:hover {
        background: var(--primary-light);
        border-color: var(--primary);
        transform: translateY(-4px);
    }

.usecase-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.usecase-card:hover .usecase-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.usecase-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--petrol) 0%, var(--navy) 100%);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 170, 168, 0.2) 0%, transparent 70%);
    }

    .cta-box h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        color: white;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .cta-box p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 32px;
        position: relative;
        z-index: 1;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    padding: 60px 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .footer-logo .logo-text {
        color: white;
        font-size: 22px;
    }

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--primary);
        color: white;
    }

.footer h5 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 14px;
        color: var(--gray-400);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--primary);
        }

.editor-icon {
    width: 36px;
    height: 36px;
    background: var(--gray-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .editor-icon i {
        color: var(--primary);
    }

.editor-name {
    font-weight: 600;
    color: white;
}

.editor-description {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-contact {
    margin-top: 16px;
}

    .footer-contact p {
        font-size: 13px;
        color: var(--gray-400);
        margin-bottom: 6px;
    }

    .footer-contact i {
        width: 16px;
        margin-right: 8px;
        color: var(--primary);
    }

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 30px;
    margin-top: 40px;
}

    .footer-bottom p {
        font-size: 14px;
        color: var(--gray-500);
        margin: 0;
    }

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        font-size: 14px;
        color: var(--gray-500);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-visual {
        margin-top: 40px;
        padding-bottom: 40px;
        padding-right: 20px;
    }

    .hero-mockup {
        transform: none;
    }

    .hero-visual:hover .hero-mockup {
        transform: none;
    }

    .hero-phone {
        width: 120px;
        right: -10px;
        bottom: 0;
    }

    .phone-screen {
        height: 220px;
    }

    .hero-stats {
        gap: 24px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    /* Navbar mobile collapse */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .navbar-oskala .nav-link {
        color: var(--gray-700) !important;
        padding: 10px 15px !important;
    }

    .navbar-oskala .nav-cta {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--gray-200);
    }
}

@media (max-width: 767.98px) {
    .navbar-oskala {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }

        .navbar-oskala .nav-link {
            color: var(--gray-700) !important;
            padding: 10px 15px !important;
        }

        .navbar-oskala .navbar-logo-white {
            opacity: 0 !important;
        }

        .navbar-oskala .navbar-logo-dark {
            opacity: 1 !important;
        }

        .navbar-oskala .navbar-toggler {
            color: var(--navy);
        }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 16px;
        margin-top: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

        .navbar-collapse .nav-link {
            color: var(--gray-700) !important;
        }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-visual {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .hero-phone {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .trust-logos {
        gap: 24px;
    }

    .trust-logo {
        font-size: 16px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   CARROUSEL INTERFACE À ONGLETS
   ============================================ */
.interface-showcase-section {
    padding: 100px 0;
    background: var(--white);
}

/* Onglets de navigation */
.interface-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.interface-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .interface-tab i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .interface-tab:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    .interface-tab.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        box-shadow: 0 4px 15px rgba(0, 170, 168, 0.3);
    }

        .interface-tab.active i {
            transform: scale(1.1);
        }

/* Carrousel container */
.interface-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Cadre navigateur */
.browser-frame {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

    .browser-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

        .browser-dots .dot.red {
            background: #ff5f57;
        }

        .browser-dots .dot.yellow {
            background: #febc2e;
        }

        .browser-dots .dot.green {
            background: #28c840;
        }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 13px;
    color: var(--gray-500);
}

    .browser-url i {
        color: var(--success);
        font-size: 11px;
    }

.browser-content {
    position: relative;
    min-height: 400px;
    background: var(--gray-100);
}

/* Slides */
.interface-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: relative;
}

    .interface-slide.active {
        display: block;
        opacity: 1;
    }

    .interface-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

    .slide-caption strong {
        color: var(--primary);
        font-weight: 700;
    }

/* Navigation flèches */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

    .carousel-nav:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .carousel-nav.prev {
        left: -24px;
    }

    .carousel-nav.next {
        right: -24px;
    }

/* Dots indicateurs */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel-dot:hover {
        background: var(--gray-400);
    }

    .carousel-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

    .carousel-dot:focus-visible,
    .interface-tab:focus-visible,
    .carousel-nav:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

/* Responsive carrousel */
@media (max-width: 992px) {
    .interface-tabs {
        gap: 6px;
    }

    .interface-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

        .interface-tab span {
            display: none;
        }

        .interface-tab i {
            font-size: 18px;
        }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }
}

@media (max-width: 576px) {
    .interface-showcase-section {
        padding: 60px 0;
    }

    .interface-tabs {
        gap: 4px;
    }

    .interface-tab {
        padding: 10px 14px;
    }

    .browser-header {
        padding: 8px 12px;
    }

    .browser-url {
        font-size: 11px;
        padding: 6px 10px;
    }

    /* Sur mobile l'image est basse : plus de hauteur figée ni de légende
       en surimpression — elle passe sous l'image, dans le flux */
    .browser-content {
        min-height: 0;
    }

    .slide-caption {
        position: static;
        padding: 16px;
        font-size: 14px;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    /* Flèches centrées sur l'image plutôt que sur le cadre entier */
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: 35%;
    }

        .carousel-nav.prev {
            left: 5px;
        }

        .carousel-nav.next {
            right: 5px;
        }
}

/* ============================================
   APP MOBILE - CHIFFRES CLÉS
   ============================================ */
.app-stats-section {
    padding: 60px 0;
    background: var(--white);
}

.app-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.app-stat-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

    .app-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

.app-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--petrol));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .app-stat-icon i {
        font-size: 24px;
        color: white;
    }

.app-stat-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

    .app-stat-value span {
        font-size: 24px;
        color: var(--primary);
    }

.app-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 8px;
}

.app-stat-detail {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

@media (max-width: 992px) {
    .app-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .app-stats-section {
        padding: 40px 0;
    }

    .app-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .app-stat-card {
        padding: 24px 20px;
    }

    .app-stat-value {
        font-size: 36px;
    }
}

/* ============================================
   APP MOBILE - CARROUSEL SCREENSHOTS
   ============================================ */
.app-screenshots-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.app-screen-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.app-screen-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .app-screen-tab:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .app-screen-tab.active {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        box-shadow: 0 4px 15px rgba(0, 170, 168, 0.3);
    }

.app-screenshots-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-mockup-container {
    position: relative;
    margin-bottom: 40px;
}

.phone-mockup-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    position: relative;
}

    /* Style Android - Punch-hole camera au lieu du notch iPhone */
    .phone-mockup-frame.android {
        border-radius: 36px;
    }

.phone-mockup-camera {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border: 2px solid #222;
}

/* On garde le notch pour compatibilité mais on ne l'utilise plus */
.phone-mockup-notch {
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none; /* Caché par défaut, on utilise le style Android */
}

.phone-mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-screen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .app-screen-slide.active {
        opacity: 1;
    }

    .app-screen-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.phone-floating-feature {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

    .phone-floating-feature i {
        color: var(--primary);
        font-size: 16px;
    }

    .phone-floating-feature.left {
        left: -120px;
        top: 30%;
    }

    .phone-floating-feature.right {
        right: -100px;
        bottom: 30%;
    }

.app-screen-captions {
    text-align: center;
    max-width: 500px;
    min-height: 100px;
}

.app-screen-caption {
    display: none;
}

    .app-screen-caption.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    .app-screen-caption h4 {
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .app-screen-caption p {
        font-size: 15px;
        color: var(--gray-600);
        line-height: 1.6;
    }

.app-screen-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.app-screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .app-screen-dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }

@media (max-width: 768px) {
    .app-screen-tabs {
        gap: 6px;
    }

    .app-screen-tab {
        padding: 10px 14px;
        font-size: 12px;
    }

        .app-screen-tab span {
            display: none;
        }

    .phone-mockup-frame {
        width: 240px;
        height: 500px;
    }

    .phone-floating-feature {
        display: none;
    }
}

/* ============================================
   APP MOBILE - SECTION IA
   ============================================ */
.ai-section {
    padding: 100px 0;
    background: var(--white);
}

.ai-visual {
    display: flex;
    justify-content: center;
}

.ai-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 30px;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.ai-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

    .ai-badge i {
        font-size: 16px;
    }

.ai-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
}

    .ai-status::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--success);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ai-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-demo-input,
.ai-demo-output {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--gray-200);
}

.ai-demo-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 600;
}

.ai-demo-text {
    font-size: 14px;
    line-height: 1.6;
}

    .ai-demo-text.original {
        color: var(--gray-600);
        font-style: italic;
    }

    .ai-demo-text.corrected {
        color: var(--navy);
        font-weight: 500;
    }

.ai-processing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    color: #8b5cf6;
    font-size: 13px;
    font-weight: 600;
}

.ai-processing-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ai-card-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.ai-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

    .ai-stat i {
        color: #8b5cf6;
    }

/* AI Features */
.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.ai-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ai-feature-icon i {
        font-size: 20px;
        color: #8b5cf6;
    }

.ai-feature-content h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.ai-feature-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .ai-section {
        padding: 60px 0;
    }

    .ai-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .ai-card {
        padding: 20px;
    }

    .ai-demo-text {
        font-size: 13px;
    }
}

/* ============================================
   PAGES MODULES (Matériel, Leads)
   ============================================ */

/* Hero module */
.hero-module {
    background: linear-gradient(135deg, var(--petrol) 0%, var(--navy) 100%);
    min-height: auto;
    padding: 120px 0 80px;
}

    .hero-module.hero-leads {
        background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
    }

.hero-screenshot-wrapper {
    position: relative;
}

.browser-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

    .browser-mockup .browser-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 16px;
        background: var(--gray-100);
        border-bottom: 1px solid var(--gray-200);
    }

    .browser-mockup .browser-dots {
        display: flex;
        gap: 6px;
    }

        .browser-mockup .browser-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

            .browser-mockup .browser-dots .dot.red {
                background: #ff5f57;
            }

            .browser-mockup .browser-dots .dot.yellow {
                background: #febc2e;
            }

            .browser-mockup .browser-dots .dot.green {
                background: #28c840;
            }

    .browser-mockup .browser-url {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: var(--white);
        border-radius: 6px;
        font-size: 13px;
        color: var(--gray-500);
    }

        .browser-mockup .browser-url i {
            color: var(--success);
            font-size: 11px;
        }

    .browser-mockup .browser-content img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Module stats section */
.module-stats-section {
    padding: 60px 0;
    background: var(--white);
}

.module-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-stat-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

    .module-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

.module-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--petrol));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .module-stat-icon i {
        font-size: 24px;
        color: white;
    }

.module-stat-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.module-stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Module features section */
.module-features-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.module-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

    .module-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .module-feature-card.featured {
        border-color: var(--primary);
        box-shadow: 0 10px 30px rgba(0, 170, 168, 0.1);
    }

.module-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 170, 168, 0.1), rgba(30, 89, 115, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .module-feature-icon i {
        font-size: 24px;
        color: var(--primary);
    }

    .module-feature-icon.leads-icon {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    }

        .module-feature-icon.leads-icon i {
            color: #f59e0b;
        }

.module-feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.module-feature-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Module showcase sections */
.module-showcase-section {
    padding: 100px 0;
}

    .module-showcase-section.bg-light {
        background: var(--gray-50);
    }

.screenshot-frame {
    position: relative;
}

    .screenshot-frame img {
        border-radius: 12px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    }

.feature-list {
    margin-top: 30px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

    .feature-list-item:last-child {
        border-bottom: none;
    }

    .feature-list-item i {
        color: var(--primary);
        font-size: 18px;
    }

    .feature-list-item span {
        font-size: 15px;
        color: var(--gray-700);
    }

/* NFC Check-in visual */
.nfc-checkin-visual {
    display: flex;
    justify-content: center;
}

.nfc-demo-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.nfc-demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--navy);
}

    .nfc-demo-header i {
        color: var(--primary);
    }

.nfc-scan-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.nfc-phone-icon,
.nfc-tag-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gray-600);
}

.nfc-waves-anim {
    display: flex;
    gap: 4px;
}

    .nfc-waves-anim span {
        width: 4px;
        height: 20px;
        background: var(--primary);
        border-radius: 2px;
        animation: nfcWave 1s ease-in-out infinite;
    }

        .nfc-waves-anim span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .nfc-waves-anim span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes nfcWave {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.nfc-demo-result {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    margin-top: 20px;
}

.nfc-success-icon {
    width: 40px;
    height: 40px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nfc-demo-info strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.nfc-demo-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Use cases section */
.use-cases-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.use-case-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

    .use-case-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

.use-case-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--petrol));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .use-case-icon i {
        font-size: 28px;
        color: white;
    }

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.use-case-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .use-case-features li {
        padding: 8px 0;
        font-size: 14px;
        color: var(--gray-600);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .use-case-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
        }

/* Module FAQ */
.module-faq-section {
    padding: 100px 0;
    background: var(--white);
}

/* Pipeline stages (Leads page) */
.pipeline-stages {
    margin-top: 30px;
}

.pipeline-stage {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

    .pipeline-stage:last-child {
        border-bottom: none;
    }

.stage-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stage-content strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.stage-content span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Automation list (Leads page) */
.automation-list {
    margin-top: 30px;
}

.automation-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

    .automation-item:last-child {
        border-bottom: none;
    }

.automation-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .automation-icon i {
        font-size: 20px;
        color: #f59e0b;
    }

.automation-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.automation-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Workflow visual (Leads page) */
.workflow-visual {
    display: flex;
    justify-content: center;
}

.workflow-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.workflow-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--navy);
}

    .workflow-header i {
        color: #f59e0b;
    }

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

    .workflow-step.completed {
        background: rgba(16, 185, 129, 0.1);
    }

.step-number {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.workflow-step.completed .step-number {
    background: var(--success);
}

.step-content strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.step-content span {
    font-size: 12px;
    color: var(--gray-500);
}

.workflow-arrow {
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
}

/* CTA Leads */
.cta-leads .cta-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Responsive modules */
@media (max-width: 992px) {
    .module-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-module {
        padding: 100px 0 60px;
    }
}

@media (max-width: 576px) {
    .module-stats-grid {
        grid-template-columns: 1fr;
    }

    .module-stats-section {
        padding: 40px 0;
    }

    .module-features-section,
    .module-showcase-section,
    .use-cases-section,
    .module-faq-section {
        padding: 60px 0;
    }
}

/* ============================================
   HOMEPAGE - MODULES AVANCÉS
   ============================================ */
.advanced-modules-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.adv-module-link {
    text-decoration: none;
    display: block;
}

.adv-module-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .adv-module-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        transition: width 0.3s ease;
    }

    .adv-module-card.adv-module-materiel::before {
        background: linear-gradient(180deg, var(--primary), var(--petrol));
    }

    .adv-module-card.adv-module-leads::before {
        background: linear-gradient(180deg, #f59e0b, #d97706);
    }

    .adv-module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        border-color: transparent;
    }

        .adv-module-card:hover::before {
            width: 6px;
        }

.adv-module-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-module-materiel .adv-module-icon {
    background: linear-gradient(135deg, rgba(0, 170, 168, 0.1), rgba(30, 89, 115, 0.1));
}

    .adv-module-materiel .adv-module-icon i {
        font-size: 32px;
        color: var(--primary);
    }

.adv-module-leads .adv-module-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
}

    .adv-module-leads .adv-module-icon i {
        font-size: 32px;
        color: #f59e0b;
    }

.adv-module-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.adv-module-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.adv-module-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .adv-module-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 0;
        font-size: 14px;
        color: var(--gray-700);
    }

.adv-module-materiel .adv-module-features li i {
    color: var(--primary);
    font-size: 12px;
}

.adv-module-leads .adv-module-features li i {
    color: #f59e0b;
    font-size: 12px;
}

.adv-module-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.adv-module-materiel .adv-module-cta {
    color: var(--primary);
}

.adv-module-leads .adv-module-cta {
    color: #f59e0b;
}

.adv-module-card:hover .adv-module-cta {
    gap: 12px;
}

@media (max-width: 768px) {
    .advanced-modules-section {
        padding: 60px 0;
    }

    .adv-module-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .adv-module-icon {
        margin: 0 auto;
    }

    .adv-module-features li {
        justify-content: center;
    }
}

/* ============================================
   ASSISTANT CHATSIMPLE — masqué sur mobile
   (le widget flottant recouvre les CTA et les
   cartes tarifs sur petit écran)
   ============================================ */
@media (max-width: 767.98px) {
    co-pilot {
        display: none !important;
    }
}

/* ============================================
   CORRECTIF SCROLL HORIZONTAL MOBILE
   La navbar fixe se dimensionne sur le viewport
   scrollbar incluse ; on clippe le débordement
   au niveau du document.
   ============================================ */
html {
    overflow-x: hidden;
}

/* ============================================
   ACCESSIBILITÉ — préférence de mouvement réduit
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   SÉLECTEUR DE LANGUE (navbar)
   ============================================ */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.nav-lang-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color 0.3s;
}

    .nav-lang-link:hover {
        color: #ffffff;
    }

    .nav-lang-link.active {
        color: var(--primary);
    }

.nav-lang-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.navbar-oskala.scrolled .nav-lang-link {
    color: var(--gray-500);
}

    .navbar-oskala.scrolled .nav-lang-link:hover {
        color: var(--navy);
    }

    .navbar-oskala.scrolled .nav-lang-link.active {
        color: var(--primary);
    }

.navbar-oskala.scrolled .nav-lang-sep {
    color: var(--gray-300);
}

@media (max-width: 991.98px) {
    /* Menu mobile replié : fond clair */
    .navbar-collapse .nav-lang-link {
        color: var(--gray-600);
    }

        .navbar-collapse .nav-lang-link.active {
            color: var(--primary);
        }

    .navbar-collapse .nav-lang-sep {
        color: var(--gray-300);
    }
}

/* ============================================
   LIGHTBOX VIDÉO
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .video-modal video {
        width: min(1000px, 100%);
        max-height: 85vh;
        border-radius: 12px;
        background: #000;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        display: block;
    }

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .video-modal-close:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .video-modal-close:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
