/* =============================================================================
   Agence Web AGRASC — Feuille de style
   Thème « studio créatif » — ink violet, dégradé violet→rose, accent citron vert
   Typos : Space Grotesk (titres) · Inter (texte) · Space Mono (labels)
   ========================================================================== */

:root {
    --ink:        #0E0B16;
    --ink-2:      #15101F;
    --surface:    #1C1530;
    --surface-2:  #241A3D;
    --line:       rgba(255, 255, 255, .10);
    --line-soft:  rgba(255, 255, 255, .06);

    --text:       #ECE8F5;
    --muted:      #A89FBF;
    --muted-dim:  #756C8C;

    --violet:     #8B5CF6;
    --violet-lo:  #6D45E0;
    --pink:       #FF5C8A;
    --lime:       #C9F95B;
    --lime-ink:   #14210A;

    --grad:       linear-gradient(120deg, #8B5CF6 0%, #FF5C8A 100%);
    --grad-soft:  linear-gradient(120deg, rgba(139,92,246,.16), rgba(255,92,138,.16));

    --radius:     20px;
    --radius-sm:  12px;
    --radius-lg:  30px;

    --shadow:     0 30px 70px -30px rgba(0, 0, 0, .8);
    --shadow-glow:0 0 0 1px var(--line), 0 30px 80px -40px rgba(139, 92, 246, .55);

    --wrap:       1180px;
    --ease:       cubic-bezier(.22, 1, .36, 1);

    --ff-display: 'Space Grotesk', system-ui, sans-serif;
    --ff-body:    'Inter', system-ui, sans-serif;
    --ff-mono:    'Space Mono', ui-monospace, monospace;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--ff-body);
    background: var(--ink);
    color: var(--text);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Halo d'arrière-plan diffus */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(640px 480px at 12% -8%, rgba(139, 92, 246, .22), transparent 70%),
        radial-gradient(620px 520px at 95% 8%, rgba(255, 92, 138, .14), transparent 70%);
    pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.02em;
}

::selection { background: var(--violet); color: #fff; }

.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 999;
    background: var(--lime); color: var(--lime-ink);
    padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------- Boutons */
.btn {
    --b-bg: var(--surface);
    --b-fg: var(--text);
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    font-family: var(--ff-display);
    font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--b-bg); color: var(--b-fg);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.btn--grad {
    background: var(--grad); color: #fff; border-color: transparent;
    box-shadow: 0 16px 40px -16px rgba(255, 92, 138, .6);
}
.btn--grad:hover { box-shadow: 0 22px 50px -16px rgba(255, 92, 138, .75); }

.btn--lime { background: var(--lime); color: var(--lime-ink); border-color: transparent; }
.btn--lime:hover { box-shadow: 0 18px 44px -16px rgba(201, 249, 91, .55); }

.btn--ghost { background: transparent; color: var(--text); }
.btn--ghost:hover { border-color: var(--violet); background: var(--grad-soft); }

.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--mini { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ----------------------------------------------------------- Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(14, 11, 22, .72);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 8px 18px rgba(139, 92, 246, .4)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-text strong { font-family: var(--ff-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.03em; }
.brand-text em {
    font-family: var(--ff-mono); font-style: normal; font-size: .64rem;
    letter-spacing: .34em; text-transform: uppercase; color: var(--muted-dim); padding-left: 2px;
}

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a {
    padding: 9px 14px; border-radius: 999px;
    font-size: .95rem; font-weight: 500; color: var(--muted);
    transition: color .2s, background .2s;
}
.site-nav > a:hover { color: var(--text); }
.site-nav > a.actif { color: var(--text); background: var(--grad-soft); }

.nav-panier { position: relative; display: inline-flex; align-items: center; color: var(--muted); }
.nav-panier:hover { color: var(--text); }
.panier-compteur {
    position: absolute; top: 0; right: 2px;
    min-width: 17px; height: 17px; padding: 0 4px;
    display: none; align-items: center; justify-content: center;
    background: var(--lime); color: var(--lime-ink);
    font-family: var(--ff-mono); font-size: .64rem; font-weight: 700;
    border-radius: 999px;
}
.panier-compteur.actif { display: inline-flex; }
.nav-cta { margin-left: 6px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.ouvert span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.ouvert span:nth-child(2) { opacity: 0; }
.nav-toggle.ouvert span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------- Flash */
.flash {
    background: linear-gradient(90deg, rgba(201, 249, 91, .14), rgba(201, 249, 91, .04));
    border-bottom: 1px solid rgba(201, 249, 91, .25);
    color: var(--text); font-size: .92rem;
}
.flash .wrap { display: flex; align-items: center; gap: 10px; padding: 11px 0; }
.flash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

/* ----------------------------------------------------------- Labels / eyebrow */
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--ff-mono); font-size: .72rem;
    letter-spacing: .22em; text-transform: uppercase; color: var(--violet);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--violet); }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--violet); }

