/* ================= HERO ================= */

.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 60px;
}

.hero-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 980px;
    width: 100%;
}

.hero-img {
    width: 430px;
    max-width: 92%;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 12px 35px rgba(255, 150, 220, 0.35));
}

.hero-img-float {
    animation: logoFloat 4s ease-in-out infinite;
}

.hero-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    max-width: 920px;
    padding: 16px 34px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 245, 250, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(20, 0, 30, 0.18);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #f49ad8, #b784ff);
    box-shadow: 0 10px 25px rgba(180, 120, 255, 0.35);
    transition: 0.25s;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(180, 120, 255, 0.45);
}

/* animations */
.hero-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 0.8s ease forwards;
}

.hero-reveal-1 { animation-delay: 0.1s; }
.hero-reveal-2 { animation-delay: 0.35s; }
.hero-reveal-3 { animation-delay: 0.6s; }
.hero-reveal-4 { animation-delay: 0.85s; }

/* ================= SOCIAL SIDEBAR ================= */

.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-bubble-side {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff9ed6, #b388ff);
    color: white;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(180, 120, 255, 0.35);
    transition: 0.25s;
}

.social-bubble-side:hover {
    transform: scale(1.15) translateX(-6px);
    box-shadow: 0 12px 30px rgba(180, 120, 255, 0.5);
}

.float-wrap {
    animation: float 3s ease-in-out infinite;
}

/* reveal animation */
.social-reveal {
    opacity: 0;
    transform: translateX(30px);
    animation: socialReveal 0.6s ease forwards;
}

.social-reveal-1 { animation-delay: 1s; }
.social-reveal-2 { animation-delay: 1.15s; }
.social-reveal-3 { animation-delay: 1.3s; }
.social-reveal-4 { animation-delay: 1.45s; }
.social-reveal-5 { animation-delay: 1.6s; }
.social-reveal-6 { animation-delay: 1.75s; }

/* ================= INTRO SECTION ================= */



.intro-premium {
    position: relative;
    padding: 120px 20px 140px;
    overflow: hidden;
    isolation: isolate;
}

.intro-premium::before {
    content: "";
    position: absolute;
    inset: -40px 0 -40px 0;
    background:
        radial-gradient(circle at center, rgba(255, 180, 230, 0.12), transparent 60%),
        linear-gradient(
    rgba(20, 0, 30, 0.55),
    rgba(60, 10, 80, 0.45)
),
        url('/images/bg-japan-soft.webp') center center / cover no-repeat;

    transform: translate3d(
    var(--parallax-offset-x, 0px),
    var(--parallax-offset, 0px),
    0
) scale(1.15);
    will-change: transform;
    z-index: 0;
}
.intro-premium > .container {
    position: relative;
    z-index: 1;
}
.js-parallax-chibi {
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.1s linear;
}
/* features */
.intro-features {
    margin-bottom: 70px;
}
.feature-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    color: #fff;

    background: linear-gradient(
        180deg,
        rgba(8, 8, 12, 0.68),
        rgba(18, 18, 24, 0.46)
    );

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.30),
        0 6px 18px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 40%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(
        180deg,
        rgba(16, 16, 22, 0.78),
        rgba(26, 26, 34, 0.56)
    );
    border-color: rgba(255,255,255,0.18);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.38),
        0 10px 22px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.10);
}
.feature-card h3,
.feature-card .feature-title {
    color: #ffffff;
}

.feature-card p,
.feature-card .feature-text {
    color: rgba(255,255,255,0.80);
}
/* main card */
.intro-content-card {
    border-radius: 40px;
    margin-top: 40px;
    padding: 60px 50px;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 14, 0.62),
        rgba(18, 18, 24, 0.42)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #f3d8ff;
    font-weight: 700;
}

