/* ============================================================
   METEOR DESIGN — Premium Gaming Creative Studio
   Palette: Black #000 / White #FFF / Mauve #A9A4E8
   Ultra Glassmorphism + 3D Immersive + Filters + Protection
   ============================================================ */

#preloader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}


/* ======================== SECURITY ======================== */
body.devtools-open .section-pricing,
body.devtools-open .section-testimonials {
    filter: blur(12px);
    pointer-events: none;
    user-select: none;
}
body.devtools-open .section-pricing::after {
    content: 'Contenu prot\00e9g\00e9';
    position: absolute; inset: 0; z-index: 100;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700; color: var(--accent);
    background: rgba(0, 0, 0, 0.85);
}
@media print {
    body { display: none !important; }
}

/* ======================== VARIABLES ======================== */
:root {
    --bg: #000000;
    --bg-light: #060609;
    --bg-card: #08080c;

    --white: #ffffff;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.35);

    --accent: #A9A4E8;
    --accent-light: #c8c4f2;
    --accent-dark: #8b85d0;
    --accent-glow: rgba(169, 164, 232, 0.3);
    --accent-subtle: rgba(169, 164, 232, 0.08);
    --gradient: linear-gradient(135deg, #c8c4f2, #A9A4E8, #8b85d0);
    --gradient-soft: linear-gradient(135deg, rgba(169,164,232,0.2), rgba(169,164,232,0.05));

    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-bg-hover: rgba(169, 164, 232, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(169, 164, 232, 0.25);
    --glass-blur: 36px;
    --glass-glow: 0 0 30px rgba(169, 164, 232, 0.07);
    --glass-glow-hover: 0 0 60px rgba(169, 164, 232, 0.16), 0 12px 48px rgba(0, 0, 0, 0.45);
    --glass-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    --glass-inner: inset 0 1px 0 rgba(255, 255, 255, 0.06);

    --font: 'Poppins', sans-serif;

    --container: 1300px;
    --section-gap: 140px;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --speed-fast: 0.3s;
    --speed-mid: 0.6s;
    --speed-slow: 1s;

    --perspective: 1200px;
}

/* ======================== RESET ======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
/* Allow selection only inside form fields */
input, textarea, select { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }

a { color: inherit; text-decoration: none; cursor: none; }
button { font-family: var(--font); border: none; background: none; cursor: none; color: inherit; }
img { max-width: 100%; display: block; -webkit-user-drag: none; -khtml-user-drag: none; user-select: none; -webkit-user-select: none; pointer-events: none; }
a img, .card-expand, .lightbox-close, button img, .preloader-logo { pointer-events: auto; }
ul { list-style: none; }
::selection { background: rgba(169, 164, 232, 0.35); color: var(--white); }

/* ====================== SCROLLBAR ====================== */
/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(169, 164, 232, 0.25);
    border-radius: 3px;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(169, 164, 232, 0.5);
}
::-webkit-scrollbar-thumb:active {
    background: rgba(169, 164, 232, 0.65);
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(169, 164, 232, 0.25) transparent;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ======================== NOISE OVERLAY ======================== */
.noise-overlay {
    position: fixed; inset: 0; z-index: 10000; pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 128px 128px;
}

/* ======================== CUSTOM CURSOR — Glassmorphism ======================== */
.cursor-dot {
    position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 100001;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s;
    box-shadow: 0 0 14px var(--accent-glow);
}
.cursor-glass {
    position: fixed; top: 0; left: 0; width: 48px; height: 48px;
    border-radius: 50%; pointer-events: none; z-index: 100000;
    transform: translate(-50%, -50%);
    background: rgba(169, 164, 232, 0.04);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(169, 164, 232, 0.12);
    box-shadow: 0 0 24px rgba(169, 164, 232, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.cursor-glass::before {
    content: '';
    position: absolute; top: 0; left: 25%; right: 25%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    border-radius: 1px;
}
/* Hover state — NO blur to preserve readability */
body.cursor-hover .cursor-dot {
    width: 4px; height: 4px; opacity: 0.5;
}
body.cursor-hover .cursor-glass {
    width: 64px; height: 64px;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-color: rgba(169, 164, 232, 0.3);
    box-shadow: 0 0 28px rgba(169, 164, 232, 0.15), 0 0 8px rgba(169, 164, 232, 0.08);
}
body.cursor-hover .cursor-glass::before {
    background: linear-gradient(90deg, transparent, rgba(169,164,232,0.25), transparent);
}

/* ======================== PRELOADER ======================== */
#preloader {
    position: fixed; inset: 0; z-index: 100002; background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.preloader-logo { width: 56px; height: 56px; animation: preloaderPulse 1.8s ease-in-out infinite; filter: drop-shadow(0 0 20px var(--accent-glow)); }
.preloader-bar { width: 180px; height: 2px; background: rgba(255, 255, 255, 0.06); border-radius: 2px; overflow: hidden; }
.preloader-progress { height: 100%; width: 0%; background: var(--gradient); border-radius: 2px; transition: width 0.3s var(--ease); box-shadow: 0 0 14px var(--accent-glow); }
.preloader-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; color: var(--text-muted); }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }

/* ======================== GLASS CARD — Core System (Ultra) ======================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-glow), var(--glass-inner);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
/* Top shine line */
.glass-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: var(--glass-shine);
    z-index: 2;
}
/* Mouse-following radial glow */
.glass-card::after {
    content: '';
    position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(700px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(169, 164, 232, 0.1), transparent 40%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 1;
}
.glass-card:hover::after { opacity: 1; }
.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-glow-hover), var(--glass-inner);
    background: var(--glass-bg-hover);
}

