/* ================= VARIABLES ================= */
:root {
    --bg-main: #07070a;
    --bg-surface: #101014;
    --bg-surface-elevated: #1a1a22;

    --primary-yellow: #f8c91a;
    --primary-glow: rgba(248, 201, 26, 0.4);

    --text-main: #ffffff;
    --text-muted: #a1a1aa;

    --red-alert: #ef4444;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ================= RESET & CURSOR ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto;
    }

    .cursor {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: transparent;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.2s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--primary-glow);
}

.cursor.expand {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(248, 201, 26, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.relative {
    position: relative;
}

.highlight {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px var(--primary-glow);
}

.highlight-red {
    color: var(--red-alert);
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1rem;
}

.italic {
    font-style: italic;
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav-logo {
    height: 40px;
    object-fit: contain;
    /* Effet Néon puissant : fait vibrer le vert et le jaune */
    filter: brightness(1.5) contrast(1.2) drop-shadow(0 0 8px rgba(248, 201, 26, 0.4)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
    transition: all 0.4s ease;
}

#nav-logo:hover {
    filter: brightness(1.8) contrast(1.3) drop-shadow(0 0 15px rgba(248, 201, 26, 0.6));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: left;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ================= BUTTONS & GLOW ================= */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 2px solid transparent;
    outline: none;
    background: transparent;
}

.btn-primary {
    background: var(--primary-yellow);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--text-main);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

.btn-outline:hover {
    background: var(--primary-yellow);
    color: #000;
}

.w-100 {
    width: 100%;
    display: block;
}

.glow-hover:hover {
    box-shadow: 0 0 20px var(--primary-glow);
    border-color: var(--primary-yellow);
}

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 6rem 2rem 2rem;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(248, 201, 26, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ================= SECTIONS & GRIDS ================= */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
}

.subtitle-small {
    color: var(--text-muted);
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ================= CARDS (EXPERTISE & PACKS) ================= */
.expertise-card,
.pack-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
}

.highlight-card {
    background: linear-gradient(145deg, var(--bg-surface) 0%, rgba(248, 201, 26, 0.1) 100%);
    border-color: rgba(248, 201, 26, 0.3);
}

/* ================= ICÔNES PÔLES SVG ================= */
.p-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5px;
}

.expertise-card:hover .p-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 18px var(--primary-yellow));
}

/* Animated floating per pole */
.creative-icon {
    animation: float 3.0s ease-in-out infinite;
}

.dev-icon {
    animation: float 3.5s ease-in-out infinite 0.3s;
}

.seo-icon {
    animation: float 4.0s ease-in-out infinite 0.6s;
}

.sales-icon {
    animation: float 2.8s ease-in-out infinite 0.1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ================= PREUVES SOCIALES (Résultats) ================= */
.proof-section {
    background: var(--bg-primary);
    padding-bottom: 2rem;
}

.proof-grid {
    gap: 2rem;
}

.proof-card {
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.proof-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 201, 26, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.proof-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(248, 201, 26, 0.4);
    font-family: 'Outfit', sans-serif;
}

.proof-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.proof-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}


.pack-card {
    position: relative;
    background: var(--bg-surface-elevated);
}

.pack-card.featured {
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(to bottom, #1a1a1f, #111);
}

.glow-border {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, var(--primary-yellow), transparent, var(--primary-yellow));
    z-index: -1;
    animation: rotate-border 4s linear infinite;
    opacity: 0.5;
}