.intro-title {
    color: #f2d9ff;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.intro-text {
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

/* illustration */
.intro-illustration {
    max-width: 340px;
    filter: drop-shadow(0 14px 30px rgba(0,0,0,0.22));
}
.intro-premium .container {
    max-width: 1200px;
}
/* ================= ANIMATIONS ================= */

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

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

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

@keyframes logoFloat {
    0%,100% { transform:translateY(0); }
    50% { transform:translateY(-8px); }
}
/* ===== REVEAL AU SCROLL ===== */

.reveal {
    opacity: 0;
    transition:
        opacity 0.8s cubic-bezier(.25,.8,.25,1),
        transform 0.8s cubic-bezier(.25,.8,.25,1);
    will-change: opacity, transform;
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }
.delay-6 { transition-delay: 0.85s; }
/* ===== SECTION PREMIUM ===== */
.jp-premium-section {
    padding: 9rem 0 15rem;
}

.jp-divider {
    z-index: 3;
}

.jp-divider img {
    top: -220px;
    z-index: 3;
}

.jp-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(10, 0, 22, 0.62) 0%,
            rgba(20, 5, 38, 0.52) 32%,
            rgba(14, 2, 28, 0.66) 68%,
            rgba(8, 0, 18, 0.78) 100%
        ),
        radial-gradient(
            circle at center,
            rgba(255,255,255,0) 0%,
            rgba(120, 60, 170, 0.08) 44%,
            rgba(5, 0, 14, 0.42) 100%
        );
}

.jp-premium-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 25%, rgba(255,255,255,0.03), transparent 22%),
        radial-gradient(circle at 25% 30%, rgba(255, 120, 200, 0.08), transparent 30%),
        radial-gradient(circle at 75% 70%, rgba(160, 100, 255, 0.08), transparent 32%);
}

.jp-premium-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}

/* ===== TITRE ===== */
.jp-section-title {
    color: #ffffff;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    font-weight: 900;
    line-height: 1.02;
    text-align: center;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    margin-bottom: 1rem;
}

.jp-section-text {
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

/* ===== BLOCS CHIBI + CARTE ===== */
.jp-feature-item {
    position: relative;
    padding-top: 40px;
    height: 100%;
}

.jp-feature-chibi {
    position: absolute;
    top: -20px; /* descend le chibi */
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    width: 190px;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.jp-feature-chibi img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: scale(1.28);
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.34));
    transition: transform .35s ease;
}

.jp-feature-item:hover .jp-feature-chibi img {
    transform: scale(1.33) translateY(-3px);
}

/* ===== CARTES ===== */
.jp-feature-card {
      position: relative;
    min-height: 360px;
    padding: 112px 1.55rem 2rem;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 12, 0.78),
        rgba(18, 18, 24, 0.50)
    );
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.30),
        0 8px 18px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.jp-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%);
    pointer-events: none;
}

.jp-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.22);
    background: linear-gradient(
        180deg,
        rgba(12, 12, 18, 0.84),
        rgba(24, 24, 30, 0.56)
    );
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.38),
        0 10px 24px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.10);
}

/* ===== TEXTE DES CARTES ===== */
.jp-feature-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.16;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.20);
}

.jp-feature-text {
    color: rgba(255,255,255,0.90);
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== STORY / STATS ===== */
.jp-story-card,
.jp-stats-card {
    position: relative;
    padding: 2rem 1.6rem;
    border-radius: 30px;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 12, 0.78),
        rgba(18, 18, 24, 0.50)
    );
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.34),
        0 8px 22px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.10);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.jp-story-card:hover,
.jp-stats-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.22);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.40),
        0 12px 28px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.12);
}
.jp-story-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jp-story-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.jp-check-list {
    flex: 1;
}

.jp-story-cta {
    flex-shrink: 0;
}

.jp-story-cta .jp-main-btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .jp-story-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .jp-story-cta {
        margin-top: 15px;
    }
}
.jp-story-chibi {
    position: absolute;
    top: 0;
    left: 24px;
    transform: translateY(-42%);
    z-index: 5;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-story-chibi img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.18);
    transform-origin: center bottom;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,0.30));
}

.jp-story-title {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
}

.jp-story-text {
    color: rgba(255,255,255,0.90);
    line-height: 1.85;
}

.jp-check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: .85rem;
    color: #fff;
    font-weight: 500;
}

.jp-check-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd6fb;
    font-weight: 700;
}

/* ===== STATS ===== */
.jp-stat-box {
    height: 100%;
    min-height: 140px;
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    text-align: center;
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.jp-stat-box:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.20);
}

