/* ============================================
   KOLAF — Premium TikTok Agency
   Color Palette:
   - Deep Purple: #1A0046
   - Violet: #B063F9
   - Teal: #07BE98
   - White: #FFFFFF
   - Black: #111111
   Fonts: Cabinet Grotesk (display), Inter (body)
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-deep: #1A0046;
    --violet: #B063F9;
    --teal: #07BE98;
    --white: #FFFFFF;
    --black: #111111;
    --grey-100: #F5F3F7;
    --grey-200: #E8E4ED;
    --grey-300: #9B95A3;
    --violet-light: rgba(176, 99, 249, 0.12);
    --teal-light: rgba(7, 190, 152, 0.12);
    --violet-glow: rgba(176, 99, 249, 0.4);
    --teal-glow: rgba(7, 190, 152, 0.3);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--purple-deep);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

.serif-italic {
    font-style: italic;
    color: var(--violet);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(26, 0, 70, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(176, 99, 249, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    z-index: 1001;
}

.logo-text {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--violet);
    border-radius: 50%;
    margin-bottom: 12px;
}

.nav-pill {
    display: grid;
    grid-template-columns: 1fr 1fr 60px 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 5px 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: nowrap;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.nav-link.nav-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    justify-self: center;
}

.nav-home svg {
    width: 15px;
    height: 15px;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-home:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.nav-home:hover svg {
    opacity: 0.9;
    transform: scale(1.05);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--violet);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
    background: #c084fc;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--violet-glow);
}

.btn-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-burger.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-burger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--purple-deep);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--violet);
}

.mobile-link.cta {
    color: var(--teal);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    overflow: hidden;
    background: #030005;
}

/* Video columns scrolling behind */
.hero-video-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 240%;
    transform: translate(-50%, -50%) rotate(-12deg);
    display: flex;
    gap: 10px;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.hero-video-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hero-video-col[data-dir="up"] { animation: heroScrollUp 30s linear infinite; }
.hero-video-col[data-dir="down"] { animation: heroScrollDown 30s linear infinite; }
.hero-video-col[data-speed="fast"][data-dir="up"] { animation: heroScrollUp 22s linear infinite; }
.hero-video-col[data-speed="fast"][data-dir="down"] { animation: heroScrollDown 22s linear infinite; }
.hero-video-col[data-speed="slow"][data-dir="up"] { animation: heroScrollUp 38s linear infinite; }
.hero-video-col[data-speed="slow"][data-dir="down"] { animation: heroScrollDown 38s linear infinite; }
.hero-video-col[data-speed="medium"][data-dir="up"] { animation: heroScrollUp 30s linear infinite; }
.hero-video-col[data-speed="medium"][data-dir="down"] { animation: heroScrollDown 30s linear infinite; }

.hero-vid {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
    background: #0a0012;
    border: 1px solid rgba(255,255,255,0.06);
}

@keyframes heroScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes heroScrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Overlay — sophisticated multi-layer vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 50% 50%, rgba(3,0,5,0.82) 0%, rgba(3,0,5,0.45) 55%, rgba(3,0,5,0.08) 100%),
        linear-gradient(180deg, rgba(3,0,5,0.7) 0%, transparent 18%, transparent 82%, rgba(3,0,5,0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ambient glow — violet + teal */
.hero::before {
    content: '';
    position: absolute;
    top: 38%;
    left: 35%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176,99,249,0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}
.hero::after {
    content: '';
    position: absolute;
    top: 55%;
    right: 28%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(7,190,152,0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

/* Film grain */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* Hero content */
.hero-content {
    position: relative;
    max-width: 1000px;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: heroFadeIn 1.2s ease-out both;
}

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: heroFadeIn 1s 0.3s ease-out both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: badgePulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--teal);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 16px var(--teal-glow), 0 0 0 4px rgba(7, 190, 152, 0); }
}

/* Title */
.hero-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    color: var(--white);
    animation: heroFadeIn 1s 0.5s ease-out both;
}

.hero-gradient {
    font-style: italic;
    background: linear-gradient(135deg, #B063F9 0%, #D4A5FF 40%, #07BE98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
    display: inline-block;
    padding: 0 0.12em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 1.2;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtitle line */
.hero-sub-line {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeIn 1s 0.7s ease-out both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    animation: heroFadeIn 1s 0.9s ease-out both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #7C3AED;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

.hero-cta-secondary {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 2px;
}

.hero-cta-secondary:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: heroFadeIn 1s 1s ease-out both;
}

.scroll-cue span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress {
    width: 100%;
    height: 50%;
    background: var(--violet);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--violet-glow);
}

@keyframes scrollPulse {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
}

/* --- LOGOS --- */
.logos-section {
    padding: 40px 0 40px;
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey-300);
    margin-bottom: 24px;
}

.logos-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: logoScroll 40s linear infinite;
    width: max-content;
}

.logo-svg {
    height: 42px;
    width: 140px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    object-fit: contain;
}

.logo-svg:hover {
    opacity: 0.85;
}

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

/* --- SECTIONS COMMON --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

/* --- SERVICES — Stacking Cards --- */
.services-section {
    position: relative;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, var(--purple-deep) 0%, #080316 50%, var(--purple-deep) 100%);
}

/* Floating decorative icons */
.svc-floats {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.svc-float {
    position: absolute;
    color: rgba(176, 99, 249, 0.45);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
    transition: transform 0.1s linear;
    will-change: transform;
}

.svc-float--1  { top: 5%;   left: 6%;  animation-delay: 0s;    animation-duration: 22s; --parallax-speed: 0.15; }
.svc-float--2  { top: 12%;  right: 8%; animation-delay: -3s;   animation-duration: 18s; --parallax-speed: -0.1; }
.svc-float--3  { top: 28%;  left: 3%;  animation-delay: -6s;   animation-duration: 25s; --parallax-speed: 0.2; }
.svc-float--4  { top: 35%;  right: 4%; animation-delay: -9s;   animation-duration: 20s; --parallax-speed: -0.15; }
.svc-float--5  { top: 50%;  left: 7%;  animation-delay: -2s;   animation-duration: 23s; --parallax-speed: 0.12; }
.svc-float--6  { top: 55%;  right: 6%; animation-delay: -5s;   animation-duration: 19s; --parallax-speed: -0.18; }
.svc-float--7  { top: 68%;  left: 4%;  animation-delay: -8s;   animation-duration: 21s; --parallax-speed: 0.22; }
.svc-float--8  { top: 75%;  right: 5%; animation-delay: -11s;  animation-duration: 24s; --parallax-speed: -0.12; }
.svc-float--9  { top: 88%;  left: 8%;  animation-delay: -4s;   animation-duration: 20s; --parallax-speed: 0.16; }
.svc-float--10 { top: 92%;  right: 7%; animation-delay: -7s;   animation-duration: 22s; --parallax-speed: -0.2; }

@keyframes svcFloatDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
    25%      { transform: translateY(-15px) rotate(5deg); }
    50%      { transform: translateY(-8px) rotate(-3deg); opacity: 0.6; }
    75%      { transform: translateY(-20px) rotate(4deg); }
}

/* Section header */
.svc-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.svc-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.svc-header-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

.svc-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.svc-stars svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px rgba(176, 99, 249, 0.4));
}

