/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FuturSite â€” Design System & Global Styles
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ VARIABLES â”€â”€ */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --accent: #C8F135;
    --accent-dark: #a8cc1a;
    --accent-glow: rgba(200, 241, 53, 0.35);
    --gray-100: #f6f6f4;
    --gray-200: #ebebeb;
    --gray-400: #aaaaaa;
    --gray-600: #666666;
    --gray-800: #2a2a2a;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* â”€â”€ RESET â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 132px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* ── PAGE TRANSITION ── */
body {
    opacity: 1;
    transition: opacity 0.4s ease;
}

body.page-leaving {
    opacity: 0;
}

/* ── PERFORMANCE: Disable backdrop-filter on mobile/tablet ── */
@media (max-width: 1024px) {
    *,
    *::before,
    *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.95);
    }

    .navbar.navbar-light {
        background: rgba(246, 246, 244, 0.97);
    }
}

/* ── GPU ACCELERATION (only on elements that animate) ── */
#problem-carousel-track,
#site-types-track,
#portfolio-track {
    backface-visibility: hidden;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

ul,
ol {
    list-style: none;
}


button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* â”€â”€ SMOOTH HOVER TRANSITIONS â”€â”€ */
.nav-link,
.footer-link {
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card,
.testimonial-card,
.faq-item {
    transition: background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn,
.btn-primary,
.btn-outline {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* â”€â”€ UTILITY â”€â”€ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.accent-text {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* â”€â”€ SECTION GLOW (dark sections) â”€â”€ */
.section-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

.section-glow.glow-left {
    left: -100px;
    top: 30%;
    background: rgba(200, 241, 53, 0.04);
}

.section-glow.glow-right {
    right: -100px;
    top: 20%;
    background: rgba(200, 241, 53, 0.03);
    animation-delay: -4s;
}

.section-glow.glow-center {
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    background: rgba(59, 130, 246, 0.025);
    animation-delay: -2s;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* â”€â”€ SECTION DECOR (white sections) â”€â”€ */
.section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(200, 241, 53, 0.25);
    box-shadow: 0 0 12px rgba(200, 241, 53, 0.15);
}

.decor-dot.decor-top-left {
    top: 60px;
    left: 40px;
}

.decor-dot.decor-top-right {
    top: 50px;
    right: 50px;
}

.decor-dot.decor-bottom-left {
    bottom: 50px;
    left: 30px;
}

.decor-dot.decor-bottom-right {
    bottom: 40px;
    right: 40px;
}

.decor-line {
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 241, 53, 0.12), transparent);
}

.decor-line.decor-bottom-right {
    bottom: 80px;
    right: 30px;
}

.decor-line.decor-bottom-left {
    bottom: 90px;
    left: 20px;
}

.decor-cross {
    position: absolute;
    width: 16px;
    height: 16px;
}

.decor-cross::before,
.decor-cross::after {
    content: '';
    position: absolute;
    background: rgba(10, 10, 10, 0.06);
}

.decor-cross::before {
    width: 16px;
    height: 1px;
    top: 50%;
    left: 0;
}

.decor-cross::after {
    width: 1px;
    height: 16px;
    left: 50%;
    top: 0;
}

.decor-cross.decor-top-right {
    top: 70px;
    right: 60px;
}

/* â”€â”€ SVG DECORATIONS â”€â”€ */
.section-svg-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.svg-top-left {
    top: 40px;
    left: 40px;
}

.svg-top-right {
    top: 40px;
    right: 40px;
}

.svg-bottom-left {
    bottom: 40px;
    left: 40px;
}

.svg-bottom-right {
    bottom: 40px;
    right: 40px;
}

.svg-center-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.svg-center-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .section-svg-decor {
        opacity: 0.3;
        /* Less visible on mobile */
        transform: scale(0.7);
        /* Smaller on mobile */
    }

    .svg-center-left,
    .svg-center-right {
        display: none;
        /* Hide side elements on mobile to prevent overflow/clutter */
    }
}

/* Ensure sections with decor/glow are positioned */
.services,
.offers,
.testimonials,
.faq,
.why-us,
.portfolio,
.about,
.footer,
.dotmatrix-band {
    position: relative;
    overflow: hidden;
}

/* â”€â”€ SECTION HEADERS â”€â”€ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 241, 53, 0.1);
    border: 1px solid rgba(200, 241, 53, 0.2);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-chip.light {
    background: rgba(10, 10, 10, 0.06);
    border-color: rgba(10, 10, 10, 0.1);
    color: var(--gray-600);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-heading.dark {
    color: var(--black);
}

.section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-sub.dark {
    color: var(--gray-600);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px 6px;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Light-section navbar adaptation */
.navbar.navbar-light {
    background: rgba(246, 246, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.navbar-light .nav-links {
    background: rgba(10, 10, 10, 0.06);
    border-color: rgba(10, 10, 10, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* navbar-light logo swap gÃ©rÃ© par .logo-dark / .logo-light ci-dessous */

.navbar.navbar-light .nav-link {
    color: rgba(10, 10, 10, 0.5);
}

.navbar.navbar-light .nav-link:hover {
    color: var(--black);
    background: rgba(10, 10, 10, 0.06);
}

.navbar.navbar-light .nav-link.active {
    color: var(--black);
    background: var(--accent);
}

.navbar.navbar-light .nav-hamburger span {
    background: var(--black);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOGOS IMAGE â€” PNG Ã  fond transparent natif
   Crossfade adaptatif dark â†” light via opacity
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Conteneur lien navbar :
   position relative pour superposer les deux logos */
.nav-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    height: 96px;
    text-decoration: none;
}

/* PropriÃ©tÃ©s communes aux deux variantes */
.logo-img {
    display: block;
    height: 96px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-drag: none;
}

/* Logo_1 (dark) : visible par dÃ©faut, dans le flux normal */
.logo-dark {
    opacity: 1;
    position: relative;
    z-index: 1;
}

/* Logo_2 (light) : cachÃ© par dÃ©faut, superposÃ© au-dessus */
.logo-light {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Swap fluide quand la navbar dÃ©tecte une section claire */
.navbar.navbar-light .logo-dark {
    opacity: 0;
    pointer-events: none;
}

.navbar.navbar-light .logo-light {
    opacity: 1;
    pointer-events: auto;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: var(--black);
    background: var(--accent);
    font-weight: 600;
}

.nav-link::after {
    display: none;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1.5px solid rgba(200, 241, 53, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 2px;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.4);
    border-color: rgba(200, 241, 53, 0.6);
    animation: btnShockwave 0.6s ease-out forwards;
}

.nav-cta:active {
    transform: scale(1.02);
    box-shadow: none;
    animation: none;
}

/* Hamburger â€” Modern pill style */
.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
}

.nav-hamburger:hover {
    background: rgba(200, 241, 53, 0.1);
    border-color: rgba(200, 241, 53, 0.25);
}

.nav-hamburger:active {
    transform: scale(0.95);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
}

.nav-hamburger span:nth-child(1) {
    transform: translateY(-6px);
}

.nav-hamburger span:nth-child(2) {
    transform: translateY(0);
    width: 14px;
}

.nav-hamburger span:nth-child(3) {
    transform: translateY(6px);
}

/* Open state â€” smooth X animation */
.nav-hamburger.open {
    background: rgba(200, 241, 53, 0.12);
    border-color: rgba(200, 241, 53, 0.3);
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(0);
    background: var(--accent);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
    width: 20px;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(0);
    background: var(--accent);
}

/* Light section adaptation */
.navbar.navbar-light .nav-hamburger {
    background: rgba(10, 10, 10, 0.05);
    border-color: rgba(10, 10, 10, 0.08);
}

.navbar.navbar-light .nav-hamburger:hover {
    background: rgba(10, 10, 10, 0.1);
    border-color: rgba(200, 241, 53, 0.3);
}

.navbar.navbar-light .nav-hamburger span {
    background: var(--black);
}

.navbar.navbar-light .nav-hamburger.open span:nth-child(1),
.navbar.navbar-light .nav-hamburger.open span:nth-child(3) {
    background: var(--accent-dark);
}

/* Mobile Menu â€” Modern */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(10, 10, 10);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-menu.open {
    clip-path: inset(0 0 0% 0);
    pointer-events: all;
    visibility: visible;
}

.mobile-menu .nav-link {
    font-size: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 40px;
    position: relative;
    letter-spacing: 0.5px;
    transform: translateY(16px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0s;
}

.mobile-menu.open .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .nav-link:nth-child(1) {
    transition-delay: 0.08s;
    margin-top: 36px;
}

.mobile-menu.open .nav-link:nth-child(2) {
    transition-delay: 0.14s;
}

.mobile-menu.open .nav-link:nth-child(3) {
    transition-delay: 0.20s;
}

.mobile-menu.open .nav-link:nth-child(4) {
    transition-delay: 0.26s;
}

.mobile-menu.open .nav-link:nth-child(5) {
    transition-delay: 0.32s;
}

.mobile-menu .nav-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 8px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 241, 53, 0.3), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mobile-menu .nav-link:hover {
    color: var(--accent);
}

.mobile-menu .nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-menu .nav-cta {
    font-size: 12px;
    padding: 12px 30px;
    margin-top: 24px;
    border-radius: 50px;
    transform: translateY(16px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
    box-shadow: 0 0 30px rgba(200, 241, 53, 0.15);
}

.mobile-menu.open .nav-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.38s;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: heroFloat 10s ease-in-out infinite;
}

.hero-gradient.g1 {
    background: var(--accent);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.hero-gradient.g2 {
    background: #3b82f6;
    bottom: -20%;
    left: -15%;
    animation-delay: -5s;
    opacity: 0.1;
}

.hero-gradient.g3 {
    background: var(--accent);
    top: 50%;
    left: 40%;
    width: 300px;
    height: 300px;
    animation-delay: -3s;
    opacity: 0.1;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(200, 241, 53, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 241, 53, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: gridPulse 6s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-centered {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* â”€â”€ INTERACTIVE MOUSE GLOW â”€â”€ */
.hero-mouse-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
}

.hero:hover .hero-mouse-glow {
    opacity: 1;
}



.hero-subtitle.revealed {
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-buttons.revealed {
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

/* â”€â”€ DARK SECTION AMBIENT BACKGROUNDS â”€â”€ */
.about::before,
.portfolio::before,
.testimonials::before,
.footer::before,
.dotmatrix-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.about::after,
.testimonials::after,
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at top right, rgba(200, 241, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle at bottom left, rgba(200, 241, 53, 0.035) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Futuristic effects */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb.orb-1 {
    width: 350px;
    height: 350px;
    top: 15%;
    right: 5%;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.25) 0%, transparent 70%);
    animation: orbPulse 6s ease-in-out infinite;
}

.hero-orb.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 8%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 70%);
    animation: orbPulse 8s ease-in-out infinite reverse;
}

.hero-orb.orb-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.15) 0%, transparent 70%);
    animation: orbPulse 5s ease-in-out infinite 1s;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 241, 53, 0.12);
    pointer-events: none;
}

.hero-ring.ring-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 10s linear infinite;
}

.hero-ring.ring-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 10s linear infinite 5s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
        border-color: rgba(200, 241, 53, 0.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        border-color: rgba(200, 241, 53, 0);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 241, 53, 0.1);
    border: 1px solid rgba(200, 241, 53, 0.2);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(64px, 5.5vw, 78px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    text-align: center;
    letter-spacing: -0.03em;
}

.hero-title-line1 {
    display: block;
}

/* â”€â”€ WORD CAROUSEL WRAPPER â”€â”€ */
/* overflow: visible so neon glow + shockwave are never clipped */
.hero-carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    height: 72px;
    margin-top: 12px;
}

.hero-carousel-track {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* â”€â”€ ANIMATED CHIP (pill) â€” Apple-style â”€â”€ */
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #C8F135;
    padding: 14px 32px;
    border-radius: 999px;
    position: absolute;
    white-space: nowrap;
    /* Default hidden state: below + faded + slightly scaled down + blurred */
    opacity: 0;
    transform: translateY(22px) scale(0.96);
    filter: blur(4px);
    pointer-events: none;
    /* Neon glow */
    box-shadow:
        0 0 20px rgba(200, 241, 53, 0.55),
        0 0 50px rgba(200, 241, 53, 0.25),
        0 0 100px rgba(200, 241, 53, 0.1);
}

/* Active chip: fully visible, no blur */
.hero-chip-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
    pointer-events: auto;
}

/* â”€â”€ NEON SHOCKWAVE RING â”€â”€ */
.hero-chip::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    border: 1.5px solid rgba(200, 241, 53, 0.6);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-chip-active::after,
.hero-chip-enter::after {
    animation: chipShockwave 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

@keyframes chipShockwave {
    0% {
        opacity: 0.8;
        inset: -3px;
        border-color: rgba(200, 241, 53, 0.6);
    }

    50% {
        opacity: 0.2;
        inset: -18px;
        border-color: rgba(200, 241, 53, 0.3);
    }

    100% {
        opacity: 0;
        inset: -30px;
        border-color: rgba(200, 241, 53, 0);
    }
}

.hero-chip-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.hero-chip-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 30px);
    color: #0a0a0a;
    letter-spacing: -0.01em;
    line-height: 1;
}

