/* ═══════════════════════════════════════════
   LM I-Manager · style.css — v4 Refonte
   Navy hero + White body · Outfit + Plus Jakarta Sans
   Section Realisations enrichie
   ═══════════════════════════════════════════ */

/* ── Variables ────────────────────────────── */
:root {
    /* Navy */
    --navy:         #0c1f3a;
    --navy-mid:     #112347;
    --navy-light:   #1a3060;

    /* Blue accent */
    --blue:         #2563eb;
    --blue-hover:   #1d4ed8;
    --blue-tint:    #eff6ff;
    --blue-border:  #bfdbfe;

    /* Backgrounds */
    --bg:           #ffffff;
    --bg-gray:      #f8fafc;
    --bg-blue:      #f0f6ff;

    /* Text */
    --text:         #0f172a;
    --text-soft:    #475569;
    --text-muted:   #94a3b8;

    /* Borders */
    --border:       #e2e8f0;
    --border-dark:  #cbd5e1;

    /* Misc */
    --radius:       8px;
    --radius-md:    12px;
    --radius-lg:    16px;
    --nav-h:        66px;
    --shadow-sm:    0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
    --shadow:       0 4px 12px rgba(15,23,42,.08), 0 1px 3px rgba(15,23,42,.05);
    --shadow-md:    0 8px 24px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
    --shadow-lg:    0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
    --transition:   0.15s ease;
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── Reveal ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Navbar ───────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--navy);
    z-index: 999;
    transition: box-shadow 0.2s;
}
.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(12,31,58,.35);
}

.nav-wrap {
    display: flex;
    align-items: center;
    height: var(--nav-h);
    gap: 1rem;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    display: block;
    line-height: 1.2;
}
.nav-logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}
.nav-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7) !important;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}
.nav-item:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}
.nav-cta {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.42rem 1.1rem;
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff !important;
    transition: background var(--transition);
}
.nav-cta:hover { background: var(--blue-hover); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.4rem;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: transform 0.22s, opacity 0.22s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────── */
.btn-main {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.62rem 1.5rem;
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff !important;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-main:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.6rem 1.3rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-outline-hero:hover {
    background: rgba(255,255,255,0.14);
    color: #fff !important;
    border-color: rgba(255,255,255,0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    font-size: 0.87rem;
    font-weight: 500;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-soft) !important;
    border: 1px solid var(--border-dark);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
    color: var(--blue) !important;
    border-color: var(--blue-border);
    background: var(--blue-tint);
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius);
    background: transparent;
    color: var(--blue) !important;
    border: 1px solid var(--blue-border);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline-blue:hover {
    background: var(--blue-tint);
    border-color: var(--blue);
    transform: translateY(-1px);
}

/* ── Hero ─────────────────────────────────── */
.hero {
    background: var(--navy);
    padding-top: calc(var(--nav-h) + 4.5rem);
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6ee7b7;
    background: rgba(110,231,183,0.1);
    border: 1px solid rgba(110,231,183,0.25);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}
.hero-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #6ee7b7;
    animation: pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.75); } }

.hero-h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.3rem;
}
.hero-em {
    background: linear-gradient(90deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-p {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Carte hero */
.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
}
.hc-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}
.hc-avatar {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: rgba(96,165,250,0.18);
    border: 1px solid rgba(96,165,250,0.35);
    color: #93c5fd;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.hc-meta strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    color: #fff;
    line-height: 1.3;
}
.hc-meta span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}
.hc-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.22rem 0.65rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}
.hc-divider { height: 1px; background: rgba(255,255,255,0.09); margin: 0.9rem 0; }
.hc-rows { display: flex; flex-direction: column; }
.hc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding: 0.52rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.84rem;
}
.hc-lbl {
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.38);
    min-width: 82px;
    flex-shrink: 0;
}
.hc-val { color: rgba(255,255,255,0.72); }
.hc-icons { display: flex; align-items: center; flex-wrap: wrap; gap: 0.3rem; }
.hc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.hc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.65) !important;
    background: rgba(255,255,255,0.04);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.hc-link:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff !important;
    background: rgba(255,255,255,0.09);
}

