/* =====================================================
   CRÉATION SITE WEB — DESIGN CRÉATIF AGENCE
   Animations, dégradés vifs, hover 3D, typewriter
   ===================================================== */

:root {
    --cw-c1: #7c3aed;  /* violet */
    --cw-c2: #ec4899;  /* rose */
    --cw-c3: #06b6d4;  /* cyan */
    --cw-c4: #f59e0b;  /* ambre */
    --cw-c5: #10b981;  /* vert */
    --cw-c6: #3b82f6;  /* bleu */
    --cw-ink: #0a1f44;
}

/* ========== HERO CRÉATIF ========== */
.hero-creative {
    position: relative;
    min-height: calc(100vh - var(--header-h, 132px));
    min-height: calc(100dvh - var(--header-h, 132px));
    padding: 40px 20px 50px;
    box-sizing: border-box;
    overflow: hidden;
    background: #0a0f2c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

/* Mesh gradient animé en fond */
.hero-creative::before {
    content: "";
    position: absolute;
    inset: -30%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124,58,237,0.65) 0%, transparent 42%),
        radial-gradient(circle at 80% 20%, rgba(236,72,153,0.55) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(6,182,212,0.55) 0%, transparent 38%),
        radial-gradient(circle at 25% 85%, rgba(245,158,11,0.5) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59,130,246,0.35) 0%, transparent 50%);
    filter: blur(30px);
    animation: cwMeshFlow 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes cwMeshFlow {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    33%  { transform: translate(3%, -2%) rotate(6deg) scale(1.05); }
    66%  { transform: translate(-2%, 3%) rotate(-4deg) scale(1.1); }
    100% { transform: translate(2%, 2%) rotate(3deg) scale(1.02); }
}

/* Grille subtile par-dessus */
.hero-creative::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    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: 46px 46px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
    pointer-events: none;
}

/* Formes flottantes décoratives */
.cw-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
    animation: cwFloat 14s ease-in-out infinite alternate;
}
.cw-blob--1 { top: 12%; left: 6%; width: 260px; height: 260px; background: #ec4899; }
.cw-blob--2 { bottom: 8%; right: 5%; width: 340px; height: 340px; background: #06b6d4; animation-delay: -4s; animation-duration: 18s; }
.cw-blob--3 { top: 55%; left: 45%; width: 220px; height: 220px; background: #f59e0b; animation-delay: -8s; animation-duration: 22s; opacity: 0.35; }

@keyframes cwFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.12); }
}

/* Étoiles scintillantes */
.cw-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.cw-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #fff, 0 0 16px rgba(255,255,255,0.6);
    opacity: 0;
    animation: cwTwinkle 4s ease-in-out infinite;
}
@keyframes cwTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50%      { opacity: 1; transform: scale(1.1); }
}

/* Contenu hero */
.hero-creative-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-creative-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #fde68a;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
    margin-bottom: 22px;
    animation: cwFadeInUp 0.8s ease-out;
}
.hero-creative-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: cwPulseDot 2s infinite;
}
@keyframes cwPulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70%  { box-shadow: 0 0 0 14px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero-creative-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 5.8vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    color: #fff;
    animation: cwFadeInUp 0.9s ease-out 0.1s both;
}
.hero-creative-title .gradient-word {
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: cwGradientShift 6s ease infinite;
    display: inline-block;
}
@keyframes cwGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-creative-typewriter {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.3vw, 1.55rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    min-height: 2.2em;
    animation: cwFadeInUp 1s ease-out 0.3s both;
    contain: layout;                  /* Anti-CLS */
}
.hero-creative-typewriter .typed {
    color: #fbbf24;
    border-right: 3px solid #fbbf24;
    padding-right: 4px;
    animation: cwCaretBlink 0.8s steps(2) infinite;
    display: inline-block;
    min-width: 14ch;                  /* Anti-CLS : largeur réservée */
}
@keyframes cwCaretBlink {
    50% { border-right-color: transparent; }
}

.hero-creative-desc {
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    color: rgba(255,255,255,0.82);
    max-width: 720px;
    margin: 0 auto 38px;
    line-height: 1.65;
    animation: cwFadeInUp 1.1s ease-out 0.45s both;
}

.hero-creative-ctas {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: cwFadeInUp 1.2s ease-out 0.6s both;
}

.cw-btn-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 30px 12px 12px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    color: #0a1f44;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 35%, #f59e0b 75%, #ea580c 100%);
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 0 0 6px rgba(251, 191, 36, 0.16),
        0 22px 52px rgba(245, 158, 11, 0.55),
        inset 0 2px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 0 rgba(180, 83, 9, 0.25);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}
.cw-btn-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), transparent 55%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.cw-btn-main::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    z-index: 1;
}
.cw-btn-main > * { position: relative; z-index: 2; }
.cw-btn-main-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0a1f44;
    color: #fbbf24;
    flex-shrink: 0;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.35),
        0 6px 14px rgba(10, 31, 68, 0.4);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.cw-btn-main-icon svg {
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
    position: relative;
    z-index: 1;
}
.cw-btn-main-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}
.cw-btn-main-label strong {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: rgba(10, 31, 68, 0.78);
}
.cw-btn-main-label em {
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #0a1f44;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.cw-btn-main-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(10, 31, 68, 0.75);
    animation: cwCtaPhonePulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.cw-btn-main:hover {
    transform: translateY(-5px) scale(1.035);
    box-shadow:
        0 0 0 10px rgba(251, 191, 36, 0.25),
        0 32px 66px rgba(245, 158, 11, 0.72),
        inset 0 2px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 0 rgba(180, 83, 9, 0.25);
}
.cw-btn-main:hover::after { left: 120%; }
.cw-btn-main:hover .cw-btn-main-icon {
    background: #000;
    transform: rotate(-8deg) scale(1.08);
}
.cw-btn-main:active { transform: translateY(-2px) scale(1.01); }

.cw-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: 0;
    text-decoration: none;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.3s;
}
.cw-btn-ghost::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 26px;
    bottom: 4px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    transform-origin: left;
    transition: background 0.3s, transform 0.35s ease;
}
.cw-btn-ghost-arrow {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #fbbf24;
}
.cw-btn-ghost:hover {
    color: #fbbf24;
}
.cw-btn-ghost:hover::after {
    background: #fbbf24;
    transform: scaleX(1.04);
}
.cw-btn-ghost:hover .cw-btn-ghost-arrow {
    transform: translateX(5px);
}