@keyframes rotate-border {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-premium {
    background: var(--primary-yellow);
    color: #000;
}

.pack-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pack-header h3 {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem;
    color: var(--primary-yellow);
}

.features {
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.features li strong {
    font-size: 1.05rem;
    color: #fff;
}

.detail-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 1.5rem;
}

.commission {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* ================= CALCULATEUR ROI ================= */
.calculator-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.calc-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calc-header h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.calc-header p {
    color: var(--text-muted);
}

.calc-controls input[type=range] {
    width: 100%;
    margin: 2rem 0;
    accent-color: var(--primary-yellow);
    cursor: none;
}

.calc-note {
    background: rgba(248, 201, 26, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--primary-yellow);
    font-size: 0.9rem;
    border-radius: 4px;
}

.result-card {
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.res-title {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.res-value {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

/* ================= BENTO BOX CTA & MEGA FOOTER ================= */
/* Bento Box CTA */
.cta-bento {
    background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
    border: 1px solid rgba(248, 201, 26, 0.2);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    /* Overlaps with footer */
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.bento-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-bento h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-bento p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bento-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.bento-glow-blob {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 201, 26, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

/* Mega Footer */
.mega-footer {
    background: #050505;
    padding: 8rem 0 2rem;
    /* Important padding top pour laisser respirer le Bento */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.brand-col .footer-logo {
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 1;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.brand-col .footer-about {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col span.muted {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-weight: 600;
}

.footer-socials a:hover {
    color: var(--primary-yellow);
}

/* ================= MODAL "SCAN MOI" ================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-surface-elevated);
    padding: 3rem;
    border-radius: 20px;
    z-index: 2001;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 40px rgba(248, 201, 26, 0.15);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fade-in 0.4s ease;
}

.quiz-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.quiz-step p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.quiz-input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    outline: none;
    font-size: 1rem;
}

.quiz-input:focus {
    border-color: var(--primary-yellow);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= CHATBOT CLOSER ================= */
.chatbot-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-btn {
    background: var(--primary-yellow);
    border: none;
    color: black;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(248, 201, 26, 0.4);
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.chatbot-btn:hover {
    transform: scale(1.05);
}

.chatbot-window {
    background: var(--bg-surface);
    width: 320px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chatbot-window.open {
    display: block;
    animation: slide-up 0.3s ease;
}

.chatbot-header {
    background: linear-gradient(145deg, #222, #111);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.5;
}

.close-chat:hover {
    opacity: 1;
}

.chatbot-body {
    padding: 1rem;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
}

.msg {
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    max-width: 85%;
}

.bot-msg {
    background: rgba(248, 201, 26, 0.15);
    color: white;
    border-left: 3px solid var(--primary-yellow);
    align-self: flex-start;
}

.user-msg {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    align-self: flex-end;
}

.chatbot-input {
    display: flex;
    padding: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem;
    outline: none;
}

.chatbot-input button {
    background: var(--primary-yellow);
    border: none;
    color: black;
    border-radius: 5px;
    width: 40px;
    font-weight: bold;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.fade-bottom {
    transform: translateY(50px);
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ================= RESPONSIVE DESIGN (MOBILE) ================= */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(7, 7, 10, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        border-left: 1px solid rgba(248, 201, 26, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .px-mobile-small {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.78rem !important;
        letter-spacing: -0.2px;
    }


    .nav-actions {
        gap: 0.7rem;
    }

    .nav-container {
        padding: 0 1rem;
    }


    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .pack-card.featured {
        transform: scale(1);
        z-index: 1;
    }

    .calculator-box {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Fix potential overflows in cards */
    .squad-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
        width: 100%;
    }
}


@media (max-width: 768px) {

    /* Typographie fluide adaptée mobile */
    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        line-height: 1.1;
        margin-top: 1rem;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Espacements ajustés */
    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Bento Box et Footer */
    .cta-bento {
        padding: 2rem;
        transform: translateY(30px);
    }

    .cta-bento h2 {
        font-size: 1.8rem;
    }

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

    .bento-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Modals & Chatbot Mobile */
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .quiz-step h3 {
        font-size: 1.2rem;
    }

    .chatbot-wrapper {
        bottom: 10px;
        right: 10px;
        left: 10px;
        align-items: stretch;
        z-index: 2000;
    }

    .chatbot-window {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .chatbot-btn {
        margin: 0 auto;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }

    /* Cartes réduites */
    .expertise-card,
    .pack-card {
        padding: 1.5rem;
    }

    .pack-header h3 {
        font-size: 2rem;
    }

    .lottie-container {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .expertise-card {
        text-align: center;
    }

    /* Header Navbar Mobile : Rendre le bouton plus compact */
    #btn-open-scan {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
        letter-spacing: -0.2px;
        white-space: nowrap;
    }

    #nav-logo {
        height: 30px;
    }

    .navbar {
        padding: 1rem 0;
    }
}