.jp-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 196, 252, 0.20);
}

.jp-stat-label {
    color: rgba(255,255,255,0.90);
    font-weight: 600;
    font-size: .98rem;
}
#sakura-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    opacity: 0.75;
}
/* ===== BOUTON ===== */
.jp-main-btn {
    padding: .95rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffffff, #ffdffd);
    color: #9b33eb;
    font-weight: 800;
    border: none;
    box-shadow: 0 10px 25px rgba(165, 61, 232, 0.24);
    transition: transform .3s ease, box-shadow .3s ease;
}

.jp-main-btn:hover {
    transform: translateY(-3px) scale(1.02);
    color: #8a20e0;
    box-shadow: 0 16px 30px rgba(165, 61, 232, 0.30);
}
/* ================== SECTION SEPARATION ====================== */
.jp-divider {
    position: relative;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    z-index: 8;
    pointer-events: none;
}

.jp-divider img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    position: relative;
    top: -200px; /* règle principale */
    z-index: 8;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
}
/* ===== REVEAL ===== */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
    will-change: transform, opacity;
}

.reveal-fade { transform: translateY(18px); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* ===== SECTION SERVICES ===== */
.jp-services-section {
    position: relative;
    margin-top: -80px;
    padding: 9rem 0 7rem;
    overflow: hidden;
    isolation: isolate;
}

.jp-services-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.jp-services-parallax-img {
    position: absolute;

    left: -40px;          /* on passe à gauche */
    bottom: 30px;

    width: min(620px, 42vw);
    max-width: 620px;

    opacity: 0.16;

    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));

    transform: translate3d(
        var(--services-parallax-x, 0px),
        var(--services-parallax-y, 0px),
        0
    ) rotate(10deg); /* inversé pour suivre la compo */

    transform-origin: center;
    will-change: transform;
}

.jp-services-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}
.jp-services-section .row.g-4 {
    margin-top: 40px;
}
.jp-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(12, 0, 24, 0.58) 0%,
            rgba(22, 6, 42, 0.50) 35%,
            rgba(12, 2, 24, 0.68) 100%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 150, 220, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(170, 120, 255, 0.08),
            transparent 30%
        );
}

.jp-services-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}

/* ===== CARD SERVICE ===== */
.jp-service-card {
    position: relative;
    height: 100%;
    min-height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 12, 0.80),
        rgba(18, 18, 24, 0.56)
    );
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.30),
        0 8px 18px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.jp-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.jp-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.22);
    background: linear-gradient(
        180deg,
        rgba(12, 12, 18, 0.86),
        rgba(24, 24, 30, 0.60)
    );
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.40),
        0 12px 24px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(210, 120, 255, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.10);
}

/* ===== IMAGE ===== */
.jp-service-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    z-index: 0;
}

.jp-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.08) 0%,
            rgba(0,0,0,0.14) 40%,
            rgba(10,0,20,0.38) 100%
        );
}

.jp-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.jp-service-card:hover .jp-service-media img {
    transform: scale(1.06);
}

/* ===== ICONE ===== */
.jp-service-icon {
    position: relative;
    z-index: 3;
    width: 74px;
    height: 74px;
    margin: -37px auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 155, 220, 0.92), rgba(178, 120, 255, 0.92));
    border: 3px solid rgba(255,255,255,0.18);
    box-shadow:
        0 12px 25px rgba(181, 102, 255, 0.30),
        0 0 18px rgba(255, 180, 235, 0.18);
}

/* ===== CONTENU ===== */
.jp-service-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.45rem 1.8rem;
    text-align: center;
}

.jp-service-title {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    min-height: 4.1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.20);
}

.jp-service-text {
    color: rgba(255,255,255,0.90);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    min-height: 12.5rem;
}

/* ===== BOUTON ===== */
.jp-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .95rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    color: #9b33eb;
    background: linear-gradient(90deg, #ffffff, #ffdffd);
    box-shadow: 0 10px 25px rgba(165, 61, 232, 0.24);
    transition: transform .3s ease, box-shadow .3s ease, color .3s ease;
}

.jp-service-btn:hover {
    transform: translateY(-3px) scale(1.02);
    color: #8a20e0;
    box-shadow: 0 16px 30px rgba(165, 61, 232, 0.30);
}

