/* ============================================
   IPPBOT — Landing Page Styles
   Rockstar GTA VI-inspired — Dark Cinematic
   ============================================ */

/* ============================================
   MENU OVERLAY (Full-screen IPPBOT dropdown)
   ============================================ */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--bg-overlay);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateY(-100%);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    overflow: hidden;
}

.menu-overlay.active {
    transform: translateY(0);
}

.menu-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: calc(var(--topbar-height) + 40px) 24px 60px;
    gap: 32px;
    position: relative;
}

/* Logo dans le menu overlay */
.menu-overlay-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--green-glow));
}

.menu-logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation dans le menu overlay */
.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.menu-nav-link {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    transition: all 0.4s ease;
    padding: 8px 0;
    position: relative;
}

.menu-nav-link:hover {
    color: transparent;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(8px);
}

.menu-nav-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 10px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: transform 0.3s ease;
    transform-origin: left;
}

.menu-nav-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* Bottom du menu overlay */
.menu-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: auto;
    padding-top: 24px;
}

.menu-lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 6px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--text);
}

.lang-sep {
    color: var(--text-muted);
    font-size: 0.75rem;
    user-select: none;
}

.menu-discord-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.menu-discord-link:hover {
    color: var(--green);
    border-color: var(--border-glow);
    background: rgba(34, 197, 94, 0.05);
}

/* ============================================
   TOP BAR (Rockstar-style, fixed)
   ============================================ */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    z-index: 9999;
    background: transparent;
    transition: background 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
    border-bottom: 1px solid transparent;
}

.topbar.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
    z-index: 10001;
}

.topbar-logo:hover {
    color: var(--text);
}

.topbar-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10001;
    margin-left: auto;
}

/* Language toggle FR | EN */
.topbar-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-lang-btn {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 2px;
    transition: color 0.3s ease;
}

.topbar-lang-btn.active {
    color: var(--text);
}

.topbar-lang-btn:hover {
    color: var(--text);
}

.topbar-lang-sep {
    font-size: 0.82rem;
    color: var(--text-muted);
    opacity: 0.4;
    user-select: none;
}

/* Dashboard CTA button — gradient vert→or (design system) */
.topbar-cta-dashboard {
    font-size: 0.82rem;
    font-weight: 600;
    color: #000;
    background: var(--gradient-main);
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 12px var(--green-glow);
}

.topbar-cta-dashboard:hover {
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px var(--green-glow-strong);
}

/* Toggle button (hamburger) */
.topbar-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    z-index: 10001;
}

.topbar-toggle-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: color 0.3s, letter-spacing 0.3s;
}

.topbar-toggle:hover .topbar-toggle-label {
    color: var(--text);
}

.topbar-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    position: relative;
}

.topbar-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    transform-origin: center;
}

/* Quand le menu est ouvert */
.topbar-toggle.active .topbar-toggle-label {
    color: var(--green);
}

.topbar-toggle.active .topbar-toggle-icon span {
    background: var(--green);
}

.topbar-toggle.active .topbar-toggle-icon span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.topbar-toggle.active .topbar-toggle-icon span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* ============================================
   HERO — Scroll-driven mask reveal (GTA VI)
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* ── Couche 0 : Background premium ── */
.hero-reveal-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #030305;
}

/* Gradient mesh multi-couches (booste pour le reveal P) */
.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 25% 35%, rgba(34, 197, 94, 0.25), transparent),
        radial-gradient(ellipse 50% 60% at 75% 65%, rgba(255, 184, 0, 0.2), transparent),
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(34, 197, 94, 0.15), transparent),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(16, 185, 129, 0.14), transparent),
        radial-gradient(ellipse 35% 45% at 20% 80%, rgba(255, 184, 0, 0.12), transparent);
}

/* Aurora — bande lumineuse animee */
.hero-aurora {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 70%;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.12) 0%,
        rgba(16, 185, 129, 0.08) 20%,
        rgba(255, 184, 0, 0.1) 40%,
        rgba(34, 197, 94, 0.06) 60%,
        transparent 80%
    );
    filter: blur(80px);
    animation: auroraShift 12s ease-in-out infinite alternate;
}