/* Glow transition above first card */
.svc-stack::before {
    content: '';
    display: block;
    height: 80px;
    margin-bottom: -40px;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Stack container */
.svc-stack {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Card */
.svc-card {
    position: sticky;
    top: 80px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #fef9ef;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.4s ease;
}

.svc-card--1 { z-index: 1; }
.svc-card--2 { z-index: 2; }
.svc-card--3 { z-index: 3; }
.svc-card--4 { z-index: 4; }

/* Card 4 blue accents (same white bg, blue instead of violet) */
.svc-card--4 .svc-num { color: #4F46E5; }
.svc-card--4 .svc-badge {
    background: #EEF2FF;
    color: #4338CA;
    border: 1px solid #C7D2FE;
}
.svc-card--4 .svc-pill {
    border: 1px solid #C7D2FE;
    background: #EEF2FF;
    color: #4338CA;
}
.svc-card--4 .svc-pill:hover {
    background: #E0E7FF;
    border-color: #A5B4FC;
}
.svc-card--4 .svc-cta-btn { color: #4F46E5; }

/* Grain texture on cards */
.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    border-radius: 24px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
    mix-blend-mode: multiply;
}

/* Decorative background shapes */
.svc-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.svc-deco svg {
    width: 100%;
    height: 100%;
}

/* Card body */
.svc-card-body {
    position: relative;
    z-index: 1;
    padding: 40px 48px 48px;
}

/* Card top row */
.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.svc-num {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.svc-card--1 .svc-num { color: #7C3AED; }
.svc-card--2 .svc-num { color: #059669; }
.svc-card--3 .svc-num { color: #D97706; }

.svc-badge {
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.svc-card--1 .svc-badge { background: #F3EAFF; color: #7C3AED; border: 1px solid #E8D5FF; }
.svc-card--2 .svc-badge { background: #E6F9F4; color: #059669; border: 1px solid #D1FAE5; }
.svc-card--3 .svc-badge { background: #FFF7ED; color: #D97706; border: 1px solid #FFEDD5; }

/* Title */
.svc-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.svc-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 560px;
    margin-bottom: 20px;
}

/* Pills */
.svc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.svc-pill {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.svc-card--1 .svc-pill { border: 1px solid #E8D5FF; background: #FAF5FF; color: #7C3AED; }
.svc-card--1 .svc-pill:hover { background: #F3EAFF; border-color: #D4A5FF; }

.svc-card--2 .svc-pill { border: 1px solid #D1FAE5; background: #F0FDF8; color: #059669; }
.svc-card--2 .svc-pill:hover { background: #E6F9F4; border-color: #6EE7B7; }

.svc-card--3 .svc-pill { border: 1px solid #FFEDD5; background: #FFFBF5; color: #D97706; }
.svc-card--3 .svc-pill:hover { background: #FFF7ED; border-color: #FCD34D; }

/* CTA button */
.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    color: var(--black);
    border: none;
    background: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.svc-cta-btn:hover {
    opacity: 1;
}

.svc-card--1 .svc-cta-btn { color: #7C3AED; }
.svc-card--2 .svc-cta-btn { color: #059669; }
.svc-card--3 .svc-cta-btn { color: #D97706; }

.svc-cta-btn svg {
    transition: transform 0.3s ease;
}

.svc-cta-btn:hover svg {
    transform: translateX(4px);
}

/* --- PORTFOLIO --- */
.portfolio-section {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, var(--purple-deep) 0%, #0a0118 40%, #0a0118 60%, var(--purple-deep) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}

.portfolio-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.portfolio-header-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
}

.portfolio-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.portfolio-slide {
    display: flex;
    gap: 20px;
    animation: portfolioScroll 60s linear infinite;
    width: max-content;
}

.portfolio-vid {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background: #150a2e;
    cursor: pointer;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.portfolio-vid:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.portfolio-vid video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.portfolio-vid-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.85;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-vid:hover .portfolio-vid-play {
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.3);
}

.portfolio-vid.playing .portfolio-vid-play {
    opacity: 0;
}

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

/* --- VIDEO MODAL --- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
    position: relative;
    width: auto;
    max-width: 340px;
    max-height: 75vh;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 80px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: #0a0118;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 86vw;
        max-height: 72vh;
    }
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0118;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* CTA button */
.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-cta-btn:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: white;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35), 0 0 60px rgba(176, 99, 249, 0.15);
    transform: translateY(-2px);
}

.portfolio-cta-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-cta-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .portfolio-vid {
        width: 160px;
        border-radius: 14px;
    }
    .portfolio-vid-play {
        width: 44px;
        height: 44px;
    }
    .portfolio-vid-play svg {
        width: 18px;
        height: 18px;
    }
    .portfolio-slide {
        gap: 12px;
    }
}

/* --- CASE STUDIES --- */
/* --- CASES / RÉSULTATS --- */
.cases-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cases-transition {
    height: 120px;
    background: linear-gradient(180deg, var(--purple-deep) 0%, #1c0349 8%, #1e044d 16%, #200650 24%, #220854 32%, #240a58 42%, #260c5c 52%, #280e5f 64%, #2a1062 76%, #2c1265 88%, #2e1468 100%);
}

.cases-inner {
    background: #2e1468;
    padding: 0 0 0;
}

.cases-header {
    margin-bottom: 48px;
    text-align: center;
}

.cases-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cases-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
}

.cases-title .serif-italic {
    color: var(--violet);
}

/* ====== BENTO GRID ====== */
.cases-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

/* Grid layout: 5 cards, varied sizes */
.case-card--1 { grid-column: span 7; }
.case-card--2 { grid-column: span 5; }
.case-card--3 { grid-column: span 5; }
.case-card--4 { grid-column: span 7; }
.case-card--5 { grid-column: span 12; }

/* Base card */
.case-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* Stagger animation */
.case-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.case-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}
.case-stagger.visible:hover {
    transform: translateY(-5px);
}

/* ====== CARD COLORS ====== */
.case-card--1 {
    background: linear-gradient(145deg, #3B1D8E 0%, #5B2FC9 50%, #7C3AED 100%);
}
.case-card--2 {
    background: linear-gradient(145deg, #0E3B5C 0%, #1565A0 50%, #1E88E5 100%);
}
.case-card--3 {
    background: linear-gradient(145deg, #065F46 0%, #059669 50%, #10B981 100%);
}
.case-card--4 {
    background: linear-gradient(145deg, #701A75 0%, #A21CAF 50%, #D946EF 100%);
}
.case-card--5 {
    background: linear-gradient(145deg, #92400E 0%, #B45309 50%, #D97706 100%);
}

/* ====== CARD ELEMENTS ====== */

/* Brand logo text */
.case-logo-text {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

/* Brand logo image */
.case-logo-img {
    height: 24px;
    width: auto;
    max-width: 160px;
    opacity: 0.65;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.case-card:hover .case-logo-img {
    opacity: 0.9;
}

/* Per-card logo sizing for visual parity */
.case-card--1 .case-logo-img { height: 36px; }       /* Nouslib */
.case-card--2 .case-logo-img { height: 56px; }       /* Randstad — square ratio, needs bigger */
.case-card--3 .case-logo-img { height: 48px; }       /* Holly's Diner */
.case-card--4 .case-logo-img { height: 48px; }       /* CapCar */
.case-card--5 .case-logo-img { height: 40px; }       /* Sauce Martin — square raster */

/* Default: hide mobile-only logo on desktop */
.case-logo-img--mobile-only { display: none; }

/* Giant stat (Holly's, Sauce Martin) */
.case-giant-stat {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.case-giant-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

/* Hero stat (Nouslib, Iziwork — smaller) */
.case-hero-stat {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 4px;
}

.case-hero-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

/* Description text */
.case-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.case-text em {
    font-style: italic;
    color: white;
    font-weight: 600;
}

/* Tags */
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.case-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

/* ====== SECTOR TAG WITH ICON ====== */
.case-tag--sector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
}

.case-tag--sector svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.85;
}

/* ====== PHONE MOCKUP ====== */
.case-phone {
    width: 130px;
    height: 210px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.case-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 30%, rgba(0,0,0,0.2) 100%);
    border-radius: 14px;
    pointer-events: none;
    z-index: 1;
}

.case-phone:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.case-phone-play {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.case-phone:hover .case-phone-play {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.1);
}

.case-phone-play svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.case-phone--lg {
    width: 160px;
    height: 260px;
    border-radius: 20px;
}

.case-phone--lg .case-phone-play {
    width: 44px;
    height: 44px;
}

.case-phone--lg .case-phone-play svg {
    width: 18px;
    height: 18px;
}

/* ====== CARD LAYOUTS ====== */

/* Top row */
.case-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.case-top .case-tag:not(.case-tag--sector) {
    background: rgba(255, 255, 255, 0.15);
}

/* Mid row (stat + phone) */
.case-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex: 1;
    margin-bottom: 16px;
}

/* Card 5 — full width layout */
.case-wide-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.case-wide-left {
    flex: 1;
}

.case-card--5 .case-giant-stat {
    font-size: clamp(4rem, 8vw, 7rem);
    color: rgba(255, 255, 255, 0.2);
}

/* Stats row with hero + satellites (Card 5) */
.case-stats-row {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    margin: 8px 0 20px;
    flex-wrap: wrap;
}

.case-stat-main {
    flex: 0 0 auto;
}

.case-stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}

.case-stat-satellite {
    flex: 0 0 auto;
    padding-bottom: 6px;
}

.case-sat-stat {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.case-sat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .case-stats-row {
        gap: 20px;
    }
    .case-stat-divider {
        display: none;
    }
}

/* --- VIDEO SHOWCASE --- */
.showcase-section {
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
    background: #2e1468;
}

.showcase-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent 0%, #2a1062 20%, #260c5c 40%, #220854 58%, #200650 72%, #1e044d 84%, #1c0349 92%, var(--purple-deep) 100%);
    z-index: 0;
    pointer-events: none;
}

.showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, var(--teal-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
}

.showcase-content {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 16px;
}

.showcase-sub {
    font-size: 1.05rem;
    color: var(--grey-300);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.showcase-reels {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.reel-card {
    flex: 0 0 200px;
}

.reel-placeholder {
    width: 200px;
    height: 356px;
    background: linear-gradient(180deg, rgba(176, 99, 249, 0.15) 0%, rgba(7, 190, 152, 0.1) 100%);
    border: 1px solid rgba(176, 99, 249, 0.15);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:nth-child(2) .reel-placeholder {
    background: linear-gradient(180deg, rgba(7, 190, 152, 0.15) 0%, rgba(176, 99, 249, 0.1) 100%);
}

.reel-card:nth-child(3) .reel-placeholder {
    background: linear-gradient(180deg, rgba(176, 99, 249, 0.2) 0%, rgba(26, 0, 70, 0.3) 100%);
}

.reel-card:nth-child(4) .reel-placeholder {
    background: linear-gradient(180deg, rgba(7, 190, 152, 0.2) 0%, rgba(176, 99, 249, 0.1) 100%);
}

.reel-card:nth-child(5) .reel-placeholder {
    background: linear-gradient(180deg, rgba(176, 99, 249, 0.1) 0%, rgba(7, 190, 152, 0.15) 100%);
}

.reel-placeholder:hover {
    transform: translateY(-8px);
    border-color: var(--violet);
    box-shadow: 0 20px 60px rgba(176, 99, 249, 0.2);
}

.reel-play {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.reel-placeholder:hover .reel-play {
    background: var(--violet);
    transform: scale(1.1);
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reel-views {
    font-weight: 700;
    font-size: 0.9rem;
}

.reel-brand {
    font-size: 0.75rem;
    color: var(--grey-300);
}

/* --- METHOD (Le Charbon style — pinned scroll) --- */
.method-wrapper {
    position: relative;
    height: 350vh;
    background: var(--purple-deep);
}

.method-pinned {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;
    z-index: 2;
}

.method-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 100px 24px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Section label */
.meth-label {
    text-align: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.meth-subtitle {
    margin-top: 8px;
    font-size: 1.05rem;
    color: var(--grey-300);
    line-height: 1.6;
}

/* Horizontal timeline */
.meth-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    flex-shrink: 0;
    padding: 0 20px;
}

.meth-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Big circle for active letter */
.meth-tl-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #9333EA, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(147, 51, 234, 0.15), 0 0 50px rgba(147, 51, 234, 0.35);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.meth-tl-circle span {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

/* Small dot for inactive letters */
.meth-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.meth-tl-item.active .meth-tl-dot {
    display: none;
}

.meth-tl-item.passed .meth-tl-dot {
    background: var(--violet);
    border-color: var(--violet);
}

/* Hidden circle by default, shown when active */
.meth-tl-item .meth-tl-circle {
    display: none;
}
.meth-tl-item.active .meth-tl-circle {
    display: flex;
}

/* Label under each step */
.meth-tl-name {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: capitalize;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.meth-tl-item.active .meth-tl-name {
    color: var(--white);
    font-size: 1rem;
}

.meth-tl-item.passed .meth-tl-name {
    color: rgba(255, 255, 255, 0.55);
}

/* Progress lines between items */
.meth-tl-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    margin: 0 -4px;
    margin-bottom: 22px; /* offset to align with dots, not labels */
}

.meth-tl-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--violet), rgba(176, 99, 249, 0.5));
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Body: content panels */
.meth-body {
    flex: 1;
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.meth-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.meth-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.meth-panel.exit-up {
    opacity: 0;
    transform: translateY(-30px);
}

.meth-panel-left {
    flex: 1;
}

.meth-panel-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.meth-panel-intro {
    font-size: 1rem;
    color: var(--grey-300);
    margin-bottom: 20px;
    line-height: 1.6;
}

.meth-panel-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meth-panel-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.meth-panel-list li::marker {
    color: var(--violet);
}

.meth-panel-objective {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    padding: 12px 20px;
    background: rgba(176, 99, 249, 0.1);
    border: 1px solid rgba(176, 99, 249, 0.2);
    border-radius: 12px;
}

/* Right visual block */
.meth-panel-right {
    width: 400px;
    flex-shrink: 0;
}

/* Shared illustration styles */
.meth-illus {
    width: 100%;
    height: 320px;
    background: rgba(176, 99, 249, 0.06);
    border: 1px solid rgba(176, 99, 249, 0.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* --- 01: Audit --- */
.meth-illus--audit .illus-glass {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: rgba(176, 99, 249, 0.1);
    border: 1px solid rgba(176, 99, 249, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.meth-illus--audit .illus-bars {
    position: absolute;
    bottom: 50px;
    left: 32px;
    right: 32px;
    height: 140px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.illus-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--violet), rgba(176, 99, 249, 0.2));
    border-radius: 6px 6px 0 0;
    opacity: 0.7;
    transform-origin: bottom;
    animation: barPulse 3.5s ease-in-out infinite;
}

.meth-illus--audit .illus-bars .illus-bar:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 3.2s;
}
.meth-illus--audit .illus-bars .illus-bar:nth-child(2) {
    animation-delay: 0.4s;
    animation-duration: 4s;
}
.meth-illus--audit .illus-bars .illus-bar:nth-child(3) {
    animation-delay: 0.8s;
    animation-duration: 3.6s;
}
.meth-illus--audit .illus-bars .illus-bar:nth-child(4) {
    animation-delay: 0.2s;
    animation-duration: 3.8s;
}
.meth-illus--audit .illus-bars .illus-bar:nth-child(5) {
    animation-delay: 0.6s;
    animation-duration: 3.4s;
}

@keyframes barPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.7;
    }
    25% {
        transform: scaleY(0.55);
        opacity: 0.55;
    }
    50% {
        transform: scaleY(1.15);
        opacity: 0.85;
    }
    75% {
        transform: scaleY(0.8);
        opacity: 0.65;
    }
}

/* Search icon pulse */
.meth-illus--audit .illus-glass {
    animation: glassPulse 2.8s ease-in-out infinite;
}

@keyframes glassPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(176, 99, 249, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 12px rgba(176, 99, 249, 0);
    }
}

/* Tag float */
.meth-illus--audit .illus-tag-tl {
    animation: tagFloat 4s ease-in-out infinite;
}

.meth-illus--audit .illus-tag-br {
    animation: tagFloat 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.meth-illus--audit .illus-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    padding: 6px 16px;
    background: rgba(176, 99, 249, 0.15);
    border: 1px solid rgba(176, 99, 249, 0.25);
    border-radius: 8px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.illus-tag-tl, .illus-tag-br {
    position: absolute;
    padding: 4px 12px;
    background: rgba(55, 226, 213, 0.1);
    border: 1px solid rgba(55, 226, 213, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
}
.illus-tag-tl { top: 96px; left: 32px; }
.illus-tag-br { bottom: 24px; right: 32px; }

/* --- 02: Objectifs / Target --- */
.meth-illus--objectifs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.illus-target {
    position: relative;
    width: 160px;
    height: 160px;
}

.illus-target-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(176, 99, 249, 0.2);
    animation: radarPulse 3s ease-out infinite;
    transform-origin: center;
}
.illus-target-ring.r1 {
    inset: 0;
    animation-delay: 0s;
}
.illus-target-ring.r2 {
    inset: 24px;
    border-color: rgba(176, 99, 249, 0.35);
    animation-delay: 1s;
}
.illus-target-ring.r3 {
    inset: 48px;
    border-color: rgba(176, 99, 249, 0.5);
    animation-delay: 2s;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.illus-target-center {
    position: absolute;
    inset: 64px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 20px rgba(176, 99, 249, 0.5);
    animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(176, 99, 249, 0.5);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 35px rgba(176, 99, 249, 0.8), 0 0 60px rgba(176, 99, 249, 0.3);
    }
}

.illus-kpi {
    position: absolute;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(8px);
}

.illus-kpi-1 {
    top: 32px;
    right: 28px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(176, 99, 249, 0.15), rgba(176, 99, 249, 0.05));
    border: 1px solid rgba(176, 99, 249, 0.2);
    color: var(--white);
    animation: kpiFloat 4.5s ease-in-out infinite;
}

.illus-kpi-2 {
    bottom: 60px;
    right: 36px;
    font-size: 1.2rem;
    background: rgba(55, 226, 213, 0.1);
    border: 1px solid rgba(55, 226, 213, 0.2);
    color: var(--teal);
    animation: kpiFloat 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.illus-kpi-3 {
    bottom: 32px;
    left: 28px;
    font-size: 1.1rem;
    background: rgba(176, 99, 249, 0.1);
    border: 1px solid rgba(176, 99, 249, 0.15);
    color: var(--violet);
    animation: kpiFloat 5s ease-in-out infinite;
    animation-delay: 2.4s;
}

@keyframes kpiFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.04);
    }
}

/* --- 03: Création / Phone --- */
.meth-illus--creation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.illus-phone {
    width: 140px;
    height: 260px;
    background: linear-gradient(180deg, rgba(176, 99, 249, 0.12), rgba(176, 99, 249, 0.04));
    border: 2px solid rgba(176, 99, 249, 0.2);
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.illus-phone-notch {
    position: absolute;
    top: 10px;
    width: 50px;
    height: 6px;
    background: rgba(176, 99, 249, 0.2);
    border-radius: 4px;
}

.illus-phone-play {
    width: 56px;
    height: 56px;
    background: rgba(176, 99, 249, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        background: rgba(176, 99, 249, 0.2);
        box-shadow: 0 0 0 0 rgba(176, 99, 249, 0.4);
        transform: scale(1);
    }
    50% {
        background: rgba(176, 99, 249, 0.35);
        box-shadow: 0 0 0 16px rgba(176, 99, 249, 0);
        transform: scale(1.06);
    }
}

.illus-phone-bar {
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.illus-phone-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--violet);
    border-radius: 4px;
    animation: barFill 6s linear infinite;
}

@keyframes barFill {
    0% { width: 0%; }
    95% { width: 100%; }
    100% { width: 0%; }
}

.illus-phone-likes {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    animation: likesPulse 2s ease-in-out infinite;
}

@keyframes likesPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
        color: rgba(255, 255, 255, 0.85);
    }
}

.illus-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(176, 99, 249, 0.1);
    border: 1px solid rgba(176, 99, 249, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: illus-bob 3s ease-in-out infinite;
}

.illus-float-1 {
    top: 40px;
    right: 40px;
    animation: heartBeat 1.5s ease-in-out infinite;
}
.illus-float-2 {
    bottom: 50px;
    left: 40px;
    animation: illus-bob 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes illus-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
        background: rgba(7, 190, 152, 0.1);
        border-color: rgba(7, 190, 152, 0.2);
    }
    20% {
        transform: scale(1.18);
        background: rgba(7, 190, 152, 0.25);
        border-color: rgba(7, 190, 152, 0.5);
    }
    40% {
        transform: scale(1.08);
    }
    60% {
        transform: scale(1.18);
        background: rgba(7, 190, 152, 0.3);
    }
}

/* --- 04: Ads / Chart --- */
.meth-illus--ads {
    display: flex;
    align-items: flex-end;
}

.illus-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
}

/* Chart line draws itself in loop */
.illus-chart svg path[stroke="var(--violet)"],
.illus-chart svg path[stroke]:not([stroke="none"]) {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: chartDraw 5s ease-in-out infinite;
}

@keyframes chartDraw {
    0% { stroke-dashoffset: 500; }
    50% { stroke-dashoffset: 0; }
    90% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 500; }
}

/* Chart fill fades in/out with the line */
.illus-chart svg path[fill="url(#chartGrad)"] {
    animation: chartFill 5s ease-in-out infinite;
}

@keyframes chartFill {
    0%, 100% { opacity: 0; }
    50%, 90% { opacity: 1; }
}

.illus-roas {
    position: absolute;
    top: 28px;
    left: 28px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    animation: roasPulse 3s ease-in-out infinite;
}

@keyframes roasPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(176, 99, 249, 0.4);
    }
}

.illus-spark {
    position: absolute;
    top: 70px;
    left: 28px;
    padding: 6px 14px;
    background: rgba(55, 226, 213, 0.12);
    border: 1px solid rgba(55, 226, 213, 0.25);
    border-radius: 8px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.05em;
    animation: sparkFloat 4s ease-in-out infinite;
}

@keyframes sparkFloat {
    0%, 100% {
        transform: translateY(0);
        background: rgba(55, 226, 213, 0.12);
    }
    50% {
        transform: translateY(-4px);
        background: rgba(55, 226, 213, 0.2);
        box-shadow: 0 4px 16px rgba(55, 226, 213, 0.2);
    }
}

.illus-arrow-up {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: rgba(55, 226, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrowRise 2.5s ease-in-out infinite;
}

@keyframes arrowRise {
    0%, 100% {
        transform: translateY(0);
        background: rgba(55, 226, 213, 0.1);
        box-shadow: 0 0 0 0 rgba(55, 226, 213, 0.3);
    }
    50% {
        transform: translateY(-10px);
        background: rgba(55, 226, 213, 0.2);
        box-shadow: 0 0 0 8px rgba(55, 226, 213, 0);
    }
}

/* --- 05: Feedback / Loop --- */
.meth-illus--feedback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.illus-loop {
    position: relative;
    width: 180px;
    height: 180px;
}

.illus-loop-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: illus-spin 20s linear infinite;
}

@keyframes illus-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.illus-loop-item {
    position: absolute;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(176, 99, 249, 0.2), rgba(176, 99, 249, 0.08));
    border: 1px solid rgba(176, 99, 249, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loopItemPulse 4s ease-in-out infinite;
}

.illus-loop-item.li-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}
.illus-loop-item.li-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}
.illus-loop-item.li-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}
.illus-loop-item.li-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes loopItemPulse {
    0%, 75%, 100% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.2), rgba(176, 99, 249, 0.08));
        border-color: rgba(176, 99, 249, 0.25);
        box-shadow: 0 0 0 0 rgba(176, 99, 249, 0);
    }
    12% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.5), rgba(176, 99, 249, 0.2));
        border-color: rgba(176, 99, 249, 0.7);
        box-shadow: 0 0 20px 2px rgba(176, 99, 249, 0.4);
    }
    25% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.3), rgba(176, 99, 249, 0.1));
        border-color: rgba(176, 99, 249, 0.4);
    }
}

