/* ═══ Apple Zone — design system AZ (fusion Big Drop + palette originale) ═══ */

/* ════════════════════════════════════════════════════
   AZ LIGHT — structure Big Drop, palette Apple Zone
   ════════════════════════════════════════════════════ */
:root {
    --bg: #faf7f1;
    --bg-alt: #f3ece0;
    --bg-card: #ffffff;
    --ink: #141519;
    --ink-soft: #3d3a35;
    --muted: #6b655c;
    --rule: #e4dccb;
    --rule-strong: rgba(20,21,25,.18);
    --red: #C8000A;
    --red-soft: rgba(200,0,10,.08);
    --white: #ffffff;
    --cream: #e4dccb;
    --border: rgba(20,21,25,.12);
    --motion: 220ms cubic-bezier(.2,.8,.2,1);
    --sans: 'Space Grotesk', system-ui, sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    /* overflow-x removed: was breaking position:sticky */
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* Cursor glow subtil */
.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200,0,10,.07), transparent 65%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%,-50%);
    transition: opacity .3s;
    mix-blend-mode: multiply;
}

/* ─── NAV raffinée, scroll-aware ─── */
.az-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250,247,241,.85);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--rule, rgba(20,21,25,.08));
    transition: transform .4s cubic-bezier(.4,0,.2,1), padding var(--motion), background .3s, border-color .3s;
    will-change: transform;
}
.az-nav.az-nav-hidden { transform: translateY(-120%); }
.az-nav.scrolled {
    padding: 13px 40px;
    background: rgba(250,247,241,.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom-color: var(--rule);
}

.az-nav-logo {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.04em;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    transition: transform var(--motion);
    text-transform: lowercase;
}
.az-nav-logo:hover { transform: translateY(-1px); }

/* ── Monogramme « a » ── */
.az-mark {
    position: relative;
    width: 34px; height: 34px;
    flex-shrink: 0;
    border-radius: 9px;
    background: linear-gradient(150deg, #2a2a33 0%, var(--ink) 70%);
    display: grid; place-items: center;
    box-shadow: 0 2px 7px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.10);
    transition: transform .4s cubic-bezier(.34,1.4,.4,1), box-shadow .3s;
}
.az-mark b {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    letter-spacing: -.05em;
    transform: translateY(.5px);
}
.az-mark-dot {
    position: absolute;
    top: 7px; right: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(200,0,10,.45);
    animation: az-mark-breath 2.6s ease-in-out infinite;
}
@keyframes az-mark-breath {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,0,10,.45); opacity: 1; }
    50%     { box-shadow: 0 0 0 5px rgba(200,0,10,0);   opacity: .7; }
}
.az-nav-logo:hover .az-mark {
    transform: rotate(-7deg) scale(1.06);
    box-shadow: 0 6px 16px rgba(200,0,10,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.az-nav.scrolled .az-mark { width: 30px; height: 30px; border-radius: 12px; }
.az-nav.scrolled .az-mark b { font-size: 18px; }

.az-nav-logo .brand { display: inline-flex; align-items: baseline; letter-spacing: -.02em; }
.az-nav-logo .logo-red {
    color: var(--red);
    font-weight: 700;
    letter-spacing: -.02em;
    transition: letter-spacing .3s;
}
.az-nav-logo:hover .logo-red { letter-spacing: .5px; }
/* Compact : sur très petit écran, garder seulement le monogramme */
@media (max-width: 420px) {
    .az-nav-logo .brand { display: none; }
}

/* Liens : style éditorial minimal (sans pastille), alignés à droite */
.az-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
}
.az-nav.scrolled .az-nav-links { background: none; border: none; }
.az-nav-links > a {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 0;
    transition: color .25s;
    position: relative;
    letter-spacing: -.005em;
}
.az-nav-links > a:not(.az-nav-cta)::after {
    content: "";
    position: absolute; left: 14px; right: 14px; bottom: 3px;
    height: 1.5px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .32s cubic-bezier(.2,.9,.3,1);
}
.az-nav-links > a:not(.az-nav-cta):hover { color: var(--ink); background: none; }
.az-nav-links > a:not(.az-nav-cta):hover::after,
.az-nav-links > a.active:not(.az-nav-cta)::after { transform: scaleX(1); }
.az-nav-links > a.active:not(.az-nav-cta) { color: var(--ink); background: none; }
.az-nav-links > a .pre-slash {
    color: var(--red);
    margin-right: 0;
    opacity: 0;
    transition: opacity .25s, margin .25s;
    display: inline-block;
}
.az-nav-links > a:hover .pre-slash,
.az-nav-links > a.active:not(.az-nav-cta) .pre-slash { opacity: 1; margin-right: 5px; }

.az-nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 9px 18px !important;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--motion);
    margin-left: 6px;
    box-shadow: 0 2px 6px rgba(200,0,10,.18);
}
.az-nav-cta:hover {
    background: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(20,21,25,.25);
}
.az-nav-cta .arrow { transition: transform .2s; display: inline-block; }
.az-nav-cta:hover .arrow { transform: translate(2px,-2px); }

/* Trigger mobile */
.az-nav-trigger {
    display: none;
    width: 40px; height: 40px;
    border: 1px solid var(--rule-strong);
    background: var(--bg-card);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    transition: all var(--motion);
}
.az-nav-trigger span { display: block; width: 16px; height: 1.5px; background: var(--ink); transition: .3s; border-radius: 2px; }
.az-nav-trigger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.az-nav-trigger.open span:nth-child(2) { opacity: 0; }
.az-nav-trigger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu mobile fullscreen */
.az-nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 99;
    padding: 88px 24px 40px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}
.az-nav-mobile.open { display: flex; animation: fadeUp .3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-10px); } }
.az-nav-mobile a {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -.02em;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.az-nav-mobile a::after { content: '↗'; color: var(--muted); font-size: 20px; }
.az-nav-mobile a:hover { color: var(--red); }
.az-nav-mobile a:hover::after { color: var(--red); }
.az-nav-mobile .az-nav-mobile-cta {
    margin-top: 32px;
    background: var(--red);
    color: #fff;
    border-radius: 100px;
    padding: 18px 24px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    font-size: 16px;
    font-weight: 600;
}
.az-nav-mobile .az-nav-mobile-cta::after { content: '→'; color: #fff; }

/* ─── HERO ─── */
.az-hero {
    min-height: 92vh;
    padding: 140px 32px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.az-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(200,0,10,.08), transparent 55%);
    pointer-events: none;
    filter: blur(40px);
}
.az-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(20,21,25,.04), transparent 55%);
    pointer-events: none;
    filter: blur(40px);
}

.az-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }

.az-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--rule);
    border-radius: 100px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em;
    margin-bottom: 40px;
    font-family: var(--mono);
}
.az-hero-tagline::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: breath 2s infinite; }

.az-hero h1 {
    font-family: var(--sans);
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.055em;
    margin-bottom: 40px;
    max-width: 1200px;
    color: var(--ink);
}
.az-hero h1 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
    display: inline-block;
}
.az-hero h1 .outlined {
    -webkit-text-stroke: 2px var(--ink);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.az-hero-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: end;
    margin-top: 56px;
}
.az-hero-desc {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.6;
}
.az-hero-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.az-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--motion);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--sans);
}
.az-btn-primary { background: var(--red); color: #fff; }
.az-btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20,21,25,.18); }
.az-btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.az-btn-ghost:hover { border-color: var(--ink); background: var(--bg-card); }
.az-btn .arrow { transition: transform .2s; }
.az-btn:hover .arrow { transform: translate(3px, -3px); }

/* ─── MANIFESTO ─── */
.az-manifesto {
    padding: 120px 32px;
    background: var(--bg-card);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.az-manifesto-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 96px;
    align-items: start;
}
.az-manifesto-left { position: sticky; top: 120px; }
.az-manifesto-label {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.az-manifesto-text {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 48px;
}
.az-manifesto-text em { font-family: var(--serif); font-style: italic; color: var(--ink); font-weight: 400; }
.az-manifesto-sig {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.az-manifesto-sig .sig-line {
    width: 48px;
    height: 1px;
    background: var(--red);
}
.az-manifesto-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.az-fact {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 28px 32px;
    transition: all var(--motion);
}
.az-fact:hover {
    border-color: var(--red);
    transform: translateX(6px);
    box-shadow: -4px 8px 24px rgba(200,0,10,.08);
}
.az-fact-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.az-fact-val {
    font-family: var(--sans);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 10px;
}
.az-fact-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ─── SECTION header ─── */
.az-section {
    padding: 120px 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.az-section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 80px;
    align-items: end;
}
.az-section-label {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.az-section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--red);
}
.az-section-title {
    font-family: var(--sans);
    font-size: clamp(44px, 5.5vw, 88px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.04em;
    color: var(--ink);
}
.az-section-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ink); }
.az-section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 480px;
}

/* ─── SHOWCASE CARDS ─── */
.az-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.az-show-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.2,.9,.3,1);
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    cursor: pointer;
    min-height: 240px;
}
.az-show-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-soft), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}
.az-show-card:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(20,21,25,.08); }
.az-show-card:hover::before { opacity: 1; }

.az-show-card .bg-text {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 3vw, 52px);
    line-height: 1;
    color: rgba(200,0,10,.06);
    font-weight: 400;
    pointer-events: none;
    transition: color .4s;
    max-width: 60%;
    text-align: right;
}
.az-show-card:hover .bg-text { color: rgba(200,0,10,.1); }

.az-show-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .06em;
    width: fit-content;
    margin-bottom: 14px;
}
.az-show-card h3 {
    font-family: var(--sans);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 8px;
    max-width: 100%;
    position: relative;
    z-index: 2;
    color: var(--ink);
}
.az-show-card h3 em { font-family: var(--serif); font-style: italic; color: var(--ink); font-weight: 400; }
.az-show-card .desc {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 18px;
    flex: 1;
    position: relative;
    z-index: 2;
}
.az-show-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    width: fit-content;
    transition: all var(--motion);
    position: relative;
    z-index: 2;
}
.az-show-card:hover .az-show-link { color: var(--red); border-bottom-color: var(--red); padding-left: 6px; }

/* ─── QUOTE ─── */
.az-quote {
    padding: 140px 32px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.az-quote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(44px, 6vw, 96px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--ink);
}
.az-quote p span {
    -webkit-text-stroke: 1.5px var(--ink);
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.az-quote p em { font-family: var(--serif); font-style: italic; color: var(--ink); }
.az-quote .cite {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}
.az-quote .cite::before, .az-quote .cite::after { content: ''; width: 30px; height: 1px; background: var(--rule-strong); }

/* ─── NUMBERS ─── */
.az-numbers {
    padding: 120px 32px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.az-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
}
.az-number-item { padding: 0 32px; border-right: 1px solid var(--rule); }
.az-number-item:first-child { padding-left: 0; }
.az-number-item:last-child { border-right: none; padding-right: 0; }
.az-number-val {
    font-family: var(--sans);
    font-size: clamp(72px, 8.5vw, 148px);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .9;
    margin-bottom: 20px;
    color: var(--ink);
}
.az-number-val em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
    font-size: .5em;
    font-weight: 400;
    
}
.az-number-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.az-number-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 220px;
}