.hero-aurora-2 {
    top: auto;
    bottom: -40%;
    left: -10%;
    width: 120%;
    height: 60%;
    background: linear-gradient(
        -45deg,
        rgba(255, 184, 0, 0.08) 0%,
        rgba(34, 197, 94, 0.1) 30%,
        rgba(16, 185, 129, 0.06) 60%,
        transparent 80%
    );
    animation: auroraShift 16s ease-in-out infinite alternate-reverse;
}

/* Glow central fort (derriere le contenu — visible a travers le P) */
.hero-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
        rgba(34, 197, 94, 0.35) 0%,
        rgba(34, 197, 94, 0.15) 25%,
        rgba(255, 184, 0, 0.08) 45%,
        transparent 65%);
    filter: blur(50px);
    animation: centerGlowPulse 6s ease-in-out infinite alternate;
}

/* Orbes flottants */
.hero-reveal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-reveal-orb-green {
    top: 10%;
    left: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4), transparent 65%);
}

.hero-reveal-orb-gold {
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.35), transparent 65%);
}

.hero-reveal-orb-teal {
    top: 50%;
    right: 25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 65%);
    animation: orbFloat1 14s ease-in-out infinite;
}

/* Grille de points */
.hero-reveal-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
}

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

/* ── Couche 1 : Contenu revele ── */
.hero-reveal-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    gap: 24px;
    background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0,0,0,0.70) 0%, transparent 100%);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.hero-title-line {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-title-typed-wrap {
    display: block;
    min-height: 1.2em;
}

.hero-title-gradient {
    display: inline;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #4ADE80 0%, #22C55E 30%, #FFB800 70%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-cursor {
    display: inline;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--green);
    -webkit-text-fill-color: var(--green);
    animation: cursorBlink 1s step-end infinite;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.hero-actions-center {
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.hero-stat-lbl {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-sep {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ── Couche 3 : Logo visible en couleur (aligne avec le trou canvas) ── */
.hero-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.hero-logo-center .hero-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(34, 197, 94, 0.5))
           drop-shadow(0 0 100px rgba(34, 197, 94, 0.2));
}

.hero-code-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-code {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-family: var(--font-mono);
    font-size: calc(clamp(0.65rem, 0.9vw, 0.85rem) * var(--s, 1));
    font-weight: 500;
    color: rgba(34, 197, 94, 0.22);
    white-space: nowrap;
    animation: codeFloat 10s ease-in-out infinite;
    animation-delay: var(--d);
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.hero-code:nth-child(even) {
    color: rgba(255, 184, 0, 0.2);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.1);
}

.hero-code:nth-child(3n) {
    color: rgba(255, 255, 255, 0.12);
    text-shadow: none;
}

.hero-code:nth-child(5n) {
    color: rgba(16, 185, 129, 0.18);
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

/* Curseur clignotant style VS Code */
.hero-code::after {
    content: '|';
    display: inline;
    font-weight: 300;
    margin-left: 1px;
    animation: cursorBlink 1s step-end infinite;
    opacity: 0.7;
}

/* ── Couche 4 : Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
}

.hero-scroll-hint span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.hero-scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Wrapper titre (ancrage pour l'orbite) ── */
.hero-title-wrap {
    position: relative;
    z-index: 1;
}

/* ── Orbite satellite "ippbot" — piloté par JS (sin/cos) ── */
.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orbit-el {
    position: absolute;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-orbit-label {
    display: block;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    color: var(--green);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    text-shadow:
        0 0 12px rgba(34, 197, 94, 0.8),
        0 0 35px rgba(34, 197, 94, 0.4),
        0 0 80px rgba(34, 197, 94, 0.15);
}

/* ============================================
   Section Shared Styles
   ============================================ */

.section-features,
.section-how,
.section-server-type,
.section-showcase,
.section-commands,
.section-pricing,
.section-faq,
.section-cta {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--bg);
    contain: layout style paint;
}

.section-showcase,
.section-cta {
    overflow: hidden;
}

.section-cta {
    padding: 120px 0;
}

/* Section Glow (background radial for visual interest) */
.section-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(120px);
}

.section-glow-how {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.04), transparent 70%);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.12);
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.section-title {
    margin: 0 0 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* ============================================
   SERVER TYPE SELECTOR
   ============================================ */

.section-server-type {
    background: var(--bg-secondary);
}

.section-glow-servertype {
    background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(34, 197, 94, 0.06) 0%, transparent 100%);
}