/* â”€â”€ APPLE-STYLE CHIP TRANSITIONS â”€â”€ */
/* Exit: fade out + slight upward drift + micro-blur */
@keyframes chipFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.97);
        filter: blur(3px);
    }
}

/* Enter: fade in + rise from below + deblur + slight scale up */
@keyframes chipFadeIn {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
        filter: blur(4px);
    }

    40% {
        filter: blur(1px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.hero-chip-exit {
    animation: chipFadeOut 0.45s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.hero-chip-enter {
    animation: chipFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* â”€â”€ ENTRANCE ANIMATION FOR HERO TITLE â”€â”€ */
@keyframes heroTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
        filter: blur(8px);
    }

    60% {
        filter: blur(1px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.hero-title-line1 {
    opacity: 0;
    animation: heroTitleFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-carousel-wrapper {
    opacity: 0;
    animation: heroTitleFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 900px;
    line-height: 1.5;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

/* Desktop visible, mobile hidden */
.hero-subtitle-desktop {
    display: block;
}

.hero-subtitle-mobile {
    display: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 52px;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.btn-primary {
    background: rgba(200, 241, 53, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--black);
    border-color: rgba(200, 241, 53, 0.4);
}

.btn-primary:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.4);
    border-color: rgba(200, 241, 53, 0.6);
    animation: btnShockwave 0.6s ease-out forwards;
}

.btn-primary:active {
    transform: scale(1.02);
    box-shadow: none;
}

.btn-outline {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1.5px solid rgba(200, 241, 53, 0.2);
}

.btn-outline:hover {
    border-color: rgba(200, 241, 53, 0.5);
    background: rgba(200, 241, 53, 0.08);
    color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.3);
    animation: btnShockwave 0.6s ease-out forwards;
}

.btn-outline:active {
    transform: scale(1.02);
}

/* â”€â”€ Boutons hero â€” mÃªme zoom + shockwave que les autres â”€â”€ */
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-outline:hover {
    transform: scale(1.05);
    animation: btnShockwave 0.6s ease-out forwards;
}

.hero-buttons .btn-primary:active,
.hero-buttons .btn-outline:active {
    transform: scale(1.02);
    box-shadow: none;
    animation: none;
}

/* Boutons dans les sections claires */
.services .btn-primary,
.offers .btn-primary,
.faq .btn-primary,
.testimonials .btn-primary {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent);
    border-color: rgba(10, 10, 10, 0.15);
}

.services .btn-primary:hover,
.offers .btn-primary:hover,
.faq .btn-primary:hover,
.testimonials .btn-primary:hover {
    background: var(--black);
    box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.3);
    border-color: rgba(200, 241, 53, 0.3);
    transform: scale(1.05);
    animation: btnShockwaveDark 0.6s ease-out forwards;
}

.services .btn-outline,
.offers .btn-outline,
.faq .btn-outline,
.testimonials .btn-outline {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--black);
    border-color: rgba(10, 10, 10, 0.1);
}

.services .btn-outline:hover,
.offers .btn-outline:hover,
.faq .btn-outline:hover,
.testimonials .btn-outline:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(200, 241, 53, 0.4);
    color: var(--black);
    box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.2);
    transform: scale(1.05);
    animation: btnShockwaveDark 0.6s ease-out forwards;
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS BAND
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-band {
    position: relative;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROBLEM SECTION (Storytelling)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.problem {
    background: #0c0c0c;
    position: relative;
    overflow: hidden;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-year {
    color: var(--accent);
}

.problem-intro {
    font-size: 23px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 1050px;
    margin: 0 auto 24px;
    text-align: center;
}

.problem-intro-2 {
    margin-bottom: 56px;
}

.problem-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 20px;
}

.problem-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: grab;
    user-select: none;
}

.problem-carousel-track:active {
    cursor: grabbing;
}

.problem-card {
    flex: 0 0 88%;
    max-width: 88%;
    display: flex;
    align-items: center;
    gap: 48px;
    background: #C8F135;
    border-radius: 18px;
    padding: 64px 56px 56px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.problem-card:hover {
    box-shadow: 0 20px 60px rgba(200, 241, 53, 0.15);
}

.problem-card-badge {
    position: absolute;
    top: 20px;
    left: 24px;
    background: rgba(10, 10, 10, 0.82);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.problem-card-content {
    flex: 1;
    min-width: 0;
}

.problem-card-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.problem-card-text {
    font-size: clamp(17px, 1.6vw, 20px);
    color: #0a0a0a;
    line-height: 1.65;
    opacity: 0.75;
}

.problem-card-visual {
    flex: 0 0 304px;
    width: 304px;
    height: 304px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-svg {
    width: 100%;
    height: 100%;
}

/* ── SVG 404 Premium Animations ── */
.svg-404-premium {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

@keyframes float-complex {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(0.5deg); }
    66% { transform: translateY(5px) rotate(-0.5deg); }
}
@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes orbit-spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
@keyframes laser-sweep {
    0% { transform: translateX(-100px); opacity: 0; }
    10% { opacity: 1; }
    45% { transform: translateX(350px); opacity: 1; }
    55% { transform: translateX(350px); opacity: 0; }
    100% { transform: translateX(-100px); opacity: 0; }
}
@keyframes data-flow {
    from { stroke-dashoffset: 40; }
    to { stroke-dashoffset: 0; }
}
@keyframes tech-glitch {
    0%, 96%, 100% { opacity: 1; transform: translateX(0); }
    97% { opacity: 0.3; transform: translateX(-2px); }
    98% { opacity: 0.8; transform: translateX(2px); }
    99% { opacity: 0.5; transform: translateX(0); }
}
@keyframes drone-search {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(60px, -40px); }
    40% { transform: translate(120px, 20px); }
    60% { transform: translate(-30px, 50px); }
    80% { transform: translate(-50px, -20px); }
}
@keyframes particle-drift {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

.prm-float { animation: float-complex 8s ease-in-out infinite; transform-origin: center; }
.prm-orbit-1 { animation: orbit-spin 20s linear infinite; transform-origin: center; }
.prm-orbit-2 { animation: orbit-spin-reverse 15s linear infinite; transform-origin: center; }
.prm-orbit-3 { animation: orbit-spin 30s linear infinite; transform-origin: center; }
.prm-laser { animation: laser-sweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.prm-data-line { animation: data-flow 1.5s linear infinite; }
.prm-glitch { animation: tech-glitch 5s infinite; }
.prm-drone-group { animation: drone-search 12s cubic-bezier(0.25, 0.1, 0.25, 1) infinite; }
.prm-drone-spin { animation: orbit-spin 4s linear infinite; transform-origin: center; }
.prm-particle-1 { animation: particle-drift 6s ease-in-out infinite; }
.prm-particle-2 { animation: particle-drift 7s ease-in-out infinite 1s; }
.prm-particle-3 { animation: particle-drift 5s ease-in-out infinite 2s; }

/* ── SVG Conversion Premium Animations (Card 2) ── */
.svg-conversion-premium {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Lévitation + tremblement au crash */
@keyframes prm2-story-hud {
    0%, 14% { transform: translateY(0) rotate(0deg); }
    15%, 17% { transform: translateY(2px) rotate(-0.5deg); }
    18%, 20% { transform: translateY(-2px) rotate(0.5deg); }
    21%, 100% { transform: translateY(0) rotate(0deg); }
}

/* Jauge radiale crash */
@keyframes prm2-story-gauge {
    0%, 15% { stroke-dashoffset: 80; }
    16%, 20% { stroke-dashoffset: 120; }
    25%, 90% { stroke-dashoffset: 260; }
    95%, 100% { stroke-dashoffset: 80; }
}

@keyframes prm2-story-needle {
    0%, 15% { transform: rotate(-10deg); }
    16%, 20% { transform: rotate(-45deg); }
    25%, 90% { transform: rotate(-120deg); }
    95%, 100% { transform: rotate(-10deg); }
}

/* Barres en cascade */
@keyframes prm2-story-bar1 { 0%, 15% { transform: scaleY(1); } 20%, 90% { transform: scaleY(0.05); } 95%, 100% { transform: scaleY(1); } }
@keyframes prm2-story-bar2 { 0%, 17% { transform: scaleY(1); } 22%, 90% { transform: scaleY(0.05); } 95%, 100% { transform: scaleY(1); } }
@keyframes prm2-story-bar3 { 0%, 19% { transform: scaleY(1); } 24%, 90% { transform: scaleY(0.05); } 95%, 100% { transform: scaleY(1); } }
@keyframes prm2-story-bar4 { 0%, 21% { transform: scaleY(1); } 26%, 90% { transform: scaleY(0.05); } 95%, 100% { transform: scaleY(1); } }

/* Flatline */
@keyframes prm2-story-flatline {
    0%, 15% { stroke-dashoffset: 300; opacity: 1; }
    30%, 85% { stroke-dashoffset: 0; opacity: 1; }
    90%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Curseur utilisateur */
@keyframes prm2-story-cursor {
    0%, 5% { transform: translate(450px, 350px); opacity: 0; }
    10% { opacity: 1; transform: translate(400px, 250px); }
    15%, 25% { transform: translate(150px, 200px); }
    30%, 35% { transform: translate(250px, 250px); }
    45%, 50% { transform: translate(350px, 125px); }
    55% { transform: translate(350px, 125px) scale(0.9); }
    58% { transform: translate(350px, 125px) scale(1); }
    70%, 100% { transform: translate(500px, 350px); opacity: 0; }
}

/* Bouton fuyant */
@keyframes prm2-story-button {
    0%, 46% { opacity: 1; transform: translate(0, 0); }
    47% { opacity: 0.3; transform: translate(-4px, 2px); }
    49% { opacity: 0.8; transform: translate(4px, -2px); }
    51% { opacity: 0.1; transform: translate(-2px, 1px) scale(0.95); }
    52%, 92% { opacity: 0; transform: translate(0, 0) scale(0.8); }
    95%, 100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* Erreur 404 */
@keyframes prm2-story-error {
    0%, 54% { opacity: 0; transform: scale(0.5); }
    55% { opacity: 1; transform: scale(0.8); }
    60% { opacity: 0.9; transform: scale(1.2); }
    70%, 100% { opacity: 0; transform: scale(1.5); }
}

/* Textes dynamiques */
@keyframes prm2-status-ok { 0%, 14% { opacity: 1; } 15%, 100% { opacity: 0; } }
@keyframes prm2-status-crit {
    0%, 14% { opacity: 0; }
    15%, 16% { opacity: 1; } 17%, 18% { opacity: 0; }
    19%, 90% { opacity: 1; }
    95%, 100% { opacity: 0; }
}
@keyframes prm2-metric-drop {
    0%, 14% { opacity: 0; transform: translateY(-5px); }
    15%, 90% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; }
}

/* Rotations arrière-plan */
@keyframes prm2-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes prm2-spin-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

/* Classes d'application */
.prm2-float { animation: prm2-story-hud 12s infinite; transform-origin: center; }
.prm2-orbit-1 { animation: prm2-spin 60s linear infinite; transform-origin: center; }
.prm2-orbit-2 { animation: prm2-spin-reverse 40s linear infinite; transform-origin: center; }
.prm2-orbit-3 { animation: prm2-spin 25s cubic-bezier(0.4, 0, 0.2, 1) infinite; transform-origin: center; }

.prm2-gauge-arc { stroke-dasharray: 280; animation: prm2-story-gauge 12s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.prm2-needle { animation: prm2-story-needle 12s cubic-bezier(0.4, 0, 0.2, 1) infinite; transform-origin: 150px 165px; }

.prm2-bar-1 { animation: prm2-story-bar1 12s cubic-bezier(0.8, 0, 0.2, 1) infinite; transform-origin: bottom; }
.prm2-bar-2 { animation: prm2-story-bar2 12s cubic-bezier(0.8, 0, 0.2, 1) infinite; transform-origin: bottom; }
.prm2-bar-3 { animation: prm2-story-bar3 12s cubic-bezier(0.8, 0, 0.2, 1) infinite; transform-origin: bottom; }
.prm2-bar-4 { animation: prm2-story-bar4 12s cubic-bezier(0.8, 0, 0.2, 1) infinite; transform-origin: bottom; }

.prm2-flatline { stroke-dasharray: 300; stroke-dashoffset: 300; animation: prm2-story-flatline 12s ease-out infinite; }

.prm2-cursor { animation: prm2-story-cursor 12s cubic-bezier(0.25, 1, 0.5, 1) infinite; }
.prm2-btn-contact { animation: prm2-story-button 12s infinite; }
.prm2-error-ring { animation: prm2-story-error 12s ease-out infinite; transform-origin: center; }

.prm2-txt-ok { animation: prm2-status-ok 12s infinite; }
.prm2-txt-crit { animation: prm2-status-crit 12s infinite; }
.prm2-txt-drop { animation: prm2-metric-drop 12s infinite; }

/* ── SVG Social Premium Animations (Card 3) ── */
.svg-social-premium {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

@keyframes prm3-story-phone-float {
    0%, 14% { transform: translateY(0) rotate(0deg); }
    35%, 38% { transform: translateY(-4px) rotate(-1deg); }
    40%, 85% { transform: translateY(5px) rotate(0.5deg); }
    90%, 100% { transform: translateY(0) rotate(0deg); }
}

@keyframes prm3-story-heart-beat {
    0%, 10% { transform: scale(1); opacity: 0; }
    12%, 34% { transform: scale(1); opacity: 1; }
    15%, 25% { transform: scale(1.15); }
    35% { transform: scale(0.9) translateY(0); opacity: 1; }
    40%, 100% { transform: scale(0.5) translateY(40px); opacity: 0; }
}

@keyframes prm3-story-algo-eye {
    0%, 30% { transform: scale(1) rotate(0deg); stroke: #111111; stroke-opacity: 0.3; }
    35%, 85% { transform: scale(1.2) rotate(45deg); stroke: #111111; stroke-opacity: 1; }
    95%, 100% { transform: scale(1) rotate(90deg); stroke: #111111; stroke-opacity: 0.3; }
}

@keyframes prm3-story-jail-beam {
    0%, 36% { stroke-dashoffset: 400; opacity: 0; }
    37% { opacity: 1; }
    45%, 85% { stroke-dashoffset: 0; opacity: 1; }
    90%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes prm3-story-screen-glitch {
    0%, 38% { opacity: 0; }
    39% { opacity: 0.8; transform: translateX(-2px); }
    40% { opacity: 0.4; transform: translateX(2px); }
    41%, 85% { opacity: 0.95; transform: translateX(0); }
    90%, 100% { opacity: 0; }
}

@keyframes prm3-story-stats-good {
    0%, 35% { opacity: 1; transform: translateY(0); }
    38%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes prm3-story-stats-bad {
    0%, 37% { opacity: 0; transform: translateY(10px); }
    40%, 85% { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; transform: translateY(0); }
}

@keyframes prm3-story-connection-lines {
    0%, 36% { stroke-dasharray: 4 4; opacity: 0.6; }
    37%, 85% { stroke-dasharray: 1 10; opacity: 0.1; }
    90%, 100% { stroke-dasharray: 4 4; opacity: 0.6; }
}

@keyframes prm3-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes prm3-spin-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.prm3-phone-grp { animation: prm3-story-phone-float 12s cubic-bezier(0.25, 1, 0.5, 1) infinite; transform-origin: center; }
.prm3-heart { animation: prm3-story-heart-beat 12s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; transform-origin: center; }
.prm3-algo-core { animation: prm3-story-algo-eye 12s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite; transform-origin: center; }
.prm3-jail { stroke-dasharray: 400; stroke-dashoffset: 400; animation: prm3-story-jail-beam 12s ease-out infinite; }
.prm3-glitch-overlay { animation: prm3-story-screen-glitch 12s infinite; }
.prm3-stat-up { animation: prm3-story-stats-good 12s infinite; }
.prm3-stat-down { animation: prm3-story-stats-bad 12s infinite; }
.prm3-connect { animation: prm3-story-connection-lines 12s infinite; }
.prm3-orbit-slow { animation: prm3-spin 50s linear infinite; transform-origin: center; }
.prm3-orbit-fast { animation: prm3-spin-reverse 35s linear infinite; transform-origin: center; }

/* ── SVG Valeur Premium — Card 4 ── */
.svg-valeur-premium { width: 100%; height: 100%; }

@keyframes prm4-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes prm4-scanner-sweep {
  0% { transform: translateY(-60px); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(60px); opacity: 1; }
  60% { opacity: 0; }
  100% { transform: translateY(-60px); opacity: 0; }
}
@keyframes prm4-state-bad {
  0%, 40% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes prm4-draw-lines {
  0%, 40% { stroke-dashoffset: 600; opacity: 0; }
  45% { opacity: 1; }
  70% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes prm4-fill-glow {
  0%, 65% { opacity: 0; filter: brightness(1); }
  80% { opacity: 1; filter: brightness(1.3); }
  100% { opacity: 1; filter: brightness(1); }
}
@keyframes prm4-prestige-pop {
  0%, 75% { transform: scale(0); opacity: 0; }
  85% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes prm4-spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes prm4-spin-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.prm4-grp-float { animation: prm4-float 8s ease-in-out infinite; transform-origin: center; }
.prm4-scan-line { animation: prm4-scanner-sweep 8s ease-in-out infinite; transform-origin: center; }
.prm4-diamond-bad { animation: prm4-state-bad 8s ease-in-out infinite; }
.prm4-diamond-lines { stroke-dasharray: 600; stroke-dashoffset: 600; animation: prm4-draw-lines 8s ease-in-out infinite; }
.prm4-diamond-fill { animation: prm4-fill-glow 8s ease-in-out infinite; }
.prm4-prestige { animation: prm4-prestige-pop 8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; transform-origin: center; }
.prm4-star { animation: prm4-prestige-pop 8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; transform-origin: center; }
.prm4-bg-spin-1 { animation: prm4-spin-slow 50s linear infinite; transform-origin: center; }
.prm4-bg-spin-2 { animation: prm4-spin-reverse 35s linear infinite; transform-origin: center; }

/* â”€â”€ SVG ANIMATIONS (Apple-style: slow, organic, elegant) â”€â”€ */
@keyframes svgBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes svgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes svgDrift {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(3px) translateY(-2px);
    }

    75% {
        transform: translateX(-3px) translateY(2px);
    }
}

@keyframes svgFadePulse {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes svgOrbit {
    0% {
        transform: rotate(0deg) translateX(4px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(4px) rotate(-360deg);
    }
}

@keyframes svgDraw {
    0% {
        stroke-dashoffset: 300;
        opacity: 0.3;
    }

    40% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes svgPulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes svgGentleSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes svgShimmer {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.svg-breathe {
    animation: svgBreathe 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: center;
}

.svg-float {
    animation: svgFloat 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.svg-drift {
    animation: svgDrift 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.svg-fade-pulse {
    animation: svgFadePulse 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.svg-orbit {
    animation: svgOrbit 20s linear infinite;
    transform-origin: center;
}

.svg-draw {
    stroke-dasharray: 300;
    animation: svgDraw 3s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

.svg-pulse-ring {
    animation: svgPulseRing 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: center;
}

.svg-gentle-spin {
    animation: svgGentleSpin 25s linear infinite;
    transform-origin: center;
}

.svg-shimmer {
    animation: svgShimmer 3.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* Legacy class mappings */
.svg-pulse {
    animation: svgBreathe 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: center;
}

.svg-blink {
    animation: svgShimmer 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.svg-spin {
    animation: svgGentleSpin 25s linear infinite;
    transform-origin: center;
}

.svg-dash {
    stroke-dasharray: 300;
    animation: svgDraw 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.svg-grow {
    animation: svgBreathe 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: bottom;
}

/* â”€â”€ CAROUSEL CONTROLS â”€â”€ */
.problem-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.problem-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(4px);
}

.problem-arrow:hover {
    border-color: var(--accent);
    background: rgba(200, 241, 53, 0.1);
    color: var(--accent);
    transform: scale(1.08);
}

.problem-arrow:active {
    transform: scale(0.95);
}

.problem-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-carousel-nav {
    display: flex;
    gap: 10px;
}

.problem-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.problem-dot:hover {
    background: rgba(200, 241, 53, 0.4);
}

.problem-dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(200, 241, 53, 0.4);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LED DOT-MATRIX BAND
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dotmatrix-band {
    width: 100%;
    background: #000000;
    margin: 40px 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.dotmatrix-band canvas {
    display: block;
    width: 100%;
    height: 216px;
    cursor: grab;
    touch-action: pan-y;
}
.dotmatrix-band canvas:active {
    cursor: grabbing;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES (AperÃ§u)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
    background: var(--gray-100);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-title,
.service-text,
.service-link,
.service-icon {
    transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
    transition: background 0.35s ease, border-color 0.35s ease,
        box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-title {
    color: var(--accent);
    transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.service-card:hover .service-text {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s;
}

.service-card:hover .service-link {
    color: var(--accent);
    transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.service-card:hover .service-icon {
    background: rgba(200, 241, 53, 0.15);
    color: var(--accent);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.03s;
}


.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 241, 53, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--accent-dark);
}

.service-icon svg {
    flex-shrink: 0;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.service-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-dark);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 6px 0;
}

.service-link:hover {
    gap: 10px;
    transform: scale(1.05);
}

.service-link:active {
    transform: scale(1.02);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY US
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-us {
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(80px);
}

/* ─── Heading ─── */
.why-heading {
    text-align: center;
    margin-bottom: 72px;
}

.why-main-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* ─── Bloc argument (alternance image/texte) ─── */
.why-block {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 80px;
}

.why-block:last-of-type {
    margin-bottom: 0;
}

/* Direction : image gauche / texte droite */
.why-block--left {
    flex-direction: row;
}

/* Direction : texte gauche / image droite */
.why-block--right {
    flex-direction: row;
}

/* ─── Partie visuelle (image + num) ─── */
.why-block__visual {
    position: relative;
    flex: 0 0 52%;
    max-width: 52%;
}

.why-block__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.why-block:hover .why-block__img {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.why-block__num {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(200, 241, 53, 0.3);
}

/* ─── Partie texte ─── */
.why-block__content {
    flex: 1;
}

.why-block__title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-block__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 12px;
}

.why-block__text:last-child {
    margin-bottom: 0;
}

/* ─── Responsive tablette ─── */
@media (max-width: 900px) {
    .why-block {
        gap: 36px;
        margin-bottom: 60px;
    }

    .why-block__visual {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .why-block__num {
        width: 44px;
        height: 44px;
        font-size: 17px;
        top: -12px;
        left: -12px;
        border-radius: 12px;
    }
}

/* ─── Responsive mobile ─── */
@media (max-width: 768px) {
    .why-heading {
        margin-bottom: 48px;
    }

    .why-block,
    .why-block--left,
    .why-block--right {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 52px;
    }

    .why-block__visual {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    /* Sur mobile : image toujours en premier */
    .why-block--right .why-block__visual {
        order: -1;
    }

    .why-block--right .why-block__content {
        order: 1;
    }

    .why-block__img {
        border-radius: 16px;
    }

    .why-block__num {
        width: 40px;
        height: 40px;
        font-size: 15px;
        top: -10px;
        left: -6px;
        border-radius: 10px;
    }

    .why-block__title {
        font-size: 20px;
    }

    .why-block__text {
        font-size: 14px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OFFRES DÃ‰TAILLÃ‰ES (Redesigned)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.offers {
    background: linear-gradient(170deg, #0E0E0E 0%, #141414 45%, #0F1209 100%);
    position: relative;
    overflow: hidden;
}

.offers::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.offers::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.offers-intro {
    text-align: center;
    margin-bottom: 50px;
}

.offers-intro-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-600);
    font-style: italic;
}

.offers-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.offer-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 30%, rgba(200, 241, 53, 0.3) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    background: var(--black);
    border-color: rgba(200, 241, 53, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.offer-card:hover .offer-name {
    color: var(--accent);
}

.offer-card:hover .offer-tagline {
    color: rgba(255, 255, 255, 0.55);
}

.offer-card:hover .offer-price {
    color: var(--accent);
}

.offer-card:hover .offer-price-note {
    color: rgba(255, 255, 255, 0.35);
}

.offer-card:hover .offer-maintenance {
    background: rgba(200, 241, 53, 0.15);
    color: var(--accent);
}

.offer-card:hover .offer-divider {
    background: rgba(255, 255, 255, 0.08);
}

.offer-card:hover .offer-col-title {
    color: rgba(255, 255, 255, 0.3);
}

.offer-card:hover .offer-list li {
    color: rgba(255, 255, 255, 0.7);
}

.offer-card:hover .offer-list li::before {
    background: rgba(200, 241, 53, 0.2);
    color: var(--accent);
}

.offer-card:hover .offer-badge {
    background: rgba(200, 241, 53, 0.15);
    color: var(--accent);
}

.offer-card:hover .offer-cta-btn-old-override {
    /* removed - now handled in offer-cta-btn block */
}

/* â”€â”€ MOBILE AUTO DARK MODE â€” offres visibles au scroll â”€â”€ */
@media (max-width: 768px) {
    .offer-card.offer-in-view {
        background: var(--black);
        border-color: rgba(200, 241, 53, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .offer-card.offer-in-view .offer-name {
        color: var(--accent);
    }

    .offer-card.offer-in-view .offer-tagline {
        color: rgba(255, 255, 255, 0.55);
    }

    .offer-card.offer-in-view .offer-price {
        color: var(--accent);
    }

    .offer-card.offer-in-view .offer-price-note {
        color: rgba(255, 255, 255, 0.35);
    }

    .offer-card.offer-in-view .offer-maintenance {
        background: rgba(200, 241, 53, 0.15);
        color: var(--accent);
    }

    .offer-card.offer-in-view .offer-divider {
        background: rgba(255, 255, 255, 0.08);
    }

    .offer-card.offer-in-view .offer-col-title {
        color: rgba(255, 255, 255, 0.3);
    }

    .offer-card.offer-in-view .offer-list li {
        color: rgba(255, 255, 255, 0.7);
    }

    .offer-card.offer-in-view .offer-list li::before {
        background: rgba(200, 241, 53, 0.2);
        color: var(--accent);
    }

    .offer-card.offer-in-view .offer-badge {
        background: rgba(200, 241, 53, 0.15);
        color: var(--accent);
    }

    .offer-card.offer-in-view .offer-cta-btn {
        background: var(--accent);
        color: var(--black);
        border-color: rgba(200, 241, 53, 0.4);
        box-shadow: 0 6px 20px rgba(200, 241, 53, 0.25);
    }
}

/* Featured card (Offer 3) â€” subtle accent glow */
.offer-card.offer-featured {
    border-color: rgba(200, 241, 53, 0.2);
    box-shadow: 0 4px 24px rgba(200, 241, 53, 0.06);
}

.offer-card.offer-featured::before {
    opacity: 0.4;
}

/* Child elements smooth transitions */
.offer-name,
.offer-tagline,
.offer-price,
.offer-price-note,
.offer-maintenance,
.offer-divider,
.offer-col-title,
.offer-list li,
.offer-list li::before,
.offer-badge,
.offer-cta-btn {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-top {
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-top>div:first-child {
    flex: 1;
    min-width: 0;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.offer-badge.basic {
    background: #f0f0ec;
    color: var(--gray-600);
}

.offer-badge.perf {
    background: #eef7ff;
    color: #2259c4;
}

.offer-badge.intel {
    background: rgba(200, 241, 53, 0.15);
    color: #5a7000;
}



.offer-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.2;
}



.offer-tagline {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}



.offer-price-block {
    flex-shrink: 0;
    padding: 0 24px 16px;
}

.offer-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}



.offer-price-note {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 4px;
    line-height: 1.4;
}



.offer-maintenance {
    margin-top: 8px;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 20px;
}



.offer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 0 24px;
}



.offer-bottom {
    padding: 18px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.offer-col-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 10px;
}



.offer-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-800);
    line-height: 1.5;
}



.offer-list li::before {
    content: '\2713';
    width: 17px;
    height: 17px;
    background: #edf9c8;
    color: #5a7000;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}



.offer-cible {
    display: none;
}

.offer-cta-row {
    padding: 0 24px 24px;
    margin-top: auto;
}

.offer-cta-btn {
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent);
    border: 1.5px solid rgba(10, 10, 10, 0.15);
}

.offer-cta-btn:hover {
    background: var(--black);
    box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.3);
    border-color: rgba(200, 241, 53, 0.3);
    transform: scale(1.05);
    animation: btnShockwave 0.6s ease-out forwards;
}

.offer-card:hover .offer-cta-btn {
    background: var(--accent);
    color: var(--black);
    border-color: rgba(200, 241, 53, 0.4);
    transform: none;
    box-shadow: 0 6px 20px rgba(200, 241, 53, 0.25);
}


/* ———————————————————————————————————————————
   COMPARISON TABLE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.comparison {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    padding: 28px 32px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    font-size: 13.5px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    background: var(--gray-100);
    font-size: 13px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--gray-800);
}

.comparison-table td:first-child {
    font-size: 13px;
}

.check-yes {
    color: #4a9900;
    font-weight: 700;
    font-size: 16px;
}

.check-no {
    color: var(--gray-400);
    font-size: 16px;
}

.comparison-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PORTFOLIO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.portfolio {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background: var(--black);
}

/* ── Portfolio background: glows + animated grid ── */
.portfolio-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating glow orbs — accent tones, different placement than hero */
.portfolio-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0;
    animation: portfolioGlow 14s ease-in-out infinite;
}

.portfolio-glow-1 {
    width: 550px;
    height: 550px;
    background: var(--accent);
    bottom: -8%;
    right: -5%;
    opacity: 0.18;
    animation-delay: 0s;
}

.portfolio-glow-2 {
    width: 450px;
    height: 450px;
    background: var(--accent);
    top: 2%;
    left: -8%;
    opacity: 0.13;
    animation-delay: -5s;
}

.portfolio-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 45%;
    left: 50%;
    opacity: 0.10;
    animation-delay: -9s;
}

@keyframes portfolioGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: var(--glow-base, 0.1);
    }
    33% {
        transform: translate(20px, -15px) scale(1.08);
        opacity: calc(var(--glow-base, 0.1) * 1.4);
    }
    66% {
        transform: translate(-15px, 10px) scale(0.95);
        opacity: calc(var(--glow-base, 0.1) * 0.7);
    }
}

.portfolio-glow-1 { --glow-base: 0.18; }
.portfolio-glow-2 { --glow-base: 0.13; }
.portfolio-glow-3 { --glow-base: 0.10; }

/* Hexagonal / diamond grid overlay — different pattern than hero */
.portfolio-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        /* Primary grid lines */
        linear-gradient(rgba(200, 241, 53, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 241, 53, 0.08) 1px, transparent 1px),
        /* Diagonal cross-hatch for depth & texture */
        linear-gradient(45deg, rgba(200, 241, 53, 0.03) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(200, 241, 53, 0.03) 1px, transparent 1px);
    background-size:
        50px 50px,
        50px 50px,
        35px 35px,
        35px 35px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black 20%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Ensure portfolio content sits above the background */
.portfolio > .section-decor,
.portfolio > .container {
    position: relative;
    z-index: 1;
}

/* ── Mention discrète ── */
.portfolio-mention {
    font-size: 13px;
    color: rgba(200, 241, 53, 0.7);
    line-height: 1.7;
    max-width: 580px;
    margin: 12px auto 0;
    text-align: center;
    font-style: italic;
}

/* ── Horizontal Slider ── */
.portfolio-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 24px 0 30px;
}

.portfolio-track {
    display: flex;
    gap: 28px;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: grab;
    user-select: none;
}

.portfolio-track:active {
    cursor: grabbing;
}

/* ── Card Base ── */
.portfolio-card {
    flex: 0 0 520px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition:
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.portfolio-card:hover {
    border-color: rgba(200, 241, 53, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 8px 24px rgba(200, 241, 53, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(200, 241, 53, 0.08);
}

/* ── Card Image ── */
.portfolio-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.08), rgba(59, 130, 246, 0.05));
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.7));
    pointer-events: none;
    z-index: 1;
}

/* ── Card Body ── */
.portfolio-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Badges ── */
.portfolio-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid transparent;
    white-space: nowrap;
}

.portfolio-badge-type {
    background: rgba(200, 241, 53, 0.1);
    color: var(--accent);
    border-color: rgba(200, 241, 53, 0.2);
}

.portfolio-badge-delivered {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

.portfolio-badge-demo {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

/* ── Card Content ── */
.portfolio-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.portfolio-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* ── Premium Link Button ── */
.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(200, 241, 53, 0.08);
    border: 1px solid rgba(200, 241, 53, 0.18);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-self: flex-start;
}

.portfolio-link:hover {
    background: rgba(200, 241, 53, 0.15);
    border-color: rgba(200, 241, 53, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 241, 53, 0.12);
}

.portfolio-link:active {
    transform: translateY(0) scale(0.98);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translate(3px, -3px);
}

/* ── Navigation Controls ── */
.portfolio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.portfolio-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    padding: 0;
}

.portfolio-arrow:hover {
    border-color: rgba(200, 241, 53, 0.4);
    background: rgba(200, 241, 53, 0.08);
    color: var(--accent);
    transform: scale(1.08);
}

.portfolio-arrow:active {
    transform: scale(0.95);
}

.portfolio-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.portfolio-dots-nav {
    display: flex;
    gap: 10px;
}

.portfolio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.portfolio-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.portfolio-dot.active {
    background: #C8F135;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(200, 241, 53, 0.5);
}

/* ── CTA Button ── */
.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(200, 241, 53, 0.25);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.portfolio-cta-label {
    font-weight: 400;
    opacity: 0.7;
    font-size: 14px;
}

.portfolio-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #C8F135;
    font-size: 15px;
    padding-left: 16px;
    border-left: 1px solid rgba(200, 241, 53, 0.25);
}

.portfolio-cta-action svg {
    transition: transform 0.3s ease;
}

.portfolio-cta-btn:hover {
    background: #C8F135;
    color: #0A0A0A;
    border-color: #C8F135;
    transform: translateY(-3px);
    box-shadow:
        0 4px 12px rgba(200, 241, 53, 0.2),
        0 12px 32px rgba(200, 241, 53, 0.15);
}

.portfolio-cta-btn:hover .portfolio-cta-label {
    opacity: 1;
    color: #0A0A0A;
}

.portfolio-cta-btn:hover .portfolio-cta-action {
    color: #0A0A0A;
    border-left-color: rgba(10, 10, 10, 0.2);
}

.portfolio-cta-btn:hover .portfolio-cta-action svg {
    transform: translate(3px, -3px);
}

/* ── Portfolio Responsive ── */

/* Tablet & below — shared mobile rules */
@media (max-width: 768px) {
    .portfolio {
        padding-top: 80px;
    }

    /* Hide decorative dots/lines — they overlap card content on mobile */
    .portfolio .section-decor {
        display: none;
    }

    /* Full-bleed carousel */
    .portfolio .container {
        padding-left: 0;
        padding-right: 0;
    }

    .portfolio .section-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Card takes nearly full width, 16px margin each side */
    .portfolio-card {
        flex: 0 0 calc(100vw - 32px);
        border-radius: 16px;
    }

    .portfolio-track {
        gap: 20px;
        padding-left: 16px;
    }

    .portfolio-slider {
        padding: 20px 0 28px;
    }

    .portfolio-body {
        padding: 22px 22px 20px;
    }

    .portfolio-name {
        font-size: 1.15rem;
    }

    .portfolio-desc {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .portfolio-controls {
        padding: 0 24px;
    }

    .portfolio-cta {
        padding: 0 24px;
    }

    .portfolio-glow-1 {
        width: 350px;
        height: 350px;
    }

    .portfolio-glow-2 {
        width: 280px;
        height: 280px;
    }

    .portfolio-glow-3 {
        width: 180px;
        height: 180px;
    }
}

/* Smartphone — tighter spacing */
@media (max-width: 480px) {
    .portfolio {
        padding-top: 60px;
    }

    .portfolio .section-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .portfolio-card {
        flex: 0 0 calc(100vw - 32px);
        border-radius: 14px;
    }

    .portfolio-track {
        gap: 14px;
        padding-left: 16px;
    }

    .portfolio-slider {
        padding: 16px 0 20px;
    }

    .portfolio-body {
        padding: 16px 16px 14px;
    }

    .portfolio-badges {
        gap: 6px;
        margin-bottom: 10px;
    }

    .portfolio-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .portfolio-name {
        font-size: 1.08rem;
        margin-bottom: 6px;
    }

    .portfolio-desc {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .portfolio-link {
        margin-top: auto;
        padding-top: 10px;
    }

    .portfolio-controls {
        margin-top: 14px;
        padding: 0 16px;
    }

    .portfolio-cta {
        padding: 0 16px;
        margin-top: 24px;
    }

    .portfolio-cta-btn {
        padding: 14px 20px;
        gap: 10px;
        font-size: 13px;
    }

    .portfolio-cta-label {
        font-size: 12px;
    }

    .portfolio-cta-action {
        font-size: 13px;
        padding-left: 10px;
    }

    .portfolio-grid-overlay {
        background-size:
            40px 40px,
            40px 40px,
            28px 28px,
            28px 28px;
    }

    .portfolio-glow-1 {
        width: 250px;
        height: 250px;
        filter: blur(100px);
    }

    .portfolio-glow-2 {
        width: 200px;
        height: 200px;
        filter: blur(100px);
    }

    .portfolio-glow-3 {
        display: none;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials {
    background: var(--gray-100);
}

.testimonials .accent-text {
    background: rgba(10, 10, 10, 0.85);
    color: #C8F135;
    padding: 2px 8px;
    margin-left: 6px;
    border-radius: 6px;
    font-size: 0.92em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid rgba(200, 241, 53, 0.6);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 0 12px rgba(200, 241, 53, 0.1), 0 0 4px rgba(200, 241, 53, 0.08);
    transition: background 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€ HOVER (PC) â€” animation premium fade â”€â”€ */
@media (min-width: 769px) {
    .testimonial-card:hover {
        background: var(--black);
        border-color: rgba(200, 241, 53, 0.8);
        transform: translateY(-6px) scale(1.015);
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(200, 241, 53, 0.15),
            0 0 40px rgba(200, 241, 53, 0.06);
    }

    .testimonial-card:hover .testimonial-quote {
        color: var(--accent);
    }

    .testimonial-card:hover .testimonial-text {
        color: rgba(255, 255, 255, 0.7);
    }

    .testimonial-card:hover .testimonial-avatar {
        background: var(--accent);
        color: var(--black);
        box-shadow: 0 0 25px rgba(200, 241, 53, 0.3);
        transform: scale(1.05);
    }

    .testimonial-card:hover .testimonial-name {
        color: var(--white);
    }

    .testimonial-card:hover .testimonial-role {
        color: rgba(255, 255, 255, 0.45);
    }

    /* Les cartes non-survolées reculent subtilement */
    .testimonials-grid:hover .testimonial-card:not(:hover) {
        opacity: 0.65;
        transform: scale(0.98);
    }
}

/* Transitions fluides et synchronisées — enfants */
.testimonial-quote,
.testimonial-text,
.testimonial-name,
.testimonial-role {
    transition: color 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-avatar {
    transition: background 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Opacité smooth pour l'effet focus sur la grille */
.testimonials-grid .testimonial-card {
    transition: background 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€ MOBILE â€” auto dark au scroll (IntersectionObserver) â”€â”€ */
@media (max-width: 768px) {
    .testimonial-card.testimonial-in-view {
        background: var(--black);
        border-color: rgba(200, 241, 53, 0.8);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(200, 241, 53, 0.15);
    }

    .testimonial-card.testimonial-in-view .testimonial-quote {
        color: var(--accent);
    }

    .testimonial-card.testimonial-in-view .testimonial-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .testimonial-card.testimonial-in-view .testimonial-avatar {
        background: var(--accent);
        color: var(--black);
        box-shadow: 0 0 20px rgba(200, 241, 53, 0.25);
    }

    .testimonial-card.testimonial-in-view .testimonial-name {
        color: var(--white);
    }

    .testimonial-card.testimonial-in-view .testimonial-role {
        color: rgba(255, 255, 255, 0.4);
    }
}

.testimonial-quote {
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-400);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.about-photo:hover .about-photo-img {
    transform: scale(1.03);
}

/* Subtle gradient overlay at bottom for blend */
.about-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.35) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about-content .section-chip {
    margin-bottom: 20px;
}

.about-name {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    text-align: left;
}

.about-role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
}

.about-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about-value {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 16px;
}

.about-value-icon {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-value-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq {
    position: relative;
    background: var(--gray-100);
    overflow: hidden;
}

.faq .accent-text {
    background: rgba(10, 10, 10, 0.85);
    color: #C8F135;
    padding: 3px 10px;
    border-radius: 6px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.faq > .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--black);
    border: 1.5px solid rgba(200, 241, 53, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(200, 241, 53, 0.25);
    box-shadow: 0 4px 24px rgba(200, 241, 53, 0.06);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 30px rgba(200, 241, 53, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    min-height: 60px;
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(200, 241, 53, 0.1);
    border: 1px solid rgba(200, 241, 53, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 26px 24px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    border-top: 1px solid rgba(200, 241, 53, 0.1);
    padding-top: 18px;
    margin: 0 26px;
    padding-left: 0;
    padding-right: 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    padding-top: 20px;
}

.contact-info .section-chip {
    margin-bottom: 20px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 241, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-method:active {
    transform: translateY(0);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 241, 53, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-method-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method-value {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-top: 2px;
}

.contact-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.contact-reassurance-item::before {
    content: 'âœ“';
    color: var(--accent);
    font-weight: 700;
}

/* Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--black);
    color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 14px;
}

/* Honeypot anti-bot : invisible to humans */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Hidden native select */
.form-select-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.1);
}

.custom-select.has-value .custom-select-trigger {
    color: var(--white);
}

.custom-select-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 241, 53, 0.05);
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.custom-select-option:hover {
    background: rgba(200, 241, 53, 0.08);
    color: var(--white);
}

.custom-select-option.selected {
    background: rgba(200, 241, 53, 0.12);
    color: var(--accent);
    font-weight: 600;
}

.custom-select-option svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.custom-select-option:hover svg,
.custom-select-option.selected svg {
    color: var(--accent);
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.visible {
    display: block;
}

.form-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-success-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.form-success-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA FINAL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-final {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.06), transparent 60%);
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-final-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER â€” Modern modular layout
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
    background: #050505;
    border-top: 1px solid rgba(200, 241, 53, 0.08);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

/* ── Footer hero-style background gradients (very subtle) ── */
.footer-bg-gradients {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    animation: heroFloat 10s ease-in-out infinite;
}

.footer-gradient.fg1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -15%;
    right: -10%;
    opacity: 0.15;
    animation-delay: 0s;
}

.footer-gradient.fg2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -20%;
    left: -12%;
    opacity: 0.08;
    animation-delay: -5s;
}

.footer-gradient.fg3 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    top: 40%;
    left: 30%;
    opacity: 0.07;
    animation-delay: -3s;
}

/* Glow ambiant haut du footer */
.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(200, 241, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* â”€â”€ ZONE 1 : Hero footer (marque + CTA) â”€â”€ */
.footer-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-hero-brand {
    flex: 1;
    min-width: 0;
}

.footer-brand-logo {
    margin-bottom: 16px;
}

.logo-footer {
    height: 154px;
    width: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.footer-brand-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 360px;
}

.footer-hero-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-cta-btn {
    font-size: 14px;
    padding: 14px 28px;
}

.footer-cta-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.3px;
}

/* â”€â”€ ZONE 2 : Grille de navigation â”€â”€ */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    opacity: 0.4;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2px 0;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-link-icon svg {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.footer-link-icon:hover svg {
    opacity: 1;
    color: var(--accent);
}

/* â”€â”€ ZONE 3 : Barre basse â”€â”€ */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(200, 241, 53, 0.08);
    border: 1px solid rgba(200, 241, 53, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}

.footer-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: footerDotPulse 2s ease-in-out infinite;
}

@keyframes footerDotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 4px rgba(200, 241, 53, 0);
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.97);
    filter: blur(6px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0px);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.40s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* â”€â”€ UNIFIED BUTTON BEHAVIOR â€” hover/touch identique partout â”€â”€ */
/* Tous les Ã©lÃ©ments interactifs partagent le mÃªme comportement */
.nav-cta,
.offer-cta-btn,
.service-link,
.portfolio-link,
.footer-social {
    position: relative;
    overflow: hidden;
}

/* Touch active state â€” mobile/tablet : lÃ©ger zoom au touchÃ© */
.btn-touch-active {
    transform: scale(1.04) !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: none !important;
}

/* Ripple container sur les boutons */
.btn {
    overflow: hidden;
    position: relative;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 241, 53, 0.15);
    transform: scale(0);
    animation: rippleExpand 0.7s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* Onde de choc lÃ©gÃ¨re â€” sections sombres (vert citron) */
@keyframes btnShockwave {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.35);
    }

    40% {
        box-shadow: 0 0 0 8px rgba(200, 241, 53, 0.12);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(200, 241, 53, 0);
    }
}

/* Onde de choc lÃ©gÃ¨re â€” sections claires (noir) */
@keyframes btnShockwaveDark {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.25);
    }

    40% {
        box-shadow: 0 0 0 8px rgba(10, 10, 10, 0.08);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(10, 10, 10, 0);
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES â€” Glassmorphism Cards (Premium)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Grid Layout â”€â”€ */
.services .accent-text {
    background: rgba(10, 10, 10, 0.85);
    color: #C8F135;
    padding: 3px 10px;
    border-radius: 6px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* â”€â”€ Base Card â€” Premium feature card â”€â”€ */
.service-card {
    position: relative;
    border-radius: 20px;
    padding: 44px 40px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(200, 241, 53, 0.35);
    transition: background 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

/* â”€â”€ Card color variants â”€â”€ */
.service-card-1 {
    background: rgba(200, 241, 53, 0.10);
    border-color: rgba(200, 241, 53, 0.40);
}

.service-card-2 {
    background: rgba(96, 165, 250, 0.08);
    border-color: rgba(96, 165, 250, 0.35);
}

.service-card-3 {
    background: rgba(168, 130, 255, 0.08);
    border-color: rgba(168, 130, 255, 0.35);
}

.service-card-4 {
    background: rgba(250, 180, 80, 0.08);
    border-color: rgba(250, 180, 80, 0.35);
}

/* Card text colors stay default (dark on light bg) */

/* â”€â”€ Hover â€” stronger bg + visible border, NO shadow â”€â”€ */
.service-card-1:hover {
    background: rgba(200, 241, 53, 0.22);
    border-color: rgba(200, 241, 53, 0.50);
    box-shadow: none;
}

.service-card-2:hover {
    background: rgba(96, 165, 250, 0.20);
    border-color: rgba(96, 165, 250, 0.50);
    box-shadow: none;
}

.service-card-3:hover {
    background: rgba(168, 130, 255, 0.20);
    border-color: rgba(168, 130, 255, 0.50);
    box-shadow: none;
}

.service-card-4:hover {
    background: rgba(250, 180, 80, 0.20);
    border-color: rgba(250, 180, 80, 0.50);
    box-shadow: none;
}

/* â”€â”€ Hover â†’ descriptive text turns BLACK â”€â”€ */
.service-card:hover .service-text {
    color: rgba(10, 10, 10, 0.88);
}

/* â”€â”€/* ── Hover → title gets BLACK BAND background ── */
.service-card:hover .service-title {
    background: rgba(10, 10, 10, 0.75);
    color: #C8F135;
    padding: 8px 16px;
    margin: -8px -16px;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

/* Remove hover title effect on expanded cards */
.service-card.expanded:hover .service-title,
.service-card.expanded .service-title {
    background: none;
    color: var(--black);
    padding: 0;
    margin: 0;
}

/* â”€â”€ Card Header â”€â”€ */
.service-card-header {
    margin-bottom: 18px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* â”€â”€ Card Text â€” optimized readability â”€â”€ */
.service-text {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.75);
    flex-grow: 0;
    transition: color 0.35s ease;
    letter-spacing: 0.01em;
}

.service-text-secondary {
    margin-top: 8px;
    color: rgba(10, 10, 10, 0.62);
    font-size: 14.5px;
}

/* â”€â”€/* ── Expand Button (+)  :  Modern dark glass with subtle glow ── */
.service-expand-btn {
    position: relative;
    align-self: flex-start;
    margin-top: auto;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    background: #111;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.service-expand-btn:hover {
    background: #1a1a1a;
}

.service-expand-btn:hover .expand-arrow {
    transform: translateX(4px);
}

.service-expand-btn:active {
    transform: scale(0.97);
}

.expand-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.expand-arrow {
    transition: transform 0.3s ease;
}

/* Hide expand btn when card is expanded */
.service-card.expanded .service-expand-btn {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5) rotate(45deg);
}

/* â”€â”€ Detail Content (hidden by default) â”€â”€ */
.service-detail {
    max-height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        margin-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.expanded .service-detail {
    max-height: none;
    overflow: visible;
    opacity: 1;
    margin-top: 24px;
}

/* â”€â”€/* (Duplicate removed  :  see expanded override block below with !important) */


/* -- Overlay backdrop -- */
.service-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.service-overlay-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* -- Expanded card: centered overlay (desktop/tablet) -- */
.service-card.expanded {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1000 !important;
    width: 94vw !important;
    max-width: 780px !important;
    max-height: 94vh !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    padding: 40px 40px 36px !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3) !important;
    /* Background inherited from card variant */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    /* No transition on position change */
    transition: none !important;
    opacity: 0;
    animation: serviceModalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 241, 53, 0.5) rgba(0, 0, 0, 0.05);
}

/* Webkit custom scrollbar */
.service-card.expanded::-webkit-scrollbar {
    width: 8px;
}

.service-card.expanded::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    margin: 12px 0;
}

.service-card.expanded::-webkit-scrollbar-thumb {
    background: rgba(200, 241, 53, 0.5);
    border-radius: 10px;
}

.service-card.expanded::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 241, 53, 0.75);
}

.service-card.expanded .service-text {
    color: rgba(10, 10, 10, 0.90) !important;
}

.service-card.expanded .service-text-secondary {
    color: rgba(10, 10, 10, 0.78) !important;
}

@keyframes serviceModalIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* -- Closing animation class -- */
.service-card.closing {
    animation: serviceModalOut 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

@keyframes serviceModalOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.92);
    }
}

.service-card-1.expanded {
    border-color: rgba(200, 241, 53, 0.50) !important;
    background: #f4fade !important;
}

.service-card-2.expanded {
    border-color: rgba(96, 165, 250, 0.50) !important;
    background: #edf4fe !important;
}

.service-card-3.expanded {
    border-color: rgba(168, 130, 255, 0.50) !important;
    background: #f1ecfe !important;
}

.service-card-4.expanded {
    border-color: rgba(250, 180, 80, 0.50) !important;
    background: #fef3e2 !important;
}

/* â”€â”€ Detail inner styles â€” optimized readability â”€â”€ */
.service-detail-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(200, 241, 53, 0.15);
    border-left: 4px solid #C8F135;
    border-radius: 0 8px 8px 0;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-detail-list li {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.82);
    padding-left: 32px;
    position: relative;
    transition: transform 0.2s ease, color 0.2s ease;
}

.service-detail-list li:hover {
    transform: translateX(4px);
    color: rgba(10, 10, 10, 0.95);
}

.service-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.25), rgba(200, 241, 53, 0.10));
    border: 1px solid rgba(200, 241, 53, 0.35);
}

.service-detail-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #0A0A0A;
    border-bottom: 2px solid #0A0A0A;
    transform: rotate(-45deg);
}

.service-detail-list li strong {
    color: rgba(10, 10, 10, 0.92);
    font-weight: 700;
}

/* ── Rich list (title + description per item) ── */
.service-detail-list--rich li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 32px;
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-detail-list--rich li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-list--rich li strong {
    font-size: 15px;
    font-weight: 700;
    color: rgba(10, 10, 10, 0.95);
    line-height: 1.4;
}

.service-detail-list--rich li span {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.68);
    font-weight: 400;
}

.service-detail-list--rich li:hover strong {
    color: #0A0A0A;
}

.service-detail-list--rich li:hover span {
    color: rgba(10, 10, 10, 0.82);
}

.service-detail-note {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.68);
    font-style: italic;
    padding: 16px 18px;
    background: rgba(200, 241, 53, 0.08);
    border-left: 4px solid rgba(200, 241, 53, 0.50);
    border-radius: 0 8px 8px 0;
    margin-top: 6px;
}

/* ── Card-specific detail colors ── */
/* Card 2 – Blue */
.service-card-2 .service-detail-title {
    background: rgba(96, 165, 250, 0.15);
    border-left-color: #60A5FA;
}
.service-card-2 .service-detail-list li::before {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(96, 165, 250, 0.10));
    border-color: rgba(96, 165, 250, 0.35);
}
.service-card-2 .service-detail-note {
    background: rgba(96, 165, 250, 0.08);
    border-left-color: rgba(96, 165, 250, 0.50);
}

/* Card 3 – Purple */
.service-card-3 .service-detail-title {
    background: rgba(168, 130, 255, 0.15);
    border-left-color: #A882FF;
}
.service-card-3 .service-detail-list li::before {
    background: linear-gradient(135deg, rgba(168, 130, 255, 0.25), rgba(168, 130, 255, 0.10));
    border-color: rgba(168, 130, 255, 0.35);
}
.service-card-3 .service-detail-note {
    background: rgba(168, 130, 255, 0.08);
    border-left-color: rgba(168, 130, 255, 0.50);
}

/* Card 4 – Orange */
.service-card-4 .service-detail-title {
    background: rgba(250, 180, 80, 0.15);
    border-left-color: #FAB450;
}
.service-card-4 .service-detail-list li::before {
    background: linear-gradient(135deg, rgba(250, 180, 80, 0.25), rgba(250, 180, 80, 0.10));
    border-color: rgba(250, 180, 80, 0.35);
}
.service-card-4 .service-detail-note {
    background: rgba(250, 180, 80, 0.08);
    border-left-color: rgba(250, 180, 80, 0.50);
}

/* â”€â”€/* ── Close Button (X)  :  on CARD level, visible when expanded ── */
.service-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 241, 53, 0.30);
    background: rgba(20, 20, 20, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-card.expanded .service-close-btn {
    display: flex;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1001;
}

.service-close-btn:hover {
    background: rgba(200, 241, 53, 0.85);
    color: #0A0A0A;
    border-color: rgba(200, 241, 53, 0.60);
    transform: rotate(90deg) scale(1.1);
}


/* ═══════════════════════════════════════
   NEW OFFERS : Mini Cards Grid (Dark Theme)
   ═══════════════════════════════════════ */

/* Override section text for dark bg */
.offers .section-heading.dark {
    color: #fff;
}

.offers .section-sub.dark {
    color: rgba(255, 255, 255, 0.50);
}

.offers .accent-text {
    color: #C8F135;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

/* ── Mini Card Base ── */
.offer-mini-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.offer-mini-card:hover {
    border-color: rgba(200, 241, 53, 0.3);
    box-shadow: 0 8px 40px rgba(200, 241, 53, 0.06), 0 2px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* ── Sur Devis Card ── */
.offer-mini-devis {
    border-color: rgba(200, 241, 53, 0.2);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 241, 53, 0.06) 100%);
}

/* ── Header ── */
.offer-mini-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(200, 241, 53, 0.1);
    border: 1px solid rgba(200, 241, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-mini-icon svg {
    width: 22px;
    height: 22px;
}

.offer-mini-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.offer-mini-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 10px;
    border-radius: 20px;
    background: #C8F135;
    color: #0A0A0A;
}

.offer-mini-badge.devis {
    background: rgba(200, 241, 53, 0.12);
    border: 1px solid rgba(200, 241, 53, 0.25);
    color: #C8F135;
}

/* ── Description ── */
.offer-mini-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.50);
    flex: 1;
}

/* ── Pricing ── */
.offer-mini-pricing {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.offer-mini-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.offer-asterisk {
    color: #C8F135;
    font-size: 18px;
    vertical-align: super;
    line-height: 0;
    margin-left: 2px;
}

.offer-mini-maintenance {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.40);
    font-weight: 500;
}

.devis-pricing .offer-mini-price {
    color: #C8F135;
    background: rgba(10, 10, 10, 0.85);
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
}

.devis-pricing .offer-mini-maintenance {
    margin-top: 8px;
    font-style: italic;
}

/* ── CTA Button ── */
.offer-mini-cta {
    text-align: center;
    font-size: 13px;
    padding: 11px 16px;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
}

/* ── Asterisk Disclaimer ── */
.offer-disclaimer {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.offer-asterisk-label {
    color: #C8F135;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 4px;
    background: rgba(10, 10, 10, 0.85);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

/* ── Devis Explainer ── */
.offer-devis-explainer {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px 36px;
    margin-bottom: 40px;
}

.offer-explainer-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}

.offer-explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-explainer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.offer-explainer-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 241, 53, 0.1);
    border: 1px solid rgba(200, 241, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-explainer-icon svg {
    width: 22px;
    height: 22px;
}

.offer-explainer-item p {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.50);
}

.offer-explainer-item p strong {
    color: #C8F135;
    font-weight: 600;
}

/* ── Dual CTA ── */
.offer-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.offer-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    padding: 15px 30px;
}

.offer-cta-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 14px 26px;
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.15);
}

.offer-cta-email:hover {
    border-color: rgba(200, 241, 53, 0.4);
    color: #fff;
    background: rgba(200, 241, 53, 0.08);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .offer-explainer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-devis-explainer {
        padding: 32px 24px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .offer-mini-card {
        padding: 24px 20px;
    }

    .offer-mini-title {
        font-size: 16px;
    }

    .offer-mini-price {
        font-size: 15px;
    }

    .offer-devis-explainer {
        padding: 28px 20px;
    }

    .offer-explainer-title {
        font-size: 19px;
    }

    .offer-cta-section {
        flex-direction: column;
    }

    .offer-cta-main,
    .offer-cta-email {
        width: 100%;
        justify-content: center;
    }
}



/* ═══════════════════════════════════════
   SECTION: TYPES DE SITES : Panoramic Cards
   ═══════════════════════════════════════ */

.site-types {
    background: linear-gradient(180deg, #FAFAFA 0%, #F2F2F0 100%);
    position: relative;
    overflow: hidden;
}

.site-types > .container {
    position: relative;
    z-index: 1;
}

.site-types .section-sub.dark {
    color: rgba(10, 10, 10, 0.55);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.site-types .accent-text {
    background: rgba(10, 10, 10, 0.85);
    color: #C8F135;
    padding: 3px 10px;
    border-radius: 6px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* ── Horizontal Slider ── */
.site-types-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 24px 0 30px;
}

.site-types-track {
    display: flex;
    gap: 28px;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: grab;
    user-select: none;
}

.site-types-track:active {
    cursor: grabbing;
}

/* ── Card Base ── */
.site-type-card {
    flex: 0 0 380px;
    min-height: 240px;
    display: flex;
    align-items: flex-start;
    padding: 40px 36px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #fafaf8 100%);
    border: 1.5px solid rgba(10, 10, 10, 0.06);
    position: relative;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03),
        0 12px 32px rgba(0, 0, 0, 0.02);
    transition:
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Accent Line (top bar) ── */
.site-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg,
            rgba(200, 241, 53, 0.0) 0%,
            rgba(200, 241, 53, 0.6) 50%,
            rgba(200, 241, 53, 0.0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.site-type-card:hover::before {
    opacity: 1;
}

.site-type-card:hover {
    border-color: rgba(200, 241, 53, 0.35);
    transform: translateY(-4px);
    box-shadow:
        0 4px 12px rgba(200, 241, 53, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.04);
}

/* ── Featured Card (Site One-Page) ── */
.site-type-featured {
    background: linear-gradient(145deg,
            rgba(200, 241, 53, 0.08) 0%,
            #ffffff 40%,
            #fafaf8 100%);
    border-color: rgba(200, 241, 53, 0.50);
    box-shadow:
        0 0 0 1px rgba(200, 241, 53, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(200, 241, 53, 0.06),
        0 12px 32px rgba(0, 0, 0, 0.03);
}

.site-type-featured::before {
    opacity: 1;
    background: linear-gradient(90deg,
            rgba(200, 241, 53, 0.1) 0%,
            rgba(200, 241, 53, 0.9) 50%,
            rgba(200, 241, 53, 0.1) 100%);
}

.site-type-featured:hover {
    border-color: rgba(200, 241, 53, 0.70);
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(200, 241, 53, 0.12),
        0 8px 24px rgba(200, 241, 53, 0.12),
        0 20px 48px rgba(0, 0, 0, 0.06);
}

/* ── Pastel Card Colors ── */
/* Card 2: Site Vitrine : soft blue */
.site-type-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.07) 0%, #ffffff 45%, #fafaf8 100%);
    border-color: rgba(59, 130, 246, 0.12);
}

.site-type-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0.5) 50%, rgba(59, 130, 246, 0) 100%);
}

.site-type-card:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08), 0 12px 32px rgba(0, 0, 0, 0.05), 0 24px 48px rgba(0, 0, 0, 0.03);
}

/* Card 3: Landing Page : soft coral */
.site-type-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(251, 113, 133, 0.07) 0%, #ffffff 45%, #fafaf8 100%);
    border-color: rgba(251, 113, 133, 0.12);
}

.site-type-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(251, 113, 133, 0) 0%, rgba(251, 113, 133, 0.5) 50%, rgba(251, 113, 133, 0) 100%);
}

.site-type-card:nth-child(3):hover {
    border-color: rgba(251, 113, 133, 0.3);
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.08), 0 12px 32px rgba(0, 0, 0, 0.05), 0 24px 48px rgba(0, 0, 0, 0.03);
}

/* Card 4: Site E-commerce : soft purple */
.site-type-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.07) 0%, #ffffff 45%, #fafaf8 100%);
    border-color: rgba(168, 85, 247, 0.12);
}

.site-type-card:nth-child(4)::before {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0) 0%, rgba(168, 85, 247, 0.5) 50%, rgba(168, 85, 247, 0) 100%);
}