/* ----------------------------------------------------------- Sections */
section { position: relative; }
.sec { padding: 96px 0; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 18px 0 14px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }

.grad-text {
    background: var(--grad); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================== HERO */
.hero { padding: 70px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; margin: 22px 0 22px; }
.hero h1 .grad-text { display: inline; }
.hero-lede { font-size: 1.2rem; color: var(--muted); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat strong { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; display: block; }
.hero-stat span { font-size: .82rem; color: var(--muted-dim); font-family: var(--ff-mono); letter-spacing: .04em; }

/* Carte vitrine animée (mock navigateur) */
.hero-visual { position: relative; }
.browser {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.4deg);
    transition: transform .5s var(--ease);
}
.hero-visual:hover .browser { transform: rotate(0); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid var(--line-soft); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3252; }
.browser-bar i:nth-child(1) { background: var(--pink); }
.browser-bar i:nth-child(2) { background: var(--lime); }
.browser-bar i:nth-child(3) { background: var(--violet); }
.browser-url {
    margin-left: 10px; flex: 1; height: 24px; border-radius: 7px;
    background: var(--ink-2); font-family: var(--ff-mono); font-size: .68rem; color: var(--muted-dim);
    display: flex; align-items: center; padding: 0 12px; letter-spacing: .02em;
}
.browser-body { padding: 26px; display: grid; gap: 16px; }
.bb-hero { height: 96px; border-radius: var(--radius-sm); background: var(--grad); position: relative; overflow: hidden; }
.bb-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120px 80px at 80% 20%, rgba(255,255,255,.35), transparent); }
.bb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bb-card { height: 66px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line-soft); }
.bb-line { height: 11px; border-radius: 6px; background: var(--surface-2); }
.bb-line.s { width: 55%; }
.bb-line.m { width: 78%; }

.hero-badge {
    position: absolute; bottom: -18px; left: -16px;
    background: var(--ink-2); border: 1px solid var(--line); border-radius: 16px;
    padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
    animation: float 5s ease-in-out infinite;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.hero-badge strong { font-family: var(--ff-display); font-size: .95rem; }
.hero-badge span { font-size: .74rem; color: var(--muted-dim); display: block; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Bandeau marquee de techno */
.marquee { border-block: 1px solid var(--line-soft); overflow: hidden; padding: 20px 0; background: rgba(255,255,255,.015); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: slide 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: .16em;
    font-size: .92rem; color: var(--muted-dim); display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: "✦"; color: var(--violet); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================== Services / cartes */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px; position: relative; overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: var(--grad); opacity: 0; transition: opacity .35s;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-ico {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--grad-soft); border: 1px solid var(--line); color: var(--violet); margin-bottom: 20px;
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card-num { position: absolute; top: 24px; right: 26px; font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-dim); }

/* ============================================================== Process / étapes */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
    padding: 28px 24px; border-radius: var(--radius); background: var(--ink-2);
    border: 1px solid var(--line-soft); position: relative;
}
.step::before {
    counter-increment: step; content: "0" counter(step);
    font-family: var(--ff-mono); font-size: 1.05rem; color: var(--violet);
    display: block; margin-bottom: 16px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ============================================================== Bandeau dégradé */
.band {
    margin: 0; padding: 70px 0;
    background: var(--grad); position: relative; overflow: hidden;
}
.band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 85% 120%, rgba(255,255,255,.25), transparent); }
.band .wrap { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); max-width: 18ch; }
.band p { color: rgba(255,255,255,.85); margin-top: 10px; }