.servertype-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.servertype-tab-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    flex-wrap: wrap;
}

.servertype-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.servertype-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.servertype-tab.active {
    background: var(--gradient-main);
    color: #000;
}

.servertype-tab svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.servertype-tab.active svg {
    opacity: 1;
}

/* Panels */
.servertype-panel {
    display: none;
    animation: stypeFadeIn 0.35s ease;
}

.servertype-panel.active {
    display: block;
}

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

.servertype-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.servertype-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.servertype-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
}

.servertype-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servertype-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.servertype-features li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Visual mockup */
.servertype-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.servertype-mockup {
    width: 100%;
    background: #0d0d12;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.servertype-mockup-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.servertype-mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
}

.servertype-mock-line {
    color: var(--text-secondary);
    line-height: 1.6;
}

.servertype-mock-line .text-cmd {
    color: var(--green);
    font-weight: 600;
}

.servertype-mock-line.mock-result {
    color: var(--text-muted);
    padding-left: 8px;
}

.mock-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 6px;
}

.mock-badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.mock-badge-orange {
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
}

/* Mobile */
@media (max-width: 768px) {
    .servertype-tab-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .servertype-tab {
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .servertype-panel-content {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
}

/* ============================================
   FEATURES — Bento Grid
   ============================================ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
}

.bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 14px 0 8px;
}

.bento-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Bento Tags */
.bento-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.tag-orange {
    background: rgba(255, 149, 0, 0.1);
    color: var(--orange);
}

.tag-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.tag-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
}

.tag-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.tag-gradient {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(255, 184, 0, 0.12));
    color: var(--gold-light);
}

/* Bento Visual Wrapper */
.bento-visual {
    margin-top: auto;
}

/* ── Mockup: Terminal ── */
.mock-terminal {
    background: #0a0a12;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    font-family: var(--font-mono);
}

.mock-terminal-dots {
    display: flex;
    gap: 7px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.mock-terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-terminal-dots span:nth-child(1) { background: #FF5F57; }
.mock-terminal-dots span:nth-child(2) { background: #FEBC2E; }
.mock-terminal-dots span:nth-child(3) { background: #28C840; }

.mock-terminal-body {
    padding: 16px 18px;
    font-size: 0.8rem;
    line-height: 2;
}

.mock-line {
    color: var(--text-secondary);
}

.mock-cmd {
    color: var(--green);
    font-weight: 600;
}

.mock-out {
    color: var(--text-muted);
    padding-left: 10px;
}

.mock-ok {
    color: var(--green);
    margin-right: 6px;
    font-weight: 700;
}

.mock-done {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.mock-hl {
    color: var(--green-light);
    font-weight: 600;
}

/* ── Mockup: Embed (Ventes) ── */
.mock-embed {
    background: #1a1a24;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mock-embed-bar {
    height: 4px;
    background: var(--gradient-main);
}

.mock-embed-title {
    padding: 12px 14px 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-mono);
}

.mock-embed-price {
    padding: 0 14px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
}

.mock-embed-btn {
    margin: 10px 14px 12px;
    padding: 6px 16px;
    background: var(--gradient-main);
    color: #000;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

/* ── Mockup: Ticket ── */
.mock-ticket {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 14px 16px;
}

.mock-ticket-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mock-ticket-id {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-mono);
}

.mock-ticket-status {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.mock-ticket-row {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 2px 0;
}

.mock-ticket-row strong {
    color: var(--text-secondary);
}

/* ── Mockup: Stars ── */
.mock-stars {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 16px;
    text-align: center;
}

.mock-stars-row {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.mock-stars-text {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.mock-stars-author {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Mockup: Themes ── */
.mock-themes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mock-theme {
    flex: 1;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 8px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: default;
}

.mock-theme:hover {
    border-color: var(--border-hover);
}

.mock-theme.active {
    border-color: var(--green);
    box-shadow: 0 0 12px var(--green-glow);
}

.mock-theme-bar {
    height: 28px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.mock-theme span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mock-theme.active span {
    color: var(--green);
}

/* ── Mockup: Chat (IA) ── */
.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-chat-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mock-chat-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    background: #5865F2;
    color: #fff;
    flex-shrink: 0;
}

.mock-chat-avatar-ai {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    font-size: 0.6rem;
}

.mock-chat-bubble {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px 10px 10px 10px;
    border: 1px solid var(--border);
}

.mock-chat-bubble-ai {
    background: rgba(34, 197, 94, 0.04);
    border-color: rgba(34, 197, 94, 0.1);
}

.mock-chat-bubble code {
    font-size: 0.75rem;
    padding: 1px 5px;
}

/* ── Mockup: Dashboard mini ── */
.mock-dash {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-height: 110px;
}

.mock-dash-side {
    width: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--border);
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mock-dash-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--green);
    opacity: 0.8;
}

.mock-dash-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.mock-dash-lines span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.mock-dash-lines span:first-child {
    background: rgba(34, 197, 94, 0.2);
}

.mock-dash-main {
    flex: 1;
    padding: 12px;
    display: flex;
    align-items: center;
}

.mock-dash-stats {
    display: flex;
    gap: 8px;
    width: 100%;
}

.mock-dash-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green);
}

/* ============================================
   HOW IT WORKS — Steps (Premium)
   ============================================ */

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circle with icon */
.step-circle {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.step-circle-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
    pointer-events: none;
}

.step-circle-inner {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: all 0.4s ease;
    z-index: 1;
}

.step-card:hover .step-circle-inner {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.1);
}

.step-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--green);
    opacity: 0.5;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.text-cmd {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 220px;
}

/* Connector between steps */
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 36px;
    flex-shrink: 0;
    transform-origin: left center;
}

.step-connector-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.25), rgba(255, 184, 0, 0.15));
}