.site-type-card:nth-child(4):hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.08), 0 12px 32px rgba(0, 0, 0, 0.05), 0 24px 48px rgba(0, 0, 0, 0.03);
}

/* Card 5: Site de Réservation : soft teal */
.site-type-card:nth-child(5) {
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.07) 0%, #ffffff 45%, #fafaf8 100%);
    border-color: rgba(20, 184, 166, 0.12);
}

.site-type-card:nth-child(5)::before {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0) 0%, rgba(20, 184, 166, 0.5) 50%, rgba(20, 184, 166, 0) 100%);
}

.site-type-card:nth-child(5):hover {
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.08), 0 12px 32px rgba(0, 0, 0, 0.05), 0 24px 48px rgba(0, 0, 0, 0.03);
}

/* Card 6: Site Corporate : soft amber */
.site-type-card:nth-child(6) {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.07) 0%, #ffffff 45%, #fafaf8 100%);
    border-color: rgba(245, 158, 11, 0.12);
}

.site-type-card:nth-child(6)::before {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0) 0%, rgba(245, 158, 11, 0.5) 50%, rgba(245, 158, 11, 0) 100%);
}

.site-type-card:nth-child(6):hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08), 0 12px 32px rgba(0, 0, 0, 0.05), 0 24px 48px rgba(0, 0, 0, 0.03);
}