/* ======================== TEXT EFFECTS ======================== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.outline-text {
    -webkit-text-stroke: 2px rgba(169, 164, 232, 0.3);
    -webkit-text-fill-color: transparent;
}
.glow-text { text-shadow: 0 0 50px rgba(169, 164, 232, 0.3); }

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-weight: 600; font-size: 0.875rem;
    padding: 14px 32px; border-radius: 60px;
    position: relative; overflow: hidden; white-space: nowrap;
    transition: all 0.4s var(--ease);
}
/* Shine sweep on hover */
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s var(--ease);
}
.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--accent); color: var(--bg);
    border: 1px solid var(--accent); font-weight: 700;
    box-shadow: 0 0 24px rgba(169, 164, 232, 0.18);
}
.btn-primary:hover {
    background: var(--accent-light); border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(169, 164, 232, 0.35), 0 0 28px rgba(169, 164, 232, 0.2);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.03); color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--glass-glow);
}
.btn-outline:hover {
    border-color: var(--accent); color: var(--accent-light);
    transform: translateY(-3px);
    background: rgba(169, 164, 232, 0.06);
    box-shadow: 0 10px 36px rgba(169, 164, 232, 0.14);
}
.btn-discord {
    background: rgba(169, 164, 232, 0.12); color: var(--accent-light);
    border: 1px solid rgba(169, 164, 232, 0.2);
    box-shadow: 0 0 20px rgba(169, 164, 232, 0.1), var(--glass-inner);
}
.btn-discord:hover {
    background: var(--accent); color: var(--bg); border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(169, 164, 232, 0.35), 0 0 24px rgba(169, 164, 232, 0.18);
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

/* ======================== HEADER — Heavy Glass ======================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0;
    transition: transform 0.5s var(--ease), background 0.5s, padding 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
}
.header.scrolled {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(42px); -webkit-backdrop-filter: blur(42px);
    border-bottom: 1px solid rgba(169, 164, 232, 0.08);
    padding: 12px 0;
    box-shadow: 0 4px 48px rgba(0, 0, 0, 0.55), 0 0 36px rgba(169, 164, 232, 0.05);
}
.header.hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo { display: flex; align-items: center; gap: 10px; z-index: 10; }
.logo img { width: 34px; height: 34px; filter: drop-shadow(0 0 12px rgba(169,164,232,0.4)); }
.logo span { font-weight: 700; font-size: 1.05rem; letter-spacing: 3px; }

.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
    position: relative; padding: 6px 14px; border-radius: 60px;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--accent); border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.4s var(--ease);
    box-shadow: 0 0 12px var(--accent-glow);
}
.nav-link:hover {
    color: var(--white);
    background: rgba(169, 164, 232, 0.06);
}
.nav-link:hover::after { width: calc(100% - 28px); }
.nav-link.active { color: var(--white); background: rgba(169, 164, 232, 0.07); }
.nav-link.active::after { width: calc(100% - 28px); }

.header-cta { z-index: 10; }

.burger { display: none; flex-direction: column; gap: 6px; width: 28px; z-index: 10; padding: 4px 0; }
.burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ======================== MOBILE MENU — Full Glass ======================== */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(56px); -webkit-backdrop-filter: blur(56px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-link {
    font-size: 2.2rem; font-weight: 700; letter-spacing: 1px; color: var(--text-secondary);
    transition: color 0.3s, transform 0.5s var(--ease), text-shadow 0.3s;
    transform: translateY(30px); opacity: 0;
}
.mobile-menu.active .mobile-link { transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.44s; }
.mobile-link:hover { color: var(--accent); text-shadow: 0 0 35px var(--accent-glow); }
.mobile-link--discord {
    display: flex; align-items: center; gap: 12px;
    font-size: 1.6rem; color: var(--accent);
    margin-top: 12px; padding: 12px 32px; border-radius: 60px;
    background: rgba(169, 164, 232, 0.1); border: 1px solid rgba(169, 164, 232, 0.18);
}
.mobile-link--discord:hover { background: rgba(169, 164, 232, 0.14); color: var(--accent-light); }

/* ======================== SECTIONS ======================== */
.section { padding: var(--section-gap) 0; position: relative; content-visibility: auto; contain-intrinsic-size: auto 800px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px; color: var(--accent);
    margin-bottom: 18px; padding: 7px 18px;
    background: rgba(169, 164, 232, 0.1); border: 1px solid rgba(169, 164, 232, 0.14);
    border-radius: 60px;
    box-shadow: 0 0 20px rgba(169, 164, 232, 0.06);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px;
    transition: text-shadow 0.6s var(--ease);
}
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; }

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.35;
    animation: orbFloat 25s ease-in-out infinite;
}
.hero-orb--purple {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(169, 164, 232, 0.5), transparent 70%);
    top: -15%; right: -8%; animation-delay: 0s;
}
.hero-orb--blue {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(139, 133, 208, 0.35), transparent 70%);
    bottom: -15%; left: -8%; animation-delay: -9s;
}
.hero-orb--cyan {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(200, 196, 242, 0.25), transparent 70%);
    top: 40%; left: 45%; animation-delay: -17s;
}
.hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(169, 164, 232, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(169, 164, 232, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -50px) scale(1.06); }
    50% { transform: translate(-30px, 30px) scale(0.94); }
    75% { transform: translate(20px, 40px) scale(1.03); }
}