/* ============================================
   SHOWCASE — Dashboard Preview
   ============================================ */

.showcase-wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08), rgba(255, 184, 0, 0.04) 50%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.showcase-frame {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.showcase-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

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

.showcase-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.showcase-dots span:nth-child(1) { background: #FF5F57; }
.showcase-dots span:nth-child(2) { background: #FEBC2E; }
.showcase-dots span:nth-child(3) { background: #28C840; }

.showcase-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    max-width: 240px;
}

.showcase-body {
    display: flex;
    min-height: 340px;
}

/* Sidebar du showcase */
.showcase-sidebar {
    width: 180px;
    background: rgba(255, 255, 255, 0.015);
    border-right: 1px solid var(--border);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.showcase-sb-logo {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
    padding: 0 16px 14px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.03em;
}

.showcase-sb-accent {
    color: var(--green);
}

.showcase-sb-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 8px;
    flex: 1;
}

.showcase-sb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: default;
    transition: color 0.2s;
}

.showcase-sb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
}

.showcase-sb-active {
    background: rgba(34, 197, 94, 0.08);
    color: var(--green);
    font-weight: 600;
}

.showcase-sb-active .showcase-sb-dot {
    background: var(--green);
    opacity: 1;
}

.showcase-sb-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: auto;
}

.showcase-sb-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #000;
}

/* Main du showcase */
.showcase-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-welcome {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.showcase-welcome strong {
    color: var(--text);
}

.showcase-server {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
}

.showcase-server-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

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

.showcase-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 12px;
    text-align: center;
    position: relative;
}

.showcase-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.showcase-stat-orange .showcase-stat-val { color: var(--orange); }
.showcase-stat-green .showcase-stat-val { color: var(--green); }
.showcase-stat-gold .showcase-stat-val { color: var(--gold); }
.showcase-stat-blue .showcase-stat-val { color: var(--blue); }