/* ─── PROCESS ─── */
.az-process {
    padding: 120px 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.az-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    margin-top: 48px;
}
.az-step {
    padding: 48px 32px 48px 0;
    border-right: 1px solid var(--rule);
}
.az-step:last-child { border-right: none; padding-right: 0; }
.az-step .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: .15em;
    margin-bottom: 24px;
}
.az-step h4 {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    color: var(--ink);
}
.az-step p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ─── CTA final ─── */
.az-cta-final {
    padding: 160px 32px 140px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.az-cta-final::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(200,0,10,.06), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.az-cta-final h2 {
    font-family: var(--sans);
    font-size: clamp(56px, 9vw, 140px);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.055em;
    margin-bottom: 40px;
    position: relative;
    color: var(--ink);
}
.az-cta-final h2 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
    font-weight: 400;
    display: block;
}

/* ─── FOOTER (sombre par contraste) ─── */
.az-footer {
    padding: 80px 32px 40px;
    background: var(--ink);
    color: rgba(255,255,255,.85);
}
.az-footer-inner { max-width: 1400px; margin: 0 auto; }
.az-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.az-footer h5 { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 20px; }
.az-footer ul { list-style: none; }
.az-footer ul li { margin-bottom: 10px; color: rgba(255,255,255,.75); font-size: 14px; }
.az-footer ul li a { color: rgba(255,255,255,.85); font-size: 14px; transition: color .2s; }
.az-footer ul li a:hover { color: var(--red); }
.az-footer-logo {
    font-family: var(--sans);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -.04em;
    margin-bottom: 16px;
    color: #fff;
}
.az-footer-logo em { font-family: var(--serif); font-style: italic; color: #e4dccb; font-weight: 400; }
.az-footer-logo .logo-red { color: var(--red); font-weight: 700; }
.az-footer-desc { color: rgba(255,255,255,.6); font-size: 14px; max-width: 360px; line-height: 1.6; }
.az-footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,.4);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ─── Reveal animations ─── */
.az-reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.2,.9,.3,1), transform .9s cubic-bezier(.2,.9,.3,1); }
.az-reveal.visible { opacity: 1; transform: none; }
.az-reveal.d1 { transition-delay: .1s; }
.az-reveal.d2 { transition-delay: .2s; }
.az-reveal.d3 { transition-delay: .3s; }
.az-reveal.d4 { transition-delay: .4s; }

@media (max-width: 1100px) {
    .az-showcase { grid-template-columns: repeat(2, 1fr); }
}
/* Responsive */
@media (max-width: 900px) {
    .az-nav { padding: 18px 20px; }
    .az-nav-links a:not(.az-nav-cta) { display: none; }
        .az-nav-links { display: none; }
    .az-nav-trigger { display: flex; }
    .az-nav { padding: 14px 20px; }
    .az-nav.scrolled { padding: 10px 20px; }
    .az-hero { padding: 120px 20px 64px; min-height: auto; }
    .az-hero-footer { grid-template-columns: 1fr; gap: 28px; }
    .az-section, .az-numbers, .az-process, .az-cta-final { padding-left: 20px; padding-right: 20px; }
    .az-section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
        .az-manifesto { padding: 72px 20px; }
    .az-manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
    .az-manifesto-left { position: static; }
    .az-manifesto-text { font-size: 24px; }
    .az-showcase { grid-template-columns: 1fr; }
    .az-show-card { min-height: auto; padding: 22px; }
    .az-numbers-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
    .az-number-item { padding: 24px 16px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
    .az-numbers-grid .az-number-item:nth-child(2n) { border-right: none; }
    .az-numbers-grid .az-number-item:nth-last-child(-n+2) { border-bottom: none; }
    .az-process-grid { grid-template-columns: 1fr 1fr; }
    .az-step { padding: 28px 16px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
    .az-process-grid .az-step:nth-child(2n) { border-right: none; }
    .az-process-grid .az-step:nth-last-child(-n+2) { border-bottom: none; }
    .az-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
    .az-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .az-quote { padding: 80px 20px; }
    .cursor-glow { display: none; }
}

/* ─── Language switcher (intégré à la nav) ─── */
.az-nav-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
}
.az-nav.scrolled .az-nav-lang { background: none; border: none; }
.az-lang-thumb { display: none; }
.az-nav-lang .lang-btn {
    position: relative;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 6px 7px;
    background: none !important;
    border: none;
    border-radius: 0;
    cursor: pointer;
    color: var(--muted);
    transition: color var(--motion);
}
.az-nav-lang .lang-btn + .lang-btn::before {
    content: "\00b7";
    position: absolute;
    left: -3px; top: 50%;
    transform: translateY(-50%);
    color: var(--light);
    font-weight: 400;
}
.az-nav-lang .lang-btn::after {
    content: "";
    position: absolute; left: 7px; right: 7px; bottom: 2px;
    height: 1.5px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--motion);
}
.az-nav-lang .lang-btn:hover { color: var(--ink); }
.az-nav-lang .lang-btn.active-l,
.az-nav-mobile-lang .lang-btn.active-l { display: none; }
.az-nav-lang .lang-btn.active-l + .lang-btn::before,
.az-nav-mobile-lang .lang-btn.active-l + .lang-btn::before { content: none; }

.az-nav-mobile-lang {
    display: flex;
    gap: 6px;
    margin-top: 40px;
    justify-content: center;
}
.az-nav-mobile-lang .lang-btn {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--rule);
    border-radius: 100px;
    cursor: pointer;
    color: var(--ink);
    letter-spacing: .1em;
}

/* Correction responsive : afficher trigger mobile, masquer links/lang desktop */
@media (max-width: 900px) {
    .az-nav-links, .az-nav-lang { display: none !important; }
    .az-nav-trigger { display: flex !important; }
}


/* ═══ OVERRIDES GLOBAUX — appliquer design AZ aux anciennes pages ═══ */