/* Vague de transition hero */
.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 72px; }

/* ── Targets ──────────────────────────────── */
.targets {
    background: var(--bg-gray);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.target-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.3rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.target-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--blue-border);
    transform: translateY(-2px);
}
.target-card--hi {
    border-color: var(--blue-border);
    background: var(--blue-tint);
}
.tc-icon {
    font-size: 1.3rem;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}
.tc-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.22rem;
}
.tc-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ── Sections ─────────────────────────────── */
.sec { padding: 5.5rem 0; }
.sec--gray { background: var(--bg-gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec--blue { background: var(--bg-blue); border-top: 1px solid var(--blue-border); }

.sec-head { margin-bottom: 2.75rem; }
.sec-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--blue);
    margin-bottom: 0.55rem;
}
.sec-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}
.sec-desc {
    font-size: 0.94rem;
    color: var(--text-soft);
    line-height: 1.75;
    max-width: 580px;
}
.label-sm {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ── Service cards ────────────────────────── */
.svc-card {
    height: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.svc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-border);
    transform: translateY(-2px);
}
.svc-card--hi {
    border-color: var(--blue-border);
    background: var(--blue-tint);
}
.svc-top {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}
.svc-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    background: var(--bg-gray);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 0.18rem;
    letter-spacing: 0.06em;
}
.svc-num--hi {
    background: var(--blue-tint);
    border-color: var(--blue-border);
    color: var(--blue);
}
.svc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}
.svc-text {
    font-size: 0.87rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.svc-tags span {
    font-size: 0.73rem;
    font-weight: 500;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--text-soft);
}
.svc-card--hi .svc-tags span {
    background: rgba(255,255,255,0.7);
    border-color: var(--blue-border);
}

/* ═══════════════════════════════════════════
   REALISATIONS — Section cle
   ═══════════════════════════════════════════ */

/* Projet card */
.proj-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.proj-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-border);
    transform: translateY(-3px);
}

/* Screenshot / mockup zone */
.proj-visual {
    position: relative;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

/* Browser frame */
.browser-frame {
    padding: 0;
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 0.85rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}
.browser-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}
.browser-dot:nth-child(1) { background: #fca5a5; }
.browser-dot:nth-child(2) { background: #fcd34d; }
.browser-dot:nth-child(3) { background: #86efac; }
.browser-url {
    flex: 1;
    margin-left: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.browser-body {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-gray) 0%, #e2e8f0 100%);
    position: relative;
}
.browser-body .proj-icon {
    font-size: 2.8rem;
    color: var(--blue);
    opacity: 0.35;
}
.browser-body .proj-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

/* Phone frame */
.phone-frame {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, var(--bg-gray) 0%, #e2e8f0 100%);
}
.phone-shell {
    width: 160px;
    background: var(--text);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.18);
}
.phone-screen {
    background: var(--bg);
    border-radius: 18px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}
.phone-screen .proj-icon {
    font-size: 2rem;
    color: var(--blue);
    opacity: 0.4;
}
.phone-screen .proj-app-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-soft);
}
.phone-screen .proj-screenshot-phone {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
}