/* ── Badge ── */
.site-type-badge {
    position: absolute;
    top: -15px;
    left: 32px;
    background: #C8F135;
    color: #0A0A0A;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 7px 20px;
    border-radius: 24px;
    box-shadow:
        0 2px 8px rgba(200, 241, 53, 0.35),
        0 6px 20px rgba(200, 241, 53, 0.2),
        0 12px 32px rgba(200, 241, 53, 0.1);
    animation: badge-pulse 2.5s ease-in-out infinite;
    z-index: 2;
}

.site-type-badge::before {
    content: '✦ ';
    font-size: 10px;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow:
            0 2px 8px rgba(200, 241, 53, 0.35),
            0 6px 20px rgba(200, 241, 53, 0.2),
            0 12px 32px rgba(200, 241, 53, 0.1);
    }

    50% {
        box-shadow:
            0 2px 12px rgba(200, 241, 53, 0.5),
            0 8px 28px rgba(200, 241, 53, 0.3),
            0 16px 40px rgba(200, 241, 53, 0.15);
    }
}

/* ── Card Content ── */
.site-type-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-type-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.site-type-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.6);
}

/* (site-type-for and site-type-visual removed, cards are text-only now) */

/* ── CTA ── */
.site-types-cta {
    text-align: center;
    margin-top: 40px;
}