/* ─── Body / fond global ─── */
body { background: var(--bg, #faf7f1); color: var(--ink, var(--ink)); }

/* ─── page-hero (utilisé sur réparation, boutique, prix, rachat, etc.) ─── */
.page-hero {
    background: var(--bg, #faf7f1) !important;
    padding-top: 100px !important;
    position: relative;
    overflow: hidden;
}
.page-hero::before, .page-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
}
.page-hero::before {
    top: 10%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(200,0,10,.08), transparent 55%);
    filter: blur(40px);
}
.page-hero::after {
    display: block !important;
    inset: auto 0 0 0 !important;
    height: 1px !important;
    background: var(--rule, #e4dccb) !important;
}
.page-hero-inner { position: relative; z-index: 1; padding: 60px 32px 72px; max-width: 1400px; }
.page-hero h1 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: clamp(48px, 7vw, 112px) !important;
    font-weight: 500 !important;
    line-height: .92 !important;
    letter-spacing: -.05em !important;
    color: var(--ink, var(--ink)) !important;
    margin-bottom: 28px !important;
}
.page-hero h1 span {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: var(--red, #C8000A) !important;
}
.page-hero p {
    font-size: 17px !important;
    color: var(--ink-soft, var(--ink-soft)) !important;
    max-width: 560px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}
.page-hero .eyebrow {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 12px !important;
    color: var(--muted, var(--muted)) !important;
    letter-spacing: .15em !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--rule, #e4dccb);
    border-radius: 100px;
    margin-bottom: 32px;
}
.page-hero .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red, #C8000A);
    animation: breath 2.2s infinite;
}

/* ─── Section titles ─── */
.section-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: clamp(38px, 5vw, 72px) !important;
    font-weight: 500 !important;
    line-height: .98 !important;
    letter-spacing: -.04em !important;
    color: var(--ink, var(--ink)) !important;
}
.section-title span, .section-title em {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    color: var(--red, #C8000A) !important;
    font-weight: 400 !important;
}
/* Retirer le red dot précédent qui collait */
.section-title:not(.no-dot)::after,
.hero h1:not(.no-dot)::after,
.page-hero h1:not(.no-dot)::after { display: none; content: none; }

.section-sub {
    font-size: 17px !important;
    color: var(--ink-soft, var(--ink-soft)) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    max-width: 560px !important;
}

/* ─── Eyebrow universel ─── */
.eyebrow {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 12px !important;
    color: var(--muted, var(--muted)) !important;
    letter-spacing: .15em !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    margin-bottom: 18px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--red, #C8000A);
    display: inline-block;
}

/* ─── Boutons ─── */
.btn {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    padding: 14px 28px !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
    transition: all var(--motion) !important;
}
.btn-red {
    background: var(--red, #C8000A) !important;
    color: #fff !important;
    box-shadow: none !important;
}
.btn-red:hover {
    background: var(--ink, var(--ink)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(20,21,25,.18) !important;
}
.btn-dark {
    background: var(--ink, var(--ink)) !important;
    color: #fff !important;
}
.btn-dark:hover {
    background: var(--red, #C8000A) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,0,10,.25) !important;
}
.btn-outline {
    background: transparent !important;
    color: var(--ink, var(--ink)) !important;
    border: 1px solid var(--rule-strong, var(--border)) !important;
}
.btn-outline:hover {
    border-color: var(--ink, var(--ink)) !important;
    background: var(--bg-card, #fff) !important;
    transform: translateY(-2px);
}

/* ─── Page-hero-actions : layout flex avec gap ─── */
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ─── Sections avec background cream/white ─── */
section.section { padding: 100px 32px !important; }
section.section[style*="background:var(--white)"],
section.section[style*="background:#fff"] {
    background: var(--bg, #faf7f1) !important;
}
section.section[style*="background:var(--cream)"] {
    background: var(--bg-card, #fff) !important;
}
section.section[style*="background:var(--ink)"] {
    background: var(--ink, var(--ink)) !important;
    color: #fff;
}
section.section[style*="background:var(--ink)"] h2,
section.section[style*="background:var(--ink)"] .section-title { color: #fff !important; }
section.section[style*="background:var(--ink)"] .section-sub,
section.section[style*="background:var(--ink)"] p { color: rgba(255,255,255,.7) !important; }

/* ─── WHY section (dark, déjà bien mais alignement typo) ─── */
.why {
    background: var(--ink, var(--ink)) !important;
}
.why-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: clamp(40px, 5vw, 72px) !important;
    font-weight: 500 !important;
    letter-spacing: -.04em !important;
    line-height: .98 !important;
}
.why-sub { color: rgba(255,255,255,.55) !important; font-weight: 400 !important; }
.why-num {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: clamp(60px, 7vw, 108px) !important;
    font-weight: 400 !important;
    letter-spacing: -.06em !important;
}
.why-num em {
    font-family: 'Instrument Serif', serif !important;
    color: var(--red, #C8000A) !important;
    font-size: .5em !important;
    font-weight: 400 !important;
}

/* ─── Rachat banner ─── */
.rachat-banner {
    background: var(--ink, var(--ink)) !important;
    border-radius: 24px !important;
}
.rachat-banner h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -.04em !important;
}

/* ─── Cartes de service svc-item ─── */
.svc-grid {
    background: var(--rule, #e4dccb) !important;
    border-radius: 20px !important;
    gap: 1px !important;
}
.svc-item {
    background: var(--bg, #faf7f1) !important;
    transition: all var(--motion) !important;
}
.svc-item:hover {
    background: var(--bg-card, #fff) !important;
    transform: translateY(-2px);
}
.svc-icon {
    background: rgba(200,0,10,.08) !important;
    border-radius: 12px !important;
}
.svc-item h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    letter-spacing: -.02em !important;
}

/* ─── Repair cards, prix cards, prod cards ─── */
.repair-card, .price-card, .prod-card, .ent-card, .info-block, .form-card {
    border-radius: 20px !important;
    background: var(--bg-card, #fff) !important;
    border-color: var(--rule, #e4dccb) !important;
    transition: all var(--motion) !important;
}
.repair-card:hover, .prod-card:hover, .ent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08) !important;
    border-color: var(--red, #C8000A) !important;
}
.repair-card h3, .price-card-head h3, .prod-name, .ent-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -.02em !important;
}
.repair-type, .prod-cat {
    font-family: 'JetBrains Mono', monospace !important;
    letter-spacing: .12em !important;
}
.repair-price, .prod-price {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -.03em !important;
}

/* ─── Filtres / cat-btn / filter-btn / model-btn ─── */
.filter-btn, .model-btn, .cat-btn, .tab-btn {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 13px !important;
    border-radius: 100px !important;
    padding: 8px 18px !important;
}
.filter-btn.active, .model-btn.active {
    background: var(--ink, var(--ink)) !important;
    border-color: var(--ink, var(--ink)) !important;
}

/* ─── Price card table ─── */
.price-card-head h3 { font-size: 19px !important; }
.price-table td:last-child {
    font-family: 'Space Grotesk', sans-serif !important;
    letter-spacing: -.02em !important;
}

/* ─── Garantie box ─── */
.garantie-box {
    background: var(--ink, var(--ink)) !important;
    border-radius: 24px !important;
}
.garantie-box h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -.02em !important;
}

/* ─── Process-step ─── */
.process-step {
    border-radius: 16px !important;
    background: var(--bg-card, #fff) !important;
    border-color: var(--rule, #e4dccb) !important;
}
.step-num {
    background: var(--red, #C8000A) !important;
    border-radius: 8px !important;
    font-family: 'JetBrains Mono', monospace !important;
}

/* ─── Wizard (rachat) ─── */
.wizard-wrap {
    border-radius: 24px !important;
    border-color: var(--rule, #e4dccb) !important;
    background: var(--bg-card, #fff) !important;
}
.wizard-head h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -.02em !important;
}
.wizard-step-label {
    font-family: 'JetBrains Mono', monospace !important;
    color: var(--red, #C8000A) !important;
}

/* ─── Tabs sticky bar ─── */
.tabs-bar, .cat-bar, .filters-bar {
    background: var(--bg, #faf7f1) !important;
    border-bottom-color: var(--rule, #e4dccb) !important;
}

/* ─── CTA dark ─── */
.cta-dark {
    background: var(--ink, var(--ink)) !important;
}
.cta-grid h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -.04em !important;
}

/* ─── Focus accessibilité ─── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--red, #C8000A);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── Mobile overrides ─── */
@media(max-width:768px){
    .page-hero-inner { padding: 40px 20px 56px; }
    .page-hero h1 { font-size: clamp(38px, 10vw, 64px) !important; }
    section.section { padding: 64px 20px !important; }
}


/* ═══ FIX INLINE — texte blanc sur fond clair (pages réparation, entreprises, prix, rachat) ═══ */

/* Targeter les styles inline qui utilisent des couleurs blanches dans .page-hero */
.page-hero [style*="color:rgba(255,255,255"],
.page-hero [style*="color: rgba(255,255,255"],
.page-hero [style*="color:var(--white)"],
.page-hero [style*="color: var(--white)"],
.page-hero [style*="color:#fff"],
.page-hero [style*="color: #fff"] {
    color: var(--ink-soft, var(--ink-soft)) !important;
}

/* Eyebrow spécifique */
.page-hero .eyebrow[style*="rgba(255,255,255"] {
    color: var(--muted, var(--muted)) !important;
}

/* Boutons outline dans page-hero : bordures beige au lieu de blanc semi-trans */
.page-hero .btn-outline[style*="border-color:rgba(255,255,255"],
.page-hero .btn-outline[style*="color:rgba(255,255,255"] {
    color: var(--ink, var(--ink)) !important;
    border-color: var(--rule-strong, var(--border)) !important;
}
.page-hero .btn-outline[style*="rgba(255,255,255"]:hover {
    background: var(--bg-card, #fff) !important;
    border-color: var(--ink, var(--ink)) !important;
}

/* Liens tel: avec texte blanc underlined dans page-hero */
.page-hero a[style*="rgba(255,255,255"] {
    color: var(--ink-soft, var(--ink-soft)) !important;
}

/* Divs avec fond sombre ink à l'intérieur de page-hero : transformer en carte claire */
.page-hero div[style*="background:var(--ink)"],
.page-hero div[style*="background: var(--ink)"],
.page-hero div[style*="background:#0"] {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    color: var(--ink, var(--ink)) !important;
}
.page-hero div[style*="background:var(--ink)"] * ,
.page-hero div[style*="background: var(--ink)"] * {
    color: var(--ink, var(--ink)) !important;
}
.page-hero div[style*="background:var(--ink)"] strong,
.page-hero div[style*="background:var(--ink)"] span[style*="color:var(--white)"] {
    color: var(--red, #C8000A) !important;
}

/* Stats blocks (containers flex dans hero) — quand les nombres sont en blanc */
.page-hero div[style*="color:var(--white)"][style*="font-size:28px"],
.page-hero div[style*="color:var(--white)"][style*="font-size: 28px"] {
    color: var(--ink, var(--ink)) !important;
}

/* ─── Sections intentionally dark (background:var(--ink)) : garder sombres MAIS harmoniser typo ─── */
section[style*="background:var(--ink)"] .eyebrow,
section[style*="background: var(--ink)"] .eyebrow,
.cta-dark .eyebrow {
    color: rgba(255,255,255,.45) !important;
}

/* Rachat wizard result box (fond ink intentionnel) : OK */
#result-box, .estimate-result, .garantie-box {
    /* Ceux-ci restent sombres avec texte blanc — pas de fix nécessaire */
}

/* ─── Entreprises : la section CTA en bas est dark (keep), mais hero pas ─── */
/* Le hero entreprises a inline background cream ou ink ? Vérifier */
/* S'il utilise .page-hero, les overrides ci-dessus s'appliquent */

/* ─── Rachat banner sur accueil (intentionnellement sombre) ─── */
.rachat-banner, .rachat-banner * {
    /* garder */
}


/* ═══ FOOTER — typographie nouveau design ═══ */
footer .footer-brand .footer-logo {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: -.04em !important;
}
footer .footer-brand .footer-logo span {
    color: var(--red, #C8000A) !important;
    }
footer .footer-desc {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--border) !important;
}
footer .footer-col h4 {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: .15em !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--red, #C8000A) !important;
}
footer .footer-col ul li a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}
footer .footer-contact a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
}
footer .footer-contact a strong {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 1.05em;
}
footer .footer-bottom .copyright {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}
footer .footer-bottom .legal,
footer .footer-bottom-right {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 11px !important;
    letter-spacing: .05em !important;
    color: var(--border) !important;
}
footer .footer-bottom-right .disclaimer {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    color: var(--border) !important;
}


/* ═══ CONTACT PAGE — override ct-* classes vers nouveau design ═══ */

/* Hero contact : passer du noir au clair */
.ct-hero {
    background: var(--bg, #faf7f1) !important;
    color: var(--ink) !important;
    padding: 120px 32px 64px !important;
    position: relative;
    overflow: hidden;
}
.ct-hero::before {
    content: ''!important;
    position: absolute;
    top: 10%; right: -15%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(200,0,10,.08), transparent 55%) !important;
    filter: blur(40px);
    pointer-events: none;
}
.ct-hero::after { display: none !important; }
.ct-hero .wrap { position: relative; z-index: 1; }

.ct-hero .eyebrow {
    font-family: 'JetBrains Mono', monospace !important;
    color: var(--muted, var(--muted)) !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    letter-spacing: .15em !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--rule, #e4dccb);
    border-radius: 100px;
    margin-bottom: 32px;
    text-align: left !important;
}
.ct-hero .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red, #C8000A);
    animation: breath 2.2s infinite;
}

.ct-hero h1 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: clamp(48px, 7vw, 112px) !important;
    font-weight: 500 !important;
    letter-spacing: -.05em !important;
    line-height: .92 !important;
    color: var(--ink) !important;
    margin: 14px 0 24px !important;
    text-align: left !important;
}
.ct-hero h1 span {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    color: var(--red, #C8000A) !important;
    font-weight: 400 !important;
}

.ct-hero .lede {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 17px !important;
    color: var(--ink-soft, var(--ink-soft)) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    max-width: 560px !important;
    margin: 0 0 40px !important;
    text-align: left !important;
}

/* Grid du hero : passer en left aligned */
.ct-hero .wrap { text-align: left !important; }
.ct-primary-ctas { max-width: 640px !important; margin-left: 0 !important; margin-right: 0 !important; }

/* Gros CTAs : adapter au clair */
.ct-big-btn {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 20px !important;
    padding: 28px 24px !important;
    color: var(--ink) !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    text-align: left !important;
}
.ct-big-btn:hover {
    border-color: var(--red, #C8000A) !important;
    background: var(--bg-card, #fff) !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08) !important;
}
.ct-big-email:hover { border-color: var(--red, #C8000A) !important; }
.ct-big-sms:hover { border-color: var(--ink, var(--ink)) !important; background: var(--bg-card, #fff) !important; }
.ct-big-btn .ic { font-size: 32px !important; }
.ct-big-btn .lbl {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--ink, var(--ink)) !important;
    letter-spacing: -.02em !important;
}
.ct-big-btn .hint {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--muted, var(--muted)) !important;
    font-size: 13px !important;
}

/* Phone fallback en bas */
.ct-phone-fallback {
    color: var(--muted, var(--muted)) !important;
    text-align: left !important;
    font-size: 13px !important;
    margin-top: 8px !important;
}
.ct-phone-fallback a {
    color: var(--ink, var(--ink)) !important;
    font-weight: 600 !important;
}
.ct-phone-fallback a:hover { color: var(--red, #C8000A) !important; }

/* Cards (Visite / Horaires / Contact rapide) */
.ct-cards {
    margin-top: 64px !important;
    position: relative;
    z-index: 2;
}
.ct-card {
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 20px !important;
    background: var(--bg-card, #fff) !important;
    transition: all var(--motion) !important;
}
.ct-card:hover {
    border-color: var(--red, #C8000A) !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,.06) !important;
}
.ct-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: -.02em !important;
}
.ct-card h3 .ico { font-size: 24px !important; }

/* Hours today */
.ct-hours-row.today {
    background: linear-gradient(90deg, rgba(200,0,10,.06), transparent) !important;
}
.ct-hours-row.today .day,
.ct-hours-row.today .time {
    color: var(--red, #C8000A) !important;
    font-weight: 700;
}

/* Action buttons dans la 3e carte */
.ct-action-btn {
    font-family: 'Space Grotesk', sans-serif !important;
    border-radius: 12px !important;
    border-color: var(--rule, #e4dccb) !important;
    transition: all var(--motion) !important;
}
.ct-action-btn:hover {
    border-color: var(--red, #C8000A) !important;
    transform: translateX(3px);
}


/* ═══ LEGAL PAGES — refonte vers design AZ clair ═══ */

/* Heros pages légales : passer de sombre à clair */
.wr-hero, .pp-hero, .md-hero, .ck-hero {
    background: var(--bg, #faf7f1) !important;
    color: var(--ink, var(--ink)) !important;
    padding: 120px 32px 72px !important;
    position: relative;
    overflow: hidden;
}
.wr-hero::before, .pp-hero::before, .ck-hero::before, .md-hero::before {
    content: '' !important;
    position: absolute;
    top: 10%; right: -15%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(200,0,10,.08), transparent 55%) !important;
    filter: blur(40px);
    pointer-events: none;
    display: block !important;
}
.wr-hero::after, .pp-hero::after, .ck-hero::after, .md-hero::after { display: none !important; }
.wr-hero .wrap, .pp-hero .wrap, .ck-hero .wrap, .md-hero .wrap {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

/* Eyebrow */
.wr-hero .eyebrow, .pp-hero .eyebrow, .ck-hero .eyebrow, .md-hero .eyebrow {
    font-family: 'JetBrains Mono', monospace !important;
    color: var(--muted, var(--muted)) !important;
    background: var(--bg-card, #fff);
    border: 1px solid var(--rule, #e4dccb);
    border-radius: 100px;
    padding: 8px 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: .15em !important;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.wr-hero .eyebrow::before, .pp-hero .eyebrow::before, .ck-hero .eyebrow::before, .md-hero .eyebrow::before {
    content: '' !important;
    width: 6px !important; height: 6px !important;
    border-radius: 50%;
    background: var(--red, #C8000A);
    animation: breath 2.2s infinite;
    display: inline-block !important;
}

/* Hero h1 */
.wr-hero h1, .pp-hero h1, .ck-hero h1, .md-hero h1 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: clamp(48px, 7vw, 112px) !important;
    font-weight: 500 !important;
    letter-spacing: -.05em !important;
    line-height: .92 !important;
    color: var(--ink, var(--ink)) !important;
    margin: 14px 0 24px !important;
}
.wr-hero h1 span, .pp-hero h1 span, .ck-hero h1 span, .md-hero h1 span {
    color: var(--red, #C8000A) !important;
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

/* Hero p */
.wr-hero p, .pp-hero p, .ck-hero p, .md-hero p {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 17px !important;
    color: var(--ink-soft, var(--ink-soft)) !important;
    max-width: 640px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}
.wr-hero p em, .pp-hero p em, .ck-hero p em, .md-hero p em {
    font-style: italic;
    color: var(--ink, var(--ink));
}

/* Badges (wr-badges, pp-badges) : transparents sur clair */
.wr-badges, .pp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.wr-badge, .pp-badge {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    color: var(--ink-soft, var(--ink-soft)) !important;
    border-radius: 100px;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-family: 'Space Grotesk', sans-serif !important;
}
.wr-badge strong, .pp-badge strong {
    color: var(--red, #C8000A) !important;
    font-weight: 700;
}

/* Stats hero (wr-hero-stats) */
.wr-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 32px;
    max-width: 720px;
}
.wr-stat {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 12px;
    padding: 18px 20px;
}
.wr-stat .big {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: var(--ink, var(--ink)) !important;
    letter-spacing: -.04em !important;
}
.wr-stat .lbl {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 11px !important;
    color: var(--muted, var(--muted)) !important;
    text-transform: uppercase;
    letter-spacing: .1em !important;
}

/* Mode switchers (court/intégrale) */
.pp-mode-switch, .wr-mode-switch {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
}
.pp-mode-btn, .wr-mode-btn {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--muted, var(--muted)) !important;
}
.pp-mode-btn.active, .wr-mode-btn.active {
    background: var(--ink, var(--ink)) !important;
    color: #fff !important;
}

/* Accordion sections (pp-section, wr-section) */
.pp-section, .wr-section {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 16px !important;
    transition: all var(--motion) !important;
}
.pp-section[open], .wr-section[open] {
    border-color: var(--red, #C8000A) !important;
    box-shadow: 0 8px 24px rgba(200,0,10,.06) !important;
}
.pp-section summary, .wr-section summary {
    font-family: 'Space Grotesk', sans-serif !important;
}
.pp-section-title, .wr-section-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -.02em !important;
}
.pp-num, .wr-num {
    font-family: 'JetBrains Mono', monospace !important;
    background: var(--red, #C8000A) !important;
}

/* Body des accordions */
.pp-section-body, .wr-section-body {
    color: var(--ink-soft, var(--ink-soft)) !important;
}
.pp-section-body h4, .wr-section-body h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--ink, var(--ink)) !important;
}

/* Summary cards (pp-cards, pp-card) */
.pp-summary-intro {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
}
.pp-summary-intro p {
    color: var(--ink-soft, var(--ink-soft)) !important;
}
.pp-summary-intro strong {
    color: var(--red, #C8000A) !important;
}
.pp-card {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 16px !important;
    transition: all var(--motion) !important;
}
.pp-card:hover {
    border-color: var(--red, #C8000A) !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,.06) !important;
}
.pp-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
}

/* Contact cards (pp-contact) */
.pp-contact {
    background: linear-gradient(135deg, var(--bg-card, #fff) 0%, var(--bg, #faf7f1) 100%) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
}

/* Benefits warranty */
.wr-benefit {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
}
.wr-benefit:hover {
    border-color: var(--red, #C8000A) !important;
    box-shadow: 0 12px 32px rgba(200,0,10,.08) !important;
}

/* CTA buttons in legal */
.pp-btn-primary, .wr-btn-primary {
    background: var(--red, #C8000A) !important;
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    border-radius: 100px !important;
}
.pp-btn-primary:hover, .wr-btn-primary:hover {
    background: var(--ink, var(--ink)) !important;
}
.pp-btn-secondary, .wr-btn-secondary {
    background: var(--bg-card, #fff) !important;
    color: var(--ink, var(--ink)) !important;
    border: 1px solid var(--rule-strong, var(--border)) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    border-radius: 100px !important;
}

/* Mes-données form card */
.md-card {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 20px !important;
}
.md-card h2, .md-card .md-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
}

/* Cookies */
.ck-content {
    color: var(--ink-soft) !important;
}
.ck-content h2, .ck-content h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--ink, var(--ink)) !important;
}
.ck-category {
    background: var(--bg-card, #fff) !important;
    border: 1px solid var(--rule, #e4dccb) !important;
    border-radius: 16px !important;
}

/* ═══════════════════════════════════════════════════
   APPLE ZONE — V2 HOMEPAGE
   ═══════════════════════════════════════════════════ */

/* HERO V2 — meta line + marquee bottom */
.az-hero-v2 .az-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(0,0,0,.04);
  border-radius: 999px;
}
.az-hero-v2 .hm-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2bbd5e;
  box-shadow: 0 0 0 4px rgba(43,189,94,.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 4px rgba(43,189,94,.18); }
  50% { box-shadow: 0 0 0 8px rgba(43,189,94,.30); }
}

/* MARQUEE — défilante de devices Apple */
.az-marquee {
  position: relative;
  margin-top: 80px;
  margin-left: -40px; margin-right: -40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, var(--ink) 8%, var(--ink) 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, var(--ink) 8%, var(--ink) 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee-scroll 45s linear infinite;
  font-family: var(--title);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  color: var(--ink);
  transition: color .25s;
}
.m-item:hover { color: var(--ink); }
.m-sep { color: var(--red); opacity: .6; font-weight: 400; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 800px) {
  .az-marquee { margin-top: 50px; padding: 20px 0; }
  .marquee-track { gap: 16px; animation-duration: 32s; }
}

/* ═══════════════════════════════════════════════════
   STATS — nouvelle section fusion manifesto+numbers
   ═══════════════════════════════════════════════════ */
.az-stats {
  padding: 140px 40px 120px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.az-stats::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,0,10,.18) 0%, transparent 70%);
  pointer-events: none;
}
.az-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.az-stats-text .az-section-label {
  color: var(--red);
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.az-stats-title {
  font-family: var(--title);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 32px;
  color: var(--white);
}
.az-stats-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #e4dccb;
}
.az-stats-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 540px;
}
.az-stats-lead em {
  color: var(--white);
  font-style: italic;
  font-weight: 600;
}

.az-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.az-stat {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  transition: all var(--motion);
}
.az-stat:hover { border-top-color: var(--red); transform: translateY(-3px); }
.az-stat-num {
  font-family: var(--title);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.az-stat-num em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #e4dccb;
  font-size: 0.65em;
  margin-left: 4px;
}
.az-stat-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .az-stats-inner { grid-template-columns: 1fr; gap: 56px; }
  .az-stats { padding: 100px 32px 80px; }
}
@media (max-width: 600px) {
  .az-stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .az-stats { padding: 70px 24px 60px; }
}

/* ═══════════════════════════════════════════════════
   SHOWCASE V2 — grille éditoriale asymétrique
   ═══════════════════════════════════════════════════ */
.az-showcase-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.az-show-feature {
  grid-row: span 2;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  min-height: 580px;
  padding: 48px 44px !important;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%) !important;
  color: var(--white) !important;
}
.az-show-feature .bg-text {
  font-size: clamp(140px, 18vw, 220px) !important;
  color: rgba(255,255,255,.04) !important;
  bottom: -40px !important;
}
.az-show-feature h3 { color: var(--white) !important; font-size: 32px !important; }
.az-show-feature h3 em { font-family: var(--serif); font-style: italic; color: var(--ink); font-weight: 400; }
.az-show-feature .desc { color: rgba(255,255,255,.72) !important; }
.az-show-feature .az-show-tag {
  background: rgba(255,255,255,.10) !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.az-show-feature .az-show-link { color: var(--red) !important; }

.show-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.show-price {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--red);
  background: rgba(200,0,10,.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.az-show-feature .show-price {
  color: var(--white) !important;
  background: var(--red) !important;
}

.az-show-half {
  min-height: 270px !important;
}

@media (max-width: 1024px) {
  .az-showcase-v2 { grid-template-columns: 1fr; }
  .az-show-feature { grid-row: auto; min-height: 420px; padding: 40px 32px !important; }
  .az-show-half { min-height: 220px !important; }
}

/* ═══════════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════════ */
.az-testimonials {
  padding: 140px 40px 120px;
  background: var(--cream);
  position: relative;
}
.az-testimonials-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.az-testimonials-head .az-section-label {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
}
.az-testimonials-head .az-section-title {
  font-family: var(--title);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
}
.az-testimonials-head .az-section-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.az-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.az-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 30px 28px;
  transition: all var(--motion);
  position: relative;
}
.az-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--ink);
}
.az-tm-stars {
  color: #FFB400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.az-tm-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}
.az-tm-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.az-tm-author strong {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.az-tm-author span {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
}
.az-tm-cta {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .az-testimonials-grid { grid-template-columns: 1fr; max-width: 560px; }
  .az-testimonials { padding: 90px 24px 80px; }
}

/* ═══════════════════════════════════════════════════
   PROCESS V2 — sticky title + cards
   ═══════════════════════════════════════════════════ */
.az-process-v2 {
  padding: 120px 40px 120px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}
.az-process-v2 .az-process-sticky {
  position: sticky;
  top: 110px;
}
.az-process-v2 .az-section-label {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
}
.az-process-v2 .az-section-title {
  font-family: var(--title);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 24px;
}
.az-process-v2 .az-section-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.az-process-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 380px;
}

.az-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.az-process-v2 .az-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: all var(--motion);
}
.az-process-v2 .az-step:hover {
  padding-left: 12px;
  border-top-color: var(--red);
}
.az-process-v2 .az-step:last-child {
  border-bottom: 1px solid var(--border);
}
.az-process-v2 .az-step .num {
  font-family: var(--title);
  font-size: 38px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -.03em;
}
.az-process-v2 .az-step h4 {
  font-family: var(--title);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.az-process-v2 .az-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.az-process-v2 .az-step p strong { color: var(--ink); }

@media (max-width: 1024px) {
  .az-process-v2 { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .az-process-v2 .az-process-sticky { position: static; }
}

/* ═══════════════════════════════════════════════════
   CTA V2 — final, big number BG
   ═══════════════════════════════════════════════════ */
.az-cta-v2 {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.az-cta-v2 .cta-bg-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--title);
  font-size: clamp(280px, 38vw, 520px);
  font-weight: 800;
  color: rgba(0,0,0,.025);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.az-cta-v2 .cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.az-cta-v2 .az-section-label {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
}
.az-cta-v2 h2 {
  font-family: var(--title);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 28px;
  color: var(--ink);
}
.az-cta-v2 h2 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.cta-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
}
.az-cta-v2 .az-hero-cta-group {
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .az-cta-v2 { padding: 80px 24px; }
}

/* ═══════════════════════════════════════════════════
   Reveal animations
   ═══════════════════════════════════════════════════ */
.az-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.az-reveal.visible { opacity: 1; transform: translateY(0); }
.az-reveal.d1.visible { transition-delay: .08s; }
.az-reveal.d2.visible { transition-delay: .16s; }
.az-reveal.d3.visible { transition-delay: .24s; }
.az-reveal.d4.visible { transition-delay: .32s; }

/* ═══════════════════════════════════════════════════
   APPLE ZONE — V2 SERVICES BENTO
   ═══════════════════════════════════════════════════ */

.az-services-bento {
  padding: 120px 40px 100px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.bento-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.bento-head .az-section-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 14px;
}
.bento-head .az-section-title {
  font-family: var(--title);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0;
}
.bento-head .az-section-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* Tabs visuels (statiques pour l'instant — pas de filtrage) */
.bento-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,.04);
  padding: 5px;
  border-radius: 999px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.bento-tabs span {
  padding: 9px 16px;
  border-radius: 999px;
  cursor: default;
  color: var(--muted);
  transition: all var(--motion);
  white-space: nowrap;
}
.bento-tabs .bt-active {
  background: var(--ink);
  color: var(--white);
}

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 18px;
}

/* Carte de base */
.bento {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  transform-style: preserve-3d;
  will-change: transform;
  border: 1px solid var(--border);
}
.bento::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.08) 100%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 1;
}
.bento:hover { transform: translateY(-6px) scale(1.005); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.bento:hover::after { opacity: 1; }

/* Positions du bento */
.bento-iphone  { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-mac     { grid-column: 3; grid-row: 1; }
.bento-ipad    { grid-column: 3; grid-row: 2; }
.bento-special { grid-column: 1; grid-row: 3; }
.bento-shop    { grid-column: 2 / 4; grid-row: 3; }

/* META (top row) */
.bento-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 12px;
}
.bento-cat {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.06);
}
.bento-cat-bright { background: var(--red); color: var(--white); border-color: transparent; }
.bento-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--title);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.bento-price .bp-from {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.bento-price .bp-amount { font-size: 56px; letter-spacing: -.04em; }
.bento-price .bp-currency { font-size: 0.5em; vertical-align: top; margin-left: 2px; }
.bento-price.compact .bp-amount,
.bento-price.compact > span:last-child { font-size: 28px; }

.bento-badge {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--red);
  font-weight: 400;
}
.bento-discount {
  font-family: var(--title);
  font-weight: 800;
  font-size: 28px;
  color: var(--red);
  letter-spacing: -.02em;
}

/* BODY */
.bento-body { position: relative; z-index: 2; }
.bento-title {
  font-family: var(--title);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}
.bento-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.bento-title-md {
  font-family: var(--title);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 18px 0 10px;
}
.bento-tag {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.bento-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 420px;
}

/* CTA bottom */
.bento-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-top: 18px;
}
.bento-link {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.bento-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 18px;
  margin-left: auto;
  transition: transform var(--motion), background .25s;
}
.bento:hover .bento-arrow {
  background: var(--red);
  transform: translate(4px, -4px) rotate(-12deg);
}

/* ── VARIANTES PAR CARTE ── */

/* iPhone : noir profond, accent rouge, glow */
.bento-iphone {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1518 100%);
  color: var(--white);
  border: none;
}
.bento-iphone .bento-cat { background: rgba(255,255,255,.10); color: var(--white); border-color: rgba(255,255,255,.10); }
.bento-iphone .bento-price { color: var(--white); }
.bento-iphone .bento-price .bp-from { color: rgba(255,255,255,.5); }
.bento-iphone .bento-price .bp-currency { color: var(--red); }
.bento-iphone .bento-title { color: var(--white); font-size: clamp(72px, 9vw, 130px); font-weight: 800; letter-spacing: -.05em; }
.bento-iphone .bento-tag { color: rgba(255,255,255,.55); }
.bento-iphone .bento-desc { color: rgba(255,255,255,.72); }
.bento-iphone .bento-link { color: var(--white); }
.bento-iphone .bento-arrow { background: var(--red); }
.bento-iphone:hover .bento-arrow { background: var(--white); color: var(--ink); }
.bento-iphone .bento-glow {
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(circle at 70% 30%, rgba(200,0,10,.45) 0%, transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(50,30,200,.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  opacity: .85;
  transition: opacity .5s;
}
.bento-iphone:hover .bento-glow { opacity: 1; }

/* Mac : bleu froid */
.bento-mac {
  background: linear-gradient(135deg, #f0f4ff 0%, #d6dfff 100%);
}
.bento-mac .bento-cat { background: rgba(60,80,180,.10); border-color: rgba(60,80,180,.18); color: var(--ink); }

/* iPad : violet pastel */
.bento-ipad {
  background: linear-gradient(135deg, #f6efff 0%, #e6d5ff 100%);
}
.bento-ipad .bento-cat { background: rgba(120,60,200,.10); border-color: rgba(120,60,200,.18); color: var(--ink); }

/* Spécialité — sombre intense, vibe expert */
.bento-special {
  background: linear-gradient(135deg, #0e0e14 0%, #1a0e2a 100%);
  color: var(--white);
  border: none;
}
.bento-special .bento-title-md { color: var(--white); }
.bento-special .bento-desc { color: rgba(255,255,255,.7); }
.bento-special .bento-link { color: var(--white); }
.bento-special .bento-arrow { background: var(--white); color: var(--ink); }
.bento-special:hover .bento-arrow { background: var(--red); color: var(--white); }

/* Boutique — crème chaud */
.bento-shop {
  background: linear-gradient(135deg, #fff7e6 0%, #ffe9c2 100%);
  border: none;
}
.bento-shop .bento-cat { background: rgba(180,120,30,.12); border-color: rgba(180,120,30,.20); color: #6e4d10; }
.bento-shop .bento-discount { color: #b86d10; }
.bento-shop-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.bento-shop-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.bento-shop .bento-title { font-size: clamp(32px, 3.5vw, 48px); }

/* ── FORMES DÉCORATIVES (CSS-drawn devices) ── */

/* iPhone shape */
.bento-shape-phone {
  position: absolute;
  right: -90px; bottom: -120px;
  width: 320px; height: 600px;
  background: linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
  border-radius: 60px;
  border: 8px solid #1a1a20;
  box-shadow: inset 0 0 0 4px var(--ink), 0 30px 80px rgba(200,0,10,.18);
  transform: rotate(-12deg);
  z-index: 0;
  pointer-events: none;
  opacity: .85;
}
.bento-shape-phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: var(--ink);
  border-radius: 999px;
}
.bento-shape-phone::after {
  content: "";
  position: absolute;
  inset: 30px 14px 40px;
  background: linear-gradient(180deg, #2a1828 0%, #1a0815 70%, var(--ink) 100%);
  border-radius: 38px;
  box-shadow: inset 0 1px 20px rgba(200,0,10,.3);
}

/* Mac shape — wide rectangle with chin */
.bento-shape-mac {
  position: absolute;
  right: -80px; bottom: -70px;
  width: 280px; height: 180px;
  background: linear-gradient(180deg, #c5cfe6 0%, #8a96b8 100%);
  border-radius: 14px 14px 4px 4px;
  border: 6px solid var(--ink);
  z-index: 0;
  pointer-events: none;
  opacity: .55;
  transform: rotate(-6deg);
}
.bento-shape-mac::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(180deg, #6a78a8 0%, #4a5888 100%);
  border-radius: 4px;
}
.bento-shape-mac::after {
  content: "";
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 12px;
  background: var(--ink);
  border-radius: 0 0 6px 6px;
}

/* iPad shape */
.bento-shape-ipad {
  position: absolute;
  right: -50px; bottom: -100px;
  width: 220px; height: 290px;
  background: linear-gradient(180deg, #e6d8ff 0%, #c8b4ee 100%);
  border-radius: 24px;
  border: 8px solid var(--ink);
  z-index: 0;
  pointer-events: none;
  opacity: .55;
  transform: rotate(-8deg);
}
.bento-shape-ipad::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: linear-gradient(180deg, #8a6cb8 0%, #6a4ca0 100%);
  border-radius: 4px;
}

/* Spécialité — circuit pattern */
.bento-shape-circuit {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(200,0,10,.35) 0%, transparent 4%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.15) 0%, transparent 3%),
    radial-gradient(circle at 35% 75%, rgba(255,255,255,.10) 0%, transparent 3%),
    radial-gradient(circle at 75% 80%, rgba(200,0,10,.25) 0%, transparent 4%),
    linear-gradient(45deg, transparent 48%, rgba(200,0,10,.12) 49%, rgba(200,0,10,.12) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,.05) 49%, rgba(255,255,255,.05) 51%, transparent 52%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  z-index: 0;
  pointer-events: none;
  opacity: .8;
}

/* Boutique — sparkle pattern */
.bento-shape-spark {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 88% 25%, #FFD480 0%, transparent 4%),
    radial-gradient(circle at 92% 75%, #FFB400 0%, transparent 3%),
    radial-gradient(circle at 75% 50%, #FFD480 0%, transparent 2.5%),
    radial-gradient(circle at 82% 88%, #FFB400 0%, transparent 2%);
  z-index: 0;
  pointer-events: none;
  opacity: .9;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px 220px 220px 320px;
    gap: 14px;
  }
  .bento-iphone  { grid-column: 1 / 3; grid-row: 1; }
  .bento-mac     { grid-column: 1; grid-row: 2; }
  .bento-ipad    { grid-column: 2; grid-row: 2; }
  .bento-special { grid-column: 1; grid-row: 3; }
  .bento-shop    { grid-column: 1 / 3; grid-row: 4; }
  .bento-iphone .bento-title { font-size: 72px; }
  .bento-shape-phone { width: 220px; height: 420px; right: -70px; }
}

@media (max-width: 1024px) {
  .bento-head { grid-template-columns: 1fr; gap: 18px; }
  .bento-tabs { justify-self: start; }
}

@media (max-width: 600px) {
  .az-services-bento { padding: 70px 20px 70px; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 360px repeat(4, 240px);
    gap: 12px;
  }
  .bento-iphone, .bento-mac, .bento-ipad, .bento-special, .bento-shop {
    grid-column: 1; grid-row: auto;
  }
  .bento { padding: 24px 22px; border-radius: 24px; }
  .bento-title { font-size: 38px !important; }
  .bento-iphone .bento-title { font-size: 56px !important; }
  .bento-price .bp-amount { font-size: 36px; }
  .bento-shape-phone { width: 180px; height: 340px; right: -50px; bottom: -90px; }
  .bento-shape-mac, .bento-shape-ipad { display: none; }
  .bento-shop-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ── TILT effect (CSS-only, on JS-detected attribute) ── */
.bento[data-tilt] { transform-style: preserve-3d; }

/* ═══════════════════════════════════════════════════
   PROCESS — version clean horizontale (V3)
   ═══════════════════════════════════════════════════ */

.az-process-clean {
  padding: 130px 40px 120px;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--white);
}

/* HEAD */
.pc-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}
.pc-label {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
}
.pc-title {
  font-family: var(--title);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  color: var(--ink);
}
.pc-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.pc-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* TRACK — 4 colonnes alignées avec ligne horizontale */
.pc-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-top: 40px;
}
.pc-line {
  position: absolute;
  top: 80px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}

/* STEP */
.pc-step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.pc-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 80px;
  font-weight: 400;
  color: var(--red);
  line-height: .9;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
.pc-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  margin-bottom: 28px;
  position: relative;
}
.pc-dot.pc-dot-end {
  background: var(--ink);
}
.pc-step-title {
  font-family: var(--title);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pc-step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 280px;
}
.pc-step-desc strong { color: var(--ink); font-weight: 600; }
.pc-meta {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: rgba(0,0,0,.04);
  padding: 6px 12px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pc-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 28px;
  }
  .pc-line { display: none; }
  .pc-num { font-size: 64px; }
}

@media (max-width: 600px) {
  .az-process-clean { padding: 80px 24px 70px; }
  .pc-head { margin-bottom: 56px; }
  .pc-track {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 0;
  }
  .pc-num { font-size: 56px; margin-bottom: 12px; }
  .pc-dot { margin-bottom: 18px; }
  .pc-step-desc { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   APPLE ZONE — DESIGN SYSTEM 2026 / Composants partagés
   ═══════════════════════════════════════════════════ */

/* ── 1. EYEBROW (tagline standard) ── */
.az-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(0,0,0,.04);
  border-radius: 999px;
  margin-bottom: 32px;
}
.az-eyebrow .ae-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2bbd5e;
  box-shadow: 0 0 0 4px rgba(43,189,94,.18);
  animation: ae-pulse 2.4s ease-in-out infinite;
}
@keyframes ae-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(43,189,94,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(43,189,94,.30); }
}
/* Sur fond sombre */
.az-stats-dark .az-eyebrow,
.bento-iphone .az-eyebrow,
.bento-special .az-eyebrow,
[data-theme="dark"] .az-eyebrow {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}

/* ── 2. STATS STRIP ── */
.az-stats-strip {
  padding: 64px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.az-stats-light { background: var(--cream); }
.az-stats-dark  { background: var(--ink); color: var(--white); border-color: rgba(255,255,255,.08); }

.ass-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ass-item {
  border-left: 1px solid var(--border);
  padding-left: 22px;
}
.az-stats-dark .ass-item { border-left-color: rgba(255,255,255,.15); }
.ass-item:first-child { border-left: none; padding-left: 0; }

.ass-num {
  font-family: var(--title);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.ass-num em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 0.65em;
  margin-left: 4px;
}
.az-stats-dark .ass-num { color: var(--white); }

.ass-lbl {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.az-stats-dark .ass-lbl { color: rgba(255,255,255,.55); }

@media (max-width: 800px) {
  .az-stats-strip { padding: 48px 24px; }
  .ass-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .ass-item:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ── 3. STICKY MOBILE BOTTOM BAR ── */
.az-sticky-mobile {
  display: none; /* desktop hidden */
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 290;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  gap: 4px;
}
@media (max-width: 900px) {
  .az-sticky-mobile { display: flex; }
  body { padding-bottom: 90px; }
}
.asm-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s;
  min-width: 0;
}
.asm-btn:active { background: rgba(0,0,0,.06); }
.asm-tel { background: var(--red); color: var(--white); }
.asm-tel:active { background: var(--red-d); }
.asm-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  font-size: 16px;
  flex-shrink: 0;
}
.asm-tel .asm-ico { background: rgba(255,255,255,.20); }
.asm-sms .asm-ico, .asm-map .asm-ico { background: rgba(0,0,0,.06); }
.asm-txt {
  display: flex; flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
}
.asm-line1 {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .75;
}
.asm-line2 {
  font-family: var(--title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .asm-btn { padding: 8px 10px; gap: 8px; }
  .asm-line2 { font-size: 12px; }
}

/* ── 4. CTA FINAL — déjà stylé via .az-cta-v2 (existant) ── */
/* Ajouts pour les 3 boutons en row */
.az-cta-v2 .az-hero-cta-group { gap: 12px; flex-wrap: wrap; }
.az-cta-v2 .az-btn { flex-shrink: 0; }

/* Adaptation pour pages avec sticky mobile (évite chevauchement) */
@media (max-width: 900px) {
  .az-cta-final, .az-cta-v2, .az-stats-strip:last-child {
    margin-bottom: 80px;
  }
}

/* ═══════════════════════════════════════════════════
   PAGE RÉPARATION V2 — additions
   ═══════════════════════════════════════════════════ */

/* HERO V2 — version harmonisée */
.rp-hero-v2 { min-height: 88vh; padding: 140px 40px 80px; max-width: 1320px; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; }
.rp-hero-v2 .rp-hero-inner { max-width: 1100px; }
.rp-hero-v2 .rp-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); padding: 8px 16px;
  background: rgba(0,0,0,.04); border-radius: 999px;
  margin-bottom: 32px;
}
.rp-hero-v2 .rp-status .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #2bbd5e; box-shadow: 0 0 0 4px rgba(43,189,94,.18);
  animation: rp-pulse 2.4s ease-in-out infinite;
}
.rp-hero-v2 .rp-status .dot.off {
  background: var(--border); box-shadow: 0 0 0 4px rgba(204,204,204,.25);
  animation: none;
}
.rp-hero-v2 .rp-status .sep { color: var(--light); }
@keyframes rp-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(43,189,94,.18); }
  50% { box-shadow: 0 0 0 8px rgba(43,189,94,.30); }
}

.rp-hero-v2 .rp-title {
  font-family: var(--title);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.04em;
  margin: 0 0 32px;
  color: var(--ink);
}
.rp-hero-v2 .rp-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.rp-hero-v2 .rp-hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 600px;
  margin: 0 0 36px;
}
.rp-hero-v2 .rp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .rp-hero-v2 { padding: 80px 24px 40px; }
}

/* PRICING SECTION */
.rp-pricing {
  padding: 100px 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
}
.rp-pricing-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.rp-pricing-head .az-section-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--red);
  font-weight: 600; white-space: nowrap;
  padding-bottom: 14px;
}
.rp-pricing-head .az-section-title {
  font-family: var(--title);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.03em; margin: 0;
}
.rp-pricing-head .az-section-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--ink);
}

.rp-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rp-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--border);
  background: #fff;
  transition: all var(--motion);
}
.rp-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

/* Variantes par catégorie */
.rp-card-screen   { background: linear-gradient(135deg, #fff 0%, #fef0f1 100%); }
.rp-card-battery  { background: linear-gradient(135deg, #fff 0%, #fff7e6 100%); }
.rp-card-port     { background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%); }
.rp-card-mac      { background: linear-gradient(135deg, #fff 0%, #f6efff 100%); }

.rpc-pic {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.rpc-emoji { line-height: 1; }
.rpc-tag {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--muted); margin-bottom: 10px;
}
.rpc-body h3 {
  font-family: var(--title);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.rpc-body h3 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--ink);
}
.rpc-desc {
  font-size: 14px; line-height: 1.65;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 360px;
}
.rpc-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 18px;
  border-top: 1px dashed rgba(0,0,0,.10);
  gap: 16px;
}
.rpc-price {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.rpc-from {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 600;
  color: var(--muted);
}
.rpc-amount {
  font-family: var(--title);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
}
.rpc-cur {
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 2px;
  color: var(--red);
}
.rpc-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  transition: all var(--motion);
}
.rp-card:hover .rpc-arrow {
  background: var(--red);
  transform: translate(4px, -4px) rotate(-12deg);
}

@media (max-width: 800px) {
  .rp-pricing-head { grid-template-columns: 1fr; gap: 18px; }
  .rp-bento { grid-template-columns: 1fr; }
  .rp-pricing { padding: 70px 24px 50px; }
}

/* OEM TRANSPARENCY */
.rp-oem {
  padding: 100px 40px 80px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rp-oem-head {
  max-width: 1320px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.rp-oem-head .az-section-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink);
  font-weight: 600; padding-bottom: 14px;
}
.rp-oem-head .az-section-title {
  font-family: var(--title);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.03em; margin: 0;
}
.rp-oem-head .az-section-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--ink);
}

.rp-oem-body {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.rp-oem-body p { margin-bottom: 22px; }
.rp-oem-body p:last-child { margin-bottom: 0; }
.rp-oem-body strong { color: var(--ink); font-weight: 600; }
.rp-oem-body a {
  color: var(--ink); font-weight: 600;
  border-bottom: 1px dashed var(--red);
}
.rp-oem-body a:hover { border-bottom-style: solid; }

@media (max-width: 800px) {
  .rp-oem { padding: 70px 24px 60px; }
  .rp-oem-head { grid-template-columns: 1fr; gap: 14px; }
}

/* MICRO-soudure : ajuste rp-micro-text et rp-micro-h2 si déjà existants */
.rp-micro-h2 {
  font-family: var(--title);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  margin: 16px 0 24px;
  color: var(--ink);
}
.rp-micro-h2 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.rp-micro-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 540px;
}
/* ═════════════════════════════════════════════════════════════
   RÉPARATION — WOW EDITION (composants propres à cette page)
   ═════════════════════════════════════════════════════════════ */

/* ─── HERO cinématographique ─────────────────────────────── */
.rp-hero{
  position:relative;
  padding:140px 32px 80px;
  min-height:88vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  background:var(--bg,#faf7f1);
}
.rp-hero::before{
  content:"";
  position:absolute; inset:auto -10% -30% auto;
  width:70vw; height:70vw;
  background:radial-gradient(circle at center, rgba(200,0,10,.10), transparent 60%);
  filter:blur(20px);
  pointer-events:none;
  animation:rp-pulse 8s ease-in-out infinite;
}
@keyframes rp-pulse{ 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }

.rp-status{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 14px 8px 10px;
  background:rgba(20,21,25,.04);
  border:1px solid rgba(20,21,25,.08);
  border-radius:100px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink,var(--ink));
  width:fit-content;
  margin-bottom:40px;
}
.rp-status .dot{
  width:8px; height:8px; border-radius:50%;
  background:<?= $is_open ? '#1f9d55' : '#C8000A' ?>;
  box-shadow:0 0 0 0 <?= $is_open ? 'rgba(31,157,85,.6)' : 'rgba(200,0,10,.6)' ?>;
  animation:rp-heart 2s ease-in-out infinite;
}
@keyframes rp-heart{ 0%,100%{box-shadow:0 0 0 0 rgba(31,157,85,.5)} 50%{box-shadow:0 0 0 8px rgba(31,157,85,0)} }
.rp-status .sep{ opacity:.3 }

.rp-title{
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:clamp(56px, 12vw, 180px);
  line-height:.88;
  letter-spacing:-.04em;
  color:var(--ink,var(--ink));
  margin:0 0 48px;
  max-width:1400px;
}
.rp-title em{
  font-family:'Instrument Serif',serif;
  font-style:italic;
  font-weight:400;
  color:var(--red,#C8000A);
  letter-spacing:-.02em;
}
.rp-title .word{
  display:inline-block;
  opacity:0;
  transform:translateY(40px);
  animation:rp-word .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.rp-title .word:nth-child(1){ animation-delay:.1s }
.rp-title .word:nth-child(2){ animation-delay:.25s }
.rp-title .word:nth-child(3){ animation-delay:.4s }
.rp-title .word:nth-child(4){ animation-delay:.55s }
@keyframes rp-word{ to{ opacity:1; transform:translateY(0) } }

.rp-hero-bottom{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:end;
  max-width:1400px;
  padding-top:40px;
  border-top:1px solid rgba(20,21,25,.1);
}
.rp-hero-desc{
  font-size:17px;
  line-height:1.5;
  color:var(--ink-soft,var(--muted));
  max-width:480px;
  margin:0;
}
.rp-hero-ctas{ display:flex; gap:12px; flex-wrap:wrap }

@media(max-width:720px){
  .rp-hero{ padding:120px 20px 60px; min-height:auto }
  .rp-hero-bottom{ grid-template-columns:1fr }
}

/* ─── TICKER (bande défilante) ──────────────────────────── */
.rp-ticker{
  background:var(--ink,var(--ink));
  color:#faf7f1;
  padding:18px 0;
  overflow:hidden;
  white-space:nowrap;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.rp-ticker-track{
  display:inline-flex;
  gap:48px;
  animation:rp-scroll 40s linear infinite;
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.rp-ticker-track span{ display:inline-flex; align-items:center; gap:48px }
.rp-ticker-track .star{ color:var(--red,#C8000A) }
@keyframes rp-scroll{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── TRUST STRIP ───────────────────────────────────────── */
.rp-trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:var(--bg,#faf7f1);
  border-bottom:1px solid rgba(20,21,25,.1);
}
.rp-trust-item{
  padding:48px 32px;
  text-align:center;
  border-right:1px solid rgba(20,21,25,.1);
  position:relative;
}
.rp-trust-item:last-child{ border-right:none }
.rp-trust-num{
  font-family:'Space Grotesk',sans-serif;
  font-weight:500;
  font-size:clamp(44px,7vw,80px);
  letter-spacing:-.03em;
  line-height:1;
  color:var(--ink,var(--ink));
}
.rp-trust-num em{
  font-family:'Instrument Serif',serif;
  font-style:italic;
  color:var(--red,#C8000A);
  font-weight:400;
}
.rp-trust-lbl{
  margin-top:12px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--ink-soft,var(--muted));
}
@media(max-width:720px){
  .rp-trust{ grid-template-columns:repeat(2,1fr) }
  .rp-trust-item{ padding:32px 16px }
  .rp-trust-item:nth-child(-n+2){ border-bottom:1px solid rgba(20,21,25,.1) }
  .rp-trust-item:nth-child(2n){ border-right:none }
}

/* ─── AVANT / APRÈS slider ──────────────────────────────── */
.rp-ba-section{ padding:120px 32px; background:var(--bg,#faf7f1) }
.rp-ba-wrap{
  max-width:1200px;
  margin:48px auto 0;
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(20,21,25,.1);
  box-shadow:0 30px 80px -20px rgba(0,0,0,.2);
  cursor:ew-resize;
  user-select:none;
  background:#0a0a0a;
}
.rp-ba-side{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(64px,10vw,140px);
  font-weight:600;
  letter-spacing:-.04em;
  color:#fff;
}
.rp-ba-after{
  background:
    linear-gradient(135deg, #c8000a 0%, #8b0007 100%);
}
.rp-ba-before{
  background:
    linear-gradient(135deg, var(--ink-soft) 0%, #0a0a0a 100%);
  clip-path:inset(0 50% 0 0);
}
.rp-ba-before::before,
.rp-ba-after::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(255,255,255,.03) 40px 41px),
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(255,255,255,.03) 40px 41px);
  pointer-events:none;
}
.rp-ba-before .crack{
  position:absolute; inset:0;
  background:
    linear-gradient(105deg, transparent 48%, rgba(255,255,255,.4) 49%, transparent 50%),
    linear-gradient(80deg, transparent 38%, rgba(255,255,255,.3) 39%, transparent 41%),
    linear-gradient(120deg, transparent 60%, rgba(255,255,255,.3) 61%, transparent 62%);
  pointer-events:none;
}
.rp-ba-label{
  position:absolute; top:24px;
  padding:8px 14px;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(8px);
  border-radius:100px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.15em; text-transform:uppercase;
  color:#fff;
}
.rp-ba-before .rp-ba-label{ left:24px }
.rp-ba-after .rp-ba-label{ right:24px }
.rp-ba-handle{
  position:absolute; top:0; bottom:0;
  left:50%; width:3px;
  background:#fff;
  transform:translateX(-50%);
  box-shadow:0 0 30px rgba(255,255,255,.5);
  pointer-events:none;
}
.rp-ba-handle::after{
  content:"⇄";
  position:absolute; top:50%; left:50%;
  width:54px; height:54px;
  transform:translate(-50%,-50%);
  background:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:700; color:var(--ink,var(--ink));
  box-shadow:0 10px 40px rgba(0,0,0,.3);
}
.rp-ba-hint{
  text-align:center;
  margin-top:24px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.15em; text-transform:uppercase;
  color:var(--muted,#8a8d95);
}
@media(max-width:720px){ .rp-ba-wrap{ aspect-ratio:4/5 } .rp-ba-section{ padding:80px 20px } }

/* ─── MICRO-SOUDURE (split avec SVG animé) ──────────────── */
.rp-micro{
  padding:120px 32px;
  background:var(--ink,var(--ink));
  color:#faf7f1;
  overflow:hidden;
}
.rp-micro-inner{
  max-width:1400px; margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.rp-micro-label{
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.15em; text-transform:uppercase;
  color:rgba(250,247,241,.5);
  margin-bottom:24px;
}
.rp-micro h2{
  font-family:'Space Grotesk',sans-serif;
  font-weight:500;
  font-size:clamp(40px,6vw,80px);
  line-height:.95;
  letter-spacing:-.03em;
  margin:0 0 32px;
}
.rp-micro h2 em{
  font-family:'Instrument Serif',serif;
  font-style:italic;
  font-weight:400;
  color:var(--red,#C8000A);
}
.rp-micro p{
  font-size:17px;
  line-height:1.6;
  color:rgba(250,247,241,.75);
  max-width:520px;
  margin:0 0 24px;
}
.rp-micro-list{
  list-style:none; padding:0; margin:32px 0 0;
  border-top:1px solid rgba(250,247,241,.1);
}
.rp-micro-list li{
  padding:20px 0;
  border-bottom:1px solid rgba(250,247,241,.1);
  display:grid;
  grid-template-columns:60px 1fr;
  gap:20px;
  align-items:baseline;
}
.rp-micro-list .idx{
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.15em;
  color:var(--red,#C8000A);
}
.rp-micro-list strong{
  font-family:'Space Grotesk',sans-serif;
  font-weight:500; font-size:20px;
  color:#faf7f1;
}
.rp-micro-list .d{
  display:block; margin-top:4px;
  font-size:14px; line-height:1.5;
  color:rgba(250,247,241,.6);
}

.rp-circuit{
  position:relative;
  aspect-ratio:1;
  width:100%;
  max-width:500px;
  margin:0 auto;
}
.rp-circuit svg{ width:100%; height:100% }
.rp-circuit .trace{
  fill:none;
  stroke:var(--red,#C8000A);
  stroke-width:1.5;
  stroke-dasharray:4 4;
  opacity:.6;
  animation:rp-trace 3s linear infinite;
}
@keyframes rp-trace{ to{ stroke-dashoffset:-80 } }
.rp-circuit .node{
  fill:var(--red,#C8000A);
  animation:rp-node 2s ease-in-out infinite;
}
.rp-circuit .node:nth-child(odd){ animation-delay:.5s }
.rp-circuit .node:nth-child(3n){ animation-delay:1s }
@keyframes rp-node{ 0%,100%{opacity:.3} 50%{opacity:1} }
.rp-circuit .chip{
  fill:rgba(250,247,241,.05);
  stroke:rgba(250,247,241,.15);
  stroke-width:1;
}

@media(max-width:900px){
  .rp-micro-inner{ grid-template-columns:1fr; gap:60px }
  .rp-micro{ padding:80px 20px }
}

/* ─── AVIS GOOGLE (mur défilant) ────────────────────────── */
.rp-reviews{
  padding:120px 0 60px;
  background:var(--bg,#faf7f1);
  overflow:hidden;
}
.rp-reviews-head{
  max-width:1400px;
  margin:0 auto 48px;
  padding:0 32px;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  flex-wrap:wrap;
}
.rp-reviews-head h2{
  font-family:'Space Grotesk',sans-serif;
  font-weight:500;
  font-size:clamp(36px,5vw,64px);
  line-height:1;
  letter-spacing:-.03em;
  margin:12px 0 0;
  color:var(--ink,var(--ink));
}
.rp-reviews-head em{
  font-family:'Instrument Serif',serif;
  font-style:italic;
  color:var(--red,#C8000A);
  font-weight:400;
}
.rp-reviews-score{
  display:flex; align-items:center; gap:16px;
}
.rp-reviews-score .num{
  font-family:'Instrument Serif',serif;
  font-size:64px;
  line-height:1;
  color:var(--red,#C8000A);
}
.rp-reviews-score .stars{
  font-size:18px;
  letter-spacing:2px;
  color:#f5a623;
}
.rp-reviews-score .c{
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-soft,var(--muted));
  margin-top:4px;
}
.rp-reviews-marquee{
  display:flex; gap:24px;
  animation:rp-scroll 60s linear infinite;
  padding:0 12px;
}
.rp-reviews-marquee:hover{ animation-play-state:paused }
.rp-review-card{
  flex:0 0 380px;
  background:#fff;
  border:1px solid rgba(20,21,25,.08);
  border-radius:12px;
  padding:28px;
  box-shadow:0 4px 20px -10px rgba(0,0,0,.08);
}
.rp-review-stars{
  color:#f5a623;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:16px;
}
.rp-review-text{
  font-size:15px; line-height:1.6;
  color:var(--ink,var(--ink));
  margin:0 0 20px;
  min-height:96px;
}
.rp-review-author{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:16px;
  border-top:1px solid rgba(20,21,25,.08);
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-soft,var(--muted));
}
.rp-review-author .g{ color:var(--red,#C8000A); font-weight:700 }

/* ─── STICKY CTA mobile ─────────────────────────────────── */
.rp-sticky{
  display:none;
  position:fixed; bottom:16px; left:16px; right:16px;
  z-index:90;
  background:var(--ink,var(--ink));
  color:#faf7f1;
  border-radius:100px;
  padding:8px 8px 8px 20px;
  box-shadow:0 20px 40px -10px rgba(0,0,0,.3);
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.rp-sticky-text{
  font-family:'JetBrains Mono',monospace;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
}
.rp-sticky-btn{
  background:var(--red,#C8000A);
  color:#fff;
  padding:12px 20px;
  border-radius:100px;
  font-family:'Space Grotesk',sans-serif;
  font-size:13px; font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}
@media(max-width:720px){ .rp-sticky{ display:flex } body{ padding-bottom:80px } }

/* ═══════════════════════════════════════════════════
   PAGE RÉPARATION V3 — WIZARD INTERACTIF
   ═══════════════════════════════════════════════════ */

.rep3-hero {
  min-height: 92vh;
  padding: 130px 32px 80px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200,0,10,.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.rep3-hero-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.rep3-headline { text-align: center; margin-bottom: 56px; }
.rep3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,.04);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.rep3-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2bbd5e;
  box-shadow: 0 0 0 4px rgba(43,189,94,.18);
  animation: rep3-pulse 2.4s ease-in-out infinite;
}
.rep3-dot.off { background: var(--border); box-shadow: 0 0 0 4px rgba(204,204,204,.25); animation: none; }
@keyframes rep3-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(43,189,94,.18); }
  50% { box-shadow: 0 0 0 8px rgba(43,189,94,.30); }
}

.rep3-headline h1 {
  font-family: var(--title, 'Space Grotesk', system-ui, sans-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  color: var(--ink);
}
.rep3-headline h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.rep3-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* WIZARD container */
.rep3-wiz {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 44px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.06);
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

/* PROGRESS */
.wz-progress { margin-bottom: 36px; }
.wz-bar {
  height: 4px;
  background: rgba(0,0,0,.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.wz-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 4px;
  transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.wz-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.wz-dot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 600;
  transition: color .25s;
}
.wz-dot span {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--light);
  font-weight: 400;
  letter-spacing: 0;
  transition: color .25s;
}
.wz-dot.active { color: var(--ink); }
.wz-dot.active span { color: var(--red); }
.wz-dot.done { color: var(--muted); }
.wz-dot.done span { color: var(--ink); }
.wz-dot i { font-style: normal; }

/* PAGES */
.wz-page { display: none; animation: wz-fade .4s ease; }
.wz-page.active { display: block; }
@keyframes wz-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wz-q {
  font-family: var(--title, 'Space Grotesk', system-ui, sans-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

/* OPTIONS GRID */
.wz-grid { display: grid; gap: 14px; }
.wz-grid-4 { grid-template-columns: repeat(4, 1fr); }
.wz-grid-3 { grid-template-columns: repeat(3, 1fr); }

.wz-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 18px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font, 'Space Grotesk', system-ui, sans-serif);
  transition: all var(--motion);
  text-align: center;
  min-height: 110px;
}
.wz-opt:hover {
  background: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.wz-opt.selected {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(200,0,10,.18);
}
.wz-emoji { font-size: 32px; line-height: 1; }
.wz-lbl {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
}

/* BACK */
.wz-back-row {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0,0,0,.10);
}
.wz-back {
  background: none;
  border: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 0;
  transition: color .2s;
}
.wz-back:hover { color: var(--ink); }

/* RESULT panel */
.wzr-head { text-align: center; margin-bottom: 32px; }
.wzr-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.wzr-head h2 {
  font-family: var(--title, 'Space Grotesk', system-ui, sans-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.wzr-pill {
  display: inline-block;
  padding: 9px 18px;
  background: var(--ink);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
}

.wzr-price-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.wzr-tile {
  background: var(--cream);
  border-radius: 24px;
  padding: 26px 28px;
}
.wzr-tile-price {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wzr-tile-price::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200,0,10,.35) 0%, transparent 60%);
  pointer-events: none;
}
.wzr-tile-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.wzr-tile-price .wzr-tile-label { color: rgba(255,255,255,.55); }
.wzr-tile-time .wzr-tile-label { color: var(--muted); }
.wzr-tile-val {
  font-family: var(--title, 'Space Grotesk', system-ui, sans-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}
.wzr-tile-price .wzr-tile-val { color: #fff; }
.wzr-tile-time .wzr-tile-val { color: var(--ink); font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }
.wzr-tile-note {
  font-size: 12px;
  line-height: 1.5;
  position: relative;
}
.wzr-tile-price .wzr-tile-note { color: rgba(255,255,255,.62); }
.wzr-tile-time .wzr-tile-note { color: var(--muted); }

.wzr-note {
  background: rgba(255,201,64,.12);
  border-left: 3px solid #FFB400;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #6b5400;
  margin-bottom: 22px;
}

.wzr-price-special {
  text-align: center;
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 28px;
  margin-bottom: 22px;
}
.wzr-special-icon { font-size: 48px; margin-bottom: 14px; }
.wzr-price-special h3 {
  font-family: var(--title, 'Space Grotesk', system-ui, sans-serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.wzr-price-special p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.wzr-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.wzr-ctas .az-btn { flex: 0 0 auto; }
.wzr-ctas button.az-btn {
  background: none;
  border: none;
  font-family: var(--font, 'Space Grotesk', system-ui, sans-serif);
}

/* DISCLAIMER */
.rep3-disclaimer {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .rep3-hero { padding: 100px 16px 60px; min-height: auto; }
  .rep3-wiz { padding: 28px 22px 24px; border-radius: 24px; }
  .wz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wz-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .wz-dots { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .wz-dot i { display: none; }
  .wz-dot span { font-size: 17px; }
  .wzr-price-grid { grid-template-columns: 1fr; }
  .wzr-ctas { flex-direction: column; align-items: stretch; }
  .wzr-ctas .az-btn { justify-content: center; }
}
@media (max-width: 480px) {
  .wz-q { font-size: 19px; }
  .wz-opt { padding: 16px 12px; min-height: 90px; }
  .wz-emoji { font-size: 26px; }
  .wz-lbl { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════
   COUVERTURE — marques & modèles (module 3b)
   ═══════════════════════════════════════════════════ */
.az-coverage { padding: 110px 40px; background: var(--bg-alt); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; }
.az-coverage-inner { max-width: 1320px; margin: 0 auto; }
.az-coverage-head { max-width: 760px; }
.az-coverage-head .az-section-label { color: var(--red); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 22px; }
.az-coverage-title { font-family: var(--title, Space Grotesk, sans-serif); font-size: clamp(38px, 5.5vw, 76px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; color: var(--ink); margin-bottom: 24px; }
.az-coverage-title em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; color: var(--ink); }
.az-coverage-lead { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 600px; }
.az-coverage-marquee { margin: 48px 0 32px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, var(--ink) 8%, var(--ink) 92%, transparent); mask-image: linear-gradient(90deg, transparent, var(--ink) 8%, var(--ink) 92%, transparent); }
.az-cov-track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; animation: az-cov-scroll 38s linear infinite; will-change: transform; }
.az-cov-track span { font-family: var(--title, "Space Grotesk", sans-serif); font-size: clamp(22px, 3vw, 40px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); opacity: .82; }
.az-cov-track i { color: var(--red); font-style: normal; font-size: 20px; }
@keyframes az-cov-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.az-coverage-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.az-cov-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--rule); border-radius: 999px; padding: 11px 18px; font-size: 14px; color: var(--muted); transition: border-color .25s, transform .25s; }
.az-cov-pill strong { color: var(--ink); font-weight: 700; }
.az-cov-pill:hover { border-color: var(--ink); transform: translateY(-2px); }
@media (max-width: 700px) { .az-coverage { padding: 80px 24px; } .az-cov-track span { font-size: 26px; } }
@media (prefers-reduced-motion: reduce) { .az-cov-track { animation: none; } }

/* ── Monogramme footer (variante claire sur fond sombre) ── */
footer .footer-brand .footer-logo { display: flex !important; align-items: center; gap: 12px; }
.az-mark-foot { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(150deg,#fdfbf7 0%,#efe7d8 100%); box-shadow: 0 3px 10px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.6); }
.az-mark-foot b { color: var(--ink); font-size: 25px; }
.az-mark-foot .az-mark-dot { top: 9px; right: 9px; width: 6px; height: 6px; }
.footer-wordmark { line-height: 1; }

/* ── Mention qualité pièce dans le résultat du wizard réparation ── */
.wzr-qual{
  display:flex; align-items:flex-start; gap:10px;
  padding:13px 16px; border-radius:12px;
  font-size:13.5px; line-height:1.5; margin-top:14px;
}
.wzr-qual.oled{ background:rgba(200,0,10,.06); border:1px solid rgba(200,0,10,.18); color:#7a1410; }
.wzr-qual.batt{ background:rgba(15,122,62,.07); border:1px solid rgba(15,122,62,.20); color:#0d5c2f; }
.wzr-qbadge{
  flex-shrink:0;
  font-family:var(--mono,'JetBrains Mono',monospace);
  font-size:9.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  border-radius:4px; padding:3px 8px; white-space:nowrap; margin-top:1px;
}
.wzr-qbadge.oled{ color:var(--red,#C8000A); background:rgba(200,0,10,.10); border:1px solid rgba(200,0,10,.25); }
.wzr-qbadge.batt{ color:#0f7a3e; background:rgba(15,122,62,.10); border:1px solid rgba(15,122,62,.26); }


/* ═══════════════════════════════════════════════════
   TRANSITIONS DE PAGE — fondu natif + barre de chargement
   ═══════════════════════════════════════════════════ */
@view-transition { navigation: auto; }
::view-transition-old(root){ animation: az-vt-out .26s cubic-bezier(.4,0,.2,1) both; }
::view-transition-new(root){ animation: az-vt-in .44s cubic-bezier(.2,.9,.3,1) both; }
@keyframes az-vt-out { to   { opacity: 0; transform: translateY(-8px); } }
@keyframes az-vt-in  { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce){
  ::view-transition-old(root),::view-transition-new(root){ animation: none; }
}

/* Barre de progression — bien visible */
.az-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3.5px;
  width: 0;
  z-index: 99999;
  background: linear-gradient(90deg, var(--red,#C8000A), #ff3a44);
  box-shadow: 0 0 12px 1px rgba(200,0,10,.6), 0 1px 4px rgba(200,0,10,.5);
  opacity: 0;
  border-radius: 0 3px 3px 0;
  transition: width var(--motion), opacity var(--motion);
  pointer-events: none;
}
.az-progress::after{
  /* tête lumineuse type comète */
  content:"";
  position:absolute; right:0; top:-2px; bottom:-2px;
  width:80px;
  background: radial-gradient(ellipse at right, rgba(255,90,100,.9), transparent 70%);
}
.az-progress.go{ opacity: 1; }
.az-progress.done{ width:100% !important; opacity:0; transition: width var(--motion), opacity .45s ease .12s; }

/* ── Bande service à la clientèle (footer applezone) ── */
.az-foot-care{
  max-width:1320px; margin:8px auto 0;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.az-foot-care-txt strong{ display:block; font-size:18px; font-weight:700; color:#fff; letter-spacing:-.01em; margin-bottom:2px; }
.az-foot-care-txt span span{ font-size:14px; color:rgba(255,255,255,.6); }
.az-foot-care-btn{
  flex-shrink:0;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--red,#C8000A); color:#fff;
  font-weight:600; font-size:14px;
  padding:13px 24px; border-radius:999px;
  text-decoration:none; transition:transform .25s, box-shadow .25s, background .25s;
}
.az-foot-care-btn:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(200,0,10,.35); background:#a30008; }
@media(max-width:600px){ .az-foot-care{ flex-direction:column; align-items:flex-start; } }

/* ═══════════════════════════════════════════════════
   ÉPURATION MOBILE iPhone — audit visuel 2026-06
   Cache les décorations lourdes + redondances sur < 680px
   Desktop intact.
   ═══════════════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Hero — retirer décorations */
  .az-hero3-seal,           /* Sceau R2R + marquee "NOUS SOUTENONS" */
  .az-hero3-scroll,         /* Bouton "Découvrir ↓" — superflu sur tactile */
  .az-hero3-trust,          /* Carte trio "15 ans / iPhone-iPad-Mac / 6 mois" — doublon avec section stats */
  .az-hero3-grain           /* Bruit de texture de fond */ {
    display: none !important;
  }

  /* Process "Comment ça marche" — info déjà claire ailleurs */
  .az-process-clean { display: none !important; }

  /* Testimonials — limiter à 2 cartes */
  .az-testimonials .az-testimonial:nth-of-type(n+3) { display: none !important; }

  /* Curseur glow — désactiver sur tactile */
  .cursor-glow, #cg { display: none !important; }
}

/* Footer inline SVG icons */
.footer-contact a { display:inline-flex; align-items:center; gap:8px; }
.footer-contact .ic { flex-shrink:0; opacity:.72; transition:opacity .2s }
.footer-contact a:hover .ic { opacity:1 }