/* Override transform so animation doesn't reset position */
.illus-loop-item.li-1 {
    animation: loopItemPulse-h 4s ease-in-out infinite;
    animation-delay: 0s;
}
.illus-loop-item.li-3 {
    animation: loopItemPulse-h 4s ease-in-out infinite;
    animation-delay: 2s;
}
.illus-loop-item.li-2 {
    animation: loopItemPulse-v 4s ease-in-out infinite;
    animation-delay: 1s;
}
.illus-loop-item.li-4 {
    animation: loopItemPulse-v 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes loopItemPulse-h {
    0%, 75%, 100% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.2), rgba(176, 99, 249, 0.08));
        border-color: rgba(176, 99, 249, 0.25);
        box-shadow: 0 0 0 0 rgba(176, 99, 249, 0);
        transform: translateX(-50%) scale(1);
    }
    12% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.5), rgba(176, 99, 249, 0.2));
        border-color: rgba(176, 99, 249, 0.7);
        box-shadow: 0 0 20px 2px rgba(176, 99, 249, 0.4);
        transform: translateX(-50%) scale(1.1);
    }
    25% {
        transform: translateX(-50%) scale(1);
    }
}

@keyframes loopItemPulse-v {
    0%, 75%, 100% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.2), rgba(176, 99, 249, 0.08));
        border-color: rgba(176, 99, 249, 0.25);
        box-shadow: 0 0 0 0 rgba(176, 99, 249, 0);
        transform: translateY(-50%) scale(1);
    }
    12% {
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.5), rgba(176, 99, 249, 0.2));
        border-color: rgba(176, 99, 249, 0.7);
        box-shadow: 0 0 20px 2px rgba(176, 99, 249, 0.4);
        transform: translateY(-50%) scale(1.1);
    }
    25% {
        transform: translateY(-50%) scale(1);
    }
}