.site-types-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(200, 241, 53, 0.25);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.cta-btn-label {
    font-weight: 400;
    opacity: 0.7;
    font-size: 14px;
}

.cta-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #C8F135;
    font-size: 15px;
    padding-left: 16px;
    border-left: 1px solid rgba(200, 241, 53, 0.25);
}

.cta-btn-action svg {
    transition: transform 0.3s ease;
}

.site-types-cta-btn:hover {
    background: #C8F135;
    color: #0A0A0A;
    border-color: #C8F135;
    transform: translateY(-3px);
    box-shadow:
        0 4px 12px rgba(200, 241, 53, 0.2),
        0 12px 32px rgba(200, 241, 53, 0.15);
}

.site-types-cta-btn:hover .cta-btn-label {
    opacity: 1;
    color: #0A0A0A;
}

.site-types-cta-btn:hover .cta-btn-action {
    color: #0A0A0A;
    border-left-color: rgba(10, 10, 10, 0.2);
}

.site-types-cta-btn:hover .cta-btn-action svg {
    transform: translateX(4px);
}

/* ── Navigation Controls ── */
.site-types-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.site-types-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(10, 10, 10, 0.15);
    background: rgba(10, 10, 10, 0.06);
    color: rgba(10, 10, 10, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    padding: 0;
}

