/* ============================================================
   Servio — site vitrine (produit Ovation Studio)
   Plateforme de commande en ligne pour restaurants, 0 % commission
   ============================================================ */

:root {
    --brand: #e8502e;
    --brand-2: #ff7a45;
    --brand-3: #ff9d4d;
    --brand-dark: #b83a1c;
    --brand-soft: #fdeee8;

    --ink: #1b1614;
    --ink-2: #2a2320;
    --body: #5d564f;
    --muted: #8a8178;

    --bg: #ffffff;
    --cream: #faf6f0;
    --cream-2: #f6efe6;
    --line: rgba(27, 22, 20, 0.10);
    --line-strong: rgba(27, 22, 20, 0.16);

    --green: #1f8a5b;
    --green-soft: #e7f4ee;
    --amber: #cf8a1c;
    --amber-soft: #fbf0db;
    --violet: #6d5bd0;
    --violet-soft: #ece9fb;
    --gold: #b8902a;
    --gold-soft: #f7eed3;

    --radius: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 1px 2px rgba(27, 22, 20, 0.06), 0 6px 18px rgba(27, 22, 20, 0.05);
    --shadow-md: 0 14px 36px rgba(27, 22, 20, 0.09);
    --shadow-lg: 0 36px 70px -24px rgba(27, 22, 20, 0.30);
    --shadow-brand: 0 14px 30px -8px rgba(232, 80, 46, 0.45);

    --maxw: 1160px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--body);
    background: var(--bg);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
sup { font-size: 0.6em; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}
.container--narrow { max-width: 800px; }

.hl { color: var(--brand); }

/* decorative colour blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; pointer-events: none; z-index: 0; }
.blob--1 { width: 460px; height: 460px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(255, 122, 69, 0.55), transparent 70%); }
.blob--2 { width: 380px; height: 380px; bottom: -140px; left: -120px; background: radial-gradient(circle, rgba(232, 80, 46, 0.30), transparent 70%); }
.blob--3 { width: 520px; height: 520px; top: -200px; left: 40%; background: radial-gradient(circle, rgba(255, 122, 69, 0.22), transparent 70%); opacity: 0.6; }
.blob--4 { width: 520px; height: 420px; top: -160px; right: -80px; background: radial-gradient(circle, rgba(255, 200, 150, 0.4), transparent 70%); opacity: 0.5; }

/* ---------- Buttons ---------- */
.btn {
    --pad-y: 0.82rem;
    --pad-x: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--pad-y) var(--pad-x);
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
    white-space: nowrap;
}
.btn-sm { --pad-y: 0.62rem; --pad-x: 1.05rem; font-size: 0.88rem; }
.btn-lg { --pad-y: 1.04rem; --pad-x: 1.75rem; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 20px 38px -8px rgba(232, 80, 46, 0.55); }

.btn-soft { background: var(--brand-soft); color: var(--brand-dark); }
.btn-soft:hover { background: #fbe2d8; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(27, 22, 20, 0.03); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(27, 22, 20, 0.07); background: rgba(255, 255, 255, 0.9); }
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: "Plus Jakarta Sans", sans-serif; }
.brand-logo { height: 32px; width: auto; display: block; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--brand), var(--brand-3));
    color: #fff;
    box-shadow: var(--shadow-brand);
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-name { font-size: 1.32rem; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; }

.nav-links { display: flex; gap: 1.7rem; }
.nav-links a {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--body);
    position: relative;
    transition: color 0.15s;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
    background: var(--brand); border-radius: 2px; transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 7vw, 100px) 0 clamp(64px, 8vw, 116px);
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: clamp(16px, 2.4vw, 40px);
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
}
.hero-copy h1 {
    font-size: clamp(2.2rem, 4.2vw, 3rem);
    margin: 1.15rem 0 0;
    letter-spacing: -0.035em;
}
.lead {
    font-size: clamp(1.06rem, 1.6vw, 1.24rem);
    color: var(--body);
    margin-top: 1.25rem;
    max-width: 34ch;
}
.lead strong { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }
.hero-cta .btn { white-space: nowrap; }
.hero-trust { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem; font-size: 0.86rem; font-weight: 500; color: var(--muted); }
.hero-trust svg { width: 16px; height: 16px; color: var(--green); flex: none; }