.illus-pct {
    position: absolute;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.illus-pct-1 {
    top: 28px;
    right: 24px;
    font-size: 1.4rem;
    background: rgba(55, 226, 213, 0.1);
    border: 1px solid rgba(55, 226, 213, 0.2);
    color: var(--teal);
    animation: pctFloatTeal 3.5s ease-in-out infinite;
}

@keyframes pctFloatTeal {
    0%, 100% {
        transform: translateY(0) scale(1);
        background: rgba(55, 226, 213, 0.1);
        box-shadow: none;
    }
    50% {
        transform: translateY(-6px) scale(1.05);
        background: rgba(55, 226, 213, 0.2);
        box-shadow: 0 6px 20px rgba(55, 226, 213, 0.25);
    }
}

.illus-pct-2 {
    bottom: 28px;
    left: 24px;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(176, 99, 249, 0.15), rgba(176, 99, 249, 0.05));
    border: 1px solid rgba(176, 99, 249, 0.2);
    color: var(--white);
    animation: pctFloatViolet 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes pctFloatViolet {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: none;
    }
    50% {
        transform: translateY(-6px) scale(1.05);
        background: linear-gradient(135deg, rgba(176, 99, 249, 0.3), rgba(176, 99, 249, 0.1));
        box-shadow: 0 6px 20px rgba(176, 99, 249, 0.3);
    }
}