.site-types-arrow:hover {
    border-color: rgba(10, 10, 10, 0.3);
    background: rgba(10, 10, 10, 0.1);
    color: var(--black);
    transform: scale(1.08);
}

.site-types-arrow:active {
    transform: scale(0.95);
}

.site-types-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-types-dots-nav {
    display: flex;
    gap: 10px;
}

.site-types-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.site-types-dot:hover {
    background: rgba(10, 10, 10, 0.3);
}

.site-types-dot.active {
    background: #C8F135;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(200, 241, 53, 0.5);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .site-type-card {
        flex: 0 0 340px;
        min-height: 220px;
        padding: 32px 28px;
    }

    .site-type-title {
        font-size: 20px;
    }

    .site-type-desc {
        font-size: 14.5px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .site-type-card {
        flex: 0 0 88%;
        max-width: 88%;
        min-height: auto;
        padding: 28px 24px;
    }

    .site-types-track {
        gap: 16px;
    }

    .site-type-title {
        font-size: 19px;
    }

    .site-type-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .site-type-card:hover {
        transform: none;
    }

    .site-type-badge {
        font-size: 11px;
        padding: 5px 14px;
        top: -12px;
        left: 20px;
        letter-spacing: 1.5px;
    }

    .site-type-badge::before {
        font-size: 9px;
    }

    .site-types-cta-btn {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 16px 28px;
        border-radius: 16px;
        text-align: center;
    }

    .cta-btn-label {
        font-size: 13px;
    }

    .cta-btn-action {
        padding-left: 0;
        border-left: none;
        padding-top: 8px;
        border-top: 1px solid rgba(200, 241, 53, 0.2);
        font-size: 14px;
        justify-content: center;
        width: 100%;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-title-line1 {
        opacity: 1;
        animation: none;
        transform: none;
        filter: none;
    }

    .hero-carousel-wrapper {
        opacity: 1;
        animation: none;
    }

    .hero-chip-exit,
    .hero-chip-enter {
        animation: none;
    }

    .hero-gradient {
        animation: none;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TILT 3D + SHINE â€” cartes interactives
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Perspective sur les wrappers parents des cartes */
.services-grid,
.offers-stack,
.portfolio-slider,
.testimonials-grid {
    perspective: 1000px;
}

/* Toutes les cartes ciblÃ©es */
.service-card,
.portfolio-item {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ã‰lÃ©ment shine injectÃ© dynamiquement par JS */
.card-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle at 50% 50%,
            rgba(200, 241, 53, 0.08) 0%,
            transparent 70%);
    mix-blend-mode: screen;
}

.service-card:hover .card-shine,
.portfolio-item:hover .card-shine {
    opacity: 1;
}

/* No shadow on hover */
.service-card:hover {
    box-shadow: none !important;
}

/* Neutralisation totale du tilt sur les cartes pricing */
.offer-card {
    transform-style: flat !important;
    transform: none !important;
    transition: box-shadow 0.4s ease,
        border-color 0.4s ease !important;
    will-change: auto !important;
}

/* Supprimer le shine injectÃ© visuellement sur offer-card */
.offer-card .card-shine {
    display: none !important;
}

/* Conserver uniquement le glow de bordure au hover â€” sans transform */
.offer-card:hover {
    transform: none !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(200, 241, 53, 0.1);
}

.offer-card.featured:hover {
    transform: none !important;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(200, 241, 53, 0.22),
        0 0 40px rgba(200, 241, 53, 0.06);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” TABLET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {

    .section-heading {
        font-size: clamp(32px, 5vw, 46px);
    }

    .hero-3d-globe {
        width: 350px;
        height: 350px;
    }

    /* Carousel tablet */
    .hero-title {
        font-size: clamp(56px, 7.5vw, 72px);
    }

    .hero-centered {
        max-width: 95%;
    }

    .hero-carousel-wrapper {
        height: 60px;
        margin-top: 22px;
    }

    .hero-chip {
        padding: 12px 24px;
        box-shadow:
            0 0 14px rgba(200, 241, 53, 0.45),
            0 0 40px rgba(200, 241, 53, 0.2),
            0 0 70px rgba(200, 241, 53, 0.08);
    }

    .hero-chip-icon {
        width: 24px;
        height: 24px;
    }

    .hero-chip-text {
        font-size: clamp(20px, 3vw, 24px);
    }

    .hero-subtitle {
        font-size: 21px;
        max-width: 700px;
        line-height: 1.55;
    }

    .dotmatrix-band {
        margin: 30px 0;
    }

    .dotmatrix-band canvas {
        height: 162px;
    }

    /* Service cards tablet : thinner black bands */
    .services .accent-text {
        padding: 2px 8px;
        line-height: 1.4;
    }

    .site-types .accent-text {
        padding: 2px 8px;
        line-height: 1.4;
    }

    .service-card:hover .service-title {
        padding: 4px 11px;
        margin: -4px -11px;
    }

    /* Problem section tablet */
    .problem-card {
        flex: 0 0 92%;
        max-width: 92%;
        padding: 48px 36px 36px;
        gap: 28px;
        min-height: 260px;
    }

    .problem-card-badge {
        top: 16px;
        left: 20px;
        font-size: 9px;
        padding: 5px 14px;
    }

    .problem-card-visual {
        flex: 0 0 202px;
        width: 202px;
        height: 202px;
    }

    .problem-intro {
        font-size: 18px;
    }


    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .offers-stack .offer-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .nav-links {
        gap: 4px;
        padding: 4px 5px;
    }

    .nav-link {
        font-size: 12px;
        padding: 7px 12px;
    }

    .nav-cta {
        font-size: 11px;
        padding: 7px 14px;
    }

    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-hero-cta {
        align-items: flex-start;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .about-grid {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* â”€â”€ Boutons statiques sur tablette â€” lÃ©ger zoom au touchÃ© uniquement â”€â”€ */
    .btn-primary:hover,
    .btn-outline:hover,
    .offer-cta-btn:hover,
    .service-link:hover,
    .portfolio-link:hover,
    .hero-buttons .btn:hover,
    .services .btn-primary:hover,
    .offers .btn-primary:hover,
    .faq .btn-primary:hover,
    .testimonials .btn-primary:hover,
    .services .btn-outline:hover,
    .offers .btn-outline:hover,
    .faq .btn-outline:hover,
    .testimonials .btn-outline:hover,
    .offer-card:hover .offer-cta-btn {
        transform: none !important;
        box-shadow: none !important;
        animation: none !important;
    }

    .btn-primary:active,
    .btn-outline:active,
    .offer-cta-btn:active,
    .service-link:active,
    .portfolio-link:active,
    .hero-buttons .btn:active,
    .offer-card:active .offer-cta-btn {
        transform: scale(1.04) !important;
        transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        animation: none !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” MOBILE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ── Tablet small: switch to hamburger ── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .logo-img {
        height: 86px;
    }

    .nav-logo {
        height: 86px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .logo-img {
        height: 80px;
    }

    .nav-logo {
        height: 80px;
    }

    .logo-footer {
        height: 95px;
    }

    .hero-3d-globe {
        width: 260px;
        height: 260px;
        opacity: 0.7;
    }

    .dotmatrix-band {
        margin: 24px 0;
    }

    .dotmatrix-band canvas {
        height: 122px;
    }

    .hero {
        min-height: 100svh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(40px, 10.5vw, 50px);
        letter-spacing: -0.02em;
        margin-bottom: 12px;
    }

    .hero-carousel-wrapper {
        height: 50px;
        margin-top: 18px;
    }

    .hero-chip {
        padding: 10px 20px;
        gap: 10px;
        box-shadow:
            0 0 14px rgba(200, 241, 53, 0.45),
            0 0 35px rgba(200, 241, 53, 0.2),
            0 0 60px rgba(200, 241, 53, 0.08);
    }

    .hero-chip-icon {
        width: 20px;
        height: 20px;
    }

    .hero-chip-text {
        font-size: clamp(15px, 4vw, 18px);
        white-space: nowrap;
    }

    .hero .container {
        padding: 0 16px;
    }

    .hero-subtitle {
        font-size: 17px;
        max-width: 100%;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-subtitle-desktop {
        display: none;
    }

    .hero-subtitle-mobile {
        display: block;
    }

    /* Problem section mobile */
    .problem-card {
        flex: 0 0 92%;
        max-width: 92%;
        flex-direction: column;
        padding: 44px 24px 28px;
        gap: 16px;
        min-height: auto;
    }

    .problem-card-badge {
        top: 14px;
        left: 16px;
        font-size: 9px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .problem-card-visual {
        flex: 0 0 177px;
        width: 177px;
        height: 177px;
        order: -1;
    }

    .problem-card-title {
        font-size: 22px;
    }

    .problem-card-text {
        font-size: 14px;
    }

    .problem-intro {
        font-size: 15px;
        line-height: 1.6;
    }

    .problem-intro-2 {
        margin-bottom: 36px;
    }

    .problem-carousel-track {
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 90%;
        font-size: 14px;
    }

    .hero-buttons .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .hero-buttons .btn:active {
        transform: scale(1.03) !important;
        transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

    /* â”€â”€ Boutons mobile : taille rÃ©duite, police +15%, longueur -15% â”€â”€ */
    .btn {
        font-size: 13px;
        padding: 12px 16px;
        min-height: 39px;
        gap: 6px;
        border-radius: 9px;
    }

    /* â”€â”€ Boutons statiques sur mobile â€” lÃ©ger zoom au touchÃ© uniquement â”€â”€ */
    .btn-primary:hover,
    .btn-outline:hover,
    .offer-cta-btn:hover,
    .service-link:hover,
    .portfolio-link:hover,
    .hero-buttons .btn:hover,
    .services .btn-primary:hover,
    .offers .btn-primary:hover,
    .faq .btn-primary:hover,
    .testimonials .btn-primary:hover,
    .services .btn-outline:hover,
    .offers .btn-outline:hover,
    .faq .btn-outline:hover,
    .testimonials .btn-outline:hover,
    .offer-card:hover .offer-cta-btn {
        transform: none !important;
        box-shadow: none !important;
        animation: none !important;
    }

    .btn-primary:active,
    .btn-outline:active,
    .offer-cta-btn:active,
    .service-link:active,
    .portfolio-link:active,
    .hero-buttons .btn:active,
    .offer-card:active .offer-cta-btn {
        transform: scale(1.04) !important;
        transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        animation: none !important;
    }

    .hero-orb.orb-1 {
        width: 200px;
        height: 200px;
    }

    .hero-orb.orb-2 {
        width: 120px;
        height: 120px;
    }

    .hero-orb.orb-3 {
        display: none;
    }

    .hero-ring {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile accent text : thinner black band */
    .services .accent-text {
        padding: 2px 7px;
        line-height: 1.4;
    }

    .site-types .accent-text {
        padding: 2px 7px;
        line-height: 1.4;
    }

    /* ── SERVICE CARDS MOBILE ── */
    .service-card {
        padding: 28px 22px 28px;
        border-radius: 16px;
        transform: none !important;
        transform-style: flat !important;
        /* NO animations — cards are static and always visible */
        opacity: 1 !important;
    }

    .service-title {
        font-size: 19px;
        /* Titre vert citron sur bloc noir — TOUJOURS sur mobile */
        background: rgba(10, 10, 10, 0.85) !important;
        color: #C8F135 !important;
        padding: 6px 14px !important;
        margin: -6px -14px !important;
        border-radius: 8px !important;
        display: inline !important;
        -webkit-box-decoration-break: clone !important;
        box-decoration-break: clone !important;
    }

    .service-card:hover .service-title {
        padding: 6px 14px !important;
        margin: -6px -14px !important;
    }

    /* Titre vert citron même quand la card est ouverte */
    .service-card.expanded .service-title,
    .service-card.expanded:hover .service-title {
        background: rgba(10, 10, 10, 0.85) !important;
        color: #C8F135 !important;
        padding: 6px 14px !important;
        margin: -6px -14px !important;
    }

    .service-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-expand-btn {
        padding: 12px 20px;
    }

    .expand-label {
        font-size: 13px;
    }

    .service-detail-title {
        font-size: 11px;
        padding: 10px 14px;
    }

    .service-detail-list li {
        font-size: 13px;
        padding-left: 26px;
    }

    .service-detail-list li::before {
        width: 14px;
        height: 14px;
        border-radius: 4px;
        top: 5px;
    }

    .service-detail-list li::after {
        left: 4px;
        top: 8px;
        width: 6px;
        height: 4px;
    }

    .service-detail-note {
        font-size: 12px;
        padding: 12px 14px;
    }

    /* Croix de fermeture : positionnée en haut à droite, ne chevauche plus le titre */
    .service-close-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
        top: 10px;
        right: 10px;
        background: rgba(10, 10, 10, 0.90) !important;
        border: 1.5px solid rgba(200, 241, 53, 0.40) !important;
        z-index: 30 !important;
    }

    .service-card.expanded {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        overflow-y: visible !important;
        animation: none !important;
        padding: 44px 22px 28px !important;
        z-index: 10 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1 !important;
    }

    .service-card.expanded .service-detail {
        max-height: 5000px !important;
        opacity: 1 !important;
        margin-top: 20px !important;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .service-card.closing {
        animation: none !important;
    }

    .service-overlay-backdrop {
        display: none !important;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo {
        max-height: 350px;
    }

    /* â”€â”€ OFFERS MOBILE FIX â”€â”€ */
    .offers-stack {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .offers-stack .offer-card:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    .offer-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .offer-top {
        flex-direction: column;
        padding: 20px 18px;
        gap: 12px;
    }

    .offer-top>div:first-child {
        min-width: 0;
    }

    .offer-badge {
        font-size: 8px;
        padding: 5px 10px;
        letter-spacing: 1px;
    }

    .offer-name {
        font-size: 19px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .offer-tagline {
        font-size: 12.5px;
        line-height: 1.55;
        max-width: 100%;
    }

    .offer-price-block {
        text-align: left;
        padding: 0 18px 14px;
    }

    .offer-price {
        font-size: 17px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .offer-price-note {
        font-size: 10.5px;
    }

    .offer-maintenance {
        font-size: 10px;
        padding: 4px 10px;
    }

    .offer-divider {
        margin: 0 18px;
    }

    .offer-bottom {
        flex-direction: column;
        padding: 16px 18px 20px;
        gap: 16px;
    }

    .offer-col-title {
        font-size: 9px;
        margin-bottom: 10px;
    }

    .offer-list li {
        font-size: 12px;
        gap: 8px;
    }

    .offer-list li::before {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .offer-cta-row {
        padding: 0 18px 20px;
    }

    .offer-cta-btn {
        font-size: 13px;
        padding: 11px 12px;
    }

    /* Hide offer-cible if any remain */
    .offer-cible {
        display: none !important;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    /* â”€â”€ FOOTER MOBILE â€” Layout redesignÃ© â”€â”€ */
    .footer {
        padding: 60px 0 28px;
    }

    .footer-glow {
        width: 400px;
        height: 250px;
        top: -120px;
    }

    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 28px;
        padding-bottom: 36px;
        margin-bottom: 36px;
    }

    .footer-hero-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand-text {
        max-width: 320px;
        text-align: left;
    }

    .footer-hero-cta {
        align-items: center;
        width: 100%;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 11px 14px;
    }

    .footer-cta-note {
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
        padding-bottom: 36px;
        margin-bottom: 32px;
    }

    /* La 3e colonne (Contact) prend toute la largeur */
    .footer-nav-col:last-child {
        grid-column: 1 / -1;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer-col-title {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 12px;
    }

    .footer-socials {
        justify-content: center;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .comparison-title {
        font-size: 15px;
        padding: 20px 16px;
    }

    .section-heading {
        font-size: clamp(28px, 6vw, 40px);
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 14px;
    }

    .logo-img {
        height: 68px;
    }

    .nav-logo {
        height: 68px;
    }

    .logo-footer {
        height: 76px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .offer-top {
        padding: 16px 14px;
    }

    .offer-bottom {
        padding: 14px 14px 20px;
    }

    .offer-name {
        font-size: 18px;
    }

    .offer-price {
        font-size: 16px;
    }

    .offer-divider {
        margin: 0 14px;
    }

    .offer-cta-row {
        padding: 0 14px 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CUSTOM CURSOR â€” desktop pointer:fine uniquement
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* -- Footer: tablette + desktop (+20% tout le contenu + logo agrandi) -- */
@media (min-width: 768px) {
    .footer {
        padding: 96px 0 38px;
    }

    .logo-footer {
        height: 154px;
    }

    .footer-brand-text {
        font-size: 17px;
        max-width: 430px;
    }

    .footer-hero {
        gap: 48px;
        padding-bottom: 58px;
        margin-bottom: 58px;
    }

    .footer-nav {
        gap: 48px;
        padding-bottom: 58px;
        margin-bottom: 48px;
    }

    .footer-col-title {
        font-size: 13px;
        letter-spacing: 2.4px;
        margin-bottom: 24px;
    }

    .footer-col-title::after {
        width: 29px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-link {
        font-size: 17px;
    }

    .footer-link-icon {
        gap: 12px;
    }

    .footer-link-icon svg {
        width: 24px;
        height: 24px;
    }

    .footer-badge {
        font-size: 13px;
        padding: 7px 17px;
    }

    .footer-copy {
        font-size: 16px;
    }
}

@media (pointer: fine) {

    body.cursor-active {
        cursor: none;
    }

    body.cursor-active * {
        cursor: none !important;
    }

    #cursor-dot {
        position: fixed;
        width: 6px;
        height: 6px;
        background: #C8F135;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease, opacity 0.3s ease;
        mix-blend-mode: difference;
    }

    #cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(200, 241, 53, 0.6);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
            height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
            border-color 0.35s ease,
            background-color 0.35s ease,
            opacity 0.3s ease;
    }

    /* Ã‰tat hover : anneau qui s'Ã©largit sur les Ã©lÃ©ments interactifs */
    #cursor-ring.cursor-hover {
        width: 56px;
        height: 56px;
        border-color: rgba(200, 241, 53, 0.3);
        background-color: rgba(200, 241, 53, 0.05);
    }
}


/* =================================================================
   SECTION TECHNOLOGIES : Double flux défilant
   ================================================================= */
.section-tech {
    position: relative;
    background: #f5f5f0;
    padding: 100px 0;
    overflow: hidden;
}

/* Quadrillage moderne subtil — tech + FAQ + site-types + process */
.section-tech::before,
.faq::before,
.site-types::before,
.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* Vignette désactivée sur fond blanc */
.section-tech::after {
    display: none;
}

.tech-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.tech-eyebrow {
    display: inline-block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 10px;
}

.tech-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.tech-accent {
    display: inline;
    background: rgba(10, 10, 10, 0.85);
    color: #C8F135;
    padding: 3px 10px;
    border-radius: 6px;
    font-style: normal;
    font-size: clamp(28px, 5vw, 46px);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 1.6;
}

.tech-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.tech-bands-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 10;
    pointer-events: none;
}

.tech-fade-left {
    left: 0;
    background: linear-gradient(to right, #f5f5f0 0%, transparent 100%);
}

.tech-fade-right {
    right: 0;
    background: linear-gradient(to left, #f5f5f0 0%, transparent 100%);
}

.tech-band {
    overflow: hidden;
    width: 100%;
}

.tech-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 10px 0;
    will-change: transform;
}

.tech-band--forward .tech-track {
    animation: techScrollForward 35s linear infinite;
}

.tech-band--reverse .tech-track {
    animation: techScrollReverse 42s linear infinite;
}

@keyframes techScrollForward {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

@keyframes techScrollReverse {
    from {
        transform: translateX(-33.333%);
    }

    to {
        transform: translateX(0);
    }
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 228px;
    height: 192px;
    padding: 26px 36px;
    background: #C8F135;
    border: 1.5px solid rgba(10, 10, 10, 0.25);
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    cursor: default;
    flex-shrink: 0;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: #b8e020;
    border-color: rgba(10, 10, 10, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.tech-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.tech-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-tech {
        padding: 60px 0;
    }

    .tech-header {
        margin-bottom: 36px;
        padding: 0 16px;
    }

    .tech-accent {
        padding: 2px 8px;
        border-radius: 6px;
    }

    .tech-bands-wrapper {
        gap: 10px;
    }

    .tech-fade {
        width: 40px;
    }

    .tech-card {
        min-width: 138px;
        height: 115px;
        gap: 8px;
        padding: 13px 15px;
        border-radius: 16px;
    }

    .tech-logo {
        width: 45px;
        height: 45px;
    }

    .tech-name {
        font-size: 10px;
    }

    .tech-band--forward .tech-track {
        animation-duration: 28s;
    }

    .tech-band--reverse .tech-track {
        animation-duration: 34s;
    }
}

/* ─── Smartphone only: reorder about section ─── */
@media (max-width: 576px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-content {
        display: contents;
    }

    .about-name {
        order: 1;
        align-self: flex-start;
    }

    .about-content .about-text:nth-of-type(1) {
        order: 2;
    }

    .about-content .about-text:nth-of-type(2) {
        order: 3;
    }

    .about-photo {
        order: 4;
    }

    .about-values {
        order: 5;
    }
}

/* ─── Contact section mobile fix ─── */
@media (max-width: 576px) {
    .contact-sub {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-method-value {
        font-size: 13px;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .contact-method {
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-method-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .section-tech {
        padding: 50px 0;
    }

    .tech-header {
        margin-bottom: 28px;
    }

    .tech-accent {
        padding: 2px 8px;
    }

    .tech-card {
        min-width: 114px;
        height: 96px;
        gap: 6px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .tech-logo {
        width: 36px;
        height: 36px;
    }

    .tech-name {
        font-size: 9px;
        letter-spacing: 0.04em;
    }

    .tech-fade {
        width: 25px;
    }

    .tech-track {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .tech-band--forward .tech-track,
    .tech-band--reverse .tech-track {
        animation: none;
    }

    .tech-track {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }
}


/* =================================================================
   SECTION PROCESSUS DE TRAVAIL
   ================================================================= */
.process {
    background: #f9faf5;
    position: relative;
    overflow: hidden;
}

.process > .container {
    position: relative;
    z-index: 1;
}

/* ─── Heading processus ─── */
.process-heading {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.process-accent {
    display: inline-block;
    background: #0a0a0a;
    color: var(--accent);
    padding: 2px 18px 6px;
    border-radius: 8px;
    font-style: normal;
}

.process-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.55);
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ─── Étape individuelle ─── */
.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
    padding-left: 56px;
    padding-bottom: 12px;
}

/* Numéro en cercle */
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(200, 241, 53, 0.35);
}

.step-number span {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1;
}

/* Ligne de connexion verticale */
.step-connector {
    position: absolute;
    left: 21px;
    top: 44px;
    width: 2px;
    bottom: 0;
    background: linear-gradient(to bottom, var(--accent), rgba(200, 241, 53, 0.15));
    z-index: 1;
}

/* ─── Carte d'étape ─── */
.step-card {
    width: 100%;
    padding: 28px 26px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ─── Couleurs pastels harmonisées ─── */
.step-pastel-1 {
    background: #f0fdd4;
}

.step-pastel-2 {
    background: #e8f5e9;
}

.step-pastel-3 {
    background: #fff8e1;
}

.step-pastel-4 {
    background: #e3f2fd;
}

.step-pastel-5 {
    background: #fce4ec;
}

.step-pastel-6 {
    background: #ede7f6;
}

.step-pastel-7 {
    background: #e0f7fa;
}

.step-pastel-8 {
    background: #e8f5e9;
}

/* ─── Icône SVG ─── */
.step-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

/* ─── Contenu texte ─── */
.step-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

/* ─── CTA Final ─── */
.process-cta {
    text-align: center;
    margin-top: 60px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 60px;
    border: 1px solid rgba(200, 241, 53, 0.15);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(200, 241, 53, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.process-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(200, 241, 53, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(200, 241, 53, 0.15),
        0 0 0 1px rgba(200, 241, 53, 0.25);
    border-color: rgba(200, 241, 53, 0.35);
    color: #fff;
}

.process-cta-btn:hover::before {
    opacity: 1;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 241, 53, 0.15);
    color: var(--accent);
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-icon svg {
    width: 18px;
    height: 18px;
}

.process-cta-btn:hover .cta-icon {
    background: rgba(200, 241, 53, 0.25);
    transform: scale(1.1);
}

.cta-label {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    display: flex;
    align-items: center;
    color: var(--accent);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-arrow svg {
    width: 18px;
    height: 18px;
}

.process-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* ─── Stagger animation delays ─── */
.process-step[data-step="1"] {
    transition-delay: 0s;
}

.process-step[data-step="2"] {
    transition-delay: 0.1s;
}

.process-step[data-step="3"] {
    transition-delay: 0.2s;
}

.process-step[data-step="4"] {
    transition-delay: 0.3s;
}

.process-step[data-step="5"] {
    transition-delay: 0s;
}

.process-step[data-step="6"] {
    transition-delay: 0.1s;
}

.process-step[data-step="7"] {
    transition-delay: 0.2s;
}

.process-step[data-step="8"] {
    transition-delay: 0.3s;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .process-heading {
        margin-bottom: 40px;
    }

    .process-accent {
        padding: 2px 14px 4px;
        border-radius: 6px;
    }

    .process-subtitle {
        font-size: 14px;
        max-width: 90%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step {
        padding-left: 48px;
    }

    .step-number {
        width: 38px;
        height: 38px;
    }

    .step-number span {
        font-size: 16px;
    }

    .step-connector {
        left: 18px;
        top: 38px;
    }

    .step-card {
        padding: 22px 20px;
        border-radius: 14px;
        gap: 14px;
    }

    .step-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .step-icon svg {
        width: 18px;
        height: 18px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-desc {
        font-size: 13px;
    }

    .process-cta {
        margin-top: 40px;
    }

    .process-cta-btn {
        padding: 14px 28px;
        font-size: 14px;
        gap: 10px;
    }

    .cta-icon {
        width: 32px;
        height: 32px;
    }

    .cta-icon svg {
        width: 16px;
        height: 16px;
    }
}