.jp-service-btn span {
    transition: transform .3s ease;
}

.jp-service-btn:hover span {
    transform: translateX(4px);
}
/* ================= FINAL CTA SECTION ================= */

.jp-final-cta-section {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    isolation: isolate;
}

.jp-final-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(10, 0, 20, 0.48) 0%,
            rgba(18, 4, 34, 0.56) 45%,
            rgba(8, 0, 18, 0.72) 100%
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 170, 225, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(170, 120, 255, 0.08),
            transparent 30%
        );
}

.jp-final-cta-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

/* decor */

.jp-final-cta-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.jp-final-cta-fan {
    position: absolute;
    left: -40px;
    bottom: 20px;
    width: min(520px, 34vw);
    max-width: 520px;
    opacity: 0.10;
    transform: rotate(10deg);
    filter:
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 20px rgba(255, 180, 230, 0.10));
}

/* card */

.jp-final-cta-card {
    position: relative;
    z-index: 2;
    min-height: 760px;
    max-width: 980px;
    margin: 0 auto;
    padding: 2.8rem 2.6rem;
    border-radius: 38px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 12, 0.78),
        rgba(18, 18, 24, 0.52)
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.34),
        0 8px 24px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.jp-final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 42%);
    pointer-events: none;
}

/* content */

.jp-final-cta-content {
    position: relative;
    z-index: 4;
    max-width: 430px;
}

.jp-final-cta-title {
    color: #ffffff;
    font-size: clamp(2.8rem, 4vw, 5rem);
    font-weight: 900;
    line-height: 0.98;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.30);
    max-width: 430px;
}

.jp-final-cta-text {
    color: rgba(255,255,255,0.88);
    font-size: 1.02rem;
    line-height: 1.85;
    max-width: 430px;
}

.jp-final-cta-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.jp-final-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f6d8ff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease, transform 0.25s ease;
}

.jp-final-link span {
    transition: transform 0.25s ease;
}

.jp-final-link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.jp-final-link:hover span {
    transform: translateX(4px);
}

/* quote */

.jp-final-quote-wrap {
    position: absolute;
    right: 38px;
    top: 255px;
    z-index: 3;
}

.jp-final-quote-card {
    width: 320px;
    padding: 2rem 1.8rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 14px 30px rgba(0,0,0,0.18);
    text-align: left;
}

.jp-final-quote-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255, 155, 220, 0.95), rgba(178, 120, 255, 0.95));
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(181, 102, 255, 0.24);
}

.jp-final-quote {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.jp-final-quote-line {
    width: 60px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f4b7e8, #b784ff);
    margin-bottom: 1rem;
}

.jp-final-quote-sign {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* chibi */

.jp-final-cta-chibi {
    position: absolute;
    right: -150px;
    top: 30px;
    width: 400px;
    max-width: 400px;
    opacity: 0.95;
    transform: translate(
        var(--final-chibi-x, 0px),
        var(--final-chibi-y, 0px)
    );
    transform-origin: center right;
    will-change: transform;
    transition: transform 0.1s linear;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.45));
    pointer-events: none;
    z-index: 4;
}
.jp-final-cta-chibi {
    filter:
        drop-shadow(0 25px 45px rgba(0,0,0,0.45))
        drop-shadow(0 0 20px rgba(255, 180, 230, 0.18));
}
/* si tu veux faire du pixel art, tu peux utiliser cette classe pour éviter les flous de redimensionnement */
.chibi-character {
    position: fixed !important;
    left: 300px !important;
    bottom: 150px !important;
    width: 256px !important;
    height: 256px !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    pointer-events: none;
}

.chibi-sprite {
    width: 256px !important;
    height: 256px !important;
    display: block !important;
    background-repeat: no-repeat !important;
    background-size: 1280px 1280px !important;
    transform: scaleX(1);
}
@media (max-width: 768px) {
    .chibi-character {
        display: none;
    }
}
/* Fix rendu 100% zoom */
.hero {
    min-height: auto;
    padding: 8rem 0 5rem;
}

.jp-premium-section,
.jp-services-section,
.jp-final-cta-section {
    min-height: auto;
}