.hero-content { text-align: center; position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
    padding: 10px 22px; border-radius: 60px;
    background: rgba(169, 164, 232, 0.08);
    border: 1px solid rgba(169, 164, 232, 0.12);
    margin-bottom: 36px;
    box-shadow: 0 0 28px rgba(169, 164, 232, 0.07), var(--glass-inner);
}
.badge-pulse {
    width: 8px; height: 8px; background: #A9A4E8; border-radius: 50%;
    position: relative; box-shadow: 0 0 10px rgba(169, 164, 232, 0.5);
}
.badge-pulse::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: rgba(169, 164, 232, 0.25);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(2); opacity: 0; } }

.hero-title { margin-bottom: 28px; }
.title-line {
    display: block; font-size: clamp(3.5rem, 10vw, 8.5rem);
    font-weight: 900; line-height: 0.95; letter-spacing: -3px;
    overflow: hidden;
}
.title-line-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease);
}
.title-line-inner.animated {
    transform: translateY(0);
}
.hero-title .gradient-text {
    text-shadow: 0 0 60px rgba(169, 164, 232, 0.2);
    animation: titleGlow 4s ease-in-out infinite alternate;
}
@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(169, 164, 232, 0.1)); }
    100% { filter: drop-shadow(0 0 50px rgba(169, 164, 232, 0.3)); }
}

.hero-description {
    font-size: 1.15rem; color: var(--text-secondary);
    max-width: 520px; margin: 0 auto 44px; line-height: 1.9;
}
.hero-description strong { color: var(--accent-light); font-weight: 600; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Hero Floating Cards */
.hero-float { position: absolute; z-index: 1; pointer-events: auto; }
.hero-float--1 { top: 16%; left: 4%; animation: float1 9s ease-in-out infinite; }
.hero-float--2 { bottom: 20%; right: 3%; animation: float2 11s ease-in-out infinite; }
.hero-float--3 { top: 10%; right: 8%; animation: float3 13s ease-in-out infinite; }
.float-card {
    width: 130px; height: 130px; padding: 14px; border-radius: var(--radius);
    transform: rotate3d(1, 1, 0, 15deg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 32px rgba(169, 164, 232, 0.12);
    border: 1px solid rgba(169, 164, 232, 0.18);
    background: rgba(8, 8, 12, 0.8);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    cursor: pointer;
}
.float-card:hover {
    transform: rotate3d(1, 1, 0, 0deg) scale(1.12) translateY(-10px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(169, 164, 232, 0.2),
        0 0 100px rgba(169, 164, 232, 0.08);
    border-color: rgba(169, 164, 232, 0.4);
}
.float-card img {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm);
    transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.float-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.15) saturate(1.1);
}
@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-24px) rotate(-2deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(6deg); } 50% { transform: translateY(-30px) rotate(10deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-18px) rotate(-2deg); } }
.hero-float:hover { animation-play-state: paused; }

/* Scroll Indicator */
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 4px; color: var(--text-muted); }
.scroll-line { width: 1px; height: 56px; background: rgba(169, 164, 232, 0.12); position: relative; overflow: hidden; }
.scroll-dot {
    width: 3px; height: 14px; background: var(--accent); border-radius: 3px;
    position: absolute; left: -1px;
    animation: scrollDown 2.2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow);
}
@keyframes scrollDown { 0% { top: -14px; opacity: 0; } 30% { opacity: 1; } 100% { top: 56px; opacity: 0; } }