.showcase-stat-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.showcase-stat-trend {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(34, 197, 94, 0.08);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Chart du showcase */
.showcase-chart-area {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    flex: 1;
}

.showcase-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.showcase-chart-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.showcase-chart-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(34, 197, 94, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.showcase-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.showcase-bar-item {
    flex: 1;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}

.showcase-bar-current {
    background: var(--gradient-main);
}

/* ============================================
   COMMANDS — Tabs
   ============================================ */

.cmd-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.cmd-tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 36px;
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
}

.cmd-tab {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cmd-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.cmd-tab.active {
    background: var(--gradient-main);
    color: #000;
}

.cmd-panels {
    position: relative;
}

.cmd-panel {
    display: none;
    flex-direction: column;
    gap: 0;
}

.cmd-panel.active {
    display: flex;
}

.cmd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s ease;
    border-radius: 0;
}

.cmd-item:first-child {
    border-top: 1px solid var(--border);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.cmd-item:last-child {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border-bottom: 1px solid var(--border);
}

.cmd-item:hover {
    background: rgba(34, 197, 94, 0.02);
}

.cmd-item code {
    font-size: 0.88rem;
    font-weight: 600;
    min-width: 130px;
    flex-shrink: 0;
}

.cmd-item span {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cmd-pro {
    margin-left: auto;
    font-size: 0.62rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green) !important;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */

/* Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.25s ease;
    cursor: pointer;
}

.pricing-toggle-label.active {
    color: var(--text);
}

.pricing-toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.pricing-toggle-switch.active {
    background: var(--green);
    border-color: var(--green);
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s ease;
    pointer-events: none;
}

.pricing-toggle-switch.active .pricing-toggle-knob {
    transform: translateX(22px);
}

.pricing-save {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--green);
    background: rgba(34, 197, 94, 0.08);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

/* Cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    flex: 1;
    max-width: 420px;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Premium card */
.pricing-card-pro {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--green), var(--gold), var(--orange)) border-box;
    box-shadow: 0 0 50px var(--green-glow), 0 0 100px rgba(255, 184, 0, 0.05);
    transform: scale(1.03);
}

.pricing-card-pro:hover {
    box-shadow: 0 0 70px var(--green-glow-strong), 0 0 120px rgba(255, 184, 0, 0.08), 0 24px 64px rgba(0, 0, 0, 0.3);
    transform: scale(1.03) translateY(-4px);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--green-glow);
}

.pricing-card-top {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-top h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pricing-card-pro .pricing-amount {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-yearly-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.pricing-yearly-note s {
    opacity: 0.6;
}

.pricing-card-top > p:last-child {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.pricing-includes {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 16px;
    padding-left: 2px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding-left: 2px;
}

.pricing-features li::before {
    content: '';
    display: inline-flex;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='%2322C55E' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-highlight {
    color: var(--green) !important;
    font-weight: 600;
}

.pricing-highlight::before {
    background-color: rgba(34, 197, 94, 0.12) !important;
}

.pricing-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.pricing-note-green {
    color: var(--green);
    font-weight: 600;
}

.pricing-trust {
    text-align: center;
    margin-top: 44px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
    gap: 16px;
}

.faq-q:hover {
    color: var(--green);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-a p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA Final
   ============================================ */

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.04), transparent 60%);
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08), rgba(255, 184, 0, 0.04) 50%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

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

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    z-index: 1;
    background: var(--bg);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   STEP DEMO BUBBLES — animated mockups
   ============================================ */

.step-demo {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    min-height: 540px;
    perspective: 900px;
}

/* ── Fake cursor ── */
.sb-cursor {
    position: absolute;
    width: 20px;
    height: 24px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.sb-click-ring {
    position: absolute;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border-radius: 50%;
    border: 2px solid var(--green);
    opacity: 0;
    pointer-events: none;
    z-index: 9;
}

/* ── Common bubble (3D) ── */
.step-bubble {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(22,22,30,1) 0%, rgba(17,17,22,1) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: rotateY(-3deg) rotateX(1.5deg);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.6),
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.07),
        -8px 0 25px rgba(0,0,0,0.25);
}

/* Contenu des bulles au-dessus du glow */
.step-bubble > *:not(.step-bubble-glow) {
    position: relative;
    z-index: 1;
}

/* ── Trace lumineuse animée autour des bulles ── */
/* Technique : div positionné sur les bords intérieurs de la bulle.
   ::before = gradient conique qui tourne (le point lumineux)
   ::after  = fond opaque qui masque le centre → ne laisse que ~2px de trait visible.
   Le tout reste DANS overflow:hidden de .step-bubble = pas de débordement. */
.step-bubble-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

.step-bubble-glow::before {
    content: '';
    position: absolute;
    inset: -80%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 50%,
        rgba(255,255,255,0.01) 62%,
        rgba(34,197,94,0.15) 72%,
        rgba(34,197,94,0.4) 80%,
        rgba(255,255,255,0.7) 87%,
        #fff 91%,
        #fff 93%,
        rgba(255,255,255,0.4) 95%,
        rgba(34,197,94,0.1) 98%,
        transparent 100%
    );
    animation: bubbleTraceRotate 3s linear infinite;
}

