:root {
    --bg: #080b12;
    --s1: #0f1422;
    --s2: #141929;
    --ac: #2563eb;
    --ac2: #38bdf8;
    --ac3: #818cf8;
    --glow: rgba(37, 99, 235, 0.22);
    --glow2: rgba(56, 189, 248, 0.15);
    --tx: #e8eaf2;
    --mu: #6b7494;
    --bd: rgba(255, 255, 255, 0.06);
    --r: 14px;
    --fh: 'Syne', sans-serif;
    --fb: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* hauteur de ta nav */
}

body {
    background: var(--bg);
    color: var(--tx);
    font-family: var(--fb);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── PARTICLES CANVAS ─── */
#canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* ─── CURSOR ─── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--ac2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s, height 0.35s, border-color 0.35s;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: rgba(8, 11, 18, 0.92);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--bd);
}

.nav-logo {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--tx);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--ac);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 24px var(--glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 0 36px var(--glow);
}

.nav-logo_label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--ac2);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--mu);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--ac2);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--ac) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 500 !important;
    box-shadow: 0 0 24px var(--glow);
    transition: opacity 0.2s, box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    opacity: 0.88 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 32px rgba(37, 99, 235, 0.5) !important;
}

/* ─── BURGER ─── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--bd);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 600;
    flex-shrink: 0;
    transition: border-color 0.25s, background 0.25s;
}

.nav-burger:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--tx);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.25s,
                width 0.3s;
    transform-origin: center;
    flex-shrink: 0;
}

/* Croix quand ouvert */
.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 5% 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orb-float 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
    top: -150px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
    bottom: -80px;
    left: 5%;
    animation-delay: -5s;
    animation-duration: 12s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.1), transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: -2s;
    animation-duration: 8s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.97);
    }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black, transparent);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 100px;
    padding: 6px 18px;
    width: fit-content;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ac2);
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--ac2);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-eyebrow-logo {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}
.hero-logo-container{
    position: absolute;
    top: 100px;        /* sous la nav */
    right: 5%;         /* aligné avec le padding du hero */
    z-index: 2;
}

.hero-logo{
    width: 110px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

/* Responsive logo */
@media (max-width: 900px) {
    .hero-logo-container {
        top: 80px;
    }
    .hero-logo {
        width: 80px;
    }
}

@media (max-width: 600px) {
    .hero-logo-container {
        top: 72px;
    }
    .hero-logo {
        width: 60px;
    }
}

@media (max-width: 400px) {
    .hero-logo {
        width: 48px;
    }
}
.hero h1 {
    font-family: var(--fh);
    font-size: clamp(2.4rem, 5vw, 4.8rem); 
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.035em;
    max-width: 820px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
    word-break: keep-all; /* ← pas de coupure bizarre */
    overflow-wrap: normal;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line span {
    display: block;
    animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 .line:nth-child(1) span {
    animation-delay: 0.35s;
}

.hero h1 .line:nth-child(2) span {
    animation-delay: 0.5s;
}

.hero h1 .line:nth-child(3) span {
    animation-delay: 0.65s;
}

@keyframes slideUp {
    from {
        transform: translateY(105%);
    }

    to {
        transform: translateY(0);
    }
}

.grad-text {
    background: linear-gradient(130deg, var(--ac) 0%, var(--ac2) 50%, var(--ac3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: grad-shift 4s ease-in-out infinite;
}

@keyframes grad-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--mu);
    max-width: 500px;
    margin-bottom: 48px;
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 0.7s 0.75s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s forwards;
}

.btn-p {
    background: var(--ac);
    color: #fff;
    padding: 15px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 0 32px var(--glow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-p::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-p:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.55);
}

.btn-p:hover::before {
    opacity: 1;
}

.btn-g {
    background: transparent;
    color: var(--tx);
    padding: 15px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid var(--bd);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-g:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--bd);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 1.1s forwards;
}

.stat-n {
    font-family: var(--fh);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--tx);
}

.stat-n em {
    font-style: normal;
    color: var(--ac2);
}

.stat-l {
    font-size: 0.82rem;
    color: var(--mu);
    margin-top: 6px;
    letter-spacing: 0.03em;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* ─── TICKER ─── */
.ticker {
    background: var(--s1);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-inner {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mu);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ticker-item::before {
    content: '◆';
    color: var(--ac);
    font-size: 0.5rem;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTION BASE ─── */
section {
    padding: 110px 5%;
    position: relative;
    z-index: 1;
}

.divider {
    height: 1px;
    background: var(--bd);
    margin: 0 5%;
    position: relative;
    z-index: 1;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ac2);
    margin-bottom: 20px;
    font-weight: 500;
}

.sec-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ac2);
}

.sec-title {
    font-family: var(--fh);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 18px;
}

.sec-desc {
    color: var(--mu);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.85;
}

/* ─── SERVICES ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.svc-card {
    background: var(--s1);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s;
    cursor: default;
    opacity: 0;
    transform: translateY(40px);
}

.svc-card.vis {
    animation: cardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(37, 99, 235, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; 
}

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

.svc-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-6px) !important;
}

.svc-num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--fh);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: -0.04em;
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s;
}

.svc-card:hover .svc-icon {
    background: rgba(37, 99, 235, 0.22);
    transform: scale(1.08) rotate(-4deg);
}

.svc-card h3 {
    font-family: var(--fh);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.svc-card p {
    color: var(--mu);
    font-size: 0.88rem;
    line-height: 1.75;
}

.svc-link {
      position: relative; /* ← passe au-dessus du ::before */
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ac2);
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 22px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.25s;
}