/* ======================== MARQUEE ======================== */
.marquee-section {
    padding: 30px 0; overflow: hidden;
    border-top: 1px solid rgba(169, 164, 232, 0.08);
    border-bottom: 1px solid rgba(169, 164, 232, 0.08);
    background: rgba(169, 164, 232, 0.03);
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 35s linear infinite; }
.marquee-content { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item {
    font-size: 1.15rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 3px; color: rgba(169, 164, 232, 0.3);
    padding: 0 24px; white-space: nowrap;
}
.marquee-separator { color: var(--accent); font-size: 0.8rem; opacity: 0.3; padding: 0 6px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======================== STATS — 3D Interactive ======================== */
.stats-section { padding: 90px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item {
    text-align: center; padding: 44px 20px;
    position: relative; overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    will-change: transform;
}
.stat-item::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 2px; background: var(--gradient); opacity: 0; transition: all 0.5s var(--ease);
}
.stat-item:hover::before { opacity: 1; width: 90px; }
/* Bottom glow line */
.stat-item::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: width 0.6s var(--ease); opacity: 0.3;
}
.stat-item:hover::after { width: 70%; }
.stat-number {
    font-size: 3.2rem; font-weight: 800; line-height: 1;
    background: var(--gradient); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(169, 164, 232, 0.18));
    transform: translateZ(30px);
}
.stat-prefix, .stat-suffix {
    font-size: 1.5rem; font-weight: 700; color: rgba(169, 164, 232, 0.45);
    transform: translateZ(20px); display: inline-block;
}
.stat-label {
    font-size: 0.82rem; color: var(--text-secondary); margin-top: 10px; letter-spacing: 0.5px;
    transform: translateZ(15px);
}

/* ======================== PORTFOLIO FILTER TABS ======================== */
.portfolio-filters {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 52px; flex-wrap: wrap;
}
.filter-btn {
    padding: 11px 26px; border-radius: 60px;
    font-family: var(--font); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
    background: rgba(8, 8, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
    box-shadow: 0 0 14px rgba(169, 164, 232, 0.04), var(--glass-inner);
}
.filter-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s var(--ease);
}
.filter-btn:hover::before { left: 100%; }
.filter-btn:hover {
    border-color: rgba(169, 164, 232, 0.22);
    background: rgba(169, 164, 232, 0.06);
    color: var(--white);
    box-shadow: 0 0 24px rgba(169, 164, 232, 0.1);
}
.filter-btn.active {
    background: rgba(169, 164, 232, 0.14);
    border-color: rgba(169, 164, 232, 0.35);
    color: var(--accent-light);
    box-shadow: 0 0 30px rgba(169, 164, 232, 0.14), var(--glass-inner);
}
.filter-btn.active::after {
    content: '';
    position: absolute; bottom: -1px; left: 20%; right: 20%; height: 2px;
    background: var(--gradient); border-radius: 2px;
    box-shadow: 0 0 12px rgba(169, 164, 232, 0.3);
}

/* ======================== PORTFOLIO SLIDER (Tous mode) ======================== */
.portfolio-slider {
    display: none; position: relative; margin-bottom: 72px;
}
.portfolio-slider.active { display: block; }
.slider-viewport {
    overflow: hidden; border-radius: var(--radius);
    cursor: grab; -webkit-user-select: none; user-select: none;
}
.slider-viewport.dragging { cursor: grabbing; }
.slider-track {
    display: flex; gap: 24px;
    transition: transform 0.6s var(--ease);
    will-change: transform;
}
.slider-track.no-transition { transition: none; }
.slider-track .slide-card {
    flex: 0 0 calc(33.333% - 16px); min-width: 0;
}
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(8, 8, 12, 0.85); border: 1px solid rgba(169, 164, 232, 0.2);
    color: var(--white); z-index: 4;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(169, 164, 232, 0.06);
}
.slider-arrow:hover {
    background: var(--accent); border-color: var(--accent); color: var(--bg);
    box-shadow: 0 8px 36px rgba(169, 164, 232, 0.3);
}
.slider-arrow--prev { left: -26px; }
.slider-arrow--next { right: -26px; }
.slider-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 28px;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.15); border: none;
    transition: all 0.4s var(--ease); cursor: none;
}
.slider-dot.active {
    background: var(--accent); width: 28px; border-radius: 4px;
    box-shadow: 0 0 12px rgba(169, 164, 232, 0.4);
}

/* ======================== PORTFOLIO ======================== */
.portfolio-category {
    margin-bottom: 72px;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), max-height 0.6s var(--ease);
}
.portfolio-category:last-child { margin-bottom: 0; }
.portfolio-category.filtered-out {
    opacity: 0; transform: translateY(16px) scale(0.97);
    max-height: 0 !important; margin-bottom: 0 !important;
    pointer-events: none; overflow: hidden;
}