/* Masque intérieur opaque — ne montre que le contour (~2px) */
.step-bubble-glow::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(22,22,30,1) 0%, rgba(17,17,22,1) 100%);
}

@keyframes bubbleTraceRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Bubble 1 : Discord OAuth (réaliste) ── */
.sb-oauth-top {
    background: linear-gradient(180deg, #404eed 0%, #2f3136 60%, #313338 100%);
    border-radius: 16px 16px 0 0;
    margin: -24px -24px 0;
    padding: 14px 18px 10px;
    text-align: center;
    position: relative;
}

.sb-oauth-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: rgba(255,255,255,0.45);
    font-size: 1.3rem;
    line-height: 1;
}

.sb-oauth-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sb-oauth-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sb-oauth-av-bot {
    background: #2b2d31;
    border: 2.5px solid #1a1a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.sb-oauth-av .sb-oauth-avatar-img {
    width: 115%;
    height: 115%;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(34,197,94,0.3));
}

.sb-oauth-av-user {
    background: #5865f2;
    border: 2px solid #36393f;
}

.sb-oauth-av-dots {
    color: rgba(255,255,255,0.25);
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.sb-oauth-identity { margin-bottom: 2px; }

.sb-oauth-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.sb-oauth-app-badge {
    display: inline-block;
    background: #5865f2;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 1.5px 5px;
    border-radius: 3px;
    vertical-align: middle;
    letter-spacing: 0.6px;
    margin-left: 3px;
    position: relative;
    top: -1px;
}

.sb-oauth-tag {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

.sb-oauth-perms-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 10px 0 0;
}

.sb-oauth-perms-intro {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.sb-oauth-perm {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text);
    padding: 3px 0;
    opacity: 0;
}

.sb-oauth-perm .sb-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.sb-perm-denied { color: var(--text-muted); }

.sb-perm-denied .sb-check-x {
    color: #ed4245;
    font-weight: 700;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.sb-oauth-server-section { margin: 10px 0 0; }

.sb-oauth-server-label {
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.sb-oauth-select-wrap { position: relative; }

.sb-oauth-select {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1e1f22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 8px 12px;
}

.sb-oauth-select-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    flex: 1;
}

.sb-oauth-select-chevron {
    color: var(--text-muted);
    font-size: 0.6rem;
    transition: transform 0.2s;
}

.sb-oauth-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e1f22;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px;
    margin-top: 4px;
    opacity: 0;
    z-index: 5;
}

.sb-oauth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.sb-oauth-dd-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.sb-oauth-server-note {
    color: var(--text-muted);
    font-size: 0.65rem;
    margin-top: 6px;
}

.sb-oauth-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.sb-oauth-btn-cancel {
    width: 100%;
    padding: 8px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
}

.sb-oauth-btn {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    background: #5865F2;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.sb-oauth-btn-text {
    transition: opacity 0.3s;
}

.sb-oauth-btn-done {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--green);
    color: #000;
    font-weight: 800;
    border-radius: 6px;
    opacity: 0;
}