/* Preuves sociales sous les CTA */
.hero-creative-proofs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: cwFadeInUp 1.3s ease-out 0.75s both;
}
.cw-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    font-weight: 600;
}
.cw-proof svg { color: #fbbf24; }
.cw-proof strong { color: #fff; font-weight: 800; }

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

/* Indicateur scroll */
.cw-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.cw-scroll-indicator::before {
    content: "";
    width: 4px; height: 8px;
    background: #fbbf24;
    border-radius: 2px;
    animation: cwScrollDot 1.8s ease-in-out infinite;
}
@keyframes cwScrollDot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ========== AGENCY POWER SECTION ========== */
.cw-power {
    padding: 90px 20px;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.cw-power::before {
    content: "";
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cw-power::after {
    content: "";
    position: absolute;
    bottom: -100px; right: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cw-power-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}
.cw-kicker {
    display: inline-block;
    background: transparent;
    background-image: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cw-power-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.3vw, 2.5rem);
    font-weight: 900;
    color: var(--cw-ink);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
    max-width: 720px;
}
.cw-power-title .hl {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-power-sub {
    color: #4a5568;
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 0 50px;
}
.cw-power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.cw-power-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 34px 28px;
    border: 1px solid #e5ebf5;
    box-shadow: 0 4px 16px rgba(10,31,68,0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
    cursor: default;
}
.cw-power-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--cw-accent, #7c3aed);
    transform: scaleX(0.2);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cw-power-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10,31,68,0.15);
    border-color: var(--cw-accent, #7c3aed);
}
.cw-power-card:hover::before { transform: scaleX(1); }
.cw-power-card .cw-icon-wrap {
    width: 62px; height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--cw-accent-soft, rgba(124,58,237,0.1));
    color: var(--cw-accent, #7c3aed);
    margin-bottom: 22px;
    transition: transform 0.4s, background 0.4s;
}
.cw-power-card:hover .cw-icon-wrap {
    transform: rotate(-6deg) scale(1.1);
    background: var(--cw-accent, #7c3aed);
    color: #fff;
}
.cw-power-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.17rem;
    font-weight: 800;
    color: var(--cw-ink);
    margin: 0 0 10px;
}
.cw-power-card p {
    color: #4a5568;
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}
.cw-power-card--violet { --cw-accent: #7c3aed; --cw-accent-soft: rgba(124,58,237,0.12); }
.cw-power-card--rose   { --cw-accent: #ec4899; --cw-accent-soft: rgba(236,72,153,0.12); }
.cw-power-card--cyan   { --cw-accent: #06b6d4; --cw-accent-soft: rgba(6,182,212,0.12); }
.cw-power-card--amber  { --cw-accent: #f59e0b; --cw-accent-soft: rgba(245,158,11,0.12); }
.cw-power-card--emerald{ --cw-accent: #10b981; --cw-accent-soft: rgba(16,185,129,0.12); }
.cw-power-card--blue   { --cw-accent: #3b82f6; --cw-accent-soft: rgba(59,130,246,0.12); }

/* ========== CTA MAGNETIC BAND ========== */
.cw-cta-band {
    position: relative;
    margin: 80px auto 0;
    max-width: 1180px;
    padding: 0 20px;
}
.cw-cta-box {
    position: relative;
    background: linear-gradient(135deg, #0a0f2c 0%, #1a1f4d 50%, #3730a3 100%);
    border-radius: 28px;
    padding: 60px 50px;
    overflow: hidden;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.cw-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(236,72,153,0.4), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(6,182,212,0.35), transparent 40%);
    pointer-events: none;
}
.cw-cta-box > * { position: relative; z-index: 1; }

.cw-cta-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.cw-cta-text h2 .hl-y {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 24px;
}
.cw-cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cw-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
}
.cw-cta-features svg { color: #10b981; }

.cw-cta-phone {
    text-align: center;
}
.cw-cta-phone .label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cw-cta-phone-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 32px 14px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 35%, #f59e0b 75%, #ea580c 100%);
    color: #0a1f44;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    box-shadow:
        0 0 0 6px rgba(251, 191, 36, 0.16),
        0 24px 56px rgba(245, 158, 11, 0.55),
        inset 0 2px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 0 rgba(180, 83, 9, 0.25);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 14px;
}
.cw-cta-phone-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), transparent 55%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.cw-cta-phone-btn::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.65) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    z-index: 1;
}
.cw-cta-phone-btn > * { position: relative; z-index: 2; }
.cw-cta-phone-btn-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0a1f44;
    color: #fbbf24;
    flex-shrink: 0;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.35),
        0 6px 14px rgba(10, 31, 68, 0.45);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, color 0.3s;
}
.cw-cta-phone-btn-icon svg {
    transition: transform 0.35s ease;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
    position: relative;
    z-index: 1;
}
.cw-cta-phone-btn-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}
.cw-cta-phone-btn-label strong {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(10, 31, 68, 0.75);
}
.cw-cta-phone-btn-label em {
    font-style: normal;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #0a1f44;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
.cw-cta-phone-btn-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(10, 31, 68, 0.8);
    animation: cwCtaPhonePulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes cwCtaPhonePulse {
    0%   { transform: scale(1); opacity: 0.7; }
    80%  { transform: scale(1.75); opacity: 0; }
    100% { transform: scale(1.75); opacity: 0; }
}
.cw-cta-phone-btn:hover {
    transform: translateY(-5px) scale(1.035);
    box-shadow:
        0 0 0 10px rgba(251, 191, 36, 0.25),
        0 34px 70px rgba(245, 158, 11, 0.75),
        inset 0 2px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 0 rgba(180, 83, 9, 0.25);
}
.cw-cta-phone-btn:hover::after { left: 120%; }
.cw-cta-phone-btn:hover .cw-cta-phone-btn-icon {
    background: #000;
    transform: rotate(-8deg) scale(1.08);
}
.cw-cta-phone-btn:active { transform: translateY(-2px) scale(1.01); }

.cw-cta-phone-note {
    display: block;
    margin-top: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ========== PROCESS TIMELINE ========== */
.cw-process {
    padding: 90px 20px;
    background: #fff;
    position: relative;
}
.cw-process-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.cw-process-header {
    text-align: center;
    margin-bottom: 60px;
}
.cw-process-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.3vw, 2.5rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 12px 0 12px;
    letter-spacing: -0.5px;
}
.cw-process-header p {
    color: #4a5568;
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.cw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.cw-steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #ec4899, #06b6d4, #f59e0b);
    border-radius: 2px;
    z-index: 0;
}
.cw-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.cw-step-bubble {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--cw-step-c, #7c3aed);
    color: var(--cw-step-c, #7c3aed);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(10,31,68,0.1);
    transition: transform 0.3s, background 0.3s, color 0.3s;
    position: relative;
}
.cw-step-bubble::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--cw-step-c, #7c3aed);
    opacity: 0.35;
    animation: cwSpin 12s linear infinite;
}
@keyframes cwSpin {
    to { transform: rotate(360deg); }
}
.cw-step:hover .cw-step-bubble {
    transform: scale(1.1);
    background: var(--cw-step-c, #7c3aed);
    color: #fff;
}
.cw-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cw-ink);
    margin: 0 0 8px;
}
.cw-step p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}
.cw-step--1 { --cw-step-c: #7c3aed; }
.cw-step--2 { --cw-step-c: #ec4899; }
.cw-step--3 { --cw-step-c: #06b6d4; }
.cw-step--4 { --cw-step-c: #f59e0b; }

/* ========== VALUE COMPARISON ========== */
.cw-compare {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.cw-compare-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.cw-compare-head {
    text-align: center;
    margin-bottom: 46px;
}
.cw-compare-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.3vw, 2.4rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 12px 0 12px;
    letter-spacing: -0.5px;
}
.cw-compare-head p {
    color: #4a5568;
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.cw-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cw-compare-col {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 4px 20px rgba(10,31,68,0.07);
    border: 1px solid #e5ebf5;
    position: relative;
    overflow: hidden;
}
.cw-compare-col.agency {
    opacity: 0.92;
}
.cw-compare-col.agency::after {
    content: "Agence classique";
    position: absolute;
    top: 14px; right: 14px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
}
.cw-compare-col.us {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4) border-box;
    transform: scale(1.03);
}
.cw-compare-col.us::after {
    content: "✨ SOS Ordinateur";
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
}
.cw-compare-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cw-ink);
    margin: 0 0 22px;
}
.cw-compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cw-compare-col li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.55;
}
.cw-compare-col li:last-child { border-bottom: none; }
.cw-compare-col li .ci {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.cw-compare-col.agency li .ci { background: #fecaca; color: #b91c1c; }
.cw-compare-col.us li .ci { background: #d1fae5; color: #047857; }

/* ========== TESTIMONIAL MARQUEE ========== */
.cw-testi {
    padding: 80px 0;
    background: #0a0f2c;
    overflow: hidden;
    position: relative;
}
.cw-testi::before {
    content: "";
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.3), transparent 70%);
    pointer-events: none;
}
.cw-testi-head {
    text-align: center;
    margin-bottom: 46px;
    padding: 0 20px;
    position: relative;
}
.cw-testi-head h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    margin: 10px 0;
    letter-spacing: -0.5px;
}
.cw-testi-head p {
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
}
.cw-testi-stars {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: #fbbf24;
    padding: 0;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(251, 191, 36, 0.4);
}
.cw-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: cwMarquee 40s linear infinite;
}
.cw-marquee:hover { animation-play-state: paused; }
@keyframes cwMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.cw-testi-card {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 26px 24px;
    color: #fff;
}
.cw-testi-card .tc-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.cw-testi-card .tc-text {
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
    margin: 0 0 18px;
    font-style: italic;
}
.cw-testi-card .tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cw-testi-card .tc-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
}
.cw-testi-card .tc-name {
    font-weight: 700;
    font-size: 0.92rem;
    margin: 0;
}
.cw-testi-card .tc-meta {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    margin: 2px 0 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .cw-power-grid { grid-template-columns: repeat(2, 1fr); }
    .cw-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    .cw-steps::before { display: none; }
    .cw-cta-box { grid-template-columns: 1fr; gap: 26px; padding: 46px 34px; }
    .cw-cta-phone { text-align: center; }
    .cw-cta-phone-note { text-align: center; }
}
@media (max-width: 768px) {
    .hero-creative { padding: 30px 18px 40px; }
    .hero-creative-title {
        font-size: clamp(1.7rem, 6.2vw, 2.2rem);
        letter-spacing: -0.6px;
        line-height: 1.14;
    }
    .hero-creative-title br { display: none; }
    .hero-creative-title .gradient-word { display: inline; }
    .cw-blob--1 { width: 180px; height: 180px; }
    .cw-blob--2 { width: 220px; height: 220px; }
    .cw-blob--3 { display: none; }
    .hero-creative-ctas { gap: 12px; flex-direction: column; }
    .cw-btn-main { padding: 10px 22px 10px 10px; gap: 12px; width: 100%; justify-content: center; }
    .cw-btn-main-icon { width: 42px; height: 42px; }
    .cw-btn-main-label strong { font-size: 0.65rem; letter-spacing: 1px; }
    .cw-btn-main-label em { font-size: 1.05rem; }
    .cw-btn-ghost { font-size: 0.94rem; justify-content: center; }
    .hero-creative-proofs { gap: 16px 20px; }
    .cw-proof { font-size: 0.82rem; }
    .cw-power { padding: 60px 18px; }
    .cw-power-grid { gap: 16px; }
    .cw-power-card { padding: 26px 22px; }
    .cw-compare { padding: 56px 16px; }
    .cw-compare-grid { grid-template-columns: 1fr; gap: 16px; }
    .cw-compare-col.us { transform: none; }
    .cw-process { padding: 60px 18px; }
    .cw-testi { padding: 60px 0; }
    .cw-testi-card { width: 280px; padding: 22px 20px; }
    .cw-cta-text h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-creative { padding: 24px 18px 32px; }
    .hero-creative-title {
        font-size: 1.6rem;
        letter-spacing: -0.4px;
        line-height: 1.18;
        padding: 0 4px;
    }
    .hero-creative-title br { display: none; }
    .hero-creative-title .gradient-word { display: inline; }
    .hero-creative-eyebrow { font-size: 0.72rem; padding: 7px 14px; margin-bottom: 18px; letter-spacing: 0.3px; }
    .hero-creative-typewriter { font-size: 0.95rem; min-height: 2.6em; }
    .hero-creative-desc { font-size: 0.92rem; margin-bottom: 26px; line-height: 1.55; padding: 0 4px; }
    .cw-btn-main { width: 100%; justify-content: center; }
    .cw-btn-ghost { justify-content: center; }
    .hero-creative-proofs { flex-direction: column; gap: 10px; align-items: flex-start; max-width: 260px; margin: 0 auto; }
    .cw-proof { width: 100%; justify-content: flex-start; }
    .cw-power-grid { grid-template-columns: 1fr; }
    .cw-steps { grid-template-columns: 1fr; gap: 30px; }
    .cw-cta-box { padding: 36px 22px; border-radius: 22px; text-align: center; }
    .cw-cta-text { text-align: center; }
    .cw-cta-text h2 { text-align: center; }
    .cw-cta-text p { text-align: center; }
    .cw-cta-features { flex-direction: column; gap: 10px; align-items: center; justify-content: center; }
    .cw-cta-phone-btn { padding: 12px 26px 12px 12px; gap: 12px; }
    .cw-cta-phone-btn-icon { width: 46px; height: 46px; }
    .cw-cta-phone-btn-label strong { font-size: 0.68rem; letter-spacing: 1.1px; }
    .cw-cta-phone-btn-label em { font-size: 1.12rem; }
    .cw-cta-phone .number { font-size: 1.6rem; }
    .cw-process-inner { padding: 0 6px; }
    .cw-testi-card { width: 260px; }
    .cw-scroll-indicator { display: none; }
}