.svc-link:hover {
    gap: 12px;
}

.svc-arrow {
    display: inline-block;
    transition: transform 0.25s;
}

.svc-link:hover .svc-arrow {
    transform: translateX(4px);
}

/* ─── ABOUT ─── */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-card {
    background: var(--s2);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
    animation: orb-float 8s ease-in-out infinite;
}

.about-quote {
    font-family: var(--fh);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.about-quote em {
    font-style: normal;
    color: var(--ac2);
}

.about-body {
    color: var(--mu);
    font-size: 0.9rem;
    line-height: 1.8;
}

.about-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--bd);
}

.ava {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--ac), var(--ac2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 0 20px var(--glow);
}

.ava-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.ava-sub {
    font-size: 0.8rem;
    color: var(--mu);
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: var(--s1);
    border: 1px solid var(--bd);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateX(6px);
}

.pillar-ico {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-t {
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.pillar-s {
    font-size: 0.8rem;
    color: var(--mu);
    line-height: 1.6;
}

/* ─── OCCASIONS ─── */
.occ-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(56, 189, 248, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 22px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.occ-banner::before {
    content: '♻';
    position: absolute;
    right: 220px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    opacity: 0.03;
    pointer-events: none;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.occ-title {
    font-family: var(--fh);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.occ-desc {
    color: var(--mu);
    font-size: 0.93rem;
    line-height: 1.85;
    max-width: 460px;
}

.occ-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.tag {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--ac2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.2s;
}

.tag:hover {
    background: rgba(37, 99, 235, 0.18);
    transform: translateY(-1px);
}

/* ─── COUNTER SECTION ─── */
.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bd);
    border-radius: 20px;
    overflow: hidden;
}

.counter-cell {
    background: var(--s1);
    padding: 48px 40px;
    text-align: center;
    transition: background 0.3s;
}

.counter-cell:hover {
    background: var(--s2);
}

.counter-val {
    font-family: var(--fh);
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.counter-val em {
    font-style: normal;
    color: var(--ac2);
}

.counter-desc {
    font-size: 0.85rem;
    color: var(--mu);
    margin-top: 10px;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.ci {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--s1);
    border: 1px solid var(--bd);
    border-radius: 12px;
    transition: border-color 0.25s, transform 0.25s;
}

.ci-item:hover {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateX(5px);
}

.ci-ico {
    font-size: 1rem;
    width: 38px;
    height: 38px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-lbl {
    font-size: 0.75rem;
    color: var(--mu);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 3px;
}

.ci-val,
.ci-val a {
    color: var(--tx);
    font-size: 0.9rem;
    text-decoration: none;
}

.ci-val a:hover {
    color: var(--ac2);
}

.h-open {
    color: #22c55e;
    font-weight: 500;
    margin-left: 0.5rem;
}

.h-closed {
    color: #ef4444;
}

.cf {
    background: var(--s1);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 44px;
}

.cf-title {
    font-family: var(--fh);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.cf-sub {
    color: var(--mu);
    font-size: 0.86rem;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.fg label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mu);
    letter-spacing: 0.04em;
}

.fg input,
.fg textarea {
    background: var(--bg);
    border: 1px solid var(--bd);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--tx);
    font-family: var(--fb);
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    resize: none;
}

.fg input:focus,
.fg textarea:focus {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.fg textarea {
    height: 118px;
}

.btn-sub {
    width: 100%;
    background: var(--ac);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--fb);
    font-size: 0.93rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0 28px var(--glow);
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.btn-sub:hover {
    opacity: 0.87;
    transform: translateY(-2px);
}

.btn-sub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

/* ─── FOOTER ─── */
footer {
    padding: 56px 5% 36px;
    border-top: 1px solid var(--bd);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.f-logo {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1.1rem;
}

.f-copy {
    color: var(--mu);
    font-size: 0.8rem;
}

.f-links {
    display: flex;
    gap: 24px;
}

.f-links a {
    color: var(--mu);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.f-links a:hover {
    color: var(--tx);
}

.f-heart-neon {
    display: inline-block;
    color: #ff0000; /* Assure une base rouge vive */
    
    /* Superposition d'ombres pour créer le halo néon */
    text-shadow: 
        0 0 5px #fff,          /* Coeur de lumière blanc */
        0 0 10px #ff0000,      /* Lueur proche */
        0 0 20px #ff0000,      /* Halo moyen */
        0 0 40px #ff0000;      /* Diffusion lointaine */
    
    animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 5px #fff, 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000;
        transform: scale(1);
    }
    92% {
        opacity: 0.95; /* Petit scintillement typique du néon */
    }
    96% {
        text-shadow: 0 0 8px #fff, 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 60px #ff0000;
        transform: scale(1.05);
    }
}

/* ─── REVEAL ─── */
.rv {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE & RESPONSIVE — BLOC COMPLET ─── */

html, body {
    overflow-x: hidden;
}

.ticker {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ══════════════════════════════
   TABLETTE  ≤ 900px
══════════════════════════════ */
@media (max-width: 900px) {

     /* NAV */
    .nav-burger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 80vw);
        height: 100vh;
        background: rgba(8, 11, 18, 0.97);
        backdrop-filter: blur(24px);
        border-left: 1px solid var(--bd);
        padding: 90px 32px 40px;
        z-index: 550;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        list-style: none;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid var(--bd);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 24px;
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        color: var(--tx);
        font-weight: 400;
    }

    .nav-cta {
        display: block !important;
        text-align: center !important;
        padding: 14px 22px !important;
    }


    /* HERO */
    .hero {
        padding: 110px 5% 60px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 6.5vw, 4.5rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-p,
    .hero-actions .btn-g {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .hero-stats {
        gap: 28px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    /* COUNTERS */
    .counters {
        grid-template-columns: 1fr;
    }

    .counter-cell {
        padding: 36px 28px;
    }

    /* ABOUT */
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-card {
        padding: 32px;
    }

    /* OCCASIONS */
    .occ-banner {
        grid-template-columns: 1fr;
        padding: 40px 36px;
        gap: 32px;
    }

    .occ-banner::before {
        display: none; /* retire le ♻ décoratif qui déborde */
    }

    .occ-banner > div:last-child {
        display: flex;
        justify-content: flex-start;
    }

    .occ-banner .btn-p {
        width: auto;
        white-space: nowrap;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cf {
        padding: 32px 28px;
    }

    /* FOOTER */
    footer {
        flex-direction: column;
        text-align: center;
    }

    .f-links {
        justify-content: center;
    }

    /* CURSOR */
    .cursor,
    .cursor-ring {
        display: none;
    }
}

/* ══════════════════════════════
   MOBILE STANDARD  ≤ 600px
══════════════════════════════ */
@media (max-width: 600px) {

    /* SECTIONS */
    section {
        padding: 72px 5%;
    }

    .sec-title {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    /* HERO */
    .hero {
        padding: 100px 5% 50px;
        min-height: 100svh; /* safer sur mobile */
    }

    .hero h1 {
        font-size: clamp(2rem, 8.5vw, 3rem);
        letter-spacing: -0.025em;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        margin-top: 40px;
        padding-top: 28px;
    }

    .stat-n {
        font-size: 2rem;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
    }

    .svc-card {
        padding: 28px 24px;
    }

    /* COUNTERS */
    .counter-val {
        font-size: 2.4rem;
    }

    .counter-cell {
        padding: 32px 20px;
    }

    /* ABOUT */
    .about-card {
        padding: 28px 24px;
    }

    .about-quote {
        font-size: 1.2rem;
    }

    /* OCCASIONS */
    .occ-banner {
        padding: 32px 24px;
        gap: 24px;
        border-radius: 16px;
    }

    .occ-title {
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    }

    .occ-tags {
        gap: 6px;
    }

    .tag {
        font-size: 0.72rem;
        padding: 4px 11px;
    }

    /* CONTACT */
    .cf {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* horaires : empile sur petits écrans */
    .ci-item [style*="justify-content: space-between"] {
        flex-direction: column;
        gap: 2px;
    }

    /* FOOTER */
    .f-copy {
        font-size: 0.75rem;
    }
}

/* ══════════════════════════════
   TRÈS PETIT MOBILE  ≤ 400px
══════════════════════════════ */
@media (max-width: 400px) {

    /* HERO */
    .hero {
        padding: 90px 4% 40px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
    }

    .hero-eyebrow {
        font-size: 0.66rem;
        padding: 5px 12px;
        letter-spacing: 0.05em;
    }

    .hero-stats {
        grid-template-columns: 1fr; /* une colonne sous 400px */
        gap: 16px;
    }

    /* OCCASIONS */
    .occ-banner {
        padding: 24px 18px;
    }

    .occ-banner .btn-p {
        width: 100%;
        justify-content: center;
    }

    /* CONTACT */
    .ci-item {
        padding: 14px 16px;
    }

    .cf {
        padding: 20px 16px;
    }

    /* FOOTER */
    footer {
        padding: 40px 4% 28px;
    }

    .f-copy {
        font-size: 0.72rem;
        word-break: break-word; /* évite le débordement de l'adresse */
    }
}