/* ============================================================== Réalisations / portfolio */
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
    background: var(--surface); position: relative; aspect-ratio: 4 / 3;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
    transition: transform .35s var(--ease);
}
.work::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: .9; transition: transform .5s var(--ease); }
.work:nth-child(1)::before { background: linear-gradient(160deg, #8B5CF6, #2a1c52); }
.work:nth-child(2)::before { background: linear-gradient(160deg, #FF5C8A, #4a1430); }
.work:nth-child(3)::before { background: linear-gradient(160deg, #2dd4bf, #0f3b39); }
.work:nth-child(4)::before { background: linear-gradient(160deg, #f59e0b, #4a2c05); }
.work:nth-child(5)::before { background: linear-gradient(160deg, #6366f1, #1e1b4b); }
.work:nth-child(6)::before { background: linear-gradient(160deg, #C9F95B, #2c3a09); }
.work:hover { transform: translateY(-6px); }
.work:hover::before { transform: scale(1.06); }
.work-tag, .work-info { position: relative; z-index: 1; }
.work-tag {
    align-self: flex-start; font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .14em;
    text-transform: uppercase; background: rgba(0,0,0,.32); color: #fff;
    padding: 6px 12px; border-radius: 999px; margin-bottom: auto;
}
.work-info h3 { color: #fff; font-size: 1.25rem; }
.work-info span { color: rgba(255,255,255,.82); font-size: .88rem; }

/* ============================================================== Boutique */
.shop-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.filtres { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.filtre {
    font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .06em;
    padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line);
    background: var(--surface); color: var(--muted); cursor: pointer; transition: all .2s;
}
.filtre:hover { color: var(--text); border-color: var(--violet); }
.filtre.actif { background: var(--grad); color: #fff; border-color: transparent; }

.offres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offre {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.offre:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.offre.populaire { border-color: rgba(139, 92, 246, .5); box-shadow: var(--shadow-glow); }
.offre-pop {
    position: absolute; top: 18px; right: 18px;
    font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
    background: var(--lime); color: var(--lime-ink); padding: 5px 11px; border-radius: 999px; font-weight: 700;
}
.offre-cat {
    font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--violet); margin-bottom: 14px;
}
.offre h3 { font-size: 1.34rem; margin-bottom: 10px; }
.offre-resume { color: var(--muted); font-size: .96rem; flex: 1; }
.offre-meta { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0; font-size: .8rem; color: var(--muted-dim); }
.offre-meta span { display: inline-flex; align-items: center; gap: 6px; }
.offre-prix { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.offre-prix b { font-family: var(--ff-display); font-size: 1.85rem; font-weight: 700; }
.offre-prix small { font-size: .78rem; color: var(--muted-dim); }
.offre-actions { display: flex; gap: 10px; }
.offre-actions .btn { flex: 1; }

/* ============================================================== Fiche produit */
.produit-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.fil { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-dim); margin-bottom: 26px; }
.fil a:hover { color: var(--violet); }
.produit-cat {
    font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--violet); margin-bottom: 14px; display: inline-block;
}
.produit-head h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.produit-lede { font-size: 1.18rem; color: var(--muted); margin-bottom: 30px; }
.produit-desc { color: var(--muted); margin-bottom: 32px; }
.produit-desc p { margin-bottom: 14px; }

.inclus-list { display: grid; gap: 12px; margin: 8px 0 0; list-style: none; padding: 0; }
.inclus-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.inclus-list svg { flex: none; margin-top: 3px; color: var(--lime); }

.bloc-titre { font-family: var(--ff-display); font-size: 1.2rem; margin: 0 0 16px; }

.pour-qui {
    margin-top: 30px; padding: 22px 24px; border-radius: var(--radius-sm);
    background: var(--grad-soft); border: 1px solid var(--line);
}
.pour-qui strong { display: block; font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); margin-bottom: 8px; }

/* Carte d'achat sticky */
.achat {
    position: sticky; top: 98px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow);
}
.achat-prix { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.achat-prix b { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; }
.achat-prix small { color: var(--muted-dim); }
.achat-ttc { font-size: .82rem; color: var(--muted-dim); margin-bottom: 22px; }
.achat-meta { display: grid; gap: 12px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.achat-meta div { display: flex; justify-content: space-between; font-size: .9rem; }
.achat-meta span { color: var(--muted-dim); }
.qte { display: flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 999px; width: max-content; margin-bottom: 16px; overflow: hidden; }
.qte button { width: 40px; height: 40px; background: none; border: 0; color: var(--text); font-size: 1.2rem; cursor: pointer; transition: background .2s; }
.qte button:hover { background: var(--surface-2); }
.qte input { width: 46px; text-align: center; background: none; border: 0; color: var(--text); font-family: var(--ff-mono); font-size: 1rem; }
.achat .btn { margin-bottom: 10px; }
.reassurance { display: grid; gap: 8px; margin-top: 18px; font-size: .82rem; color: var(--muted); }
.reassurance div { display: flex; gap: 9px; align-items: center; }
.reassurance svg { color: var(--lime); flex: none; }

/* ============================================================== Panier */
.panier-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.ligne {
    display: grid; grid-template-columns: 1fr auto auto; gap: 22px; align-items: center;
    padding: 22px 0; border-bottom: 1px solid var(--line-soft);
}
.ligne-info h3 { font-size: 1.12rem; margin-bottom: 5px; }
.ligne-info .offre-cat { margin: 0; }
.ligne-prix { font-family: var(--ff-display); font-weight: 600; white-space: nowrap; }
.ligne-suppr { background: none; border: 0; color: var(--muted-dim); cursor: pointer; font-size: .82rem; transition: color .2s; }
.ligne-suppr:hover { color: var(--pink); }

.recap {
    position: sticky; top: 98px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.recap h3 { font-size: 1.2rem; margin-bottom: 20px; }
.recap-row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--muted); font-size: .95rem; }
.recap-row.total { color: var(--text); font-size: 1.25rem; font-family: var(--ff-display); font-weight: 700; padding-top: 18px; margin-top: 8px; border-top: 1px solid var(--line-soft); }
.recap-row.total b { font-weight: 700; }

.vide { text-align: center; padding: 80px 0; }
.vide-ico { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 24px; background: var(--grad-soft); display: grid; place-items: center; color: var(--violet); }
.vide h2 { font-size: 1.7rem; margin-bottom: 12px; }
.vide p { color: var(--muted); margin-bottom: 26px; }

/* ============================================================== Formulaires */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .82rem; font-family: var(--ff-mono); letter-spacing: .04em; color: var(--muted); }
.field label .req { color: var(--pink); }
.field input, .field textarea, .field select {
    background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 14px 16px; color: var(--text); font-family: var(--ff-body); font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139, 92, 246, .22);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-full { grid-column: 1 / -1; }

/* ============================================================== Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
}
.contact-list { display: grid; gap: 4px; margin-top: 30px; }
.contact-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .ci-ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; color: var(--violet); }
.contact-item strong { font-family: var(--ff-display); display: block; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--muted); }
.contact-item a:hover { color: var(--violet); }

/* ============================================================== Pages légales */
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal .maj { font-family: var(--ff-mono); font-size: .8rem; color: var(--muted-dim); margin-bottom: 40px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 14px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.legal h3 { font-size: 1.08rem; margin: 22px 0 8px; color: var(--text); }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--violet); }
.legal a:hover { text-decoration: underline; }
.legal .data-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .92rem; }
.legal .data-table th, .legal .data-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--line-soft); }
.legal .data-table th { background: var(--ink-2); font-family: var(--ff-mono); font-weight: 400; color: var(--muted); width: 38%; }

/* ============================================================== À propos */
.about-hero { padding: 70px 0 30px; }
.about-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 16ch; margin: 22px 0; }
.about-lede { font-size: 1.25rem; color: var(--muted); max-width: 60ch; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--ink-2); }
.value .v-ico { color: var(--lime); margin-bottom: 16px; }
.value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: .96rem; }

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-big { padding: 30px 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-soft); }
.stat-big strong { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 700; display: block; }
.stat-big strong.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-big span { color: var(--muted); font-size: .9rem; }

/* ============================================================== Confirmation */
.confirm { text-align: center; max-width: 640px; margin-inline: auto; padding: 40px 0; }
.confirm-ico { width: 92px; height: 92px; margin: 0 auto 28px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: 0 20px 50px -20px rgba(255, 92, 138, .6); }
.confirm h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.confirm p { color: var(--muted); margin-bottom: 8px; }
.ref-box { display: inline-block; margin: 22px 0 30px; padding: 14px 26px; border-radius: var(--radius-sm); background: var(--ink-2); border: 1px dashed var(--violet); font-family: var(--ff-mono); font-size: 1.1rem; letter-spacing: .08em; }
.confirm-recap { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-top: 30px; }
.confirm-recap h3 { margin-bottom: 16px; }
.confirm-recap .recap-row { border: 0; }

/* ============================================================== Footer */
.site-footer { border-top: 1px solid var(--line-soft); margin-top: 40px; }
.footer-cta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
    padding: 60px 0; border-bottom: 1px solid var(--line-soft);
}
.footer-cta-kicker { font-family: var(--ff-mono); font-size: .78rem; color: var(--violet); letter-spacing: .1em; margin-bottom: 10px; }
.footer-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 60px 0 40px; }
.footer-pitch { color: var(--muted); margin: 18px 0; max-width: 32ch; }
.footer-legal-mini { font-size: .8rem; color: var(--muted-dim); line-height: 1.7; }
.brand--footer { margin-bottom: 4px; }
.footer-col h4 { font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 18px; font-weight: 400; }
.footer-col a, .footer-contact p { display: block; color: var(--muted); font-size: .94rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--violet); }
.footer-contact a:hover { color: var(--violet); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 26px 0 40px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { font-size: .82rem; color: var(--muted-dim); }

/* ============================================================== Reveal anim */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.vu { opacity: 1; transform: none; }

/* ============================================================== Responsive */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 460px; }
    .produit-grid { grid-template-columns: 1fr; }
    .achat { position: static; }
    .panier-grid { grid-template-columns: 1fr; }
    .recap { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .cards, .offres, .works, .values { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 74px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 4px;
        background: rgba(14, 11, 22, .97); backdrop-filter: blur(20px);
        padding: 18px 22px 28px; border-bottom: 1px solid var(--line);
        transform: translateY(-120%); transition: transform .4s var(--ease); z-index: 99;
    }
    .site-nav.ouvert { transform: translateY(0); }
    .site-nav > a { padding: 13px 14px; font-size: 1.05rem; }
    .nav-panier { padding: 13px 14px; }
    .nav-cta { margin: 8px 0 0; }
    .sec { padding: 70px 0; }
    .cards, .offres, .works, .values, .steps, .stats-band, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .ligne { grid-template-columns: 1fr auto; }
    .ligne-prix { grid-column: 2; }
    .hero-stats { gap: 22px; }
    .band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
