/* ================================
   FASTPANEL - DESIGN PROFESSIONNEL 2024
   Style épuré, moderne et corporate
   ================================ */

/* Variables CSS */
:root {
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;
    --primary-50: #f8fafc;

    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-200: #bfdbfe;
    --blue-100: #dbeafe;

    --green-500: #22c55e;
    --green-400: #4ade80;

    --orange-500: #f97316;
    --orange-400: #fb923c;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* FOND GLOBAL - Override Bootstrap blanc */
body {
    background-color: var(--primary-900) !important;
}

/* NAVIGATION BAR */
.navigation-bar,
.sticky-wrapper {
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
}

.header-top-area {
    z-index: 1 !important;
    position: relative !important;
}

/* ================================
   BASE & TYPOGRAPHY
   ================================ */

* {
    box-sizing: border-box;
}

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

.h-hero {
    background: #050d1f;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 110px;
}

/* Grille de points subtile */
.h-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148,163,184,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 1;
    pointer-events: none;
}

/* Fondu bas vers la section suivante */
.h-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0f172a);
    z-index: 4;
    pointer-events: none;
}

/* Lueurs gauche */
.h-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 90% at 0% 50%, rgba(29,78,216,.16) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 20%, rgba(56,189,248,.07) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* IMAGE — moitié droite positionnée en absolu */
.h-right {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 52%;
    z-index: 1;
    pointer-events: none;
}

.h-server-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    display: block;
}

/* Fondu gauche : l'image se fond dans le fond sombre */
.h-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #050d1f 0%,
        rgba(5,13,31,.88) 15%,
        rgba(5,13,31,.5) 35%,
        rgba(5,13,31,.15) 60%,
        transparent 100%
    );
    z-index: 2;
}

/* Fondu haut/bas */
.h-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #050d1f 0%, transparent 18%, transparent 78%, #050d1f 100%);
    z-index: 3;
}

/* Lueur bleue derrière l'image */
.h-glow {
    position: absolute;
    top: 50%; right: 15%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(56,189,248,.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ── CONTENU GAUCHE ── */
.h-wrap {
    position: relative;
    z-index: 5;
    max-width: 620px;
}

.h-left { min-width: 0; }

/* Badge */
.h-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(56,189,248,.07);
    border: 1px solid rgba(56,189,248,.16);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 12px; font-weight: 600;
    color: rgba(125,211,252,.8);
    letter-spacing: .2px;
    margin-bottom: 32px;
}
.h-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 8px rgba(56,189,248,.9);
    animation: svcDotPulse 2s ease infinite;
    flex-shrink: 0;
}

/* Titre */
.h-title {
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: 900; line-height: 1.06;
    letter-spacing: -.04em; color: #fff;
    margin-bottom: 20px;
}
.h-hl {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Sous-titre */
.h-sub {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(255,255,255,.42);
    max-width: 480px; margin: 0 0 40px;
}

/* Boutons */
.h-actions {
    display: flex; gap: 12px;
    align-items: center; flex-wrap: wrap;
    margin-bottom: 48px;
}
.h-btn-main {
    display: inline-flex; align-items: center; gap: 9px;
    background: #38bdf8; color: #04080f;
    font-size: 15px; font-weight: 700;
    padding: 14px 32px; border-radius: 100px;
    text-decoration: none; letter-spacing: -.01em;
    transition: all .2s ease;
    box-shadow: 0 0 40px rgba(56,189,248,.3);
}
.h-btn-main:hover { background: #7dd3fc; color: #04080f; text-decoration: none; transform: translateY(-2px); box-shadow: 0 0 60px rgba(56,189,248,.45); }
.h-btn-main i { transition: transform .2s; }
.h-btn-main:hover i { transform: translateX(4px); }
.h-btn-sec {
    display: inline-flex; align-items: center;
    color: rgba(255,255,255,.5); font-size: 14px; font-weight: 600;
    padding: 14px 26px; border: 1px solid rgba(255,255,255,.1); border-radius: 100px;
    text-decoration: none; background: rgba(255,255,255,.04); transition: all .2s;
}
.h-btn-sec:hover { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); text-decoration: none; }

/* Chips jeux */
.h-games {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 7px; margin-bottom: 48px;
}
.h-games-sep {
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,.18); text-transform: uppercase;
    letter-spacing: .8px; margin-right: 4px; white-space: nowrap;
}
.h-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 13px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px; font-size: 12.5px; font-weight: 600;
    color: rgba(255,255,255,.38); cursor: default; transition: all .2s;
}
.h-chip:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.65); }
.h-chip--more { color: rgba(56,189,248,.65); border-color: rgba(56,189,248,.14); background: rgba(56,189,248,.05); }

/* Stats — cards */
.h-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.h-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all .25s ease;
    cursor: default;
}
.h-stat-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.13);
    transform: translateY(-3px);
}