.hero-stats { display: flex; gap: 1.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hstat { display: grid; }
.hstat-num { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 1.7rem; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.hstat-num { background: linear-gradient(120deg, var(--brand), var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hstat-lab { font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; font-weight: 500; }

.ic-check { width: 18px; height: 18px; color: var(--green); flex: none; }
.ic-x { width: 18px; height: 18px; color: #d65a45; flex: none; }

/* hero visual + phone mockup */
.hero-visual { position: relative; display: grid; place-items: center; padding: 0.5rem 0 3rem; }
.hero-glow {
    position: absolute; width: 88%; height: 78%;
    background: radial-gradient(circle, rgba(255, 122, 69, 0.35), transparent 68%);
    filter: blur(20px); border-radius: 50%; z-index: 0;
    animation: heroGlow 16s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: translate(-3%, 1%) scale(1); }
    50% { transform: translate(3%, -3%) scale(1.07); }
}
/* Showcase PC + téléphone (mockups) */
.hero-showcase { position: relative; width: 92%; justify-self: end; z-index: 2; transition: transform 0.5s var(--ease); will-change: transform; }

/* --- Cadre ordinateur (écran qui défile) --- */
.hs-mac {
    position: relative; width: 100%;
    background: linear-gradient(150deg, #34343a 0%, #1b1b1e 55%, #2c2c30 100%);
    border-radius: 16px; padding: 1.3%;
    box-shadow: 0 40px 70px -30px rgba(20, 14, 12, 0.5), 0 16px 32px -22px rgba(20, 14, 12, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    animation: heroFloatA 8s ease-in-out infinite;
}
.hs-cam { position: absolute; top: 0.5%; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #45454a; z-index: 2; }
.hs-mac-screen { position: relative; aspect-ratio: 16 / 10; border-radius: 7px; overflow: hidden; background: #faf6f0; }

/* --- Cadre téléphone (écran qui défile) --- */
.hs-phone {
    position: absolute; right: 9%; bottom: -8%; width: 27%;
    aspect-ratio: 1170 / 2380;
    z-index: 5;
    background: linear-gradient(155deg, #46464a 0%, #1a1a1c 55%, #313135 100%);
    border-radius: 17% / 8.36%;
    box-shadow: 0 34px 60px -26px rgba(20, 14, 12, 0.55), 0 14px 26px -18px rgba(20, 14, 12, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: heroFloatB 6.5s ease-in-out infinite;
}
/* bezel fin et uniforme : margin en % = toujours relatif à la largeur (mêmes px sur les 4 côtés) */
.hs-phone-screen {
    position: absolute; inset: 0; margin: 3.4%;
    border-radius: 14% / 6.8%;
    overflow: hidden; background: #faf6f0;
}
.hs-island { position: absolute; top: 4.4%; left: 50%; transform: translateX(-50%); width: 30%; height: 3.4%; min-height: 9px; background: #050505; border-radius: 999px; z-index: 3; }

/* --- Contenu qui défile en continu --- */
.hs-scroll {
    position: absolute; inset: 0;
    background-repeat: no-repeat; background-size: 100% auto; background-position: 50% 0%;
    will-change: background-position;
}
.hs-scroll--mac { background-image: url("img/osteria-desktop-scroll.jpg?v=4"); animation: heroScrollMac 24s ease-out 0.8s forwards; }
.hs-scroll--phone { background-image: url("img/osteria-phone-scroll.jpg?v=4"); animation: heroScrollPhone 26s ease-out 0.8s forwards; }
@keyframes heroScrollMac { from { background-position: 50% 0%; } to { background-position: 50% 100%; } }
@keyframes heroScrollPhone { from { background-position: 50% 0%; } to { background-position: 50% 100%; } }
@keyframes heroFloatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes heroFloatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
/* Décalage constant à droite : le mockup (plus large que sa colonne) dégage le texte sans s'emballer sur les grands écrans */
@media (min-width: 1160px) {
    .hero-visual { margin-right: -150px; }
}
/* iPhone réaliste (cadre titane + Dynamic Island) */
.iphone {
    position: relative;
    z-index: 2;
    width: clamp(244px, 27vw, 288px);
    padding: 11px;
    border-radius: 52px;
    background: linear-gradient(150deg, #4a4a4d 0%, #1d1d1f 28%, #2a2a2c 55%, #1a1a1c 78%, #3a3a3d 100%);
    box-shadow:
        0 40px 70px -28px rgba(20, 14, 12, 0.55),
        0 18px 36px -22px rgba(20, 14, 12, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 0 0 6px rgba(0, 0, 0, 0.55);
}
.iphone-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 42px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.6);
}
.iphone-screen > img { display: block; width: 100%; height: auto; }
.iphone-statusbar {
    flex: none;
    display: flex; align-items: center; justify-content: space-between;
    height: 30px; padding: 10px 24px 0 28px;
    background: var(--ink); color: #fff;
    font-family: "Inter", sans-serif; font-weight: 600;
}
.sb-time { font-size: 0.72rem; letter-spacing: 0.02em; }
.sb-icons { display: inline-flex; align-items: center; gap: 5px; }
.sb-icons svg { height: 11px; width: auto; }
.iphone-island {
    position: absolute;
    top: 12px; left: 50%; transform: translateX(-50%);
    width: 34%; height: 26px;
    background: #000; border-radius: 999px;
    z-index: 3;
}
.iphone-btn {
    position: absolute; z-index: 1;
    background: linear-gradient(180deg, #3a3a3d, #19191b);
    border-radius: 2px;
}
.iphone-btn--silent { left: -2px; top: 15%; width: 3px; height: 26px; }
.iphone-btn--vol-up { left: -3px; top: 24%; width: 4px; height: 48px; }
.iphone-btn--vol-down { left: -3px; top: 34.5%; width: 4px; height: 48px; }
.iphone-btn--power { right: -3px; top: 27%; width: 4px; height: 64px; }

.float-card {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 0.8rem 1rem;
    animation: floaty 5.5s ease-in-out infinite;
}
.float-card--commission { top: 8%; left: -7%; display: grid; }
.float-card--commission .fc-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.float-card--commission .fc-value { font-size: 1.7rem; font-weight: 800; color: var(--green); font-family: "Plus Jakarta Sans"; line-height: 1.1; }
.float-card--order { bottom: -4%; left: -6%; display: flex; align-items: center; gap: 0.65rem; animation-delay: 1.6s; }
.fc-pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--brand); flex: none; }
.fc-title { display: block; font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.fc-sub { display: block; font-size: 0.76rem; color: var(--muted); }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 80, 46, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(232, 80, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 80, 46, 0); }
}

/* ---------- Marquee ---------- */
.marquee {
    overflow: hidden;
    background: var(--ink);
    padding: 0.95rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 1.6rem;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
}
.marquee-track i { color: var(--brand-2); font-style: normal; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Commission strip ---------- */
.strip { padding: clamp(48px, 6vw, 80px) 0 0; }
.strip-inner {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #2a2320, #15110f);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.strip-item { flex: 1; padding: 1.9rem 2.1rem; display: grid; gap: 0.3rem; align-content: center; }
.strip-top { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; opacity: 0.65; color: #fff; }
.strip-big { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1; letter-spacing: -0.03em; }
.strip-bottom { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.strip-item--bad .strip-big { color: #ff8a6e; }
.strip-item--good { background: rgba(255, 255, 255, 0.05); }
.strip-item--good .strip-big { color: #5ee0a4; }
.strip-vs {
    align-self: center;
    display: grid; place-items: center;
    width: 50px; height: 50px;
    background: var(--brand); color: #fff;
    border-radius: 50%;
    font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 0.9rem;
    margin: 0 -25px; z-index: 2;
    box-shadow: var(--shadow-brand);
    flex: none;
    border: 3px solid #1c1714;
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 116px) 0; position: relative; overflow: hidden; }
.section--soft { background: var(--cream); }
.section--dark { background: linear-gradient(160deg, #221b18, #14100e); }
.section > .container { position: relative; z-index: 1; }

/* Motifs mosaïque (azulejo) en arrière-plan */
.mosaic { position: relative; }
.mosaic::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%23e8502e' stroke-opacity='0.09' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(16,16)'%3E%3Cpath d='M15 2L28 28L2 28Z'/%3E%3Ccircle cx='15' cy='15' r='1.3'/%3E%3Ccircle cx='11' cy='22' r='1.3'/%3E%3Ccircle cx='19' cy='22' r='1.3'/%3E%3C/g%3E%3Cg transform='translate(100,18)'%3E%3Cpath d='M3 3H23L20 26H6Z'/%3E%3Cpath d='M23 7c5 0 5 8 0 9'/%3E%3C/g%3E%3Cg transform='translate(14,92)'%3E%3Cpath d='M3 9c6-9 22-9 28 0'/%3E%3Cpath d='M3 13h28'/%3E%3Cpath d='M4 17h26'/%3E%3Cpath d='M4 21c7 7 19 7 26 0'/%3E%3C/g%3E%3Cg transform='translate(106,96)'%3E%3Cpath d='M2 2v9M6 2v9M10 2v9M6 11v19'/%3E%3Cpath d='M22 2c5 1 5 10 0 11v17'/%3E%3C/g%3E%3Cg transform='translate(60,58)'%3E%3Cpath d='M5 11h18l-2 19H7Z'/%3E%3Cpath d='M9 11V3M14 11V1M18 11V4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 150px 150px;
    -webkit-mask-image: radial-gradient(130% 130% at 50% 45%, #000 28%, transparent 82%);
    mask-image: radial-gradient(130% 130% at 50% 45%, #000 28%, transparent 82%);
    animation: mosaic-drift 90s linear infinite;
}
.mosaic--dark::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%23ff7a45' stroke-opacity='0.11' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(16,16)'%3E%3Cpath d='M15 2L28 28L2 28Z'/%3E%3Ccircle cx='15' cy='15' r='1.3'/%3E%3Ccircle cx='11' cy='22' r='1.3'/%3E%3Ccircle cx='19' cy='22' r='1.3'/%3E%3C/g%3E%3Cg transform='translate(100,18)'%3E%3Cpath d='M3 3H23L20 26H6Z'/%3E%3Cpath d='M23 7c5 0 5 8 0 9'/%3E%3C/g%3E%3Cg transform='translate(14,92)'%3E%3Cpath d='M3 9c6-9 22-9 28 0'/%3E%3Cpath d='M3 13h28'/%3E%3Cpath d='M4 17h26'/%3E%3Cpath d='M4 21c7 7 19 7 26 0'/%3E%3C/g%3E%3Cg transform='translate(106,96)'%3E%3Cpath d='M2 2v9M6 2v9M10 2v9M6 11v19'/%3E%3Cpath d='M22 2c5 1 5 10 0 11v17'/%3E%3C/g%3E%3Cg transform='translate(60,58)'%3E%3Cpath d='M5 11h18l-2 19H7Z'/%3E%3Cpath d='M9 11V3M14 11V1M18 11V4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@keyframes mosaic-drift { from { background-position: 0 0; } to { background-position: 150px 150px; } }
@media (prefers-reduced-motion: reduce) { .mosaic::before { animation: none; } }
.section-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.kicker {
    display: inline-block;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 0.9rem;
}
.kicker--light { color: var(--brand-3); }
.section-head h2 { font-size: clamp(1.9rem, 3.9vw, 2.8rem); }
.section-sub { margin-top: 0.95rem; font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--body); }
.on-dark { color: #fff; }
.on-dark-sub { color: rgba(255, 255, 255, 0.72); }

/* decorative food images in sections */
.deco-food { position: absolute; z-index: 0; pointer-events: none; opacity: 0.9; filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.18)); }
.deco-food--left { width: 190px; left: -70px; top: 8%; transform: rotate(-16deg); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.3rem 1.9rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
    overflow: hidden;
}
.step::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-3));
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step:hover::before { transform: scaleX(1); }
.step-num {
    display: inline-grid; place-items: center;
    font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 1.05rem;
    width: 48px; height: 48px; border-radius: 15px;
    color: var(--brand); background: var(--brand-soft);
    margin-bottom: 1.15rem;
}
.step h3 { font-size: 1.24rem; margin-bottom: 0.55rem; }
.step p { font-size: 0.96rem; }

/* ---------- Feature grid ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feat-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.7rem;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-card--accent { background: linear-gradient(170deg, #fff, var(--brand-soft)); border-color: rgba(232, 80, 46, 0.22); }
.feat-flag {
    position: absolute; top: 1.4rem; right: 1.4rem;
    background: var(--brand); color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 0.28rem 0.65rem; border-radius: 999px; box-shadow: var(--shadow-brand);
}
.feat-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.75rem; }
.feat-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; flex: none; }
.feat-ic svg { width: 23px; height: 23px; }
.feat-ic--tomato { background: var(--brand-soft); color: var(--brand); }
.feat-ic--green { background: var(--green-soft); color: var(--green); }
.feat-ic--amber { background: var(--amber-soft); color: var(--amber); }
.feat-ic--purple { background: var(--violet-soft); color: var(--violet); }
.feat-ic--gold { background: var(--gold-soft); color: var(--gold); }
.feat-ic--accent { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.feat-head h3 { font-size: 1.14rem; }
.feat-card > p { font-size: 0.93rem; margin-bottom: 1.2rem; }

/* mini-mockups */
.mock { margin-top: auto; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 0.9rem; font-size: 0.85rem; }
.feat-card--accent .mock { background: #fff; }
.mock-row { display: flex; justify-content: space-between; align-items: center; padding: 0.35rem 0; color: var(--ink); font-weight: 500; }
.mock-pill { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.mock-strong { font-weight: 700; color: var(--green); }
.mock-cta { margin-top: 0.55rem; background: var(--brand); color: #fff; text-align: center; padding: 0.58rem; border-radius: 999px; font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-brand); }
.mock-pay { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.pay-chip { padding: 0.42rem 0.7rem; border-radius: 9px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: 0.8rem; color: var(--body); }
.pay-chip--on { background: var(--ink); color: #fff; border-color: var(--ink); }
.mock-orders { display: grid; gap: 0.5rem; }
.order-line { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink); }
.order-line--muted { color: var(--muted); }
.order-badge { font-size: 0.66rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 6px; background: var(--brand); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.order-badge--done { background: var(--green); }
.mock-loyalty { display: grid; gap: 0.6rem; }
.stamps { display: grid; grid-template-columns: repeat(10, 1fr); gap: 5px; }
.stamps i { aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed var(--line-strong); }
.stamps i.on { background: var(--brand); border: 0; }
.mock-note { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.mock-flyer { display: flex; align-items: center; gap: 0.9rem; }
.flyer-qr { width: 62px; height: 62px; flex: none; border-radius: 8px; background: #fff; padding: 4px; border: 1px solid var(--line); }

/* ---------- Inclus ---------- */
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem 1.9rem; }
.incl { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.4rem 0; }
.incl .ic-check { margin-top: 0; width: 30px; height: 30px; padding: 6px; background: var(--green-soft); border-radius: 9px; }
.incl h4 { font-size: 1.04rem; margin-bottom: 0.2rem; }
.incl p { font-size: 0.9rem; }

/* ---------- Compare (on dark) ---------- */
.compare {
    max-width: 880px; margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    padding: 1.05rem 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > span:first-child { font-weight: 600; color: var(--ink); }
.compare-row .col-us, .compare-row .col-them { display: inline-flex; align-items: center; gap: 0.4rem; justify-content: center; text-align: center; }
.col-us { color: var(--ink); font-weight: 600; }
.col-them { color: var(--muted); }
.col-us b { color: var(--green); }
.compare-row--head { background: var(--cream); }
.compare-row--head .col-us { color: var(--brand); font-family: "Plus Jakarta Sans"; font-weight: 800; }
.compare-row--head .col-them { color: var(--ink); font-family: "Plus Jakarta Sans"; font-weight: 700; }
.compare-row:nth-child(even):not(.compare-row--head) { background: rgba(250, 246, 240, 0.5); }

/* ---------- Économies (preuve chiffrée) ---------- */
.save {
    max-width: 760px; margin: clamp(28px, 4vw, 44px) auto 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.save-side {
    border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center;
    display: grid; gap: 0.35rem; align-content: center;
}
.save-side--bad { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); }
.save-side--good { background: linear-gradient(160deg, rgba(31, 138, 91, 0.18), rgba(31, 138, 91, 0.06)); border: 1px solid rgba(31, 138, 91, 0.4); }
.save-tag { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.72); letter-spacing: 0.02em; }
.save-num { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: -0.03em; color: #fff; }
.save-side--good .save-num { color: #4ed99a; }
.save-side--bad .save-num { color: #ff8b6b; }
.save-note { font-size: 0.86rem; color: rgba(255, 255, 255, 0.66); }
.save-foot { grid-column: 1 / -1; text-align: center; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); margin-top: 0.2rem; }

/* ---------- Réassurance ---------- */
.assure { padding: clamp(40px, 5vw, 64px) 0; background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.assure-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(18px, 2.2vw, 32px); }
@media (max-width: 1040px) { .assure-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .assure-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .assure-grid { grid-template-columns: 1fr; } }
.assure-item { display: flex; flex-direction: column; gap: 0.7rem; }
.assure-item > svg { width: 30px; height: 30px; color: var(--brand); }
.assure-item h4 { font-family: "Plus Jakarta Sans"; font-size: 1rem; color: var(--ink); margin: 0; }
.assure-item p { font-size: 0.86rem; color: var(--muted); margin: 0.2rem 0 0; line-height: 1.5; }

/* ---------- Garantie (tarifs) ---------- */
.guarantee {
    display: inline-flex; align-items: center; gap: 0.55rem;
    margin: 1.3rem auto 0; padding: 0.6rem 1.1rem;
    background: rgba(31, 138, 91, 0.08); border: 1px solid rgba(31, 138, 91, 0.25);
    border-radius: 999px; color: var(--ink); font-size: 0.88rem; font-weight: 500;
}
.guarantee svg { width: 18px; height: 18px; color: var(--green); flex: none; }

/* ---------- Case / exemple ---------- */
.case { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px, 5vw, 68px); align-items: center; }
.case-media { position: relative; }
.deco-food--case { width: 130px; right: -34px; top: -44px; transform: rotate(14deg); z-index: 3; }
.browser {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff;
    transition: transform 0.4s var(--ease);
}
.browser:hover { transform: translateY(-4px); }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--cream); border-bottom: 1px solid var(--line); }
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.browser-bar em { margin-left: 12px; font-style: normal; font-size: 0.8rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 3px 12px; }
.case-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.95rem; }
.case-copy p { margin-bottom: 1.1rem; }
.case-copy p + p { margin-top: -0.2rem; }
.case-copy strong { color: var(--ink); }
.case-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.4rem 0 1.8rem; }
.case-tags span {
    font-size: 0.8rem; font-weight: 600; color: var(--ink);
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: 0.42rem 0.9rem; box-shadow: 0 4px 12px rgba(27, 22, 20, 0.04);
}
@media (max-width: 760px) { .case-tags { justify-content: center; } }

/* ---------- Back-office / pilotage ---------- */
.kb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; margin-bottom: 1.4rem; }
.kb-stat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.9rem 1.05rem; box-shadow: 0 4px 14px rgba(27, 22, 20, 0.04); }
.ks-num { display: block; font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 1.75rem; color: var(--ink); line-height: 1.05; letter-spacing: -0.02em; }
.ks-num--green { color: var(--green); }
.ks-lab { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 0.4rem; }
.kb-stat--chart { display: flex; flex-direction: column; justify-content: space-between; }
.ks-chart { display: flex; align-items: flex-end; gap: 5px; height: 46px; }
.ks-chart span { flex: 1; height: 0; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--brand-2), var(--brand)); transition: height 0.9s var(--ease); }
.ks-chart.in span { height: var(--h); }
.ks-chart span:nth-child(2) { transition-delay: 0.08s; }
.ks-chart span:nth-child(3) { transition-delay: 0.16s; }
.ks-chart span:nth-child(4) { transition-delay: 0.24s; }
.ks-chart span:nth-child(5) { transition-delay: 0.32s; }
.ks-chart span:nth-child(6) { transition-delay: 0.40s; }
.ks-chart span:nth-child(7) { transition-delay: 0.48s; }
@media (max-width: 900px) { .kb-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .kb-stats { grid-template-columns: 1fr; } }

/* kanban animé */
.kanban {
    position: relative;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 1rem; margin-bottom: 2.6rem;
}
.kb-col { display: flex; flex-direction: column; min-width: 0; }
.kb-head { display: flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.kb-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.kb-dot--new { background: var(--brand); }
.kb-dot--conf { background: #cf9b3a; }
.kb-dot--prep { background: var(--brand-3); }
.kb-dot--done { background: var(--green); }
.kb-count { margin-left: auto; font-size: 0.72rem; font-weight: 700; color: var(--muted); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; min-width: 20px; text-align: center; padding: 0.05rem 0.4rem; }
.kb-count--bump { animation: kbBump 0.5s ease; }
@keyframes kbBump { 50% { transform: scale(1.35); color: var(--brand); } }
.kb-body { flex: 1; display: flex; flex-direction: column; gap: 0.55rem; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 0.55rem; min-height: 230px; }
.kb-card { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 0.6rem 0.65rem; box-shadow: 0 3px 10px rgba(27, 22, 20, 0.04); }
.kb-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.4rem; }
.kb-num { font-size: 0.78rem; font-weight: 800; color: var(--ink); }
.kb-tag { font-size: 0.62rem; font-weight: 700; padding: 0.12rem 0.45rem; border-radius: 999px; white-space: nowrap; }
.kb-tag--deliv { color: var(--brand); background: rgba(232, 80, 46, 0.12); }
.kb-tag--away { color: #b5651d; background: rgba(255, 157, 77, 0.18); }
.kb-meta { font-size: 0.66rem; color: var(--muted); margin-top: 0.2rem; }
.kb-items { font-size: 0.74rem; color: var(--body); margin-top: 0.3rem; line-height: 1.35; }
.kb-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 0.4rem; }
.kb-total { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 0.92rem; color: var(--brand); }
.kb-pay { font-size: 0.64rem; color: var(--muted); }
.kb-card--live { border-color: rgba(232, 80, 46, 0.45); box-shadow: 0 8px 22px rgba(232, 80, 46, 0.16); }
.kb-card--flash { animation: kbFlash 0.7s ease; }
@keyframes kbFlash { 0% { box-shadow: 0 0 0 0 rgba(232, 80, 46, 0.45); } 100% { box-shadow: 0 0 0 12px rgba(232, 80, 46, 0); } }
/* notification d'arrivée */
.kb-toast {
    position: absolute; top: 0; left: 50%; z-index: 6;
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--ink); color: #fff; border-radius: 12px; padding: 0.6rem 0.95rem;
    box-shadow: 0 18px 34px -12px rgba(20, 14, 12, 0.5);
    opacity: 0; pointer-events: none;
    transform: translate(-50%, -4px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.kb-toast.show { opacity: 1; transform: translate(-50%, -50%); }
.kb-toast-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-3); flex: none; }
.kb-toast-t { display: block; font-size: 0.8rem; font-weight: 700; }
.kb-toast-s { display: block; font-size: 0.72rem; color: rgba(255, 255, 255, 0.72); }

/* points clés sous le kanban */
.bo-list { display: grid; gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.bo-list--row { grid-template-columns: repeat(4, 1fr); gap: 1.7rem; }
.bo-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.bo-list svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 2px; }
.bo-list h4 { font-size: 1rem; margin: 0 0 0.2rem; }
.bo-list p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
    .kanban { grid-template-columns: repeat(2, 1fr); }
    .bo-list--row { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
}
@media (max-width: 540px) {
    .kanban { grid-template-columns: 1fr; }
    .kb-body { min-height: 0; }
    .bo-list--row { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 880px; margin: 0 auto; align-items: stretch; }
.plan {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.4rem 2.1rem;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--featured { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); }
.plan--featured::before {
    content: ""; position: absolute; inset: -2px; border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(232, 80, 46, 0.08), transparent 50%);
    pointer-events: none;
}
.plan-tag {
    position: absolute; top: -14px; left: 2.1rem;
    background: var(--brand); color: #fff;
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 0.38rem 0.85rem; border-radius: 999px; box-shadow: var(--shadow-brand);
}
.plan-name { font-size: 1.4rem; }
.plan-desc { font-size: 0.92rem; margin: 0.35rem 0 1.4rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.4rem; }
.plan-price .amount { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 2.8rem; color: var(--ink); letter-spacing: -0.04em; }
.plan-price .period { color: var(--muted); font-weight: 600; }
.plan-note { font-size: 0.84rem; color: var(--brand-dark); font-weight: 600; margin-top: 0.55rem; }
.plan-list { list-style: none; display: grid; gap: 0.75rem; margin: 1.6rem 0; }
.plan-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; color: var(--ink); }
.plan-list .ic-check { margin-top: 2px; }
.plan .btn { margin-top: auto; }
.pricing-foot { text-align: center; margin-top: 1.7rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; }
.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 0 1.5rem; box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: rgba(232, 80, 46, 0.3); box-shadow: var(--shadow-md); }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 1.2rem 0;
    font-family: "Plus Jakarta Sans"; font-weight: 700; color: var(--ink); font-size: 1.02rem;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: ""; width: 11px; height: 11px;
    border-right: 2.4px solid var(--brand); border-bottom: 2.4px solid var(--brand);
    transform: rotate(45deg); transition: transform 0.25s var(--ease); flex: none; margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-item p { padding: 0 0 1.3rem; font-size: 0.96rem; }

/* ---------- CTA final ---------- */
.cta {
    position: relative; overflow: hidden;
    padding: clamp(64px, 8vw, 110px) 0;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 55%, var(--brand-3) 130%);
}
.cta-food { position: absolute; z-index: 1; opacity: 0.9; pointer-events: none; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25)); }
.cta-food--1 { width: 170px; left: -50px; bottom: -34px; transform: rotate(-18deg); }
.cta-food--2 { width: 150px; right: -44px; top: -34px; transform: rotate(16deg); }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 2.9rem); }
.cta-inner p { color: rgba(255, 255, 255, 0.92); margin: 1.05rem 0 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.brand--footer .brand-name { color: #fff; }
.footer-brand p { margin-top: 0.95rem; font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 0.92rem; margin-bottom: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer-col a { display: block; font-size: 0.92rem; padding: 0.3rem 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.7rem; font-size: 0.85rem; }
.footer-bottom a { color: #fff; font-weight: 600; }
.footer-bottom a:hover { color: var(--brand-2); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.steps .step:nth-child(2), .feat-grid .feat-card:nth-child(2) { transition-delay: 0.08s; }
.steps .step:nth-child(3), .feat-grid .feat-card:nth-child(3) { transition-delay: 0.16s; }
.feat-grid .feat-card:nth-child(4) { transition-delay: 0.06s; }
.feat-grid .feat-card:nth-child(5) { transition-delay: 0.12s; }
.feat-grid .feat-card:nth-child(6) { transition-delay: 0.18s; }
.incl-grid .incl:nth-child(2), .incl-grid .incl:nth-child(5) { transition-delay: 0.07s; }
.incl-grid .incl:nth-child(3), .incl-grid .incl:nth-child(6) { transition-delay: 0.14s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-stats { justify-content: center; }
    .hero-cta { flex-wrap: wrap; }
    .hero-trust { justify-content: center; text-align: center; }
    .hero-visual { margin-top: 1.5rem; min-height: 0; margin-right: 0; }
    .hero-showcase { width: 100%; justify-self: center; }
    .hs-phone { right: 0; }
    .case { grid-template-columns: 1fr; }
    .case-copy { text-align: center; }
    .deco-food--case { display: none; }
    .deco-food--left { display: none; }
    .steps, .feat-grid, .incl-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 760px) {
    .nav-links, .nav-actions .btn-ghost { display: none; }
    .nav-toggle { display: flex; }
    .site-header.menu-open .nav-links {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: #fff; padding: 1rem 22px 1.4rem; gap: 0.2rem;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    }
    .site-header.menu-open .nav-links a { padding: 0.75rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
    .site-header.menu-open .nav-links a::after { display: none; }
    .strip-inner { flex-direction: column; }
    .strip-vs { margin: -25px auto; }
    .steps, .feat-grid, .incl-grid { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1.15fr 0.9fr 0.95fr; padding: 0.9rem 1rem; font-size: 0.82rem; }
    .float-card--commission { left: 2%; }
    .float-card--order { right: 2%; }
    .cta-food { width: 110px; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

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