/* ========== BADGES RÉASSURANCE (trust row) ========== */
.cw-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding: 50px 20px 10px;
    max-width: 1100px;
    margin: 0 auto;
}
.cw-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cw-ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(18px);
    animation: cwBadgeIn 0.6s ease-out forwards;
}
.cw-badges .cw-badge-pill:nth-child(1) { animation-delay: 0.1s; --cw-pill-grad: linear-gradient(135deg, #7c3aed, #ec4899); }
.cw-badges .cw-badge-pill:nth-child(2) { animation-delay: 0.2s; --cw-pill-grad: linear-gradient(135deg, #ec4899, #f59e0b); }
.cw-badges .cw-badge-pill:nth-child(3) { animation-delay: 0.3s; --cw-pill-grad: linear-gradient(135deg, #f59e0b, #10b981); }
.cw-badges .cw-badge-pill:nth-child(4) { animation-delay: 0.4s; --cw-pill-grad: linear-gradient(135deg, #10b981, #06b6d4); }
.cw-badges .cw-badge-pill:nth-child(5) { animation-delay: 0.5s; --cw-pill-grad: linear-gradient(135deg, #06b6d4, #3b82f6); }
@keyframes cwBadgeIn {
    to { opacity: 1; transform: translateY(0); }
}
.cw-badge-pill:hover {
    transform: translateY(-2px);
    box-shadow: none;
}
.cw-badge-pill .ic {
    display: inline-flex;
    width: 26px; height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cw-pill-grad);
    color: #fff;
}

/* ========== INTRO CRÉATIVE ========== */
.cw-intro {
    max-width: 1180px;
    margin: 70px auto 90px;
    padding: 0 20px;
    position: relative;
}
.cw-intro-box {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 50px 54px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(10,31,68,0.08);
    isolation: isolate;
}
.cw-intro-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 28px;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4, #f59e0b);
    background-size: 300% 300%;
    animation: cwBorderFlow 8s ease infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
@keyframes cwBorderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.cw-intro-box::after {
    content: "";
    position: absolute;
    top: -60px; right: -80px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(236,72,153,0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.cw-intro-content { position: relative; z-index: 1; }
.cw-intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.cw-intro-content h2 .hl-pink {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-intro-content p {
    color: #4a5568;
    line-height: 1.75;
    font-size: 1rem;
    margin: 0 0 14px;
}
.cw-intro-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 12px 28px 12px 12px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.02rem;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 40%, #ec4899 100%);
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 0 0 5px rgba(124, 58, 237, 0.18),
        0 22px 52px rgba(236, 72, 153, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 0 rgba(88, 28, 135, 0.3);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}
.cw-intro-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 55%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.cw-intro-cta::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    z-index: 1;
}
.cw-intro-cta > * { position: relative; z-index: 2; }
.cw-intro-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.cw-intro-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 0 0 8px rgba(236, 72, 153, 0.28),
        0 32px 66px rgba(236, 72, 153, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 0 rgba(88, 28, 135, 0.3);
}
.cw-intro-cta:hover::after { left: 120%; }
.cw-intro-cta:hover .cw-intro-cta-icon {
    background: #fff;
    color: #7c3aed;
    transform: rotate(-8deg) scale(1.08);
}
.cw-intro-cta:active { transform: translateY(-2px) scale(1.01); }

.cw-intro-visual {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 280px;
}
.cw-intro-tile {
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    padding: 14px;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cw-intro-tile:hover { transform: scale(1.06) rotate(-1deg); }
.cw-intro-tile::before {
    content: "";
    position: absolute; inset: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}
.cw-intro-tile--1 {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    grid-column: 1; grid-row: 1 / span 2;
    font-size: 1.2rem;
    animation: cwFloatSlow 6s ease-in-out infinite;
}
.cw-intro-tile--2 {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    animation: cwFloatSlow 7s ease-in-out infinite 0.5s;
}
.cw-intro-tile--3 {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    animation: cwFloatSlow 8s ease-in-out infinite 1s;
}
@keyframes cwFloatSlow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.cw-intro-tile .emoji {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}

/* ========== SERVICES (fonctionnalités) CRÉATIFS ========== */
.cw-features {
    padding: 80px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.cw-features::before {
    content: "";
    position: absolute;
    top: 10%; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cw-features::after {
    content: "";
    position: absolute;
    bottom: 10%; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cw-features-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}
.cw-features-head {
    text-align: center;
    margin-bottom: 48px;
}
.cw-features-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 10px 0 12px;
    letter-spacing: -0.5px;
}
.cw-features-head h2 .hl {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-features-head p {
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}
.cw-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cw-feat {
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid #e5ebf5;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.cw-feat::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background: var(--cw-fg, linear-gradient(135deg, #7c3aed, #ec4899));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
.cw-feat > * { position: relative; z-index: 1; }
.cw-feat:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(10,31,68,0.15);
    color: #fff;
}
.cw-feat:hover::before { opacity: 1; }
.cw-feat:hover .cw-feat-ic { background: rgba(255,255,255,0.22); color: #fff; }
.cw-feat:hover h3, .cw-feat:hover p { color: #fff; }

.cw-feat-ic {
    width: 54px; height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--cw-fg-soft, rgba(124,58,237,0.12));
    color: var(--cw-fg-color, #7c3aed);
    margin-bottom: 16px;
    transition: background 0.4s, color 0.4s;
}
.cw-feat h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--cw-ink);
    margin: 0 0 8px;
    transition: color 0.4s;
}
.cw-feat p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    transition: color 0.4s;
}
.cw-feat--violet { --cw-fg: linear-gradient(135deg, #7c3aed, #a855f7); --cw-fg-soft: rgba(124,58,237,0.12); --cw-fg-color: #7c3aed; }
.cw-feat--rose   { --cw-fg: linear-gradient(135deg, #ec4899, #f472b6); --cw-fg-soft: rgba(236,72,153,0.12); --cw-fg-color: #ec4899; }
.cw-feat--cyan   { --cw-fg: linear-gradient(135deg, #06b6d4, #22d3ee); --cw-fg-soft: rgba(6,182,212,0.12); --cw-fg-color: #06b6d4; }
.cw-feat--amber  { --cw-fg: linear-gradient(135deg, #f59e0b, #fbbf24); --cw-fg-soft: rgba(245,158,11,0.12); --cw-fg-color: #f59e0b; }
.cw-feat--emerald{ --cw-fg: linear-gradient(135deg, #10b981, #34d399); --cw-fg-soft: rgba(16,185,129,0.12); --cw-fg-color: #10b981; }
.cw-feat--blue   { --cw-fg: linear-gradient(135deg, #3b82f6, #60a5fa); --cw-fg-soft: rgba(59,130,246,0.12); --cw-fg-color: #3b82f6; }
.cw-feat--fuschia{ --cw-fg: linear-gradient(135deg, #d946ef, #ec4899); --cw-fg-soft: rgba(217,70,239,0.12); --cw-fg-color: #d946ef; }
.cw-feat--indigo { --cw-fg: linear-gradient(135deg, #6366f1, #8b5cf6); --cw-fg-soft: rgba(99,102,241,0.12); --cw-fg-color: #6366f1; }

/* ========== WARN BOX CRÉATIVE ========== */
.cw-warn {
    max-width: 1080px;
    margin: 30px auto 90px;
    padding: 0 20px;
}
.cw-warn-box {
    position: relative;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 60%, #fbcfe8 100%);
    border-radius: 22px;
    padding: 44px 50px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: center;
}
.cw-warn-box::before {
    content: "💡";
    position: absolute;
    top: -10px; right: -10px;
    font-size: 10rem;
    opacity: 0.1;
    pointer-events: none;
    animation: cwBulbBlink 3s ease-in-out infinite;
}
@keyframes cwBulbBlink {
    0%, 100% { opacity: 0.1; transform: rotate(0deg); }
    50%      { opacity: 0.25; transform: rotate(-6deg); }
}
.cw-warn-kicker {
    display: inline-block;
    background: transparent;
    color: #b45309;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding: 0;
    border-radius: 0;
    margin-bottom: 12px;
}
.cw-warn-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: #78350f;
    margin: 0 0 14px;
    line-height: 1.2;
}
.cw-warn-box p {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}
.cw-warn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 28px 14px 14px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 50%, #dc2626 100%);
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 0 0 4px rgba(234, 88, 12, 0.18),
        0 18px 44px rgba(220, 38, 38, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.cw-warn-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 55%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.cw-warn-cta::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    z-index: 1;
}
.cw-warn-cta > * { position: relative; z-index: 2; }
.cw-warn-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #7f1d1d;
    color: #fff;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.25);
}
.cw-warn-cta-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    gap: 2px;
}
.cw-warn-cta-label strong {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
}
.cw-warn-cta-label em {
    font-size: 1.12rem;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.2px;
    color: #fff;
}
.cw-warn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 0 6px rgba(234, 88, 12, 0.28),
        0 28px 58px rgba(220, 38, 38, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.cw-warn-cta:hover::after { left: 120%; }
.cw-warn-cta:hover .cw-warn-cta-icon { background: #000; }
.cw-warn-cta:active { transform: translateY(-1px) scale(1.01); }

/* ========== CTA FINAL CRÉATIVE ========== */
.cw-final {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 20px 80px;
}
.cw-final-box {
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
    background-size: 200% 200%;
    animation: cwFinalGrad 10s ease infinite;
    border-radius: 30px;
    padding: 70px 50px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
@keyframes cwFinalGrad {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.cw-final-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,0.2), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,0.15), transparent 40%);
    pointer-events: none;
}
.cw-final-box::after {
    content: "";
    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: 46px 46px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
}
.cw-final-box > * { position: relative; z-index: 1; }
.cw-final-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    padding: 0;
    border-radius: 0;
    color: #fde68a;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0,0,0,0.25);
    margin-bottom: 18px;
}
.cw-final-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
}
.cw-final-box h2 .hl-w {
    background: linear-gradient(180deg, #fff 0%, #fde68a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-final-box > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.92);
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.65;
}
.cw-final-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.cw-final-btn-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 30px 12px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
    color: #0a1f44;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.18),
        0 22px 52px rgba(0, 0, 0, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(180, 83, 9, 0.15);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}
.cw-final-btn-main::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(124, 58, 237, 0.18), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    z-index: 1;
}
.cw-final-btn-main > * { position: relative; z-index: 2; }
.cw-final-btn-main-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    flex-shrink: 0;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.25),
        0 6px 14px rgba(124, 58, 237, 0.45);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cw-final-btn-main-icon svg { position: relative; z-index: 1; }
.cw-final-btn-main-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}
.cw-final-btn-main-label strong {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: rgba(124, 58, 237, 0.78);
}
.cw-final-btn-main-label em {
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #0a1f44;
}
.cw-final-btn-main-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.8);
    animation: cwCtaPhonePulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.cw-final-btn-main:hover {
    transform: translateY(-5px) scale(1.035);
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.25),
        0 32px 66px rgba(0, 0, 0, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(180, 83, 9, 0.15);
}
.cw-final-btn-main:hover::after { left: 120%; }
.cw-final-btn-main:hover .cw-final-btn-main-icon {
    transform: rotate(-8deg) scale(1.08);
}
.cw-final-btn-main:active { transform: translateY(-2px) scale(1.01); }

.cw-final-btn-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, border-color 0.3s;
}
.cw-final-btn-ghost-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cw-final-btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
    transform: translateY(-3px) scale(1.02);
}
.cw-final-btn-ghost:hover .cw-final-btn-ghost-icon {
    background: #fff;
    color: #7c3aed;
    transform: scale(1.1);
}
.cw-final-note {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.78);
    margin: 10px 0 0;
}

/* ========== FAQ CRÉATIVE ========== */
.cw-faq {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.cw-faq-inner {
    max-width: 820px;
    margin: 0 auto;
}
.cw-faq-head {
    text-align: center;
    margin-bottom: 46px;
}
.cw-faq-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 10px 0 12px;
    letter-spacing: -0.5px;
}
.cw-faq-head h2 .hl {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-faq-head p {
    color: #6b7280;
    font-size: 1rem;
}
.cw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cw-faq-item {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e5ebf5;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.cw-faq-item[open] {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4) border-box;
    border: 2px solid transparent;
    box-shadow: 0 14px 34px rgba(124,58,237,0.18);
}
.cw-faq-item summary {
    padding: 22px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cw-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}
.cw-faq-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.14));
    color: #7c3aed;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.35s;
}
.cw-faq-item[open] .cw-faq-num {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(124,58,237,0.35);
}
.cw-faq-item summary > span:not(.cw-faq-num) {
    flex: 1;
}
.cw-faq-item summary::-webkit-details-marker { display: none; }
.cw-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    margin-left: auto;
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.3s;
}
.cw-faq-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}
.cw-faq-item[open] summary { color: #7c3aed; }
.cw-faq-item p {
    padding: 0 28px 24px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
    animation: cwFaqOpen 0.4s ease-out;
}
@keyframes cwFaqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== CITIES PILLS ========== */
.cw-cities {
    padding: 60px 20px 80px;
    text-align: center;
    background: #fff;
}
.cw-cities-lead {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 24px;
}
.cw-cities-lead strong { color: var(--cw-ink); }
.cw-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.cw-city-pill {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.87rem;
    font-weight: 700;
    color: #7c3aed;
    background: rgba(124,58,237,0.08);
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cw-city-pill:hover {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

/* Responsive restants */
@media (max-width: 1024px) {
    .cw-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .cw-intro-box { grid-template-columns: 1fr; gap: 30px; padding: 40px 34px; }
    .cw-intro-visual { height: 200px; }
    .cw-warn-box { grid-template-columns: 1fr; text-align: center; }
    .cw-warn-cta { width: auto; max-width: 100%; margin: 0 auto; padding: 12px 22px 12px 12px; gap: 12px; }
    .cw-warn-cta-icon { width: 40px; height: 40px; }
    .cw-warn-cta-label strong { font-size: 0.68rem; letter-spacing: 1px; }
    .cw-warn-cta-label em { font-size: 1rem; }
}
@media (max-width: 768px) {
    .cw-badges { padding: 32px 16px 6px; gap: 10px; }
    .cw-badge-pill { font-size: 0.82rem; padding: 10px 16px; gap: 8px; }
    .cw-intro { margin: 40px auto 60px; }
    .cw-intro-box { padding: 30px 22px; border-radius: 22px; }
    .cw-intro-visual { height: 180px; gap: 10px; }
    .cw-intro-tile { font-size: 0.82rem; padding: 10px; }
    .cw-intro-tile--1 { font-size: 1rem; }
    .cw-features { padding: 60px 16px; }
    .cw-feat { padding: 22px 18px; }
    .cw-warn-box { padding: 30px 24px; }
    .cw-warn-box h2 { font-size: 1.25rem; }
    .cw-final { padding: 0 16px 60px; }
    .cw-final-box { padding: 50px 26px; border-radius: 24px; }
    .cw-final-btn-main { padding: 10px 22px 10px 10px; gap: 12px; width: 100%; justify-content: center; }
    .cw-final-btn-main-icon { width: 42px; height: 42px; }
    .cw-final-btn-main-label strong { font-size: 0.65rem; letter-spacing: 1px; }
    .cw-final-btn-main-label em { font-size: 1.05rem; }
    .cw-final-btn-ghost { padding: 12px 22px; font-size: 0.94rem; width: 100%; justify-content: center; }
    .cw-faq { padding: 60px 16px; }
    .cw-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .cw-faq-item p { padding: 0 20px 20px; font-size: 0.9rem; }
    .cw-cities { padding: 50px 16px 70px; }
    .cw-city-pill { padding: 8px 14px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .cw-badges {
        flex-direction: column;
        align-items: flex-start;
        max-width: 260px;
        margin: 0 auto;
        gap: 12px;
        padding: 24px 16px 4px;
    }
    .cw-badge-pill {
        width: auto;
        justify-content: flex-start;
    }
    .cw-intro-box { padding: 24px 18px; }
    .cw-intro-tile { font-size: 0.76rem; }
    .cw-feat-grid { grid-template-columns: 1fr; }
    .cw-intro-visual { height: 160px; }
    .cw-warn-box { padding: 24px 18px; border-radius: 18px; }
    .cw-final-box { padding: 40px 20px; border-radius: 20px; }
    .cw-final-box h2 { font-size: 1.7rem; }
}

/* ========== LIVE MOCKUP + TEMPLATES HARMONISÉS ========== */
.cw-live-wrap,
.cw-tpl-wrap {
    position: relative;
    padding: 80px 20px 70px !important;
    margin: 40px 0 !important;
    border-radius: 32px;
    background:
        radial-gradient(900px 500px at 12% 8%, rgba(236,72,153,0.22), transparent 55%),
        radial-gradient(800px 500px at 88% 92%, rgba(6,182,212,0.22), transparent 55%),
        radial-gradient(600px 400px at 50% 50%, rgba(124,58,237,0.10), transparent 60%),
        linear-gradient(180deg, #fafbff 0%, #f0f4ff 100%);
    overflow: hidden;
}
.cw-live-wrap::before,
.cw-tpl-wrap::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(124,58,237,0.32) 0%, rgba(124,58,237,0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: cwFloat 9s ease-in-out infinite;
    pointer-events: none;
}
.cw-live-wrap::after,
.cw-tpl-wrap::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(245,158,11,0.32) 0%, rgba(245,158,11,0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: cwFloat 11s ease-in-out infinite reverse;
    pointer-events: none;
}
.cw-live-wrap > *,
.cw-tpl-wrap > * { position: relative; z-index: 1; }

.cw-live-kicker,
.cw-tpl-kicker {
    display: inline-block;
    padding: 0;
    margin-bottom: 14px;
    background: transparent;
    background-image: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: none;
    animation: cwFadeInUp 0.7s ease-out both;
}

.cw-live-title,
.cw-tpl-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem) !important;
    font-weight: 900 !important;
    color: var(--cw-ink) !important;
    letter-spacing: -0.5px;
    margin-bottom: 14px !important;
    line-height: 1.1;
}
.cw-live-title .hl,
.cw-tpl-title .hl {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: cwGradientShift 6s ease infinite;
}

@media (max-width: 768px) {
    .cw-live-wrap, .cw-tpl-wrap {
        padding: 56px 14px 50px !important;
        border-radius: 22px;
        margin: 24px 0 !important;
    }
    .cw-live-kicker, .cw-tpl-kicker { font-size: 0.7rem; padding: 7px 14px; }
}

/* ========== MOCKUPS MÉTIER — ENHANCE ========== */
.tpl-card {
    border: none !important;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.08), 0 2px 6px rgba(10, 31, 68, 0.04) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #fff !important;
    transition: all 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
    position: relative;
}
.tpl-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}
.tpl-card:hover,
.tpl-card:focus-visible {
    transform: translateY(-8px) !important;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.22), 0 8px 20px rgba(236, 72, 153, 0.12) !important;
}
.tpl-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #f59e0b);
}
.tpl-card .tpl-badge {
    background: linear-gradient(135deg, #f59e0b, #ec4899) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35) !important;
    font-weight: 800 !important;
    letter-spacing: 0.6px !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    text-transform: uppercase;
    font-size: 0.68rem !important;
}
.tpl-card .tpl-mockup {
    border-radius: 0 !important;
}
.tpl-card .tpl-mockup-inner {
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tpl-card:hover .tpl-mockup-inner {
    transform: scale(1.04) !important;
}
/* Petite étincelle qui traverse la maquette au hover */
.tpl-card .tpl-mockup::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
    transition: left 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
    z-index: 3;
}
.tpl-card:hover .tpl-mockup::after {
    left: 150%;
}
.tpl-card .tpl-card-cta {
    background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    padding: 13px 18px !important;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.28) !important;
    transition: all 0.3s !important;
    position: relative;
    overflow: hidden;
}
.tpl-card .tpl-card-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 30px rgba(124, 58, 237, 0.42) !important;
    background: linear-gradient(135deg, #ec4899, #f59e0b) !important;
}
.tpl-card .tpl-card-features li::before {
    color: #10b981 !important;
    font-weight: 900 !important;
}
.tpl-card .tpl-card-title {
    color: var(--cw-ink) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
}

/* ========== "Votre métier n'est pas dans la liste" créatif ========== */
.cw-notfound {
    position: relative;
    margin: 40px auto 30px;
    max-width: 780px;
    padding: 42px 36px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #ede9fe 100%);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(236, 72, 153, 0.14);
}
.cw-notfound::before {
    content: "";
    position: absolute;
    top: -80px; left: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 70%);
    border-radius: 50%;
    animation: cwFloat 8s ease-in-out infinite;
}
.cw-notfound::after {
    content: "";
    position: absolute;
    bottom: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
    border-radius: 50%;
    animation: cwFloat 10s ease-in-out infinite reverse;
}
.cw-notfound > * { position: relative; z-index: 1; }
.cw-notfound-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #7c3aed;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cw-notfound h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.cw-notfound h3 .hl {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-notfound p {
    font-size: 1rem;
    color: #4a5568;
    max-width: 540px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.cw-notfound p strong { color: var(--cw-ink); }
.cw-notfound-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cw-notfound-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 26px 12px 12px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.3s, color 0.3s, border-color 0.3s;
    overflow: hidden;
    isolation: isolate;
}
.cw-notfound-btn::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    z-index: 1;
}
.cw-notfound-btn > * { position: relative; z-index: 2; }
.cw-notfound-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cw-notfound-btn--call {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 40%, #ec4899 100%);
    color: #fff;
    box-shadow:
        0 0 0 5px rgba(124, 58, 237, 0.16),
        0 18px 42px rgba(236, 72, 153, 0.48),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.cw-notfound-btn--call .cw-notfound-btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.cw-notfound-btn--call:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 0 8px rgba(236, 72, 153, 0.26),
        0 28px 58px rgba(236, 72, 153, 0.65),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.cw-notfound-btn--call:hover::after { left: 120%; }
.cw-notfound-btn--call:hover .cw-notfound-btn-icon {
    background: #fff;
    color: #7c3aed;
    transform: rotate(-8deg) scale(1.1);
}
.cw-notfound-btn--form {
    background: #fff;
    color: #7c3aed;
    border: 2px solid rgba(124,58,237,0.25);
    box-shadow: 0 14px 36px rgba(124, 58, 237, 0.15);
}
.cw-notfound-btn--form .cw-notfound-btn-icon {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
}
.cw-notfound-btn--form:hover {
    border-color: #7c3aed;
    background: #faf5ff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 48px rgba(124, 58, 237, 0.28);
}
.cw-notfound-btn--form:hover .cw-notfound-btn-icon {
    transform: rotate(-8deg) scale(1.1);
}

/* ========== "Ce qui est toujours inclus" créatif ========== */
.cw-included {
    max-width: 940px;
    margin: 30px auto;
    padding: 40px 36px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(10,31,68,0.08);
    position: relative;
    overflow: hidden;
}
.cw-included::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #7c3aed, #ec4899, #f59e0b, #10b981, #06b6d4, #3b82f6);
    background-size: 300% 100%;
    animation: cwGradientShift 8s ease infinite;
}
.cw-included h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.3vw, 1.55rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin: 0 0 24px;
    text-align: center;
    letter-spacing: -0.3px;
}
.cw-included h3 .hl {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cw-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
}
.cw-inc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(6,182,212,0.06));
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--cw-ink);
    transition: all 0.3s;
}
.cw-inc-item:hover {
    background: linear-gradient(135deg, rgba(16,185,129,0.14), rgba(6,182,212,0.14));
    transform: translateX(4px);
}
.cw-inc-check {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(16,185,129,0.3);
}

/* ========== Pricing créatif ========== */
.cw-tpl-pricing {
    max-width: 940px;
    margin: 30px auto 0;
    padding: 56px 40px;
    border-radius: 28px;
    background:
        radial-gradient(500px 260px at 80% 20%, rgba(245,158,11,0.25), transparent 60%),
        radial-gradient(500px 300px at 10% 90%, rgba(124,58,237,0.25), transparent 60%),
        linear-gradient(135deg, #0a1f44 0%, #1e3a8a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10,31,68,0.3);
}
.cw-tpl-pricing::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.35), transparent 70%);
    border-radius: 50%;
    animation: cwFloat 9s ease-in-out infinite;
}
.cw-tpl-pricing::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%);
    border-radius: 50%;
    animation: cwFloat 11s ease-in-out infinite reverse;
}
.cw-tpl-pricing > * { position: relative; z-index: 1; }
.cw-tpl-pricing-label {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fbbf24;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    box-shadow: none;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cw-tpl-pricing h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    margin: 0 0 14px;
}
.cw-tpl-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 20px 0 18px;
    font-family: 'Montserrat', sans-serif;
}
.cw-tpl-price-row .from {
    display: block;
    width: 100%;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.cw-tpl-price-row .amount {
    font-size: clamp(3.8rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: cwGradientShift 5s ease infinite;
    letter-spacing: -2px;
    text-shadow: 0 20px 60px rgba(245,158,11,0.3);
}
.cw-tpl-price-row .currency {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fbbf24;
}
.cw-tpl-price-row .ht {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    margin-left: 4px;
    align-self: end;
    padding-bottom: 8px;
}
.cw-tpl-pricing-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.cw-tpl-pricing-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 26px 18px 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 55%, #ea580c 100%);
    color: #0a1f44;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.02rem;
    letter-spacing: -0.2px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 0 0 4px rgba(251, 191, 36, 0.18),
        0 18px 44px rgba(245, 158, 11, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.cw-tpl-pricing-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), transparent 50%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.cw-tpl-pricing-cta::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    z-index: 1;
}
.cw-tpl-pricing-cta > * { position: relative; z-index: 2; }
.cw-tpl-cta-label { display: inline-block; }
.cw-tpl-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #0a1f44;
    color: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.cw-tpl-cta-arrow svg { transition: transform 0.35s ease; }
.cw-tpl-pricing-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 0 6px rgba(251, 191, 36, 0.28),
        0 28px 58px rgba(245, 158, 11, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.cw-tpl-pricing-cta:hover::after { left: 120%; }
.cw-tpl-pricing-cta:hover .cw-tpl-cta-arrow { background: #000; }
.cw-tpl-pricing-cta:hover .cw-tpl-cta-arrow svg { transform: translateX(3px); }
.cw-tpl-pricing-cta:active { transform: translateY(-1px) scale(1.01); }

@media (max-width: 768px) {
    .cw-notfound { padding: 34px 22px; margin: 30px 10px; }
    .cw-notfound-btn { padding: 10px 20px 10px 10px; font-size: 0.94rem; gap: 10px; }
    .cw-notfound-btn-icon { width: 36px; height: 36px; }
    .cw-notfound-ctas { flex-direction: column; align-items: stretch; }
    .cw-notfound-btn { width: 100%; justify-content: center; }
    .cw-included { padding: 32px 22px; margin: 20px 10px; }
    .cw-included-grid { grid-template-columns: 1fr; gap: 10px; }
    .cw-tpl-pricing { padding: 44px 24px; margin: 20px 10px 0; text-align: center; }
    .cw-tpl-pricing-cta {
        display: flex;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 16px 22px;
        justify-content: center;
        font-size: 0.97rem;
    }
}

/* ========== LIVE MOCKUP — HARMONISATION CRÉATIVE ========== */
/* Browser frame — glow animé + ombre colorée */
.cw-live-wrap .csi-live-browser {
    position: relative;
    border-radius: 16px !important;
    box-shadow:
        0 40px 90px rgba(124, 58, 237, 0.22),
        0 20px 40px rgba(236, 72, 153, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset !important;
    overflow: hidden;
    transition: transform 0.5s ease;
    animation: cwBrowserFloat 6s ease-in-out infinite;
}
@keyframes cwBrowserFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.cw-live-wrap .csi-live-browser::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #f59e0b, #06b6d4);
    background-size: 300% 300%;
    animation: cwGradientShift 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.45;
    pointer-events: none;
    z-index: 10;
}

/* Barre chrome du navigateur */
.cw-live-wrap .csi-live-chrome {
    background: linear-gradient(180deg, #f8fafc, #eef2f7) !important;
    border-bottom: 1px solid rgba(10, 31, 68, 0.06) !important;
    position: relative;
}
.cw-live-wrap .csi-live-chrome::after {
    content: "● LIVE";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 9px;
    border-radius: 10px;
    animation: cwLivePulse 1.6s ease-in-out infinite;
}
@keyframes cwLivePulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50%      { opacity: 0.6; transform: translateY(-50%) scale(0.95); }
}
.cw-live-wrap .csi-live-url {
    background: #fff !important;
    color: #5b6478 !important;
    border: 1px solid rgba(10,31,68,0.08) !important;
}

/* Hero du mockup — dégradé créatif animé */
.cw-live-wrap .csi-live-hero {
    background:
        linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%) !important;
    background-size: 200% 200% !important;
    animation: cwGradientShift 8s ease infinite !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}
.cw-live-wrap .csi-live-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245,158,11,0.25), transparent 45%) !important;
    animation: cwHeroShimmer 6s ease-in-out infinite alternate !important;
}
@keyframes cwHeroShimmer {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}
.cw-live-wrap .csi-live-hero-bg { display: none !important; }
.cw-live-wrap .csi-live-hero-overlay {
    position: relative;
    z-index: 2;
}
.cw-live-wrap .csi-live-hero-tag {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #0a1f44 !important;
    font-weight: 900 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 20px rgba(245,158,11,0.45) !important;
    animation: cwTagFloat 3s ease-in-out infinite;
}
@keyframes cwTagFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-3px) rotate(1deg); }
}
.cw-live-wrap .csi-live-hero-line {
    color: #fff !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2) !important;
    font-weight: 800 !important;
}