/* --- METHOD SOCIAL PROOF --- */
.meth-proof {
    background: var(--purple-deep);
    padding: 0 0 60px;
    margin-top: -2px;
    position: relative;
}

.meth-proof-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.meth-proof-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.meth-proof-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 210, 211, 0.3) 30%, rgba(0, 210, 211, 0.3) 70%, transparent 100%);
}

.meth-proof-number {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(0, 210, 211, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meth-proof-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 220px;
}

.meth-proof-stat.reveal { transition-delay: 0s; }
.meth-proof-stat.reveal:nth-child(2) { transition-delay: 0.15s; }
.meth-proof-stat.reveal:nth-child(3) { transition-delay: 0.3s; }

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 80px 0 0;
    background: #2e1468;
    position: relative;
}

.testimonials-section::after {
    content: '';
    display: block;
    height: 80px;
    background: linear-gradient(180deg, #2e1468 0%, #1A0046 100%);
}

/* Carousel infinite scroll */
.testi-carousel {
    overflow: hidden;
    width: 100%;
    padding: 30px 0 30px;
    mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testi-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testi-scroll 80s linear infinite;
}

.testi-carousel:hover .testi-track {
    animation-play-state: paused;
}

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

.testimonials-grid {
    display: flex;
    gap: 24px;
}

.testimonial-card {
    background: #fef9ef;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.06);
    min-width: 440px;
    max-width: 440px;
    flex-shrink: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
    border-radius: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
    mix-blend-mode: multiply;
}

/* Card hover disabled in slider mode */

/* Decorative gradient blob */
.testi-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.testi-deco svg {
    width: 100%;
    height: 100%;
}

/* Card body */
.testi-body {
    position: relative;
    z-index: 2;
    padding: 36px 36px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

/* Brand logo in testimonial card */
.testi-logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testi-logo {
    opacity: 1;
}

/* Per-card logo sizing — fixed container height for alignment */
.testi-logo-wrap {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testi-logo {
    margin-bottom: 0;
}

.testimonial-card--2 .testi-logo { height: 42px; }   /* Feed — nearly square, needs bigger */
.testimonial-card--5 .testi-logo { height: 48px; }   /* Typology — square, needs much bigger */

/* Force raster logos to black */
.testi-logo--dark {
    filter: brightness(0);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.65;
    color: #2D2640;
    margin-bottom: 24px;
    font-style: normal;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1330;
}

.author-role {
    font-size: 0.8rem;
    color: #6b5f7d;
}

/* Avatar color variants */
.author-avatar--violet { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.author-avatar--teal   { background: linear-gradient(135deg, #059669, #34D399); }
.author-avatar--amber  { background: linear-gradient(135deg, #D97706, #FBBF24); }
.author-avatar--blue   { background: linear-gradient(135deg, #4F46E5, #818CF8); }
.author-avatar--rose   { background: linear-gradient(135deg, #DB2777, #F472B6); }
.author-avatar--cyan   { background: linear-gradient(135deg, #0891B2, #22D3EE); }


/* --- FAQ --- */
.faq-section {
    padding: 120px 0;
}


.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-heading {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-top: 16px;
}

.faq-intro {
    margin-top: 16px;
    font-size: 1.05rem;
    color: var(--grey-300);
    line-height: 1.6;
}

.faq-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    flex-shrink: 0;
    width: 320px;
    position: sticky;
    top: 120px;
}

.faq-left-card {
    background: rgba(176, 99, 249, 0.06);
    border: 1px solid rgba(176, 99, 249, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
}

.faq-left-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #9333EA, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
}

.faq-left-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.faq-left-text {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-left-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(176, 99, 249, 0.4);
    border-radius: 100px;
    color: var(--violet);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.faq-left-btn:hover {
    background: rgba(176, 99, 249, 0.1);
    border-color: var(--violet);
}

.faq-right {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(176, 99, 249, 0.12);
}

.faq-item:first-child {
    border-top: 1px solid rgba(176, 99, 249, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-item.active .faq-question {
    color: var(--white);
    font-weight: 600;
}

.faq-question:hover {
    color: var(--white);
}

.faq-num {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--violet);
    opacity: 0.5;
    flex-shrink: 0;
    width: 24px;
    transition: opacity 0.3s;
}

.faq-item.active .faq-num {
    opacity: 1;
}

/* Toggle switch style */
.faq-arrow {
    margin-left: auto;
    flex-shrink: 0;
    width: 52px;
    height: 28px;
    position: relative;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(176, 99, 249, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-arrow::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(176, 99, 249, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.faq-question:hover .faq-arrow {
    border-color: rgba(176, 99, 249, 0.4);
}

.faq-question:hover .faq-arrow::before {
    background: rgba(176, 99, 249, 0.85);
}

/* Active: toggle slides to the right + violet */
.faq-item.active .faq-arrow {
    background: var(--violet);
    border-color: var(--violet);
}

.faq-item.active .faq-arrow::before {
    transform: translateX(24px);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 0 24px;
    padding-left: 44px;
    font-size: 0.95rem;
    color: var(--grey-300);
    line-height: 1.7;
    max-width: 560px;
}

/* --- FINAL CTA --- */
.final-cta-section {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1A0046 0%, #0d0020 35%, #100830 70%, #2D1470 100%);
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, #1A0046 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}


.final-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Orbes flottantes — couleurs du dégradé "référence" */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
    opacity: 0.45;
}

.cta-orb--1 {
    width: 700px;
    height: 700px;
    top: -40%;
    left: -15%;
    background: radial-gradient(circle, rgba(176, 99, 249, 0.7) 0%, transparent 65%);
    animation: orbDrift1 14s ease-in-out infinite;
}

.cta-orb--2 {
    width: 550px;
    height: 550px;
    bottom: -35%;
    right: -10%;
    background: radial-gradient(circle, rgba(7, 190, 152, 0.55) 0%, transparent 65%);
    animation: orbDrift2 11s ease-in-out infinite;
}

.cta-orb--3 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 45%;
    background: radial-gradient(circle, rgba(212, 165, 255, 0.5) 0%, transparent 60%);
    animation: orbDrift3 16s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(10%, 15%) scale(1.12); }
    40% { transform: translate(20%, -5%) scale(0.95); }
    60% { transform: translate(5%, 10%) scale(1.08); }
    80% { transform: translate(-8%, -3%) scale(1.02); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-15%, -12%) scale(1.1); }
    50% { transform: translate(-8%, 18%) scale(0.9); }
    75% { transform: translate(12%, -5%) scale(1.06); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-20%, 12%) scale(1.2) rotate(3deg); }
    66% { transform: translate(15%, -15%) scale(0.85) rotate(-2deg); }
}

/* Grille de carrés transparents */
.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 5%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 5%, transparent 75%);
}

/* Shimmer — trait de lumière diagonal */
.cta-shimmer {
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 35%,
        rgba(212, 165, 255, 0.04) 42%,
        rgba(176, 99, 249, 0.08) 48%,
        rgba(7, 190, 152, 0.06) 52%,
        rgba(212, 165, 255, 0.04) 58%,
        transparent 65%
    );
    animation: ctaShimmer 8s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 15% { left: -120%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    85%, 100% { left: 220%; opacity: 0; }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-sub {
    font-size: 1.1rem;
    color: var(--grey-300);
    line-height: 1.7;
    margin-bottom: 36px;
}

.final-cta-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 8px 18px;
    background: rgba(248, 113, 113, 0.06);
    border: 1px solid rgba(248, 113, 113, 0.18);
    border-radius: 100px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.final-cta-scarcity strong {
    color: #f87171;
    font-weight: 600;
}

.scarcity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f87171;
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.6);
    animation: scarcityPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes scarcityPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.6);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(248, 113, 113, 0);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--violet);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background: #9333EA;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(176, 99, 249, 0.4);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--grey-300);
    font-weight: 500;
}

/* --- FOOTER --- */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #2D1470 0%, #3A1A8A 40%, #2D1470 100%);
    text-align: center;
}

.footer-logo-wrap {
    margin-bottom: 48px;
}

.footer-kolaf-logo {
    width: 320px;
    height: auto;
    opacity: 0.95;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.25);
}

.footer-nav-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-nav-row a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s;
}

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

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */

/* Case stagger handled by JS — no CSS delays needed */

/* testimonial carousel — no stagger needed, handled by scroll */

.showcase-reels .reveal:nth-child(2) { transition-delay: 0.08s; }
.showcase-reels .reveal:nth-child(3) { transition-delay: 0.16s; }
.showcase-reels .reveal:nth-child(4) { transition-delay: 0.24s; }
.showcase-reels .reveal:nth-child(5) { transition-delay: 0.32s; }


/* --- TILT CARD EFFECT --- */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* --- HEIGHT RESPONSIVE (non-fullscreen) --- */
@media (max-height: 850px) {
    .method-inner { padding: 90px 24px 20px; }
    .meth-label { margin-bottom: 16px; }
    .meth-subtitle { font-size: 0.95rem; margin-top: 6px; }
    .meth-timeline { margin-bottom: 20px; }
    .meth-tl-circle { width: 68px; height: 68px; }
    .meth-tl-circle span { font-size: 1.8rem; }
    .meth-tl-item { gap: 8px; }
    .meth-tl-line { margin-bottom: 22px; }
    .meth-panel-title { font-size: 1.8rem; margin-bottom: 12px; }
    .meth-panel-intro { font-size: 0.92rem; margin-bottom: 12px; }
    .meth-panel-list { margin-bottom: 16px; gap: 6px; }
    .meth-panel-list li { font-size: 0.9rem; }
    .meth-panel-objective { font-size: 0.85rem; padding: 10px 16px; }
    .meth-illus { height: 260px; }
}

@media (max-height: 700px) {
    .method-inner { padding: 80px 24px 12px; }
    .meth-label { margin-bottom: 8px; }
    .meth-label .section-title { font-size: 2rem; }
    .meth-subtitle { font-size: 0.85rem; margin-top: 4px; }
    .meth-timeline { margin-bottom: 10px; }
    .meth-tl-circle { width: 52px; height: 52px; box-shadow: 0 0 0 5px rgba(147, 51, 234, 0.15), 0 0 20px rgba(147, 51, 234, 0.2); }
    .meth-tl-circle span { font-size: 1.4rem; }
    .meth-tl-name { font-size: 0.7rem; }
    .meth-tl-item { gap: 5px; }
    .meth-tl-line { margin-bottom: 16px; }
    .meth-panel-title { font-size: 1.4rem; margin-bottom: 8px; }
    .meth-panel-intro { font-size: 0.85rem; margin-bottom: 8px; }
    .meth-panel-list { margin-bottom: 10px; gap: 3px; }
    .meth-panel-list li { font-size: 0.85rem; }
    .meth-panel-objective { font-size: 0.8rem; padding: 8px 14px; }
    .meth-illus { height: 200px; }
    .cases-badge { padding: 7px 16px; font-size: 0.78rem; margin-bottom: 10px; }
}

@media (max-height: 580px) {
    .method-inner { padding: 72px 24px 8px; }
    .meth-label { margin-bottom: 6px; }
    .meth-timeline { margin-bottom: 6px; }
    .meth-tl-circle { width: 44px; height: 44px; }
    .meth-tl-circle span { font-size: 1.2rem; }
    .meth-tl-name { font-size: 0.6rem; }
    .meth-tl-line { margin-bottom: 12px; }
    .meth-panel-title { font-size: 1.2rem; }
    .meth-panel { gap: 20px; }
    .meth-panel-right { width: 240px; }
    .meth-illus { height: 160px; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .svc-card-body {
        padding: 36px 32px 40px;
    }
    .cases-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-card--1, .case-card--2, .case-card--3,
    .case-card--4, .case-card--5 {
        grid-column: span 1;
    }
    .case-card--5 {
        grid-column: span 2;
    }
    .case-mid {
        flex-direction: column;
        gap: 16px;
    }
    .case-wide-layout {
        flex-direction: column;
        gap: 24px;
    }
    .testimonial-card {
        min-width: 340px;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .nav-pill {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    .hero {
        padding: 80px 16px 60px;
        min-height: 100vh;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-video-grid {
        width: 250%;
        height: 250%;
    }
    .hero-sub-line {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }
    .hero-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-cta-primary {
        padding: 14px 32px;
        font-size: 0.88rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    .services-section {
        padding: 80px 0 60px;
    }
    .svc-stack {
        padding: 0 16px;
    }
    .svc-floats {
        display: none;
    }
    .svc-card {
        top: 60px;
        margin-bottom: 24px;
        border-radius: 20px;
    }
    .svc-card-body {
        padding: 28px 24px 32px;
    }
    .svc-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .svc-desc {
        font-size: 0.88rem;
    }
    .svc-pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .svc-pill {
        font-size: 0.7rem;
        padding: 7px 10px;
        text-align: center;
        line-height: 1.25;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }
    .svc-cta-btn {
        font-size: 0.8rem;
    }
    .case-tag--sector {
        font-size: 0.62rem;
        padding: 5px 10px;
        gap: 4px;
        white-space: nowrap;
    }
    .case-tag--sector svg {
        width: 11px;
        height: 11px;
    }
    .cases-bento {
        grid-template-columns: 1fr;
    }
    .case-card--1, .case-card--2, .case-card--3,
    .case-card--4, .case-card--5 {
        grid-column: span 1;
    }
    .case-card--1 .case-logo-img--desktop-only { display: none; }
    .case-card--1 .case-logo-img--mobile-only {
        display: block;
        height: 36px;
    }
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }
    .testi-body {
        padding: 24px 22px;
        min-height: 0;
    }
    .testi-logo-wrap {
        height: 36px;
        margin-bottom: 12px;
    }
    .testi-logo {
        height: 22px;
    }
    .testimonial-card--2 .testi-logo { height: 32px; }
    .testimonial-card--5 .testi-logo { height: 36px; }
    .testimonial-stars {
        margin-bottom: 12px;
        gap: 3px;
    }
    .testimonial-stars svg { width: 14px; height: 14px; }
    .testimonial-quote {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    .author-avatar { width: 36px; height: 36px; font-size: 0.85rem; }
    .author-name { font-size: 0.88rem; }
    .author-role { font-size: 0.75rem; }
    /* === MÉTHODE : refonte mobile à la Charbon === */
    .method-inner { padding: 96px 20px 24px; }
    .meth-label { margin-bottom: 18px; }
    .meth-label .section-title { font-size: 1.7rem; }
    .meth-subtitle { display: none; }

    /* Timeline : on n'affiche QUE l'étape active, centrée, avec une ligne
       de progression qui se remplit vers la prochaine lettre. */
    .meth-timeline {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-bottom: 60px; /* place pour le label en dessous */
        padding: 0;
        position: relative;
        height: 64px;
        overflow: visible;
    }
    /* Track (ligne grise) — passe au centre du cercle, derrière */
    .meth-timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        margin-top: -1px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 2px;
        z-index: 0;
    }
    /* Fill (ligne violette) — par défaut sur la droite (scroll vers le bas),
       bascule à gauche quand on scrolle vers le haut. */
    .meth-timeline::after {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(50% + 32px);
        right: auto;
        width: calc((50% - 32px) * var(--meth-progress, 0));
        height: 2px;
        margin-top: -1px;
        background: linear-gradient(90deg, var(--violet, #B063F9), rgba(176, 99, 249, 0.5));
        border-radius: 2px;
        z-index: 1;
        transition: width 0.15s linear;
    }
    .method-wrapper[data-scroll-dir="up"] .meth-timeline::after {
        left: auto;
        right: calc(50% + 32px);
        background: linear-gradient(270deg, var(--violet, #B063F9), rgba(176, 99, 249, 0.5));
    }

    .meth-tl-line { display: none; }
    .meth-tl-item:not(.active) { display: none; }
    .meth-tl-item.active {
        position: relative;
        z-index: 2;
        flex-direction: column;
        gap: 0;
    }
    .meth-tl-item.active .meth-tl-circle {
        display: flex;
        width: 64px;
        height: 64px;
        background: var(--violet, #B063F9);
        /* Anneau de la couleur du fond pour "couper" la ligne au niveau du cercle */
        box-shadow: 0 0 0 6px var(--purple-deep, #1A0046), 0 0 30px rgba(176, 99, 249, 0.35);
        position: relative;
        z-index: 2;
    }
    .meth-tl-item.active .meth-tl-circle span {
        font-size: 1.7rem;
        font-weight: 800;
    }
    /* Label positionné sous le cercle, hors de la ligne */
    .meth-tl-item.active .meth-tl-name {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--violet, #B063F9);
        text-transform: capitalize;
        white-space: nowrap;
    }

    /* Panel : layout vertical, tout visible d'un coup */
    .meth-body { overflow: visible; }
    .meth-panel {
        flex-direction: column;
        gap: 14px;
    }
    .meth-panel-left { flex: none; }
    .meth-panel-right { width: 100%; flex: none; }
    .meth-panel-title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .meth-panel-intro {
        font-size: 0.92rem;
        margin-bottom: 10px;
    }
    .meth-panel-list { margin-bottom: 14px; gap: 6px; }
    .meth-panel-list li { font-size: 0.92rem; }
    .meth-panel-objective {
        font-size: 0.88rem;
        padding: 12px 16px;
        margin-bottom: 0;
    }
    .meth-illus { height: 180px; margin-top: 4px; }
    .meth-illus--creation .illus-phone {
        width: 92px;
        height: 140px;
        gap: 8px;
    }
    .meth-illus--creation .illus-phone-play {
        width: 40px;
        height: 40px;
    }
    .meth-illus--creation .illus-phone-likes { font-size: 0.7rem; }
    .meth-illus--creation .illus-float {
        width: 30px;
        height: 30px;
    }
    .meth-illus--creation .illus-float svg { width: 14px; height: 14px; }
    .meth-illus--creation .illus-float-1 { top: 18px; right: 18px; }
    .meth-illus--creation .illus-float-2 { bottom: 18px; left: 18px; }
    /* Feedback panel — boucle d'icônes plus compacte + tags réduits */
    .meth-illus--feedback .illus-loop { width: 140px; height: 140px; }
    .meth-illus--feedback .illus-loop-item { width: 36px; height: 36px; border-radius: 10px; }
    .meth-illus--feedback .illus-loop-item svg { width: 16px; height: 16px; }
    .meth-illus--feedback .illus-pct {
        padding: 5px 10px;
        border-radius: 8px;
    }
    .meth-illus--feedback .illus-pct-1 { top: 14px; right: 14px; font-size: 1rem; }
    .meth-illus--feedback .illus-pct-2 { bottom: 14px; left: 14px; font-size: 1.05rem; }
    /* Objectifs panel — KPIs scaled down so they fit the 240px mobile illus */
    .meth-illus--objectifs .illus-target {
        width: 130px;
        height: 130px;
    }
    .meth-illus--objectifs .illus-target-center { inset: 52px; }
    .meth-illus--objectifs .illus-target-ring.r2 { inset: 20px; }
    .meth-illus--objectifs .illus-target-ring.r3 { inset: 40px; }
    .meth-illus--objectifs .illus-kpi {
        padding: 7px 12px;
    }
    .meth-illus--objectifs .illus-kpi-1 { top: 18px; right: 18px; font-size: 1.4rem; }
    .meth-illus--objectifs .illus-kpi-2 { bottom: 48px; right: 22px; font-size: 1rem; }
    .meth-illus--objectifs .illus-kpi-3 { bottom: 18px; left: 18px; font-size: 0.95rem; }
    /* Audit panel — tags & bars repositioned for 240px mobile illus */
    .meth-illus--audit .illus-badge { top: 18px; left: 18px; font-size: 0.65rem; padding: 5px 12px; }
    .meth-illus--audit .illus-glass { top: 18px; right: 18px; width: 44px; height: 44px; }
    .meth-illus--audit .illus-bars { bottom: 32px; left: 22px; right: 22px; height: 100px; }
    .meth-illus--audit .illus-tag-tl { top: auto; bottom: 18px; left: 18px; font-size: 0.65rem; padding: 3px 10px; }
    .meth-illus--audit .illus-tag-br { bottom: 18px; right: 18px; font-size: 0.65rem; padding: 3px 10px; }
    .meth-panel-title { font-size: 1.6rem; }
    .meth-proof-number { font-size: 3.5rem; }
    .meth-proof-stat { padding: 32px 16px; }
    .meth-proof-label { font-size: 0.85rem; }
    .showcase-reels {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .showcase-reels::-webkit-scrollbar {
        display: none;
    }
    .reel-card {
        flex: 0 0 160px;
    }
    .reel-placeholder {
        width: 160px;
        height: 284px;
    }
    .footer-kolaf-logo {
        width: 220px;
    }
    .footer-nav-row {
        flex-wrap: wrap;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .final-cta-section {
        padding: 100px 0;
    }
    .final-cta-title {
        font-size: 1.85rem;
        line-height: 1.18;
        margin-bottom: 14px;
    }
    .final-cta-sub {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    /* CTA principal — un peu plus compact en mobile */
    .btn-primary {
        padding: 13px 26px;
        gap: 8px;
        font-size: 0.92rem;
    }
    .btn-large {
        padding: 14px 30px;
        font-size: 0.98rem;
    }
    /* Pill "Places limitées" — pastille rouge ronde + meilleur espacement */
    .final-cta-scarcity {
        margin-top: 20px;
        padding: 8px 14px 8px 12px;
        gap: 10px;
        font-size: 0.78rem;
        line-height: 1.4;
        text-align: left;
        max-width: 92%;
    }
    .scarcity-dot {
        width: 9px;
        height: 9px;
    }
    .faq-heading {
        font-size: 2.2rem;
    }
    .faq-question {
        font-size: 0.92rem;
        gap: 14px;
        padding: 20px 0;
    }
    .faq-num {
        font-size: 0.78rem;
    }
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }
    .faq-left {
        width: 100%;
        position: static;
    }
    .faq-left-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .service-card {
        padding: 28px;
    }
    .case-card {
        padding: 24px;
    }
    .case-phone {
        width: 90px;
        height: 160px;
    }
    /* Note : la refonte mobile @ 768px gère déjà la timeline et les panneaux,
       on ne ré-écrit pas ici pour ne pas casser la mise en page Charbon. */
    .meth-panel-title { font-size: 1.2rem; }
    .meth-proof-row { flex-direction: column; align-items: center; gap: 0; }
    .meth-proof-stat:not(:last-child)::after {
        width: 60%;
        height: 1px;
        right: auto;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent 0%, rgba(0, 210, 211, 0.3) 30%, rgba(0, 210, 211, 0.3) 70%, transparent 100%);
    }
    .meth-proof-number { font-size: 3rem; }
    .meth-proof-stat { padding: 28px 16px; }
}