.category-header {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 34px; margin-bottom: 28px;
    position: relative; overflow: hidden;
}
.category-number {
    font-size: 2.4rem; font-weight: 900; line-height: 1;
    background: var(--gradient); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; opacity: 0.35;
    flex-shrink: 0;
}
.category-title {
    font-size: 1.3rem; font-weight: 700; letter-spacing: 0.5px;
}
.category-desc {
    font-size: 0.82rem; color: var(--text-muted); margin-left: auto; flex-shrink: 0;
}
.category-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.18;
}

.portfolio-grid { display: grid; gap: 24px; }
.portfolio-grid--3 { grid-template-columns: repeat(3, 1fr); }
.portfolio-grid--2 { grid-template-columns: repeat(2, 1fr); }

.portfolio-card {
    perspective: var(--perspective);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    will-change: transform, opacity;
    contain: layout style;
}
.portfolio-card--hidden { display: none; }

.btn-voir-tout {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 28px auto 0; padding: 14px 36px;
    font-family: var(--font); font-size: 0.88rem; font-weight: 600;
    color: var(--text); cursor: none;
    border: 1px solid rgba(169, 164, 232, 0.15);
    border-radius: var(--radius);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn-voir-tout:hover {
    border-color: rgba(169, 164, 232, 0.4);
    box-shadow: 0 0 30px rgba(169, 164, 232, 0.12);
    transform: translateY(-2px);
}
.btn-voir-tout svg { transition: transform 0.3s var(--ease); }
.btn-voir-tout:hover svg { transform: translateY(3px); }
.btn-voir-tout.expanded:hover svg { transform: translateY(-3px); }

.card-inner {
    position: relative; overflow: hidden; border-radius: var(--radius);
    transform-style: preserve-3d; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    background: rgba(8, 8, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.card-inner:hover {
    box-shadow: 0 22px 68px rgba(0, 0, 0, 0.45), 0 0 40px rgba(169, 164, 232, 0.12);
    border-color: rgba(169, 164, 232, 0.2);
}

.card-image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease), filter 0.7s;
}
.card-inner:hover .card-image img { transform: scale(1.1); filter: brightness(1.05); }
/* Protected image overlay */
.card-image img.protected-blur { filter: blur(30px) !important; transition: filter 0.3s; }

.card-watermark {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; letter-spacing: 6px;
    color: rgba(169, 164, 232, 0.08); text-transform: uppercase;
    pointer-events: none; user-select: none; -webkit-user-select: none;
    transform: rotate(-25deg);
    z-index: 2;
}
.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.92) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
    opacity: 0; transition: opacity 0.5s var(--ease);
}
.card-inner:hover .card-overlay { opacity: 1; }
.card-category {
    font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 3px; color: var(--accent); margin-bottom: 8px;
}
.card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.card-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }
.card-expand {
    position: absolute; top: 18px; right: 18px;
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    background: rgba(8, 8, 12, 0.85);
    border: 1px solid rgba(169, 164, 232, 0.18); border-radius: 50%;
    color: var(--white); transition: all 0.4s var(--ease);
    transform: translateY(-12px) scale(0.9); opacity: 0;
    box-shadow: 0 0 18px rgba(169, 164, 232, 0.08);
}
.card-inner:hover .card-expand { transform: translateY(0) scale(1); opacity: 1; }
.card-expand:hover {
    background: var(--accent); border-color: var(--accent); color: var(--bg);
    box-shadow: 0 0 28px var(--accent-glow);
}