/* Category badge */
.proj-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid;
    z-index: 2;
    text-transform: uppercase;
}
.badge-saas    { background: var(--blue-tint); border-color: var(--blue-border); color: var(--blue); }
.badge-gaming  { background: #f5f3ff; border-color: #ddd6fe; color: #7c3aed; }
.badge-finance { background: #ecfdf5; border-color: #a7f3d0; color: #059669; }
.badge-sport   { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }

/* Project content */
.proj-body {
    padding: 1.3rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.proj-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.proj-type {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}
.proj-desc {
    font-size: 0.87rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.proj-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.proj-highlights li {
    font-size: 0.82rem;
    color: var(--text-soft);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
.proj-highlights li i {
    color: var(--blue);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Stack tags in project card */
.proj-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.proj-stack span {
    font-size: 0.71rem;
    font-weight: 500;
    padding: 0.16rem 0.5rem;
    border-radius: 4px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--text-soft);
}

/* Project link */
.proj-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

/* Featured project (full width) */
.proj-card--featured {
    flex-direction: row;
}
.proj-card--featured .proj-visual {
    width: 45%;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
}
.proj-card--featured .proj-body {
    padding: 1.6rem 1.8rem;
}
.proj-card--featured .proj-name {
    font-size: 1.3rem;
}
.proj-card--featured .browser-body {
    height: 100%;
    min-height: 280px;
}

/* Store badge inline */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.store-badge i { font-size: 0.85rem; }

/* ── A propos ─────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.5rem;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.55;
}
.check-list i { color: #16a34a; font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }

/* Stat blocks */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
.about-stat {
    flex: 1;
    min-width: 120px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.about-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── Methodologie ─────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.step-item.last-step { border-bottom: none; padding-bottom: 0; }
.step-n {
    width: 30px; height: 30px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    flex-shrink: 0;
    border: 1px solid;
}
.n1 { background: var(--blue-tint);  border-color: var(--blue-border);  color: var(--blue); }
.n2 { background: #ecfdf5; border-color: #a7f3d0; color: #16a34a; }
.n3 { background: #faf5ff; border-color: #e9d5ff; color: #7c3aed; }
.n4 { background: #fff7ed; border-color: #fed7aa; color: #d97706; }
.step-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.step-txt { font-size: 0.84rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* Stack panel */
.stack-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.stack-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.stack-line:hover { background: var(--bg-gray); }
.stack-line.last-line { border-bottom: none; }
.stack-cat {
    font-size: 0.71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    min-width: 108px;
    flex-shrink: 0;
}
.stack-chips { display: flex; flex-wrap: wrap; gap: 0.32rem; }
.stack-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.22rem 0.62rem;
    border-radius: 4px;
    background: var(--bg-gray);
    border: 1px solid var(--border-dark);
    color: var(--text-soft);
}

/* ── Contact ──────────────────────────────── */
.cinfo { display: flex; flex-direction: column; }
.cinfo-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-soft) !important;
    transition: color var(--transition);
}
.cinfo-row:last-child { border-bottom: none; }
.cinfo-row:hover { color: var(--blue) !important; }
.cinfo-row i { width: 16px; text-align: center; flex-shrink: 0; font-size: 1rem; }

.modes-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}
.modes-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.modes-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.72rem;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border-dark);
    color: var(--text-soft);
}

/* Formulaire */
.form-box {
    background: var(--bg);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.f-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 0.32rem;
}
.f-input {
    display: block;
    width: 100%;
    background: var(--bg-gray);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    padding: 0.58rem 0.85rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    resize: vertical;
}
.f-input::placeholder { color: var(--text-muted); }
.f-input:focus {
    background: var(--bg);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
textarea.f-input { min-height: 120px; }

.f-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.f-check input[type="checkbox"] {
    width: 15px; height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--blue);
    cursor: pointer;
    border-radius: 3px;
}

/* Alertes */
.f-alert {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    border-left: 3px solid;
    margin-top: 0.25rem;
}
.f-ok  { background: #f0fdf4; border-color: #16a34a; color: #15803d; }
.f-err { background: #fef2f2; border-color: #ef4444; color: #b91c1c; }

/* ── Footer ───────────────────────────────── */
.site-footer {
    background: var(--navy);
    padding: 1.4rem 0;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}
.footer-legal { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

/* ═══════════════════════════════════════════
   TARIFS — Section prix
   ═══════════════════════════════════════════ */
.sec-head--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.sec-head--center .sec-desc {
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    position: relative;
    height: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.price-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-border);
    transform: translateY(-3px);
}
.price-card--hi {
    background: var(--blue-tint);
    border-color: var(--blue);
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}
.price-card--hi:hover {
    box-shadow: 0 14px 32px rgba(37,99,235,0.18);
    border-color: var(--blue);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(37,99,235,0.3);
}

.price-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--blue-tint);
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
    border: 1px solid var(--blue-border);
}
.price-card--hi .price-icon {
    background: #fff;
}

.price-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.3rem;
    line-height: 1.3;
}
.price-tagline {
    font-size: 0.83rem;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0 0 1.1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.price-prefix {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.price-suffix {
    font-size: 0.82rem;
    color: var(--text-soft);
    font-weight: 500;
}

.price-sep {
    height: 1px;
    background: var(--border);
    margin: 0.25rem 0 1rem;
}
.price-card--hi .price-sep { background: var(--blue-border); }

.price-features-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.55;
}
.price-features i {
    color: var(--blue);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.price-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}
.price-cta.btn-outline-blue { justify-content: center; }

.price-footnote {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin: 0.7rem 0 0;
}

.price-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    padding: 1.4rem 1rem;
    margin: 3rem 0 1.2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.price-reassurance-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
}
.price-reassurance-item i {
    color: var(--blue);
    font-size: 1.05rem;
}

.price-fineprint {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   LEAD MAGNET — Section checklist PDF
   ═══════════════════════════════════════════ */
.sec--magnet {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-blue) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--blue-border);
}

.magnet-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(12, 31, 58, 0.10);
    overflow: hidden;
    display: grid;
    grid-template-columns: 5fr 6fr;
    max-width: 1080px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

/* ── Visuel : aperçu du PDF ── */
.magnet-visual {
    background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
    padding: 3rem 2.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.magnet-visual::before,
.magnet-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.magnet-visual::before {
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.07);
}
.magnet-visual::after {
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.045);
}

.magnet-mockup {
    position: relative;
    z-index: 1;
    background: #ffffff;
    color: var(--navy);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    transform: rotate(-2deg);
    margin-bottom: 1.5rem;
}
.magnet-mockup-eyebrow {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.magnet-mockup-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.85rem;
    color: var(--navy);
}
.magnet-mockup-line {
    height: 6px;
    background: var(--blue-tint);
    border-radius: 3px;
    margin-bottom: 6px;
}
.magnet-mockup-line:nth-child(4) { width: 88%; }
.magnet-mockup-line:nth-child(5) { width: 68%; }

.magnet-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.magnet-badge i { font-size: 0.95rem; }

/* ── Formulaire ── */
.magnet-form-wrap {
    padding: 3rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.magnet-form-wrap .sec-title { font-size: 1.5rem; margin-bottom: 0.55rem; }
.magnet-subtitle { margin-bottom: 1.2rem; max-width: none; }

.magnet-features {
    margin-bottom: 1.35rem;
}
.magnet-features li { font-size: 0.86rem; }

.magnet-input-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.magnet-input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
}
.magnet-btn {
    flex-shrink: 0;
    white-space: nowrap;
    justify-content: center;
}

.magnet-consent {
    margin: 0.85rem 0 0;
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.magnet-consent a {
    color: var(--blue);
    text-decoration: underline;
}

#checklist-alert { margin-top: 0.9rem; }

@media (max-width: 900px) {
    .magnet-card {
        grid-template-columns: 1fr;
    }
    .magnet-visual { padding: 2.5rem 2rem; }
    .magnet-form-wrap { padding: 2.25rem 1.75rem; }
    .magnet-btn { width: 100%; }
}

/* ── WhatsApp ─────────────────────────────── */
.wa-btn {
    position: fixed;
    width: 50px; height: 50px;
    bottom: 22px; right: 22px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 23px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
    z-index: 9999;
    transition: transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 6px 22px rgba(37,211,102,0.38);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
    .burger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--navy-mid);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.15rem;
    }
    .nav-menu.open { display: flex; }
    .nav-item { padding: 0.6rem 0.85rem; }
    .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; justify-content: center; }

    /* Featured project stacks vertically on tablet */
    .proj-card--featured {
        flex-direction: column;
    }
    .proj-card--featured .proj-visual {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .proj-card--featured .browser-body {
        height: 200px;
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 5rem; }
    .hero-h1 { font-size: 2.1rem; }
    .sec { padding: 3.5rem 0; }
    .footer-row { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
    .form-box { padding: 1.4rem; }
    .hc-badge { display: none; }
    .about-stats { gap: 0.75rem; }
    .about-stat { min-width: 90px; padding: 0.9rem; }
    .about-stat-num { font-size: 1.4rem; }
}