/* Titre tapé */
.cw-live-wrap .csi-live-title {
    color: var(--cw-ink) !important;
}
.cw-live-wrap .csi-live-typed {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900 !important;
}
.cw-live-wrap .csi-live-caret {
    background: #ec4899 !important;
}

/* Sous-titre */
.cw-live-wrap .csi-live-subtitle strong {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

/* Cartes de contenu — chaque carte a sa couleur */
.cw-live-wrap .csi-live-card {
    border: none !important;
    background: #fff !important;
    box-shadow: 0 6px 16px rgba(10,31,68,0.06) !important;
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}
.cw-live-wrap .csi-live-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, linear-gradient(90deg, #7c3aed, #ec4899));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.cw-live-wrap .csi-live-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(124,58,237,0.22) !important;
}
.cw-live-wrap .csi-live-card:hover::before { transform: scaleX(1); }
.cw-live-wrap .csi-live-card:nth-child(1) {
    --card-accent: linear-gradient(90deg, #7c3aed, #a855f7);
    animation: cwCardPulse 4s ease-in-out infinite;
    animation-delay: 0s;
}
.cw-live-wrap .csi-live-card:nth-child(2) {
    --card-accent: linear-gradient(90deg, #ec4899, #f472b6);
    animation: cwCardPulse 4s ease-in-out infinite;
    animation-delay: 1.3s;
}
.cw-live-wrap .csi-live-card:nth-child(3) {
    --card-accent: linear-gradient(90deg, #06b6d4, #22d3ee);
    animation: cwCardPulse 4s ease-in-out infinite;
    animation-delay: 2.6s;
}
@keyframes cwCardPulse {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}
.cw-live-wrap .csi-live-card:nth-child(1) .csi-live-card-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
    color: #fff !important;
    box-shadow: 0 6px 14px rgba(124,58,237,0.4) !important;
}
.cw-live-wrap .csi-live-card:nth-child(2) .csi-live-card-icon {
    background: linear-gradient(135deg, #ec4899, #f472b6) !important;
    color: #fff !important;
    box-shadow: 0 6px 14px rgba(236,72,153,0.4) !important;
}
.cw-live-wrap .csi-live-card:nth-child(3) .csi-live-card-icon {
    background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
    color: #fff !important;
    box-shadow: 0 6px 14px rgba(6,182,212,0.4) !important;
}
.cw-live-wrap .csi-live-card-icon {
    transition: transform 0.4s ease;
}
.cw-live-wrap .csi-live-card:hover .csi-live-card-icon {
    transform: rotate(-8deg) scale(1.1);
}

/* Pills de confiance — chaque pill un gradient */
.cw-live-wrap .csi-live-trust {
    gap: 8px !important;
}
.cw-live-wrap .csi-live-trust-pill {
    border: none !important;
    color: #fff !important;
    font-weight: 800 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.3px !important;
    transition: transform 0.3s ease;
}
.cw-live-wrap .csi-live-trust-pill:hover {
    transform: translateY(-2px) scale(1.05);
}
.cw-live-wrap .csi-live-trust-pill:nth-child(1) {
    background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
    box-shadow: 0 6px 14px rgba(245,158,11,0.35) !important;
}
.cw-live-wrap .csi-live-trust-pill:nth-child(2) {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
    box-shadow: 0 6px 14px rgba(16,185,129,0.35) !important;
}
.cw-live-wrap .csi-live-trust-pill:nth-child(3) {
    background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
    box-shadow: 0 6px 14px rgba(6,182,212,0.35) !important;
}

/* CTA Contactez-nous */
.cw-live-wrap .csi-live-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%) !important;
    background-size: 200% 200% !important;
    color: #fff !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 30px rgba(124,58,237,0.4) !important;
    position: relative;
    overflow: hidden;
    animation: cwGradientShift 5s ease infinite, cwCtaPulse 2.4s ease-in-out infinite !important;
}
@keyframes cwCtaPulse {
    0%, 100% { box-shadow: 0 14px 30px rgba(124,58,237,0.4); }
    50%      { box-shadow: 0 18px 40px rgba(236,72,153,0.55); }
}
.cw-live-wrap .csi-live-cta::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: cwCtaShine 3s infinite;
}
@keyframes cwCtaShine {
    0%   { left: -100%; }
    60%  { left: -100%; }
    100% { left: 150%; }
}

/* Section "Ils nous font confiance" */
.cw-live-wrap .csi-live-section-title {
    color: var(--cw-ink) !important;
    font-weight: 900 !important;
}
.cw-live-wrap .csi-live-section-title::after {
    background: linear-gradient(90deg, #7c3aed, #ec4899, #f59e0b) !important;
    height: 3px !important;
    border-radius: 3px;
}

/* Témoignages */
.cw-live-wrap .csi-live-testi {
    background: linear-gradient(135deg, #fff 0%, #faf5ff 100%) !important;
    border: 1px solid rgba(124,58,237,0.08) !important;
    transition: all 0.4s ease;
}
.cw-live-wrap .csi-live-testi:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(124,58,237,0.12) !important;
}
.cw-live-wrap .csi-live-testi-stars {
    color: #f59e0b !important;
    text-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.cw-live-wrap .csi-live-testi-avatar {
    background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
    color: #fff !important;
    font-weight: 900 !important;
    box-shadow: 0 6px 14px rgba(124,58,237,0.32) !important;
}

/* Légende en bas — "⚡ Construit devant vos yeux" */
.cw-live-wrap .csi-live-legend {
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(236,72,153,0.08), rgba(245,158,11,0.08)) !important;
    border: 1px dashed rgba(124,58,237,0.25) !important;
    color: var(--cw-ink) !important;
    font-weight: 600 !important;
    border-radius: 16px !important;
    padding: 14px 22px !important;
    animation: cwLegendPulse 3s ease-in-out infinite;
}
@keyframes cwLegendPulse {
    0%, 100% { border-color: rgba(124,58,237,0.25); }
    50%      { border-color: rgba(236,72,153,0.45); }
}
.cw-live-wrap .csi-live-legend strong {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar décorative */
.cw-live-wrap .csi-live-scrollthumb {
    background: linear-gradient(180deg, #7c3aed, #ec4899) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 6px rgba(124,58,237,0.3);
}

/* ============================================================ */
/* ============ LIVE DEMO — EFFETS WHAOU SUPPLÉMENTAIRES ====== */
/* ============================================================ */

/* Wrapper live — on force un padding supérieur pour laisser
   la place aux éléments flottants (badge visiteurs + chips code) */
.cw-live-wrap .csi-live-wrap {
    position: relative;
    padding-top: 70px !important;
    padding-bottom: 30px !important;
}

/* -------- Code chips flottants autour du navigateur -------- */
.cw-code-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.cw-code-chip {
    position: absolute;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15), 0 0 0 1px rgba(124, 58, 237, 0.12);
    white-space: nowrap;
    opacity: 0;
    animation: cwCodeFloat 8s ease-in-out infinite;
}
.cw-code-chip--1 { top: 8%;  left: 2%;   color: #7c3aed; animation-delay: 0s;   }
.cw-code-chip--2 { top: 22%; left: -1%;  color: #ec4899; animation-delay: 1.1s; }
.cw-code-chip--3 { top: 62%; left: 1%;   color: #06b6d4; animation-delay: 2.3s; }
.cw-code-chip--4 { top: 80%; left: 4%;   color: #f59e0b; animation-delay: 3.4s; }
.cw-code-chip--5 { top: 10%; right: 0%;  color: #10b981; animation-delay: 0.6s; }
.cw-code-chip--6 { top: 28%; right: 2%;  color: #3b82f6; animation-delay: 1.8s; }
.cw-code-chip--7 { top: 66%; right: -1%; color: #a855f7; animation-delay: 2.9s; }
.cw-code-chip--8 { top: 84%; right: 3%;  color: #f59e0b; animation-delay: 4s;   }

@keyframes cwCodeFloat {
    0%   { opacity: 0; transform: translateY(20px) scale(0.85); }
    15%  { opacity: 1; transform: translateY(0) scale(1); }
    50%  { transform: translateY(-18px) scale(1.04); }
    85%  { opacity: 1; transform: translateY(-6px) scale(1); }
    100% { opacity: 0; transform: translateY(20px) scale(0.85); }
}

/* Masquer chips latéraux sur écrans trop étroits */
@media (max-width: 900px) {
    .cw-code-chip { font-size: 0.68rem; padding: 5px 9px; }
    .cw-code-chip--2, .cw-code-chip--6 { display: none; }
}
@media (max-width: 640px) {
    .cw-code-particles { display: none; }
}

/* -------- Badge visiteurs en ligne -------- */
.cw-live-visitors {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #faf5ff);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.22), 0 0 0 1px rgba(124, 58, 237, 0.12);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cw-ink);
    animation: cwVisitorsPop 0.7s cubic-bezier(0.2, 0.8, 0.2, 1.2) 0.3s both, cwVisitorsFloat 5s ease-in-out infinite 1s;
}
.cw-live-visitors-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: cwDotPulse 1.6s ease-in-out infinite;
}
.cw-live-visitors-num {
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
}
.cw-live-visitors-label {
    color: #5b6478;
    font-weight: 600;
}
@keyframes cwVisitorsPop {
    0%   { opacity: 0; transform: translateY(-10px) scale(0.7); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cwVisitorsFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}
@keyframes cwDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

@media (max-width: 640px) {
    .cw-live-visitors {
        top: 8px;
        right: 50%;
        transform: translateX(50%);
        font-size: 0.72rem;
        padding: 7px 13px;
    }
}

/* -------- Barre de progression "Construction en cours" -------- */
.cw-live-progress {
    padding: 10px 18px 12px;
    background: linear-gradient(180deg, #fff, #fafbff);
    border-bottom: 1px solid rgba(10, 31, 68, 0.05);
    position: relative;
    z-index: 3;
}
.cw-live-progress-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #5b6478;
    margin-bottom: 6px;
}
.cw-live-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    animation: cwDotPulse2 1.2s ease-in-out infinite;
}
@keyframes cwDotPulse2 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}
.cw-live-progress-pct {
    margin-left: auto;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.82rem;
    min-width: 40px;
    text-align: right;
}
.cw-live-progress-track {
    height: 6px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.cw-live-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed, #ec4899, #f59e0b, #06b6d4);
    background-size: 300% 100%;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
    animation: cwProgressFill 6s ease-out forwards, cwGradientShift 3s ease infinite;
    position: relative;
}
.cw-live-progress-fill::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7));
    filter: blur(3px);
}
@keyframes cwProgressFill {
    0%   { width: 0%; }
    25%  { width: 32%; }
    55%  { width: 68%; }
    85%  { width: 94%; }
    100% { width: 100%; }
}

/* -------- Stats de performance (rings) -------- */
.cw-live-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 960px;
    margin: 50px auto 40px;
    position: relative;
    z-index: 1;
}
.cw-live-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 14px;
    background: linear-gradient(180deg, #fff, #faf8ff);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(10, 31, 68, 0.08), 0 0 0 1px rgba(124, 58, 237, 0.06);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s;
    opacity: 0;
    transform: translateY(30px);
    animation: cwStatIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}
.cw-live-stat::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, var(--ring-color, #7c3aed), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.cw-live-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(124, 58, 237, 0.2);
}
.cw-live-stat:hover::before { opacity: 1; }
.cw-live-stat:nth-child(1) { animation-delay: 0.1s; --ring-color: #10b981; }
.cw-live-stat:nth-child(2) { animation-delay: 0.25s; --ring-color: #7c3aed; }
.cw-live-stat:nth-child(3) { animation-delay: 0.4s; --ring-color: #ec4899; }
.cw-live-stat:nth-child(4) { animation-delay: 0.55s; --ring-color: #06b6d4; }

@keyframes cwStatIn {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.cw-live-stat-ring {
    position: relative;
    width: 110px;
    height: 110px;
}
.cw-live-stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.cw-live-stat-ring .cw-ring-bg {
    fill: none;
    stroke: rgba(10, 31, 68, 0.06);
    stroke-width: 8;
}
.cw-live-stat-ring .cw-ring-fg {
    fill: none;
    stroke: var(--ring-color, #7c3aed);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 276.46;
    stroke-dashoffset: 276.46;
    filter: drop-shadow(0 0 6px var(--ring-color, #7c3aed));
    animation: cwRingFill 1.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}
.cw-live-stat:nth-child(1) .cw-ring-fg { --dashoffset-end: 22.12;  /* 100-92 */ }
.cw-live-stat:nth-child(2) .cw-ring-fg { --dashoffset-end: 5.53;   /* 100-98 */ }
.cw-live-stat:nth-child(3) .cw-ring-fg { --dashoffset-end: 0;      /* 100 */ }
.cw-live-stat:nth-child(4) .cw-ring-fg { --dashoffset-end: 13.82;  /* 100-95 */ }

@keyframes cwRingFill {
    0%   { stroke-dashoffset: 276.46; }
    100% { stroke-dashoffset: var(--dashoffset-end, 0); }
}

.cw-live-stat-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--cw-ink);
    letter-spacing: -0.5px;
    line-height: 1;
    text-align: center;
}
.cw-live-stat-val small {
    font-size: 0.65rem;
    font-weight: 700;
    color: #5b6478;
    line-height: 1;
    align-self: center;
    transform: none;
    padding: 0;
    margin: 0;
}
.cw-live-stat-label {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.cw-live-stat-label strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--cw-ink);
    margin-bottom: 2px;
}
.cw-live-stat-label span {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #5b6478;
}

@media (max-width: 768px) {
    .cw-live-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cw-live-stat-ring { width: 92px; height: 92px; }
    .cw-live-stat-val { font-size: 1.3rem; }
}
@media (max-width: 420px) {
    .cw-live-stats { grid-template-columns: 1fr 1fr; }
    .cw-live-stat { padding: 16px 10px; }
}

/* -------- Aperçu Google classement #1 -------- */
.cw-live-google {
    max-width: 780px;
    margin: 40px auto 40px;
    background: #fff;
    border-radius: 22px;
    padding: 22px 26px 24px;
    box-shadow: 0 22px 60px rgba(10, 31, 68, 0.1), 0 0 0 1px rgba(10, 31, 68, 0.05);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: cwStatIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}
.cw-live-google::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853, #4285f4);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: cwGradientShift 6s ease infinite;
    pointer-events: none;
    opacity: 0.4;
}
.cw-live-google-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}
.cw-live-google-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -1px;
}
.cw-g-b { color: #4285f4; }
.cw-g-r { color: #ea4335; }
.cw-g-y { color: #fbbc05; }
.cw-g-g { color: #34a853; }
.cw-live-google-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f1f3f4;
    border-radius: 24px;
    color: #5f6368;
    font-size: 0.88rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.cw-live-google-search svg {
    color: #9aa0a6;
    flex-shrink: 0;
}
.cw-live-google-query {
    font-weight: 600;
    color: #202124;
}
.cw-live-google-query::after {
    content: "votre entreprise saint raphaël";
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    vertical-align: bottom;
    animation: cwGoogleType 4s steps(32, end) 1s infinite alternate;
}
@keyframes cwGoogleType {
    0%   { max-width: 0; }
    100% { max-width: 280px; }
}
.cw-live-google-caret {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #202124;
    margin-left: 2px;
    animation: cwCaretBlink 0.7s step-end infinite;
    vertical-align: middle;
}
@keyframes cwCaretBlink {
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.cw-live-google-mic {
    font-size: 1rem;
    opacity: 0.6;
}
.cw-live-google-meta {
    font-size: 0.74rem;
    color: #70757a;
    padding: 10px 0 14px;
}
.cw-live-google-result {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(236, 72, 153, 0.04));
    position: relative;
    overflow: hidden;
}
.cw-live-google-result::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #7c3aed, #ec4899, #f59e0b);
    border-radius: 2px;
}
.cw-live-google-rankbadge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 82px;
    padding: 14px 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
    color: #0a1f44;
    animation: cwRankBounce 2.2s ease-in-out infinite;
    position: relative;
}
.cw-live-google-rankbadge::after {
    content: "🏆";
    position: absolute;
    top: -14px;
    right: -10px;
    font-size: 1.4rem;
    animation: cwTrophyBob 2.5s ease-in-out infinite;
}
@keyframes cwRankBounce {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-4px) rotate(2deg); }
}
@keyframes cwTrophyBob {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50%      { transform: translateY(-3px) rotate(10deg); }
}
.cw-live-google-rank-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.cw-live-google-rank-label {
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 4px;
    opacity: 0.85;
}
.cw-live-google-result-body {
    flex: 1;
    min-width: 0;
}
.cw-live-google-url-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.cw-live-google-favicon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}
.cw-live-google-site {
    font-size: 0.82rem;
    font-weight: 600;
    color: #202124;
    line-height: 1.2;
}
.cw-live-google-url {
    font-size: 0.76rem;
    color: #5f6368;
    line-height: 1.2;
}
.cw-live-google-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a0dab;
    margin: 6px 0 6px;
    line-height: 1.3;
    cursor: pointer;
}
.cw-live-google-title:hover { text-decoration: underline; }
.cw-live-google-desc {
    font-size: 0.84rem;
    color: #4d5156;
    line-height: 1.45;
}
.cw-live-google-desc strong {
    color: #f59e0b;
    font-weight: 700;
}
.cw-live-google-sitelinks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(10, 31, 68, 0.08);
}
.cw-live-google-sitelinks span {
    font-size: 0.78rem;
    color: #1a0dab;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
.cw-live-google-sitelinks span::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.cw-live-google-sitelinks span:hover::after { transform: scaleX(1); }

@media (max-width: 640px) {
    .cw-live-google { padding: 16px 14px; }
    .cw-live-google-head { gap: 10px; }
    .cw-live-google-search { padding: 7px 12px; font-size: 0.78rem; }
    .cw-live-google-result { flex-direction: column; gap: 14px; padding: 12px; }
    .cw-live-google-rankbadge { flex-direction: row; gap: 10px; width: auto; padding: 10px 14px; }
    .cw-live-google-rankbadge::after { top: -10px; right: -4px; font-size: 1.2rem; }
    .cw-live-google-title { font-size: 1rem; }
    .cw-live-google-mic { display: none; }
}

/* -------- Aperçu multi-device (Desktop / Tablette / Mobile) -------- */
.cw-live-devices {
    max-width: 900px;
    margin: 50px auto 20px;
    position: relative;
    z-index: 1;
}
.cw-live-devices-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    font-weight: 900;
    color: var(--cw-ink);
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}
.cw-live-devices-kicker {
    display: block;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cw-live-devices-hl {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cwGradientShift 6s ease infinite;
}
.cw-live-devices-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.cw-live-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cwDeviceIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.cw-live-device--desktop { animation-delay: 0.1s; }
.cw-live-device--tablet  { animation-delay: 0.3s; }
.cw-live-device--mobile  { animation-delay: 0.5s; }
@keyframes cwDeviceIn {
    0%   { opacity: 0; transform: translateY(30px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cw-live-device-frame {
    background: #0a1f44;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 44px rgba(10, 31, 68, 0.22);
    position: relative;
    animation: cwDeviceFloat 6s ease-in-out infinite;
}
.cw-live-device--desktop .cw-live-device-frame { width: 300px; height: 190px; animation-delay: 0s; }
.cw-live-device--tablet  .cw-live-device-frame { width: 170px; height: 220px; animation-delay: 1.5s; }
.cw-live-device--mobile  .cw-live-device-frame { width: 100px; height: 200px; border-radius: 22px; animation-delay: 3s; }

@keyframes cwDeviceFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.cw-live-device-bar {
    height: 12px;
    background: linear-gradient(90deg, #f1f3f4, #e5e7eb);
    border-radius: 6px 6px 0 0;
    margin: -2px -2px 4px;
    position: relative;
}
.cw-live-device-bar::before {
    content: "";
    position: absolute;
    left: 6px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 8px 0 0 #fbbf24, 16px 0 0 #10b981;
}
.cw-live-device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 14px;
    background: #0a1f44;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}
.cw-live-device--mobile .cw-live-device-content { border-radius: 18px; }
.cw-live-device-content {
    background: #fff;
    border-radius: 6px;
    height: calc(100% - 16px);
    padding: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cw-live-device--mobile .cw-live-device-content { height: calc(100% - 4px); padding: 16px 10px 10px; }
.cw-live-device-hero {
    height: 40%;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4);
    background-size: 200% 200%;
    animation: cwGradientShift 5s ease infinite;
    border-radius: 4px;
}
.cw-live-device-row {
    display: flex;
    gap: 4px;
}
.cw-live-device-row span {
    flex: 1;
    height: 18px;
    background: linear-gradient(90deg, #faf5ff, #f3e8ff);
    border-radius: 3px;
}
.cw-live-device-line {
    height: 5px;
    background: linear-gradient(90deg, #e9d5ff, #fce7f3);
    border-radius: 3px;
    animation: cwLineShimmer 3s ease-in-out infinite;
}
.cw-live-device-line--short { width: 65%; }
@keyframes cwLineShimmer {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}
.cw-live-device-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--cw-ink);
    padding: 5px 14px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(10, 31, 68, 0.08);
}

@media (max-width: 768px) {
    .cw-live-devices-row { gap: 14px; }
    .cw-live-device--desktop .cw-live-device-frame { width: 220px; height: 140px; }
    .cw-live-device--tablet  .cw-live-device-frame { width: 130px; height: 170px; }
    .cw-live-device--mobile  .cw-live-device-frame { width: 80px; height: 160px; }
    .cw-live-device-name { font-size: 0.7rem; padding: 4px 11px; }
}
@media (max-width: 480px) {
    .cw-live-device--desktop { display: none; }
}

/* Respect des préférences d'animation réduite */
@media (prefers-reduced-motion: reduce) {
    .cw-code-chip,
    .cw-live-visitors,
    .cw-live-visitors-dot,
    .cw-live-progress-dot,
    .cw-live-progress-fill,
    .cw-live-progress-fill::after,
    .cw-live-stat .cw-ring-fg,
    .cw-live-google::before,
    .cw-live-google-query::after,
    .cw-live-google-caret,
    .cw-live-google-rankbadge,
    .cw-live-google-rankbadge::after,
    .cw-live-devices-hl,
    .cw-live-device-frame,
    .cw-live-device-hero,
    .cw-live-device-line {
        animation: none !important;
    }
    .cw-live-stat { opacity: 1 !important; transform: none !important; }
    .cw-live-google { opacity: 1 !important; transform: none !important; }
    .cw-live-device { opacity: 1 !important; transform: none !important; }
    .cw-live-stat .cw-ring-fg { stroke-dashoffset: var(--dashoffset-end, 0) !important; }
}

/* Respect des préférences d'animation réduite (existant) */
@media (prefers-reduced-motion: reduce) {
    .hero-creative::before,
    .cw-blob,
    .cw-star,
    .hero-creative-title .gradient-word,
    .hero-creative-eyebrow .dot,
    .cw-btn-main::after,
    .cw-step-bubble::after,
    .cw-marquee,
    .cw-btn-main .btn-phone-ring,
    .cw-badge-pill,
    .cw-intro-box::before,
    .cw-intro-tile,
    .cw-warn-box::before,
    .cw-final-box {
        animation: none !important;
    }
    .cw-scroll-indicator::before { animation: none !important; }
    .cw-live-wrap .csi-live-browser,
    .cw-live-wrap .csi-live-hero,
    .cw-live-wrap .csi-live-hero::before,
    .cw-live-wrap .csi-live-hero-tag,
    .cw-live-wrap .csi-live-card,
    .cw-live-wrap .csi-live-cta,
    .cw-live-wrap .csi-live-cta::before,
    .cw-live-wrap .csi-live-chrome::after,
    .cw-live-wrap .csi-live-browser::before,
    .cw-live-wrap .csi-live-legend { animation: none !important; }
}