/* ── Dots partagés (bubble 2 + 3) ── */
.sb-term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.sb-term-dot:nth-child(1) { background: #FF5F57; }
.sb-term-dot:nth-child(2) { background: #FEBC2E; }
.sb-term-dot:nth-child(3) { background: #28C840; }

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

/* ── Bubble 2 : Discord /setup ── */
.sb-discord {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
}

.sb-discord-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #2b2d31;
    border-bottom: 1px solid #1e1f22;
}

.sb-discord-hash {
    color: #80848e;
    font-size: 1.2rem;
    font-weight: 500;
}

.sb-discord-channel {
    color: #f2f3f5;
    font-weight: 600;
    font-size: 0.88rem;
}

.sb-discord-messages {
    background: #313338;
    padding: 14px 16px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sb-discord-msg {
    display: flex;
    gap: 12px;
    opacity: 0;
}

.sb-discord-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-discord-avatar.user { background: #5865f2; }
.sb-discord-avatar.bot  { background: transparent; padding: 0; }

.sb-discord-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.sb-discord-msg-body {
    flex: 1;
    min-width: 0;
}

.sb-discord-msg-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.sb-discord-username {
    font-weight: 600;
    color: #f2f3f5;
    font-size: 0.85rem;
}

.sb-discord-bot-tag {
    background: #5865f2;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sb-discord-time {
    color: #949ba4;
    font-size: 0.65rem;
}

.sb-discord-slash {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(88,101,242,0.15);
    color: #c9cdfb;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.82rem;
}

.sb-discord-slash-icon {
    color: #5865f2;
    font-weight: 700;
}

.sb-discord-embed {
    margin-top: 4px;
    background: #2b2d31;
    border-left: 4px solid #57f287;
    border-radius: 4px;
    padding: 10px 12px;
}

.sb-discord-embed-title {
    color: #f2f3f5;
    font-weight: 700;
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.sb-discord-embed-line {
    color: #dcddde;
    font-size: 0.78rem;
    line-height: 1.9;
    opacity: 0;
}

.sb-discord-embed-ok {
    color: #57f287;
    font-weight: 700;
    margin-right: 4px;
}

.sb-discord-embed-result {
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
    color: #57f287;
    font-weight: 600;
}

.sb-discord-typing {
    color: #949ba4;
    font-size: 0.72rem;
    padding: 3px 16px;
    background: #313338;
    opacity: 0;
}

.sb-discord-typing-dots {
    display: inline-flex;
    gap: 2px;
    margin-right: 6px;
    vertical-align: middle;
}

.sb-discord-typing-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #949ba4;
    animation: sbDiscordDots 1.4s ease-in-out infinite;
}

.sb-discord-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.sb-discord-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes sbDiscordDots {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

.sb-discord-input {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #383a40;
    border-radius: 0 0 8px 8px;
    min-height: 20px;
}

.sb-discord-input-typing {
    color: #dbdee1;
    font-size: 0.85rem;
    font-family: 'gg sans', 'Noto Sans', Helvetica, Arial, sans-serif;
}

.sb-discord-input-blink {
    color: #fff;
    font-weight: 300;
    animation: sbBlink 1s step-end infinite;
}

.sb-discord-input-placeholder {
    color: #6d6f78;
    font-size: 0.85rem;
}

/* ── Bubble 3 : Dashboard ── */
.sb-dash-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin: -24px -24px 0;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
}

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

.sb-dash-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 4px 10px;
}

.sb-dash-body {
    display: flex;
    margin: 0 -24px -24px;
    min-height: 200px;
}

.sb-dash-side {
    width: 90px;
    border-right: 1px solid var(--border);
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.sb-dash-nav {
    font-size: 0.68rem;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--text-muted);
    cursor: default;
}

.sb-dash-nav.active {
    background: rgba(34,197,94,0.08);
    color: var(--green);
    font-weight: 600;
}

.sb-dash-main {
    flex: 1;
    padding: 12px 16px;
}

.sb-dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sb-dash-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.sb-dash-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(34,197,94,0.08);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.sb-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.sb-dash-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    opacity: 0;
}

.sb-dash-val {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3px;
}

.sb-dash-card:nth-child(1) .sb-dash-val { color: var(--green); }
.sb-dash-card:nth-child(2) .sb-dash-val { color: var(--gold); }
.sb-dash-card:nth-child(3) .sb-dash-val { color: var(--blue); }
.sb-dash-card:nth-child(4) .sb-dash-val { color: var(--orange); }

.sb-dash-lbl {
    font-size: 0.62rem;
    color: var(--text-muted);
}

.sb-dash-btn {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    background: var(--gradient-main);
    color: #000;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    border: none;
    opacity: 0;
}

/* ============================================
   Scroll Reveal — desactive pour l'instant
   (sera reimplemente avec GSAP ScrollTrigger)
   ============================================ */

/* ============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .showcase-sidebar {
        width: 150px;
    }

    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */

@media (max-width: 768px) {
    /* Topbar */
    .topbar-cta,
    .topbar-cta-dashboard {
        display: none;
    }

    .topbar-lang {
        gap: 6px;
    }

    /* Hero */
    .hero-logo-center .hero-logo-img {
        width: 130px;
    }

    .hero-orbit-label {
        letter-spacing: 0.20em;
    }

    .hero-reveal-content {
        padding: 0 16px;
    }

    .hero-title-line {
        font-size: 1.5rem;
    }

    .hero-title-gradient {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-hero,
    .hero-actions .btn-hero-outline {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-stat-sep {
        display: none;
    }

    .hero-reveal-orb-green,
    .hero-reveal-orb-gold,
    .hero-reveal-orb-teal {
        width: 250px;
        height: 250px;
    }

    .hero-center-glow {
        width: 350px;
        height: 350px;
    }

    .hero-aurora,
    .hero-aurora-2 {
        filter: blur(40px);
        animation: none !important;
        opacity: 0.5;
    }

    .hero-center-glow {
        filter: blur(30px);
        animation: none !important;
        width: 300px;
        height: 300px;
    }

    .hero-reveal-orb {
        filter: blur(60px);
        animation: none !important;
    }

    .hero-code::after {
        animation: none !important;
        opacity: 0;
    }

    /* Sections padding */
    .section-features,
    .section-how,
    .section-server-type,
    .section-showcase,
    .section-commands,
    .section-pricing,
    .section-faq,
    .section-cta {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Bento */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    .bento-card {
        padding: 24px;
    }

    /* Steps */
    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        padding-top: 0;
    }

    .step-connector-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(180deg, rgba(34, 197, 94, 0.25), rgba(255, 184, 0, 0.15));
    }

    /* Showcase */
    .showcase-body {
        flex-direction: column;
        min-height: auto;
    }

    .showcase-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 10px 0;
    }

    .showcase-sb-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Commands */
    .cmd-tab-bar {
        gap: 5px;
    }

    .cmd-tab {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .cmd-item {
        flex-wrap: wrap;
        gap: 6px;
        padding: 12px;
    }

    .cmd-item code {
        min-width: auto;
    }

    /* Pricing */
    .pricing-card-pro {
        transform: none;
    }

    .pricing-card-pro:hover {
        transform: translateY(-4px);
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    /* FAQ */
    .faq-q {
        font-size: 0.92rem;
        padding: 16px 0;
    }

    /* CTA */
    .section-cta {
        padding: 100px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Mock themes */
    .mock-themes {
        flex-wrap: wrap;
    }

    .mock-theme {
        min-width: 60px;
    }
}

/* ============================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================ */

@media (max-width: 480px) {
    .hero-logo-center .hero-logo-img {
        width: 100px;
    }

    .hero-orbit-label {
        letter-spacing: 0.15em;
    }

    .hero-title-line {
        font-size: 1.3rem;
    }

    .hero-title-gradient {
        font-size: 1.7rem;
    }

    /* Desactiver les effets lourds sur petit mobile */
    .hero-aurora,
    .hero-aurora-2 {
        display: none;
    }

    .hero-reveal-orb-teal {
        display: none;
    }

    .hero-reveal-grid {
        display: none;
    }

    .hero-center-glow {
        width: 200px;
        height: 200px;
        filter: blur(20px);
    }

    .hero-reveal-orb-green,
    .hero-reveal-orb-gold {
        width: 180px;
        height: 180px;
        filter: blur(40px);
    }

    .pricing-amount {
        font-size: 2.4rem;
    }

    .showcase-stats {
        grid-template-columns: 1fr;
    }

    .showcase-bar .showcase-dots {
        display: none;
    }

    .mock-dash-side {
        display: none;
    }

    .step-circle {
        width: 60px;
        height: 60px;
    }

    .step-circle-inner {
        width: 60px;
        height: 60px;
    }

    .menu-nav-link {
        font-size: 1.3rem;
    }
}