/* ======================== LIGHTBOX — Full Glass ======================== */
.lightbox {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(48px); -webkit-backdrop-filter: blur(48px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s; cursor: none;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 28px; right: 28px; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(169, 164, 232, 0.07); border: 1px solid rgba(169, 164, 232, 0.18);
    border-radius: 50%; color: var(--white);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    transition: all 0.4s var(--ease);
    box-shadow: 0 0 20px rgba(169, 164, 232, 0.08);
}
.lightbox-close:hover { background: rgba(169, 164, 232, 0.2); transform: rotate(90deg); }
.lightbox-content { max-width: 80%; max-height: 80vh; }
.lightbox-content img {
    max-width: 100%; max-height: 80vh; object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 60px rgba(169, 164, 232, 0.12);
    transform: scale(0.92); transition: transform 0.6s var(--ease), filter 0.3s;
    border: 1px solid rgba(169, 164, 232, 0.12);
}
.lightbox.active .lightbox-content img { transform: scale(1); }
.lightbox-watermark {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800; letter-spacing: 8px;
    color: rgba(169, 164, 232, 0.1); text-transform: uppercase;
    pointer-events: none; user-select: none; -webkit-user-select: none;
    transform: rotate(-25deg);
    z-index: 10;
}

/* ======================== SERVICES ======================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    padding: 44px 32px; position: relative; overflow: hidden;
    perspective: var(--perspective); transform-style: preserve-3d;
}
.service-card .service-line {
    position: absolute; top: 0; left: 50%; width: 0; height: 2px;
    background: var(--gradient); border-radius: 2px;
    transition: width 0.6s var(--ease), left 0.6s var(--ease);
    box-shadow: 0 0 16px rgba(169, 164, 232, 0.3);
}
.service-card:hover .service-line { width: 100%; left: 0; }

.service-icon {
    width: 56px; height: 56px; margin-bottom: 24px; color: var(--accent);
    transition: transform 0.5s var(--ease), filter 0.5s;
}
.service-card:hover .service-icon { transform: translateY(-6px) scale(1.08); filter: drop-shadow(0 0 16px rgba(169, 164, 232, 0.4)); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }

/* ======================== PRICING ======================== */
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Card wrapper — perspective container for 3D tilt, prevents crop */
.pricing-card-wrap {
    perspective: 900px;
    padding: 12px; /* breathing room so tilt/scale never clips */
}

.pricing-card {
    padding: 0; position: relative;
    border-radius: var(--radius);
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    will-change: transform;
}
.pricing-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(169, 164, 232, 0.1);
    border-color: rgba(169, 164, 232, 0.3);
}

/* Card image — compact top area */
.pricing-card-img {
    position: relative; overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    height: 140px;
}
.pricing-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s;
}
.pricing-card:hover .pricing-card-img img {
    transform: scale(1.06);
    filter: brightness(1.08) saturate(1.05);
}

/* Card body */
.pricing-card-body { padding: 18px 20px 20px; }

/* Header: name + price inline */
.pricing-top {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 6px;
}
.pricing-name { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.3px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; }
.price-amount {
    font-size: 1.5rem; font-weight: 800; line-height: 1;
    background: var(--gradient); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-currency { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.price-custom { font-size: 0.9rem; font-weight: 700; color: var(--accent); background: none; -webkit-text-fill-color: currentColor; }

.pricing-desc {
    font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
    margin-bottom: 14px;
}

/* Toggle button — pill */
.pricing-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1px solid rgba(169, 164, 232, 0.12); border-radius: 8px;
    cursor: pointer; padding: 7px 16px;
    color: var(--accent); font-family: var(--font); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.4px; transition: all 0.3s var(--ease);
}
.pricing-toggle:hover {
    background: rgba(169, 164, 232, 0.08); border-color: rgba(169, 164, 232, 0.3);
}
.pricing-toggle svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.pricing-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Collapsible details */
.pricing-details {
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s var(--ease);
}
.pricing-features {
    display: flex; flex-direction: column; gap: 7px;
    padding-top: 14px; margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.76rem; color: var(--text-secondary); line-height: 1.4;
}
.pricing-features svg { flex-shrink: 0; color: var(--accent); width: 13px; height: 13px; }

/* Popular card — gradient border */
.pricing-card--popular {
    border-color: transparent;
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, rgba(169,164,232,0.4), rgba(169,164,232,0.08), rgba(169,164,232,0.4)) border-box;
    box-shadow: 0 0 40px rgba(169, 164, 232, 0.1), var(--glass-inner);
}

.pricing-badge {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
    padding: 4px 12px; background: var(--accent); color: var(--bg);
    border-radius: 40px;
}

/* Info cards (Customs, Details) — no image */
.pricing-card--info .pricing-card-body { padding: 22px 20px; }
.pricing-info-text p {
    font-size: 0.78rem; line-height: 1.6; color: var(--text-secondary);
    margin-bottom: 14px;
}
.pricing-card--info .btn { font-size: 0.75rem; padding: 9px 20px; }

/* ======================== PRICING FOOTER (order details) ======================== */
.pricing-footer {
    margin-top: 32px; padding: 28px 32px;
    border-radius: var(--radius);
}
.pricing-footer-list {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px 24px;
    list-style: none; justify-items: center; text-align: center;
}
.pricing-footer-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.76rem; color: var(--text-secondary); line-height: 1.4;
}
.pricing-footer-list svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Payment section header — spacing inside pricing */
.pricing-pay-header {
    margin-top: 120px;
    margin-bottom: 48px;
}