.h-si {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.h-si-blue   { background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.22); color: #38bdf8; }
.h-si-green  { background: rgba(34,197,94,.12);  border: 1px solid rgba(34,197,94,.22);  color: #22c55e; }
.h-si-purple { background: rgba(167,139,250,.12);border: 1px solid rgba(167,139,250,.22);color: #a78bfa; }
.h-si-orange { background: rgba(251,146,60,.12); border: 1px solid rgba(251,146,60,.22); color: #fb923c; }

.h-si-body strong {
    display: block;
    font-size: 1.25rem; font-weight: 800; color: #fff;
    letter-spacing: -.03em; line-height: 1.1;
}
.h-si-body span {
    font-size: 10.5px; color: rgba(255,255,255,.32);
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 10; text-align: center;
}
.scroll-indicator a {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; text-decoration: none;
    color: rgba(255,255,255,.28); transition: color .3s;
}
.scroll-indicator a:hover { color: rgba(56,189,248,.7); text-decoration: none; }
.scroll-text { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.scroll-arrow {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow i { font-size: 12px; }
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .h-right { width: 55%; }
    .h-right::before {
        background: linear-gradient(to right, #050d1f 0%, rgba(5,13,31,.92) 12%, rgba(5,13,31,.6) 32%, rgba(5,13,31,.2) 55%, transparent 100%);
    }
}
@media (max-width: 768px) {
    .h-hero { padding: 100px 0 90px; }
    .h-right { width: 100%; opacity: .18; }
    .h-right::before { background: rgba(5,13,31,.6); }
    .h-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .h-stat strong { font-size: 1.5rem; }
    .h-stat-div { height: 32px; margin-right: 16px; }
    .h-stat { padding-right: 16px; }
    .h-wrap { max-width: 100%; }
}
@media (max-width: 640px) {
    .h-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .h-right { display: none; }
    .h-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .h-stat-card { padding: 12px 12px; }
    .h-si { width: 32px; height: 32px; font-size: 13px; }
    .h-si-body strong { font-size: 1.1rem; }
}

/* Indication de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-300);
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--blue-400);
    text-decoration: none;
}

.scroll-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover .scroll-arrow {
    border-color: var(--blue-400);
    background: rgba(59, 130, 246, 0.1);
}

.scroll-arrow i {
    font-size: 14px;
    animation: scrollArrow 2s ease-in-out infinite;
}

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

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}


/* Hero Content */
.hero-content-ultra {
    position: relative;
    z-index: 2;
}

/* Badge Hero */
.hero-badge-premium {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-badge-premium .badge-glow {
    display: none;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--blue-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.badge-text {
    color: var(--blue-300);
    font-size: 14px;
    font-weight: 500;
}

.badge-text strong {
    color: var(--white);
}

/* Titre Hero */
.hero-title-ultra {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line-1,
.title-line-3 {
    display: block;
    color: var(--white);
}

.title-line-2 {
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    color: var(--blue-400);
}

/* Sous-titre Hero */
.hero-subtitle-ultra {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--primary-300);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-subtitle-ultra strong {
    color: var(--white);
    font-weight: 600;
}

/* Métriques Hero */
.hero-metrics {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-metrics .metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
}

.hero-metrics .metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.hero-metrics .metric-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.hero-metrics .metric-info {
    display: flex;
    flex-direction: column;
}

.hero-metrics .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-metrics .metric-label {
    font-size: 0.875rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* Actions Hero */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-ultra {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
}

.btn-primary-ultra:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    color: var(--white);
    text-decoration: none;
}

.btn-primary-ultra .btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-primary-ultra .btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-primary-ultra .btn-title {
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary-ultra .btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-primary-ultra .btn-arrow {
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.btn-primary-ultra:hover .btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.btn-secondary-ultra {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary-ultra:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* ── Stats hero compactes ── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 0;
}
.hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 80px;
    text-align: center;
}
.hstat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}
.hstat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    font-weight: 500;
    margin-top: 3px;
    white-space: nowrap;
}
.hstat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ── Hero eyebrow ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.he-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4fc3f7;
    box-shadow: 0 0 8px rgba(79,195,247,0.8);
    animation: svcDotPulse 2s ease infinite;
    flex-shrink: 0;
}

/* ── Trust row ── */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.ht-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    font-weight: 500;
}
.ht-item i { color: #4ade80; font-size: 12px; }
.ht-sep {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ================================
   HERO VISUAL - DASHBOARD MOCKUP
   ================================ */

.hero-visual {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

/* ── Nouveau mockup dashboard ── */
.fp-mockup {
    display: flex;
    background: rgba(7,12,24,0.97);
    border: 1px solid rgba(79,195,247,0.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 50px 120px rgba(0,0,0,0.7),
        0 0 0 1px rgba(79,195,247,0.04),
        inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
}

/* Sidebar */
.fp-sidebar {
    width: 54px;
    background: rgba(3,6,14,0.98);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0 14px;
    flex-shrink: 0;
}
.fp-sb-logo {
    font-size: 16px;
    color: #4fc3f7;
    text-shadow: 0 0 14px rgba(79,195,247,0.7);
    margin-bottom: 20px;
}
.fp-sb-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.fp-sb-item {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: default;
}
.fp-sb-active {
    background: rgba(79,195,247,0.13);
    color: #4fc3f7 !important;
    box-shadow: inset 0 0 0 1px rgba(79,195,247,0.22);
}
.fp-sb-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 12px rgba(79,195,247,0.3);
}

/* Corps */
.fp-body {
    flex: 1;
    padding: 18px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Topbar */
.fp-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.fp-greeting {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.fp-subgreeting {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    margin-top: 2px;
}
.fp-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.16);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 9.5px;
    font-weight: 700;
    color: #4ade80;
    white-space: nowrap;
}
.fp-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74,222,128,0.9);
    animation: svcDotPulse 2s ease infinite;
    flex-shrink: 0;
}

/* KPIs */
.fp-kpi-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.fp-kpi {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.fp-kpi-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.fp-kpi-info { display: flex; flex-direction: column; }
.fp-kpi-val {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.fp-kpi-lbl {
    font-size: 9.5px;
    color: rgba(255,255,255,0.30);
    font-weight: 500;
    margin-top: 1px;
}

/* Labels de section */
.fp-section-title {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: rgba(255,255,255,0.22);
    margin-bottom: 8px;
}

/* Services */
.fp-services {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fp-svc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 9px;
    gap: 10px;
    transition: background 0.2s;
}
.fp-svc-left {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.fp-svc-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.fp-svc-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fp-svc-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.28);
}
.fp-svc-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.fp-svc-online {
    background: rgba(34,197,94,0.10);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.18);
}
.fp-svc-pending {
    background: rgba(251,146,60,0.10);
    color: #fb923c;
    border: 1px solid rgba(251,146,60,0.18);
}

/* Usage bars */
.fp-usage {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fp-usage-row {
    display: flex;
    align-items: center;
    gap: 9px;
}
.fp-usage-lbl {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.30);
    width: 28px;
    flex-shrink: 0;
}
.fp-usage-bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}
.fp-usage-fill {
    height: 100%;
    border-radius: 3px;
}
.fp-usage-pct {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

/* ── L'ancien mockup n'est plus utilisé ── */

/* ── Layout centré (héritage) ── */
.hp-center {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Badge */
.hp-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(79,195,247,0.07);
    border: 1px solid rgba(79,195,247,0.18);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 11.5px; font-weight: 700;
    color: rgba(79,195,247,0.85);
    text-transform: uppercase; letter-spacing: 0.6px;
    margin-bottom: 30px;
}

.hp-label-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4fc3f7;
    box-shadow: 0 0 10px rgba(79,195,247,0.85);
    animation: svcDotPulse 2s ease infinite;
    flex-shrink: 0;
}

/* Titre */
.hp-h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900; line-height: 1.06;
    color: #fff; letter-spacing: -0.04em;
    margin-bottom: 22px;
}
.hp-h1-em {
    font-style: normal;
    background: linear-gradient(135deg, #4fc3f7 0%, #38bdf8 50%, #7dd3fc 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Sous-titre */
.hp-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.40);
    line-height: 1.8; margin-bottom: 44px;
    max-width: 620px; margin-left: auto; margin-right: auto;
}

/* ── Stats ── */
.hp-stats {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px 20px;
    margin-bottom: 40px;
    gap: 0;
}
.hp-stat { flex: 1; text-align: center; min-width: 0; }
.hp-stat-num {
    font-size: 2.5rem; font-weight: 900;
    color: #fff; letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}
.hp-stat-suf { font-size: 1.5rem; color: #4fc3f7; font-weight: 900; }
.hp-stat-lt  { font-size: 1.4rem; color: rgba(255,255,255,0.45); font-weight: 700; }
.hp-stat-lbl {
    font-size: 11px; color: rgba(255,255,255,0.30);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px;
}
.hp-stat-sep {
    width: 1px; height: 52px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0; margin: 0 8px;
}

/* ── CTA ── */
.hp-cta {
    display: flex; gap: 14px; justify-content: center;
    align-items: center; flex-wrap: wrap;
    margin-bottom: 26px;
}

.hp-btn-main {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: #fff; font-size: 15px; font-weight: 700;
    border-radius: 50px; text-decoration: none;
    box-shadow: 0 8px 40px rgba(79,195,247,0.40);
    transition: all 0.25s ease; letter-spacing: 0.1px;
}
.hp-btn-main:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(79,195,247,0.55); color: #fff; text-decoration: none; }
.hp-btn-main i { font-size: 12px; transition: transform 0.2s ease; }
.hp-btn-main:hover i { transform: translateX(5px); }

.hp-btn-ghost {
    display: inline-flex; align-items: center;
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 600;
    border-radius: 50px; text-decoration: none;
    transition: all 0.25s ease;
}
.hp-btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.20); color: #fff; text-decoration: none; }

/* Trust bar */
.hp-trust {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
    flex-wrap: wrap; font-size: 12px;
    color: rgba(255,255,255,0.28); font-weight: 500;
    margin-bottom: 44px;
}
.hp-trust i { color: #4ade80; margin-right: 4px; font-size: 11px; }
.hp-trust-sep { color: rgba(255,255,255,0.10); }

/* Terminal centré */
.hp-term-center {
    max-width: 560px;
    margin: 0 auto 40px;
    transform: none !important;
    animation: none !important;
    border-color: rgba(34,197,94,0.20);
    text-align: left;
}

/* Jeux supportés */
.hp-games {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hp-games-lbl {
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.20);
    text-transform: uppercase; letter-spacing: 0.7px;
    white-space: nowrap;
}
.hp-games-list {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    justify-content: center;
}
.hp-games-list span {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.32);
    padding: 5px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    transition: color 0.2s, border-color 0.2s;
}
.hp-games-list span:hover { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.14); }

/* --- Droite --- */
.hp-right { position: relative; }

/* Fenêtre navigateur */
.hp-browser {
    background: rgba(7,11,22,0.98);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; overflow: hidden;
    box-shadow:
        0 70px 140px rgba(0,0,0,0.75),
        0 0 0 1px rgba(79,195,247,0.05),
        inset 0 1px 0 rgba(255,255,255,0.04);
}
.hp-chrome {
    background: rgba(3,5,12,1);
    padding: 9px 16px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hp-chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.hp-dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.hp-dot-y { width: 10px; height: 10px; border-radius: 50%; background: #eab308; }
.hp-dot-g { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }
.hp-chrome-url {
    flex: 1; text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px; padding: 5px 14px;
    font-size: 11px; color: rgba(255,255,255,0.32);
    font-family: monospace; letter-spacing: 0.2px;
}

/* App layout */
.hp-app { display: flex; height: 370px; }

/* Sidebar */
.hp-app-sidebar {
    width: 148px;
    background: rgba(3,5,12,0.99);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
    padding: 14px 10px; flex-shrink: 0;
}
.hp-sidebar-brand {
    display: flex; align-items: center; gap: 8px;
    padding: 2px 4px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 12px;
}
.hp-sidebar-icon {
    width: 26px; height: 26px; border-radius: 7px;
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #fff; flex-shrink: 0;
}
.hp-sidebar-brand > span { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }

.hp-sidebar-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.hp-nav {
    display: flex; align-items: center; gap: 9px;
    padding: 7px 9px; border-radius: 8px;
    font-size: 11.5px; color: rgba(255,255,255,0.28);
    text-decoration: none; cursor: default; font-weight: 500;
    transition: background 0.15s ease;
}
.hp-nav i { font-size: 12px; width: 13px; text-align: center; flex-shrink: 0; }
.hp-nav-active { background: rgba(79,195,247,0.10); color: #4fc3f7 !important; font-weight: 600; }
.hp-nav-bottom { margin-top: auto; }

/* Main */
.hp-app-main {
    flex: 1; padding: 14px 16px;
    display: flex; flex-direction: column; gap: 11px;
    min-width: 0; overflow: hidden;
}
.hp-app-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hp-page-title { font-size: 13px; font-weight: 700; color: #fff; }
.hp-page-sub { font-size: 10px; color: rgba(255,255,255,0.22); margin-top: 2px; }

.hp-topbar-right { display: flex; align-items: center; gap: 8px; }
.hp-bell {
    position: relative; width: 28px; height: 28px; border-radius: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: rgba(255,255,255,0.30); cursor: default;
}
.hp-bell-dot {
    position: absolute; top: 5px; right: 5px;
    width: 6px; height: 6px; border-radius: 50%;
    background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.8);
    border: 1.5px solid rgba(7,11,22,1);
}
.hp-user {
    display: flex; align-items: center; gap: 7px;
    padding: 4px 10px 4px 4px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; cursor: default;
}
.hp-user-av {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
    color: #fff; font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.hp-user > span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55); }

/* KPI grid */
.hp-kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.hp-kpi-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 10px 12px;
}
.hp-kpi-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.hp-kpi-top > span { font-size: 9.5px; color: rgba(255,255,255,0.28); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.hp-kpi-ico { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.hp-kpi-num { font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.hp-kpi-foot { font-size: 9.5px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.hp-foot-green { color: #4ade80; }
.hp-foot-neutral { color: rgba(255,255,255,0.25); }

/* Panels */
.hp-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; flex: 1; min-height: 0; }
.hp-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 10px 12px;
    display: flex; flex-direction: column; overflow: hidden;
}
.hp-panel-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.hp-panel-hd > span:first-child { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.50); }

.hp-tag-green { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; background: rgba(34,197,94,0.10); color: #4ade80; border: 1px solid rgba(34,197,94,0.16); }
.hp-tag-blue  { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; background: rgba(79,195,247,0.10); color: #4fc3f7; border: 1px solid rgba(79,195,247,0.16); }

/* Services dans panel */
.hp-svc-list { display: flex; flex-direction: column; gap: 7px; }
.hp-svc { display: flex; align-items: center; gap: 7px; }
.hp-svc-ico { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.hp-svc-info { flex: 1; min-width: 0; }
.hp-svc-n { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.72); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-svc-m { font-size: 9.5px; color: rgba(255,255,255,0.24); display: block; }
.hp-badge-green { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; background: rgba(34,197,94,0.10); color: #4ade80; border: 1px solid rgba(34,197,94,0.15); white-space: nowrap; flex-shrink: 0; }
.hp-badge-orange { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; background: rgba(251,146,60,0.10); color: #fb923c; border: 1px solid rgba(251,146,60,0.15); white-space: nowrap; flex-shrink: 0; }

/* Chart */
.hp-chart-wrap { flex: 1; display: flex; flex-direction: column; gap: 6px; min-height: 0; }
.hp-chart { flex: 1; display: flex; align-items: flex-end; gap: 5px; min-height: 0; }
.hp-chart-bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(79,195,247,0.14); min-height: 4px; transition: height 0.7s cubic-bezier(0.34,1.56,0.64,1); }
.hp-chart-bar.hp-bar-active { background: linear-gradient(180deg, #4fc3f7 0%, #0288d1 100%); box-shadow: 0 0 10px rgba(79,195,247,0.35); }
.hp-chart-days { display: flex; justify-content: space-around; font-size: 9px; color: rgba(255,255,255,0.18); font-weight: 600; }
.hp-chart-today { color: #4fc3f7 !important; }

/* Badges flottants */
.hp-float {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: rgba(7,12,22,0.96); border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px; padding: 10px 14px;
    backdrop-filter: blur(20px); box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    z-index: 10; pointer-events: none;
}
.hp-float-tl { top: -18px; left: -18px; animation: floatCard 5s ease-in-out infinite; }
.hp-float-br { bottom: 30px; right: -18px; animation: floatCard 5s ease-in-out infinite 2.5s; }
.hp-float-ico { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.hp-float-t { font-size: 11.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.hp-float-s { font-size: 10px; color: rgba(255,255,255,0.32); white-space: nowrap; margin-top: 1px; }

/* ============================================================
   HERO CARDS — 3 cartes services flottantes staggerées
   ============================================================ */

.hcards-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 50px 30px 50px 10px;
    width: 100%;
}

/* Base card */
.hcard {
    background: rgba(9, 15, 28, 0.90);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Offsets staggerés */
.hcard--1 {
    transform: translateX(48px);
    border-color: rgba(34,197,94,0.18);
    animation: floatCard 6s ease-in-out infinite;
}
.hcard--2 {
    transform: translateX(0px);
    border-color: rgba(88,101,242,0.18);
    animation: floatCard 6s ease-in-out infinite 2s;
}
.hcard--3 {
    transform: translateX(-48px);
    border-color: rgba(79,195,247,0.18);
    animation: floatCard 6s ease-in-out infinite 4s;
}
.hcard--4 {
    transform: translateX(32px);
    border-color: rgba(167,139,250,0.18);
    animation: floatCard 6s ease-in-out infinite 3s;
}

/* Hover lift — uniquement un léger glow, sans déplacement */
.hcard:hover {
    transform: translateX(var(--hc-x, 0px)) !important;
    box-shadow: 0 36px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.07);
}
.hcard--1 { --hc-x: 48px; }
.hcard--2 { --hc-x: 0px; }
.hcard--3 { --hc-x: -48px; }
.hcard--4 { --hc-x: 32px; }

/* Icône */
.hcard-ico {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.hcard-ico--green  { background: rgba(34,197,94,0.12);  color: #22c55e; box-shadow: 0 0 22px rgba(34,197,94,0.18); }
.hcard-ico--purple { background: rgba(88,101,242,0.12); color: #818cf8; box-shadow: 0 0 22px rgba(88,101,242,0.18); }
.hcard-ico--blue   { background: rgba(79,195,247,0.12); color: #4fc3f7; box-shadow: 0 0 22px rgba(79,195,247,0.18); }
.hcard-ico--violet { background: rgba(167,139,250,0.12); color: #a78bfa; box-shadow: 0 0 22px rgba(167,139,250,0.18); }

/* Texte */
.hcard-info { flex: 1; min-width: 0; }
.hcard-name {
    display: block;
    font-size: 15.5px; font-weight: 700;
    color: #fff; margin-bottom: 4px;
}
.hcard-meta {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.36);
}

/* Pill statut */
.hcard-pill {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 700;
    padding: 6px 14px; border-radius: 50px;
    white-space: nowrap; flex-shrink: 0;
}
.hcard-pill--green  { background: rgba(34,197,94,0.10);  color: #4ade80; border: 1px solid rgba(34,197,94,0.20); }
.hcard-pill--orange { background: rgba(251,146,60,0.10); color: #fb923c; border: 1px solid rgba(251,146,60,0.20); }

.hcard-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: currentColor; flex-shrink: 0;
}
.hcard-pill--green .hcard-dot {
    box-shadow: 0 0 7px rgba(74,222,128,0.9);
    animation: svcDotPulse 2s ease infinite;
}

/* Badges flottants (petits) */
.hcard-badge {
    position: absolute;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(7,12,22,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 12px; font-weight: 700; color: #fff;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    pointer-events: none;
    white-space: nowrap;
}
.hcard-badge--tl {
    top: 10px; right: 0;
    animation: floatCard 5s ease-in-out infinite;
}
.hcard-badge--br {
    bottom: 10px; left: 0;
    animation: floatCard 5s ease-in-out infinite 2.5s;
}

/* ── Terminal Card ── */
.hcard--term {
    display: block;
    padding: 0;
    border-color: rgba(34,197,94,0.22);
    transform: translateX(18px);
    animation: floatCard 6s ease-in-out infinite 1s;
    overflow: hidden;
    --hc-x: 18px;
}

.hterm { width: 100%; }

.hterm-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hterm-title {
    font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
    font-size: 11.5px;
    color: rgba(255,255,255,0.30);
    margin-left: 6px;
    letter-spacing: 0.04em;
}

.hterm-body {
    font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
    font-size: 12px;
    line-height: 1.75;
    padding: 12px 16px 14px;
    min-height: 160px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hterm-line {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.hterm-line.is-vis { opacity: 1; transform: translateY(0); }

.hterm-line--cmd   { color: #e2e8f0; }
.hterm-line--ok    { color: #4ade80; }
.hterm-line--muted { color: rgba(255,255,255,0.30); }
.hterm-line--live  { color: #4ade80; font-weight: 700; }

.hterm-prompt { color: #4fc3f7; flex-shrink: 0; user-select: none; }

.hterm-cursor {
    display: inline-block;
    width: 7px; height: 13px;
    background: #4fc3f7;
    border-radius: 1px;
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: htermBlink 1s step-end infinite;
}

@keyframes htermBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hterm-live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74,222,128,0.9);
    flex-shrink: 0;
    animation: svcDotPulse 2s ease infinite;
}

/* ── Terminal dans la colonne gauche ── */
.hp-term {
    margin-top: 24px;
    transform: none !important;
    animation: none !important;
    border-color: rgba(34,197,94,0.20);
    width: 100%;
    max-width: 420px;
}

/* Responsive */
@media (max-width: 991px) {
    .hcards-wrap { padding: 30px 0; }
    .hcard--1, .hcard--2, .hcard--3, .hcard--4 { transform: translateX(0) !important; }
    .hcard-badge { display: none; }
    .hp-term { max-width: 100%; }
}
.dashboard-mockup {
    display: none;
}

.mockup-header {
    background: rgba(6,11,22,0.98);
    padding: 13px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mockup-status-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4ade80;
    font-weight: 600;
}

/* KPIs 3 colonnes */
.mk-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.mk-kpi {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mk-kpi--green { border-color: rgba(34,197,94,0.18); }
.mk-kpi--blue  { border-color: rgba(79,195,247,0.18); }
.mk-kpi-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.mk-kpi--green .mk-kpi-val { color: #4ade80; }
.mk-kpi--blue  .mk-kpi-val { color: #4fc3f7; }
.mk-kpi-lbl {
    font-size: 10.5px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

/* Label section */
.mk-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.28);
    margin-bottom: 9px;
}

/* RAM bar vert */
.stat-fill--ram {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-title {
    font-weight: 600;
    color: var(--primary-300);
    font-size: 13px;
}

.mockup-content {
    padding: 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

.stat-icon.cpu { background: var(--blue-500); }
.stat-icon.ram { background: var(--green-500); }

.stat-info {
    flex: 1;
}

.stat-label {
    color: var(--primary-400);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.stat-value {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.service-item:hover,
.service-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-status.online {
    background: var(--green-400);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.service-status.maintenance {
    background: var(--orange-400);
    box-shadow: 0 0 8px rgba(251, 146, 60, 0.5);
}

.mockup-content .service-info {
    flex: 1;
    min-width: 0;
}

.service-name {
    color: var(--white);
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

.service-uptime {
    color: var(--primary-400);
    font-size: 11px;
}

.service-action {
    color: var(--primary-500);
    font-size: 14px;
}

/* Floating Cards - Plus subtils */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: floatCard 8s ease-in-out infinite;
}

.floating-card i {
    color: var(--blue-400);
}

.card-1 { top: 10%; right: -10px; animation-delay: 0s; }
.card-2 { bottom: 40%; left: -15px; animation-delay: 2s; }
.card-3 { top: 50%; right: -20px; animation-delay: 4s; }

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

/* ================================
   SECTION PREUVE SOCIALE
   ================================ */

.social-proof-section {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-900) 100%);
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.proof-badge:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.proof-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.proof-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.proof-trust-text {
    text-align: center;
    color: var(--primary-400);
    font-size: 14px;
    margin: 0;
}

/* ================================
   SECTION SERVICES
   ================================ */

.modern-services {
    background: var(--primary-900);
    padding: 100px 0;
}

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

.premium-badge {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-400);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.premium-badge .badge-glow {
    display: none;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.gradient-text-modern {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
    margin: 16px auto;
    border-radius: 2px;
}

.section-subtitle-modern {
    color: var(--primary-300);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.service-stats-mini {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-400);
    margin-bottom: 4px;
}

.mini-label {
    font-size: 0.875rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* Service Cards */
.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Equal height cards on desktop - dynamic */
@media (min-width: 992px) {
    .modern-services .row.justify-content-center {
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch !important;
    }

    .modern-services .row.justify-content-center > [class*="col-"] {
        display: flex !important;
    }

    .service-card-modern {
        width: 100%;
    }

    /* Tags container takes available space (space goes below tags, not stretching them) */
    .service-card-modern .service-games,
    .service-card-modern .service-specs,
    .service-card-modern .service-technologies {
        flex-grow: 1;
        align-content: flex-start;
    }

    /* Separator line above features */
    .service-card-modern .service-features-modern {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.service-card-modern:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

/* Service Featured (Gaming) */
.service-featured {
    border: 2px solid var(--green-400);
    box-shadow: var(--shadow-lg);
}

.service-featured:hover {
    border-color: var(--green-500);
}

/* Service Coming Soon */
.service-coming-soon {
    opacity: 0.7;
}

.service-coming-soon:hover {
    opacity: 0.85;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon-modern {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    position: relative;
}

.service-icon-modern .icon-bg-effect {
    display: none;
}

.gaming-modern .service-icon-modern {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
}

.vps-modern .service-icon-modern {
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
}

.web-modern .service-icon-modern {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-500) 100%);
}

.service-popularity {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-300);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-badge {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-400);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.service-badge.pro {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    color: var(--white);
}

.service-card-modern h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    color: var(--primary-300);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-games,
.service-technologies,
.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.game-tag,
.tech-tag,
.spec-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-300);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.service-features-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--primary-300);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-features-modern li:last-child {
    border-bottom: none;
}

.service-features-modern li i {
    color: var(--blue-400);
    font-size: 14px;
    width: 18px;
}

.service-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    color: var(--white);
    text-decoration: none;
}

.gaming-modern .service-btn-modern {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.gaming-modern .service-btn-modern:hover {
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.service-btn-disabled {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-400);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: not-allowed;
}

/* ================================
   SERVICES — BENTO GRID REDESIGN
   ================================ */

.svc-section {
    background: linear-gradient(180deg, #0a1224 0%, #0f172a 100%);
    padding: 110px 0 130px;
    position: relative;
    overflow: hidden;
}
.svc-section::before {
    content: '';
    position: absolute;
    top: -150px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(79,195,247,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Header ── */
.svc-head {
    text-align: center;
    margin-bottom: 70px;
}
.svc-head-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,195,247,0.08);
    border: 1px solid rgba(79,195,247,0.18);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #4fc3f7;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
}
.svc-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.svc-gradient {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 60%, #0288d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc-head p {
    color: rgba(255,255,255,0.42);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Grid 2×2 uniforme ── */
.svc-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ── Base card ── */
.svc-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.svc-card:hover { transform: translateY(-6px); }

/* Glow overlay */
.svc-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0.55;
    transition: opacity 0.35s ease;
}
.svc-card:hover .svc-glow { opacity: 1; }

/* ── Couleur uniforme sur toutes les cartes ── */
.svc-card--gaming,
.svc-card--discord,
.svc-card--vps,
.svc-card--web { border-color: rgba(79,195,247,0.20); }

.svc-card--gaming:hover,
.svc-card--discord:hover,
.svc-card--vps:hover,
.svc-card--web:hover {
    border-color: rgba(79,195,247,0.48);
    box-shadow: 0 24px 70px rgba(79,195,247,0.12);
}

.svc-card--gaming .svc-glow,
.svc-card--discord .svc-glow,
.svc-card--vps .svc-glow,
.svc-card--web .svc-glow {
    background: radial-gradient(ellipse at 50% 0%, rgba(79,195,247,0.10) 0%, transparent 60%);
}

/* ── Card top: icon + status ── */
.svc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}
.svc-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.svc-card--gaming .svc-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 28px rgba(34,197,94,0.35);
    color: #fff;
}
.svc-card--discord .svc-icon {
    background: linear-gradient(135deg, #5865F2, #7c3aed);
    box-shadow: 0 8px 28px rgba(88,101,242,0.38);
}
.svc-card--vps .svc-icon {
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.25);
    color: #f97316;
}
.svc-card--web .svc-icon {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.25);
    color: #60a5fa;
}

/* Status chip */
.svc-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 20px;
    white-space: nowrap;
}
.svc-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.svc-status--live {
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.22);
    color: #4ade80;
}
.svc-status--live .svc-dot {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74,222,128,0.8);
    animation: svcDotPulse 2s ease infinite;
}
@keyframes svcDotPulse {
    0%,100% { box-shadow: 0 0 6px rgba(74,222,128,0.8); }
    50%      { box-shadow: 0 0 2px rgba(74,222,128,0.3); }
}
.svc-status--new {
    background: rgba(88,101,242,0.12);
    border: 1px solid rgba(88,101,242,0.28);
    color: #a5b4fc;
}
.svc-status--new .svc-dot {
    background: #818cf8;
    box-shadow: 0 0 6px rgba(129,140,248,0.8);
    animation: svcDotPulse2 2s ease infinite;
}
@keyframes svcDotPulse2 {
    0%,100% { box-shadow: 0 0 6px rgba(129,140,248,0.8); }
    50%      { box-shadow: 0 0 2px rgba(129,140,248,0.3); }
}
.svc-status--soon {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.35);
}
.svc-status--soon .svc-dot { background: rgba(255,255,255,0.25); }

/* ── Title / desc ── */
.svc-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.svc-desc {
    color: rgba(255,255,255,0.44);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ── Tags ── */
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}
.svc-tag {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.48);
}
.svc-card--gaming .svc-tag { border-color: rgba(34,197,94,0.18); color: rgba(134,239,172,0.82); }
.svc-card--discord .svc-tag { border-color: rgba(88,101,242,0.25); color: #a5b4fc; }

/* ── Feature chips ── */
.svc-chips {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    margin-bottom: 28px;
}
.svc-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.065);
    border-radius: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
}
.svc-chip i {
    font-size: 13px;
    width: 15px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.7;
}
.svc-card--gaming .svc-chip { border-color: rgba(34,197,94,0.10); }
.svc-card--gaming .svc-chip i { color: #4ade80; opacity: 1; }
.svc-card--discord .svc-chip { border-color: rgba(88,101,242,0.12); }
.svc-card--discord .svc-chip i { color: #818cf8; opacity: 1; }
.svc-card--vps .svc-chip i { color: #fb923c; opacity: 1; }
.svc-card--web .svc-chip i { color: #60a5fa; opacity: 1; }

/* ── CTA button ── */
.svc-card-footer { margin-top: auto; }
.svc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.svc-btn:hover { text-decoration: none; }
.svc-btn i { transition: transform 0.25s ease; }
.svc-btn:hover i { transform: translateX(5px); }

.svc-btn--gaming {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 6px 22px rgba(34,197,94,0.28);
}
.svc-btn--gaming:hover { box-shadow: 0 10px 32px rgba(34,197,94,0.44); color: #fff; transform: translateY(-1px); }

.svc-btn--discord {
    background: linear-gradient(135deg, #5865F2, #7c3aed);
    color: #fff;
    box-shadow: 0 6px 22px rgba(88,101,242,0.32);
}
.svc-btn--discord:hover { box-shadow: 0 10px 32px rgba(88,101,242,0.5); color: #fff; transform: translateY(-1px); }

.svc-btn--disabled {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.25);
    cursor: default;
    pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .svc-bento { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .svc-section { padding: 70px 0 80px; }
    .svc-head { margin-bottom: 48px; }
    .svc-card { padding: 24px; }
    .svc-head p br { display: none; }
}

/* ================================
   SECTION WHY CHOOSE US
   ================================ */

.why-choose-us-modern {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
    padding: 100px 0;
}

.why-header {
    margin-bottom: 56px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-badge i { color: var(--orange-500); }
.trust-badge span { color: var(--white); font-size: 14px; font-weight: 600; }

.why-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gradient-text-why {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    font-size: 1.125rem;
    color: var(--primary-400);
    font-weight: 400;
    margin-top: 8px;
}

.why-description-modern {
    color: var(--primary-300);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Grille de cards ---- */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

/* Zone photo */
.why-card-visual {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.why-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.85) saturate(1.1);
}

.why-card:hover .why-card-img {
    transform: scale(1.06);
}

/* Overlay dégradé vers le bas pour fondre dans la card */
.why-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 30, 0.1) 0%,
        rgba(10, 15, 30, 0.35) 55%,
        rgba(15, 23, 42, 0.95) 100%
    );
    pointer-events: none;
}

/* Particules animées sur la photo */
.why-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    cursor: zoom-in;
}

.why-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: whyParticleFloat linear infinite;
}

/* Tailles et positions variées pour chaque span */
.why-particles span:nth-child(1) {
    width: 3px; height: 3px;
    left: 12%; bottom: -6px;
    animation-duration: 7s;
    animation-delay: 0s;
}
.why-particles span:nth-child(2) {
    width: 4px; height: 4px;
    left: 32%; bottom: -6px;
    animation-duration: 9s;
    animation-delay: 1.5s;
}
.why-particles span:nth-child(3) {
    width: 2px; height: 2px;
    left: 55%; bottom: -6px;
    animation-duration: 6s;
    animation-delay: 3s;
}
.why-particles span:nth-child(4) {
    width: 5px; height: 5px;
    left: 73%; bottom: -6px;
    animation-duration: 11s;
    animation-delay: 0.8s;
}
.why-particles span:nth-child(5) {
    width: 3px; height: 3px;
    left: 88%; bottom: -6px;
    animation-duration: 8s;
    animation-delay: 2.2s;
}

@keyframes whyParticleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.4; }
    100% {
        transform: translateY(-200px) translateX(20px) scale(0.5);
        opacity: 0;
    }
}

/* Badge icône positionné en bas à gauche de la photo */
.why-card-badge {
    position: absolute;
    bottom: 14px;
    left: 20px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    z-index: 2;
    pointer-events: none;
}

.why-badge--green  { background: rgba(5,  150, 105, 0.75); }
.why-badge--orange { background: rgba(234, 88,  12,  0.75); }
.why-badge--blue   { background: rgba(29,  78,  216, 0.75); }
.why-badge--red    { background: rgba(185, 28,  28,  0.65); font-size: 1.4rem; }
.why-badge--purple { background: rgba(109, 40,  217, 0.75); }
.why-badge--teal   { background: rgba(15,  118, 110, 0.75); }

/* Corps */
.why-card-body {
    padding: 20px 22px 22px;
}

.why-card-body h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 9px;
    letter-spacing: -0.01em;
}

.why-card-body p {
    color: rgba(203, 213, 225, 0.72);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Pills colorées par thème */
.why-card-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid;
}

.why-pill--green  { color: #6ee7b7; background: rgba(5,  150, 105, 0.12); border-color: rgba(5,  150, 105, 0.3); }
.why-pill--orange { color: #fdba74; background: rgba(234, 88,  12,  0.12); border-color: rgba(234, 88,  12,  0.3); }
.why-pill--blue   { color: #93c5fd; background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.3); }
.why-pill--red    { color: #fca5a5; background: rgba(220, 38,  38,  0.12); border-color: rgba(220, 38,  38,  0.3); }
.why-pill--purple { color: #c4b5fd; background: rgba(139, 92,  246, 0.12); border-color: rgba(139, 92,  246, 0.3); }
.why-pill--teal   { color: #5eead4; background: rgba(45,  212, 191, 0.12); border-color: rgba(45,  212, 191, 0.3); }

/* Responsive */
@media (max-width: 991px) {
    .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .why-cards-grid { grid-template-columns: 1fr; }
    .why-card-visual { height: 160px; }
}

/* ================================
   SECTION TECHNOLOGIES
   ================================ */

.technologies-section-modern {
    background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
    padding: 100px 0;
}

.tech-header-modern {
    margin-bottom: 48px;
}

.innovation-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange-400);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.innovation-badge .innovation-glow {
    display: none;
}

.innovation-badge i {
    color: var(--orange-400);
}

.tech-title-ultra {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tech-gradient-modern {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-underline-modern {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    margin: 16px auto;
    border-radius: 2px;
}

.tech-description-ultra {
    color: var(--primary-300);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Tech Cards */
.tech-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Equal height tech cards on desktop - dynamic */
@media (min-width: 992px) {
    .tech-showcase {
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch !important;
    }

    .tech-showcase [class*="col-"] {
        display: flex !important;
    }

    .tech-card-ultra {
        width: 100%;
    }

    .tech-card-ultra p {
        flex-grow: 1;
    }

    .tech-specs {
        margin-top: auto;
    }
}

.tech-card-ultra:hover {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.tech-badge-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue-500);
}

.tech-badge-modern.premium {
    background: var(--orange-500);
}

.tech-badge-modern.security {
    background: var(--green-500);
}

.tech-badge-modern.network {
    background: var(--blue-600);
}

.tech-icon-ultra {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-icon-ultra .tech-glow {
    display: none;
}

.tech-icon-ultra i {
    font-size: 32px;
    color: var(--orange-500);
}

.tech-logo {
    max-width: 48px;
    max-height: 48px;
}

.tech-card-ultra h5 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-card-ultra p {
    color: var(--primary-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.tech-specs .spec-item i {
    color: var(--orange-400);
    font-size: 12px;
}

.tech-specs .spec-item span {
    color: var(--primary-300);
}

.tech-commitments {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-300);
    font-size: 14px;
    font-weight: 500;
}

.commitment-item i {
    color: var(--orange-400);
    font-size: 16px;
}

/* ================================
   SECTION TESTIMONIALS
   ================================ */

.testimonials-section-ultra {
    background: var(--primary-900);
    padding: 100px 0;
}

.testimonials-badge {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.testimonials-badge i,
.testimonials-badge span {
    color: #fbbf24;
}

.testimonials-badge span {
    font-size: 14px;
    font-weight: 600;
}

.testimonials-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
}

.testimonials-gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--primary-400);
    font-weight: 400;
}

/* Trust Metrics Testimonials */
.testimonials-trust-metrics {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-metric-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    min-width: 130px;
}

.metric-icon-wrapper {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}

.trust-metric-item .metric-content .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 4px;
}

.trust-metric-item .metric-content .metric-label {
    color: var(--primary-400);
    font-size: 12px;
    font-weight: 500;
}

/* Testimonial Cards */
.testimonials-carousel-ultra {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container-modern {
    margin-bottom: 32px;
}

.carousel-track-modern {
    display: flex;
    justify-content: center;
}

.testimonial-slide-modern {
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 600px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-content-modern {
    margin-bottom: 24px;
}

.testimonial-content-modern p {
    color: var(--primary-200);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-modern {
    flex-shrink: 0;
}

.avatar-bg {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.avatar-bg.user { background: var(--blue-500); }
.avatar-bg.gaming { background: var(--green-500); }
.avatar-bg.support { background: #ec4899; }
.avatar-bg.premium { background: var(--orange-500); }
.avatar-bg.performance { background: var(--blue-600); }
.avatar-bg.design { background: #8b5cf6; }

.author-info-modern {
    flex: 1;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.author-meta .service-type {
    color: #fbbf24;
    font-weight: 500;
}

.author-meta .divider {
    color: var(--primary-500);
}

.author-meta .date {
    color: var(--primary-400);
}

.verified-badge {
    color: var(--green-400);
    font-size: 18px;
}

/* Carousel Controls */
.carousel-controls-ultra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-btn-modern {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.carousel-btn-modern:hover {
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.2);
}

.carousel-dots-modern {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}

/* CTA Final */
.testimonials-cta {
    margin-top: 64px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--primary-400);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #000;
    text-decoration: none;
}

.btn-cta-secondary {
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    background: transparent;
}

.btn-cta-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    text-decoration: none;
}

.cta-reassurance {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
}

.cta-reassurance span i {
    color: var(--green-400);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 992px) {
    .hero-title-ultra {
        font-size: 2.75rem;
    }

    .section-title-modern,
    .why-title-modern,
    .tech-title-ultra,
    .testimonials-title-modern {
        font-size: 2rem;
    }

    .hero-metrics {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-metrics .metric-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-ultra,
    .btn-secondary-ultra {
        justify-content: center;
    }

    .proof-badges {
        gap: 16px;
    }

    .proof-badge {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-ultra-modern {
        padding-top: 90px;
        padding-bottom: 50px;
    }
    .hp-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hp-stats { padding: 20px 10px; gap: 0; }
    .hp-stat-num { font-size: 1.8rem; }
    .hp-stat-sep { height: 36px; margin: 0 4px; }
    .hp-term-center { max-width: 100%; }

    .hero-title-ultra {
        font-size: 2.25rem;
    }

    .hero-subtitle-ultra {
        font-size: 1rem;
    }

    .hero-metrics .metric-card {
        flex: 1 1 100%;
    }

    .hero-guarantees {
        justify-content: center;
        gap: 10px;
    }

    .guarantee-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .dashboard-mockup {
        margin-top: 40px;
    }

    .floating-cards {
        display: none;
    }

    .modern-services,
    .why-choose-us-modern,
    .technologies-section-modern,
    .testimonials-section-ultra {
        padding: 64px 0;
    }

    .proof-badge {
        flex: 1 1 100%;
    }

    .service-stats-mini {
        gap: 24px;
    }

    .testimonials-trust-metrics {
        gap: 12px;
    }

    .trust-metric-item {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
    }

    .cta-reassurance {
        gap: 8px;
    }

    .cta-reassurance span {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title-ultra {
        font-size: 1.875rem;
    }

    .section-title-modern,
    .why-title-modern,
    .tech-title-ultra,
    .testimonials-title-modern {
        font-size: 1.5rem;
    }

    .btn-primary-ultra {
        padding: 14px 20px;
    }

    .btn-primary-ultra .btn-icon {
        display: none;
    }

    .service-card-modern {
        padding: 24px;
    }

    .feature-item-modern {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card-ultra {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile spacing fixes */
@media (max-width: 768px) {
    /* Services section spacing */
    .modern-services .col-lg-4,
    .modern-services .col-md-6 {
        margin-bottom: 20px;
    }

    .modern-services .col-lg-4:last-child,
    .modern-services .col-md-6:last-child {
        margin-bottom: 0;
    }

    /* Infrastructure section spacing */
    .tech-showcase .col-lg-3,
    .tech-showcase .col-md-6 {
        margin-bottom: 20px;
    }

    .tech-card-ultra {
        padding: 24px 20px;
    }

    /* Why FastPanel - quality indicators */
    .quality-indicators {
        gap: 16px !important;
    }

    .quality-indicator {
        padding: 20px 16px !important;
        margin-bottom: 12px;
    }

    /* Feature items spacing - reduced */
    .why-features-modern .feature-item-modern {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .why-features-modern .feature-item-modern:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    /* Space between features column and metrics column */
    .why-choose-us-modern .col-lg-7 {
        margin-bottom: 40px;
    }

    /* Trust metrics spacing */
    .trust-metrics {
        margin-top: 0;
    }

    .trust-metrics .metric-card.featured {
        margin-bottom: 20px;
    }

    /* Mini stats in section header */
    .service-stats-mini {
        gap: 12px !important;
    }

    .mini-stat {
        padding: 10px 14px !important;
    }

    /* Trust metrics grid */
    .metrics-grid {
        gap: 10px;
    }

    .trust-metrics .metric-card.mini {
        padding: 12px 10px;
    }

    .metric-number.small {
        font-size: 1.25rem !important;
    }

    .metric-label.small {
        font-size: 0.7rem !important;
    }

    /* Quality badges */
    .quality-badges {
        gap: 8px;
        margin-top: 20px;
    }

    .quality-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Tech commitments */
    .tech-commitments {
        gap: 10px !important;
    }

    .commitment-item {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
}

/* ================================
   LIGHTBOX - WHY CARDS
   ================================ */

.why-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.why-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.why-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 20, 0.92);
    backdrop-filter: blur(8px);
}

.why-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.why-lightbox.active .why-lightbox-content {
    transform: scale(1);
}

.why-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    display: block;
    object-fit: contain;
}

.why-lightbox-caption {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 0;
}

.why-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.why-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ============================================================
   MOBILE RESPONSIVE COMPLET — FASTPANEL INDEX
   ============================================================ */

/* --- Tablette large (< 992px) --- */
@media (max-width: 991px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .btn-primary-ultra,
    .btn-secondary-ultra {
        width: 100%;
        justify-content: center;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .why-header {
        margin-bottom: 36px;
        text-align: center;
    }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767px) {

    /* Hero : annuler le min-vh-100 Bootstrap sur la rangée */
    .hero-ultra-modern .row.min-vh-100 {
        min-height: unset !important;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    /* Cacher le mockup dashboard pour gagner de l'espace */
    .hero-visual {
        display: none !important;
    }

    /* Hero metrics : scroll horizontal compact */
    .hero-metrics {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        gap: 10px;
        scrollbar-width: none;
    }
    .hero-metrics::-webkit-scrollbar { display: none; }
    .hero-metrics .metric-card {
        flex: 0 0 auto !important;
        min-width: 110px;
        width: auto !important;
        padding: 12px 14px;
    }

    /* Boutons hero */
    .btn-primary-ultra {
        padding: 14px 18px;
        gap: 12px;
    }
    .btn-primary-ultra .btn-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        flex-shrink: 0;
    }
    .btn-primary-ultra .btn-title { font-size: 0.9rem; }
    .btn-primary-ultra .btn-subtitle { font-size: 0.7rem; }
    .btn-secondary-ultra { padding: 12px 18px; }

    /* Garanties hero */
    .hero-guarantees { gap: 8px; }
    .guarantee-item { font-size: 0.8rem; padding: 6px 10px; }

    /* Section headers : marges réduites */
    .section-header { margin-bottom: 32px; }
    .why-header { margin-bottom: 28px; text-align: center; }

    /* Titles */
    .section-title-modern,
    .why-title-modern,
    .tech-title-ultra,
    .testimonials-title-modern {
        font-size: 1.65rem !important;
    }
    .section-subtitle-modern,
    .why-subtitle-modern,
    .tech-subtitle-ultra,
    .testimonials-subtitle-modern {
        font-size: 0.9rem;
    }

    /* Service cards */
    .service-card-modern {
        padding: 24px 20px;
    }
    .service-icon-modern {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* Why cards */
    .why-cards-grid { gap: 14px; }
    .why-card-body { padding: 14px 16px 16px; }
    .why-card-body h3 { font-size: 0.95rem; }
    .why-card-body p { font-size: 0.82rem; }

    /* Tech cards */
    .tech-card-ultra { padding: 20px 16px; }

    /* Testimonials */
    .testimonial-card-ultra { padding: 22px 18px; }
    .carousel-controls-ultra { gap: 16px; }

    /* CTA finale */
    .testimonials-cta { padding: 36px 16px; }
    .testimonials-cta h3 { font-size: 1.35rem; }
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }
    .cta-reassurance {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .cta-reassurance span {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* --- Petit mobile (< 480px) --- */
@media (max-width: 479px) {

    .hero-ultra-modern {
        padding-top: 60px;
        padding-bottom: 36px;
    }

    .hero-title-ultra {
        font-size: 1.7rem !important;
        line-height: 1.15;
    }

    .hero-subtitle-ultra {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .hero-badge-premium { padding: 7px 14px; }
    .badge-text { font-size: 12px; }

    /* Metrics encore plus compactes */
    .hero-metrics .metric-card {
        min-width: 90px;
        padding: 10px 10px;
    }
    .hero-metrics .metric-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .hero-metrics .metric-value { font-size: 0.85rem; }
    .hero-metrics .metric-label { font-size: 0.6rem; }

    /* Garanties : wrap autorisé */
    .hero-guarantees { flex-wrap: wrap; }
    .guarantee-item { font-size: 0.72rem; padding: 5px 8px; }

    /* Titles */
    .section-title-modern,
    .why-title-modern,
    .tech-title-ultra,
    .testimonials-title-modern {
        font-size: 1.4rem !important;
    }

    /* Why cards */
    .why-card-visual { height: 145px; }

    /* Container padding minimal */
    .container { padding-left: 14px !important; padding-right: 14px !important; }

    /* Sections : encore moins de padding */
    .modern-services,
    .why-choose-us-modern,
    .technologies-section-modern,
    .testimonials-section-ultra {
        padding: 48px 0 !important;
    }
}

/* ============================================================
   GRAND ÉCRAN — 1440px (27" QHD / 2K)
============================================================ */
@media (min-width: 1440px) {
    .container { max-width: 1360px !important; }

    /* Hero */
    .h-wrap { max-width: 920px; }
    .h-title { font-size: 6.4rem; }
    .h-sub { font-size: 1.18rem; max-width: 660px; }
    .h-hero { padding: 150px 0 120px; }

    /* Sections intermédiaires */
    .hp-center { max-width: 1020px; }
    .hp-h1 { font-size: 5.6rem; }
    .hp-sub { font-size: 1.15rem; max-width: 740px; }

    /* Services / Why / Tech / Testimonials */
    .modern-services,
    .why-choose-us-modern,
    .technologies-section-modern,
    .testimonials-section-ultra {
        padding: 100px 0 !important;
    }
}

/* ============================================================
   TRÈS GRAND ÉCRAN — 1920px (27" 4K / Full HD natif)
============================================================ */
@media (min-width: 1920px) {
    .container { max-width: 1800px !important; }

    /* Hero */
    .h-wrap { max-width: 1100px; }
    .h-title { font-size: 8rem; }
    .h-sub { font-size: 1.35rem; max-width: 840px; }
    .h-hero { padding: 180px 0 150px; }

    /* Sections intermédiaires */
    .hp-center { max-width: 1200px; }
    .hp-h1 { font-size: 6.8rem; }
    .hp-sub { font-size: 1.3rem; max-width: 900px; }

    /* Services / Why / Tech / Testimonials */
    .modern-services,
    .why-choose-us-modern,
    .technologies-section-modern,
    .testimonials-section-ultra {
        padding: 120px 0 !important;
    }
}