/* ======================== PAYMENTS TICKER (testimonials-style marquee) ======================== */
.payments-ticker {
    margin-top: 24px; overflow: visible; position: relative;
    clip-path: inset(-40px 0 -40px 0);
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.payments-ticker-track {
    display: flex; gap: 0; width: max-content; padding: 48px 0;
    animation: paymentsTicker 25s linear infinite;
}
.payments-ticker:hover .payments-ticker-track {
    animation-play-state: paused;
}
.payments-ticker-content {
    display: flex; align-items: center; flex-shrink: 0; gap: 72px;
    padding: 0 36px;
}
@keyframes paymentsTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pf-logo {
    height: 140px; width: auto;
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
    flex-shrink: 0;
    filter: brightness(0.85);
}
.pf-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* ======================== TESTIMONIALS ======================== */
.testimonials-ticker {
    overflow: visible; position: relative;
    clip-path: inset(-20px -0px -20px -0px);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.testimonials-ticker-track {
    display: flex; gap: 24px; width: max-content; padding: 20px 0;
    animation: testimTicker 80s linear infinite;
}
.testimonials-ticker:hover .testimonials-ticker-track {
    animation-play-state: paused;
}
.testimonials-ticker-track-reverse {
    animation: testimTickerReverse 80s linear infinite !important;
}
.testimonials-ticker-reverse {
    margin-top: 24px;
}
@keyframes testimTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes testimTickerReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.testimonial-card {
    flex: 0 0 380px; padding: 32px 28px; position: relative;
    perspective: var(--perspective); transform-style: preserve-3d;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(169, 164, 232, 0.1);
    border-color: rgba(169, 164, 232, 0.3);
}
.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.testimonial-quote { color: var(--accent); }
.testimonial-meta { display: flex; align-items: center; gap: 8px; }
.testimonial-discord { color: rgba(169, 164, 232, 0.35); flex-shrink: 0; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
    flex-shrink: 0; border: 2px solid rgba(169, 164, 232, 0.25);
    box-shadow: 0 0 20px rgba(169, 164, 232, 0.15);
}
.author-info { display: flex; flex-direction: column; flex: 1; gap: 4px; }
.author-info strong { font-size: 0.88rem; font-weight: 600; }
.author-stars { display: flex; gap: 2px; color: var(--accent); }

/* ======================== FAQ ======================== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; border-radius: var(--radius); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 24px 28px; font-size: 0.93rem; font-weight: 600; text-align: left;
    color: var(--text); transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-icon span {
    position: absolute; background: var(--accent); border-radius: 2px;
    transition: transform 0.4s var(--ease), opacity 0.3s;
}
.faq-icon span:first-child { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon span:last-child { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.active .faq-icon span:last-child { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease), opacity 0.4s; opacity: 0; }
.faq-item.active .faq-answer { opacity: 1; }
.faq-answer p { padding: 0 28px 24px; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.85; }

/* ======================== CONTACT ======================== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 720px; margin: 0 auto; }
.contact-info { display: contents; }
.contact-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 20px; padding: 48px 32px; text-decoration: none;
    transition: border-color 0.4s;
    will-change: transform;
}
.contact-card:hover { border-color: rgba(169, 164, 232, 0.25); }
.contact-card-icon {
    width: 68px; height: 68px; display: flex; align-items: center; justify-content: center;
    background: rgba(169, 164, 232, 0.1); border: 1px solid rgba(169, 164, 232, 0.18);
    border-radius: 20px; color: var(--accent); flex-shrink: 0;
    transition: all 0.4s var(--ease);
    box-shadow: 0 0 24px rgba(169, 164, 232, 0.08);
}
.contact-card:hover .contact-card-icon {
    background: rgba(169, 164, 232, 0.18);
    box-shadow: 0 0 40px rgba(169, 164, 232, 0.2);
    transform: scale(1.08);
}
.contact-card-icon svg { width: 28px; height: 28px; }
.contact-card strong { font-size: 1.05rem; display: block; margin-bottom: 2px; letter-spacing: 1px; }
.contact-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.contact-card .contact-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 8px; padding: 10px 24px; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; color: var(--white);
    background: rgba(169, 164, 232, 0.14); border: 1px solid rgba(169, 164, 232, 0.22);
    border-radius: 10px; transition: all 0.3s var(--ease);
}
.contact-card:hover .contact-btn {
    background: rgba(169, 164, 232, 0.22); box-shadow: 0 0 20px rgba(169, 164, 232, 0.12);
}
.contact-schedule { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.contact-schedule-row {
    display: flex; justify-content: space-between; gap: 16px;
    font-size: 0.8rem; color: var(--text-muted); padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.contact-schedule-row:last-child { border-bottom: none; }
.contact-schedule-row span:first-child { color: var(--text-secondary); font-weight: 500; }
.contact-schedule-row .schedule-off { color: rgba(255, 100, 100, 0.7); font-style: italic; }
.contact-schedule-row .schedule-on { color: var(--accent); }

/* ======================== FOOTER — Frosted Glass ======================== */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid rgba(169, 164, 232, 0.08);
    background: rgba(169, 164, 232, 0.03);
}
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo img { width: 30px; height: 30px; filter: drop-shadow(0 0 12px rgba(169,164,232,0.3)); }
.footer-logo span { font-weight: 700; font-size: 0.95rem; letter-spacing: 3px; }
.footer-brand > p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-links h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 20px; opacity: 0.6; }
.footer-links a {
    display: block; font-size: 0.82rem; color: var(--text-muted); padding: 5px 0;
    transition: color 0.3s, transform 0.3s var(--ease);
}
.footer-links a:hover { color: var(--white); transform: translateX(5px); }
.footer-hours { font-size: 0.82rem; color: var(--text-muted); padding: 5px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-credit { font-style: italic; }

/* ======================== ANTI-SCREENSHOT SHIELD ======================== */
.screenshot-shield {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(80px); -webkit-backdrop-filter: blur(80px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.screenshot-shield.active {
    opacity: 1; visibility: visible; pointer-events: all;
}
.shield-content {
    text-align: center; color: var(--text-muted);
    display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.shield-content svg { color: var(--accent); opacity: 0.45; }
.shield-content p {
    font-size: 1.1rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--text-secondary);
}
.shield-content span {
    font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px;
}

/* ======================== SCROLL REVEAL ======================== */
.reveal { opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal[data-reveal="up"] { transform: translateY(50px); }
.reveal[data-reveal="left"] { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal[data-reveal="scale"] { transform: scale(0.88); }
.reveal.revealed { opacity: 1; transform: translate(0) scale(1); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ======================== STAGGERED GRID ANIMATION ======================== */
.grid-item-hidden {
    opacity: 0; transform: translateY(30px) scale(0.96);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.grid-item-visible {
    opacity: 1; transform: translateY(0) scale(1);
}

/* ======================== GLOW PULSE ANIMATION ======================== */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 24px rgba(169, 164, 232, 0.07); }
    50% { box-shadow: 0 0 48px rgba(169, 164, 232, 0.16); }
}

/* ======================== SHIMMER ANIMATION ======================== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.glass-shimmer {
    background-image: linear-gradient(90deg, transparent 0%, rgba(169,164,232,0.04) 40%, rgba(169,164,232,0.08) 50%, rgba(169,164,232,0.04) 60%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 8s ease-in-out infinite;
}

/* ======================== FOCUS VISIBLE (Accessibilite clavier) ======================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(169, 164, 232, 0.2);
}

.nav-link:focus-visible,
.filter-btn:focus-visible,
.faq-question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
    outline: none; /* Le border-color suffit pour les champs */
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .header-cta { display: none; }
    .burger { display: flex; }
    .hero-float { display: none; }
    .title-line { font-size: clamp(2.5rem, 8vw, 5rem); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-footer-list { grid-template-columns: 1fr 1fr; }
    .testimonial-card { flex: 0 0 320px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .category-desc { display: none; }
    .portfolio-filters { gap: 8px; }
    .filter-btn { padding: 9px 20px; font-size: 0.78rem; }
    .slider-track .slide-card { flex: 0 0 calc(50% - 12px); }
    .slider-arrow--prev { left: -16px; }
    .slider-arrow--next { right: -16px; }
    .slider-arrow { width: 44px; height: 44px; }
}

@media (max-width: 640px) {
    :root { --section-gap: 90px; }
    .container { padding: 0 16px; }
    .title-line { font-size: clamp(2rem, 12vw, 3.5rem); letter-spacing: -1px; }
    .hero { padding: 100px 0 60px; }
    .hero-description { font-size: 1rem; }
    .hero-scroll { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 24px 12px; }
    .stat-number { font-size: 2rem; }
    .portfolio-grid--3, .portfolio-grid--2 { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-wrap { padding: 6px; }
    .pricing-card-img { height: 120px; }
    .pricing-footer { padding: 22px 20px; }
    .pricing-footer-list { grid-template-columns: 1fr; }
    .payments-ticker-content { gap: 48px; padding: 0 18px; }
    .pf-logo { height: 100px; }
    .slider-track .slide-card { flex: 0 0 100%; }
    .testimonial-card { flex: 0 0 280px; }
    .slider-arrow--prev { left: 8px; }
    .slider-arrow--next { right: 8px; }
    .slider-arrow { width: 40px; height: 40px; }
    .section-header { margin-bottom: 44px; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .contact-form { padding: 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .cursor-dot, .cursor-glass { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
    .mobile-link { font-size: 1.6rem; }
    .category-header { flex-wrap: wrap; padding: 18px 20px; }
    .portfolio-category { margin-bottom: 48px; }
    .portfolio-filters { gap: 6px; margin-bottom: 36px; }
    .filter-btn { padding: 8px 16px; font-size: 0.75rem; }
}

@media (max-width: 380px) {
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .marquee-track { animation: none; }
    .reveal { opacity: 1; transform: none; }
}
