/* ==========================================================================
   BLDNTECH — Feuille de style (sans dépendance, compatible OVH mutualisé)
   ========================================================================== */

:root {
    --ink: #09090b;
    --ink-2: #1c1917;
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --white: #ffffff;
    --emerald: #059669;
    --red: #ef4444;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.12);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --display: 'Space Grotesk', var(--font);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--zinc-50);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }
.muted { color: var(--zinc-500); }
.dim { color: var(--zinc-500); }
.strong { font-weight: 700; color: var(--ink); }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .78rem; }

/* ---- Icônes ---- */
.icon { width: 20px; height: 20px; flex: 0 0 auto; }
.icon-xs { width: 15px; height: 15px; flex: 0 0 auto; }
.icon-flip { transform: rotate(180deg); width: 15px; height: 15px; }

/* ---- Barre supérieure lumineuse ---- */
.top-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,.4), rgba(99,102,241,.5));
    position: sticky; top: 0; z-index: 60;
}

/* ============================ EN-TÊTE ============================ */
.site-header {
    position: sticky; top: 3px; z-index: 50;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(228, 228, 231, .6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(135deg, #000, var(--zinc-600));
    color: #fff; font-weight: 900; font-family: var(--display);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}
.brand-logo.big { width: 56px; height: 56px; font-size: 1.6rem; border-radius: 16px; }
.brand-text strong { font-size: .82rem; letter-spacing: .12em; font-weight: 900; display: block; }
.brand-text small { font-size: .52rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--zinc-500); }
.brand.small strong { font-size: .85rem; letter-spacing: .12em; }

.nav-pills { display: flex; gap: 4px; background: rgba(255,255,255,.7); padding: 4px; border-radius: 12px; border: 1px solid rgba(228,228,231,.5); }
.nav-pills a { padding: 7px 16px; border-radius: 9px; font-size: .82rem; font-weight: 500; color: var(--zinc-600); transition: .2s; }
.nav-pills a:hover { background: var(--zinc-100); color: var(--ink); }
.nav-pills a.active { background: #fff; border: 1px solid var(--zinc-200); font-weight: 800; color: #000; box-shadow: var(--shadow); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.cart-btn { position: relative; padding: 8px; color: var(--zinc-600); border-radius: 50%; transition: .2s; }
.cart-btn:hover { background: var(--zinc-100); color: #000; }
.cart-badge {
    position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
    background: var(--emerald); color: #fff; font-size: .62rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; background: none; border: 1px solid rgba(228,228,231,.6); border-radius: 10px; padding: 8px; cursor: pointer; }

/* ---- Menu mobile ---- */
.mobile-menu { display: none; flex-direction: column; gap: 8px; padding: 16px 20px 28px; background: var(--zinc-50); border-bottom: 1px solid var(--zinc-200); }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(228,228,231,.6); font-weight: 700; }
.mobile-menu a.full { justify-content: center; border: none; margin-top: 8px; }

/* ============================ BOUTONS ============================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 12px; font-weight: 700; font-size: .85rem;
    cursor: pointer; border: none; transition: transform .2s, opacity .2s, background .2s; font-family: var(--font);
}
.btn:active { transform: scale(.96); }
.btn-dark { background: linear-gradient(90deg, #000, var(--zinc-600)); color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.btn-dark:hover { opacity: .94; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--zinc-200); box-shadow: var(--shadow); }
.btn-ghost:hover { background: var(--zinc-50); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn-lg { padding: 14px 28px; font-size: .9rem; }
.btn-sm { padding: 8px 14px; font-size: .78rem; border-radius: 10px; }
.btn.full { width: 100%; }

.icon-btn { background: #fff; border: 1px solid var(--zinc-200); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--zinc-500); transition: .2s; }
.icon-btn:hover { color: var(--red); border-color: #fecaca; }
.icon-btn.danger:hover { color: var(--red); }
.link-mono { font-family: ui-monospace, monospace; font-size: .78rem; font-weight: 700; color: #000; display: inline-block; margin-top: 16px; }
.link-mono:hover { text-decoration: underline; }

/* ============================ SECTIONS ============================ */
.site-main { min-height: 40vh; }
.eyebrow { display: inline-block; font-family: ui-monospace, monospace; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #000; margin-bottom: 14px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h1, .section-head h2 { font-family: var(--display); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.section-head h1 { font-size: clamp(2rem, 5vw, 3rem); }
.section-head p { color: var(--zinc-500); }
.gradient { background: linear-gradient(90deg, #000, var(--zinc-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- HERO ---- */
.hero { text-align: center; padding: 72px 0 56px; }
.hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -.03em; max-width: 900px; margin: 0 auto 20px; }
.hero .lead { font-size: clamp(1rem, 2vw, 1.18rem); color: var(--zinc-500); max-width: 620px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Showcase / cartes projets ---- */
.showcase { padding: 40px 0 80px; background: #fff; border-radius: 48px 48px 0 0; box-shadow: var(--shadow); border-top: 1px solid var(--zinc-100); }
.carousel { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.proj-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proj-media { height: 180px; background-size: cover; background-position: center; position: relative; }
.proj-badge { position: absolute; top: 12px; left: 12px; background: rgba(9,9,11,.85); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 8px; }
.proj-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.proj-subtitle { font-size: .62rem; font-weight: 700; letter-spacing: .16em; color: var(--zinc-400); text-transform: uppercase; }
.proj-body h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 800; margin: 4px 0 10px; }
.proj-body p { font-size: .86rem; color: var(--zinc-500); margin-bottom: 14px; flex: 1; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.proj-tags span { font-size: .66rem; font-weight: 600; background: var(--zinc-100); color: var(--zinc-600); padding: 4px 10px; border-radius: 20px; }
.proj-actions { display: flex; gap: 8px; align-items: center; }
.proj-actions form { display: inline; }

/* ---- Grilles génériques ---- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.pricing, .services, .process, .why, .testimonials { padding: 70px 0; }
.pricing { background: #fff; }
.services { background: var(--zinc-50); }
.testimonials { background: #fff; }

.feature-card, .why-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); transition: transform .25s; }
.feature-card:hover, .why-card:hover { transform: translateY(-3px); }
.feature-icon { display: inline-flex; padding: 12px; background: var(--zinc-100); border-radius: 12px; margin-bottom: 16px; color: #000; }
.feature-card h3, .why-card h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p, .why-card p { font-size: .86rem; color: var(--zinc-500); }

/* ---- Tarifs ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.pricing-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; }
.pricing-card.highlight { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.pricing-card.highlight::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, #000, var(--emerald)); }
.pricing-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pricing-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 14px; background: var(--zinc-100); color: #000; }
.pricing-label { font-family: ui-monospace, monospace; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--emerald); text-align: right; }
.pricing-card h3 { font-family: var(--display); font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.05; font-weight: 900; }
.pricing-price strong { display: block; font-family: var(--display); font-size: clamp(2rem, 5vw, 3.2rem); line-height: .95; font-weight: 900; letter-spacing: -.02em; }
.pricing-price small { display: block; color: var(--zinc-500); font-size: .8rem; margin-top: 8px; }
.pricing-card p { color: var(--zinc-600); font-size: .9rem; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; flex: 1; }
.pricing-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; font-weight: 600; color: var(--ink); }
.pricing-list svg { color: var(--emerald); margin-top: 2px; }
.payment-note { margin: 24px auto 0; max-width: 860px; display: flex; gap: 14px; align-items: center; justify-content: center; background: var(--zinc-50); border: 1px dashed var(--zinc-300); border-radius: var(--radius); padding: 18px 20px; color: var(--zinc-600); text-align: left; }
.payment-note svg { color: var(--emerald); flex: 0 0 auto; }
.payment-note p { font-size: .9rem; font-weight: 600; }

/* ---- Étapes processus ---- */
.step-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, #000, var(--zinc-600)); color: #fff; font-family: var(--display); font-weight: 700; margin-bottom: 14px; }
.step-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 800; }
.step-tagline { display: block; font-size: .72rem; font-weight: 700; color: var(--zinc-400); text-transform: uppercase; letter-spacing: .1em; margin: 4px 0 10px; }
.step-card p { font-size: .84rem; color: var(--zinc-500); margin-bottom: 14px; }
.step-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step-card li { display: flex; gap: 8px; align-items: center; font-size: .8rem; font-weight: 500; }
.step-card li svg { color: var(--emerald); }

/* ---- Témoignages ---- */
.testi-card { background: rgba(255,255,255,.6); border: 1px solid var(--zinc-200); border-radius: 28px; padding: 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.testi-card.highlight { background: #fff; box-shadow: var(--shadow-lg); }
.stars { color: #eab308; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-style: italic; font-size: .9rem; color: var(--ink); margin-bottom: 24px; flex: 1; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #000, var(--zinc-600)); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.testi-author strong { display: block; font-size: .88rem; }
.testi-author small { color: var(--zinc-500); font-size: .78rem; }

/* ============================ FAQ ============================ */
.faq-page { padding: 70px 0; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--zinc-200); background: #fff; border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; font-family: var(--display); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.faq-chevron { display: flex; width: 30px; height: 30px; border-radius: 50%; background: var(--zinc-100); align-items: center; justify-content: center; transition: transform .3s; flex: 0 0 auto; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }
.faq-a p { font-size: .88rem; color: var(--zinc-600); }

/* ============================ CONTACT ============================ */
.contact-page, .cart-page, .legal-page { padding: 64px 0; }
.contact-pricing-note { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius); padding: 18px; margin-bottom: 18px; box-shadow: var(--shadow); }
.contact-pricing-note svg { color: var(--emerald); flex: 0 0 auto; }
.contact-pricing-note strong { display: block; font-family: var(--display); font-size: 1rem; margin-bottom: 4px; }
.contact-pricing-note p { color: var(--zinc-500); font-size: .84rem; }
.contact-form { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: ui-monospace, monospace; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--zinc-600); }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--zinc-200); border-radius: 12px;
    font-family: var(--font); font-size: .88rem; background: #fff; outline: none; transition: border .2s; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; font-family: ui-monospace, monospace; font-size: .82rem; }

.success-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 44px; text-align: center; box-shadow: var(--shadow); }
.success-icon { display: inline-flex; width: 56px; height: 56px; border-radius: 50%; background: var(--zinc-100); align-items: center; justify-content: center; color: #000; margin-bottom: 16px; }
.success-card h3 { font-family: var(--display); margin-bottom: 10px; }
.success-card p { color: var(--zinc-500); font-size: .9rem; }

/* ============================ PANIER ============================ */
.empty-cart { text-align: center; padding: 60px 20px; background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); }
.empty-icon { display: inline-flex; color: var(--zinc-300); margin-bottom: 14px; }
.empty-icon svg { width: 48px; height: 48px; }
.empty-cart p { margin-bottom: 6px; }
.empty-cart .btn { margin-top: 18px; }
.cart-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cart-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.cart-thumb { width: 64px; height: 64px; border-radius: 12px; background-size: cover; background-position: center; background-color: var(--zinc-100); flex: 0 0 auto; }
.cart-info { flex: 1; }
.cart-info h4 { font-size: .92rem; }
.cart-info small { color: var(--zinc-500); text-transform: uppercase; font-size: .64rem; letter-spacing: .1em; font-weight: 700; }
.cart-price { text-align: right; min-width: 112px; }
.cart-price strong { display: block; font-family: var(--display); font-size: 1.05rem; }
.cart-price small { display: block; color: var(--emerald); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.cart-note { margin: 0 0 14px; color: var(--zinc-500); font-size: .84rem; text-align: center; }

/* ============================ NEWSLETTER ============================ */
.newsletter { background: #fff; border-top: 1px solid var(--zinc-100); border-bottom: 1px solid var(--zinc-100); padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-copy h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.newsletter-copy p { color: var(--zinc-500); font-size: .9rem; max-width: 360px; }
.newsletter-form { display: flex; gap: 8px; flex: 1; min-width: 280px; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--zinc-200); border-radius: 12px; font-size: .9rem; outline: none; }
.newsletter-form input:focus { border-color: var(--ink); }

/* ============================ PIED DE PAGE ============================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 48px 0 28px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 36px; }
.footer-about { max-width: 320px; }
.footer-about .brand { margin-bottom: 14px; }
.footer-about .brand strong { color: #fff; }
.footer-about p { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: .2s; }
.footer-social a:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: #fff; font-family: var(--display); font-size: .9rem; margin-bottom: 4px; }
.footer-col a { font-size: .8rem; color: rgba(255,255,255,.6); transition: .2s; }
.footer-col a:hover { color: #fff; }
.admin-link { color: #d4a72c !important; display: flex; align-items: center; gap: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; font-size: .68rem; color: rgba(255,255,255,.4); }

/* ============================ TOASTS ============================ */
.toast-stack { position: fixed; top: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--zinc-200); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-lg); max-width: 360px; animation: toast-in .3s ease; }
.toast-error { border-color: #fecaca; }
.toast-icon { display: flex; width: 30px; height: 30px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(0,0,0,.06); color: #000; flex: 0 0 auto; }
.toast-error .toast-icon { background: #fef2f2; color: var(--red); }
.toast p { font-size: .85rem; font-weight: 500; }
@keyframes toast-in { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }

/* ============================ CHAT ============================ */
.chat-widget { position: fixed; bottom: 22px; right: 22px; z-index: 100; display: flex; flex-direction: column; align-items: flex-end; }
.chat-toggle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #000, var(--zinc-600)); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,.3); transition: transform .2s; }
.chat-toggle:hover { transform: scale(1.08); }
.chat-window { width: 340px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--zinc-200); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 14px; display: flex; flex-direction: column; }
.chat-window[hidden] { display: none; }
.chat-head { background: linear-gradient(90deg, #000, var(--zinc-600)); color: #fff; padding: 16px; display: flex; justify-content: space-between; align-items: center; }
.chat-head-info { display: flex; gap: 10px; align-items: center; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 900; border: 1px solid rgba(255,255,255,.3); }
.chat-head strong { font-size: .9rem; }
.chat-head small { font-size: .68rem; color: rgba(255,255,255,.8); }
.chat-close { background: none; border: none; color: rgba(255,255,255,.85); cursor: pointer; }
.chat-body { height: 300px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--zinc-50); }
.chat-msg { max-width: 85%; padding: 12px 14px; border-radius: 14px; font-size: .85rem; line-height: 1.45; }
.chat-msg.bot { background: #fff; border: 1px solid var(--zinc-200); align-self: flex-start; border-top-left-radius: 4px; }
.chat-msg.user { background: var(--ink); color: #fff; align-self: flex-end; border-top-right-radius: 4px; }
.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--zinc-100); }
.chat-form input { flex: 1; padding: 10px 14px; border: 1px solid var(--zinc-200); border-radius: 10px; outline: none; font-size: .85rem; }
.chat-form button { width: 40px; height: 40px; border-radius: 10px; border: none; background: linear-gradient(135deg, var(--ink-2), #000); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ============================ DÉMOS MÉTIER ============================ */
.demo-bar { background: var(--ink); color: #fff; padding: 12px 0; position: sticky; top: 0; z-index: 40; }
.demo-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.demo-back { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.8); }
.demo-back:hover { color: #fff; }
.demo-title { font-size: .82rem; color: rgba(255,255,255,.7); }
.demo-frame { background: #fff; min-height: 80vh; }

/* ---- Identité couleur propre à chaque démo (--brand) ---- */
.demo-restaurant, .demo-bar-restaurant { --brand: #9a3412; --brand-2: #c2410c; --brand-soft: #ffedd5; }
.demo-ecommerce,  .demo-bar-ecommerce  { --brand: #3f6212; --brand-2: #4d7c0f; --brand-soft: #ecfccb; }
.demo-hotel,      .demo-bar-hotel      { --brand: #1e3a5f; --brand-2: #2c5282; --brand-soft: #dbeafe; }
.demo-carrental,  .demo-bar-carrental  { --brand: #991b1b; --brand-2: #dc2626; --brand-soft: #fee2e2; }
.demo-hairsalon,  .demo-bar-hairsalon  { --brand: #9d174d; --brand-2: #db2777; --brand-soft: #fce7f3; }

/* Barre de démo aux couleurs de la marque */
.demo-bar[class*="demo-bar-"] { background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.demo-bar[class*="demo-bar-"] .btn-dark { background: #fff; color: var(--brand); box-shadow: none; }

/* Application du thème aux composants de la démo */
.demo-frame .btn-dark { background: linear-gradient(90deg, var(--brand), var(--brand-2)); box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 30%, transparent); }
.demo-frame .btn-light { color: var(--brand); }
.demo-frame .tpl-price { color: var(--brand); }
.demo-frame .tpl-eyebrow { background: var(--brand-2); color: #fff; }
.demo-frame .tpl-cat { color: var(--brand); border-bottom-color: var(--brand-soft); }
.demo-frame .tpl-slot.selected { background: var(--brand); border-color: var(--brand); }
.demo-frame .tpl-caution { border-color: var(--brand-soft); background: color-mix(in srgb, var(--brand-soft) 50%, #fff); color: var(--brand); }
.demo-frame .success-icon { background: var(--brand-soft); color: var(--brand); }
.demo-frame .status.status-new { background: var(--brand-soft); color: var(--brand); }
.demo-frame .stat-card svg { color: var(--brand); }
.demo-frame .stat-card.dark { background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.demo-frame .stat-card.dark svg, .demo-frame .stat-card.dark h4 { color: rgba(255,255,255,.85); }
.demo-frame .admin-tabs a.active { background: var(--brand); border-color: var(--brand); }
.demo-frame .panel h3 svg, .demo-frame .dadmin .eyebrow { color: var(--brand); }
.demo-frame .tpl-secure svg { color: var(--brand); }

.tpl-hero { height: 420px; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; position: relative; background-color: var(--brand); }
.tpl-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
/* Dégradé de marque superposé à la photo : la photo reste visible, mais si elle
   ne charge pas, le héros affiche un beau dégradé de couleur (jamais de gris). */
.tpl-hero-resto { background-image: linear-gradient(135deg, rgba(124,45,18,.78), rgba(194,65,12,.55)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=1600&auto=format&fit=crop'); }
.tpl-hero-hotel { background-image: linear-gradient(135deg, rgba(15,33,68,.82), rgba(44,82,130,.55)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1600&auto=format&fit=crop'); }
.tpl-hero-shop  { background-image: linear-gradient(135deg, rgba(54,83,20,.78), rgba(77,124,15,.5)), url('https://images.unsplash.com/photo-1556228720-195a672e8a03?q=80&w=1600&auto=format&fit=crop'); }
.tpl-hero-car   { background-image: linear-gradient(135deg, rgba(127,29,29,.8), rgba(220,38,38,.5)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop'); }
.tpl-hero-hair  { background-image: linear-gradient(135deg, rgba(131,24,67,.78), rgba(219,39,119,.5)), url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=1600&auto=format&fit=crop'); }
.tpl-hero-overlay { position: relative; z-index: 2; color: #fff; padding: 20px; }
.tpl-hero-overlay h1 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; margin: 8px 0 12px; }
.tpl-hero-overlay p { font-size: 1.05rem; color: rgba(255,255,255,.9); margin-bottom: 22px; }
.tpl-eyebrow { font-family: ui-monospace, monospace; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; background: rgba(255,255,255,.18); padding: 6px 14px; border-radius: 30px; }
.tpl-section { max-width: 1000px; margin: 0 auto; padding: 56px 20px; }
.tpl-h2 { font-family: var(--display); font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 32px; }

.tpl-menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.tpl-menu-card { border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tpl-menu-img { height: 160px; background-size: cover; background-position: center; background-color: var(--zinc-100); }
.tpl-menu-img.tall { height: 200px; }
.tpl-menu-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tpl-menu-head { display: flex; justify-content: space-between; align-items: baseline; }
.tpl-menu-head h3 { font-family: var(--display); font-size: 1.1rem; }
.tpl-price { font-weight: 800; color: var(--ink); white-space: nowrap; }
.tpl-price small { font-weight: 500; color: var(--zinc-400); font-size: .7rem; }
.tpl-menu-body p { font-size: .82rem; color: var(--zinc-500); flex: 1; }
.tpl-menu-body .btn { align-self: flex-start; margin-top: 6px; }
.tpl-caution { font-size: .72rem; color: var(--zinc-500); background: var(--zinc-50); border: 1px dashed var(--zinc-200); padding: 8px 10px; border-radius: 8px; }

.tpl-shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.tpl-shop-card { border: 1px solid var(--zinc-200); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); text-align: left; }
.tpl-shop-img { height: 150px; background-size: cover; background-position: center; background-color: var(--zinc-100); border-radius: 12px; margin-bottom: 12px; }
.tpl-shop-card h3 { font-family: var(--display); font-size: 1rem; margin-bottom: 4px; }
.tpl-shop-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }

.tpl-booking { display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end; background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); justify-content: center; }
.tpl-booking .field { min-width: 150px; }

.tpl-slots { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.tpl-slot { padding: 12px 22px; border: 1px solid var(--zinc-200); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 700; transition: .2s; }
.tpl-slot:hover { border-color: var(--ink); }
.tpl-slot.selected { background: var(--ink); color: #fff; border-color: var(--ink); }

.tpl-order-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: #fff; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; z-index: 45; box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
.tpl-order-bar span { font-weight: 600; font-size: .9rem; }

/* ---- Démo : switch client/admin + composants ---- */
.demo-switch { display: flex; gap: 4px; background: rgba(255,255,255,.1); padding: 4px; border-radius: 10px; }
.demo-switch a { padding: 6px 14px; border-radius: 7px; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.7); }
.demo-switch a.active { background: #fff; color: var(--ink); }

.tpl-cat { font-family: var(--display); font-size: 1.05rem; font-weight: 700; margin: 28px 0 14px; color: var(--zinc-600); border-bottom: 1px solid var(--zinc-200); padding-bottom: 8px; }
.tpl-trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; background: var(--zinc-50); border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 20px; }
.tpl-trust > div { text-align: center; min-width: 140px; }
.tpl-trust strong { display: block; font-size: .9rem; }
.tpl-trust small { color: var(--zinc-500); font-size: .76rem; }
.tpl-note { font-size: .78rem; color: var(--zinc-500); margin-top: 8px; }

.tpl-checkout-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 26px; align-items: start; }
.tpl-summary, .tpl-form { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.tpl-summary h3, .tpl-form h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 16px; }
.tpl-form .field { margin-bottom: 14px; }
.tpl-summary-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--zinc-100); }
.tpl-summary-row span:first-child { flex: 1; font-size: .88rem; }
.tpl-summary-row small { color: var(--zinc-400); }
.tpl-summary-total { display: flex; justify-content: space-between; padding-top: 14px; margin-top: 8px; font-family: var(--display); font-weight: 800; font-size: 1.05rem; }
.tpl-secure { display: flex; align-items: center; gap: 6px; justify-content: center; font-size: .74rem; color: var(--zinc-500); margin-top: 12px; }
form.inline { display: inline; }

.tpl-confirm { display: flex; justify-content: center; }
.tpl-confirm-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 44px; max-width: 520px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.tpl-confirm-card h2 { font-family: var(--display); margin: 12px 0 8px; }
.tpl-confirm-recap { text-align: left; background: var(--zinc-50); border-radius: var(--radius); padding: 18px; margin: 22px 0; }
.tpl-confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.dadmin { max-width: 1080px; margin: 0 auto; padding: 32px 20px 60px; }
.dadmin-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }

@media (max-width: 700px) {
    .tpl-checkout-grid { grid-template-columns: 1fr; }
}

/* ============================ ADMINISTRATION ============================ */
.admin-body { background: var(--zinc-100); }
.login-screen { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 40px; max-width: 400px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); }
.login-card .brand-logo { margin: 0 auto 18px; }
.login-card h1 { font-family: var(--display); font-size: 1.6rem; margin-bottom: 6px; }
.login-card form { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 12px; text-align: left; }

.admin-shell { max-width: 1180px; margin: 0 auto; padding: 28px 20px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--zinc-200); }
.admin-tabs { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 28px; padding-bottom: 4px; }
.admin-tabs a { display: flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 10px; font-size: .82rem; font-weight: 700; white-space: nowrap; background: #fff; border: 1px solid var(--zinc-200); color: var(--zinc-600); }
.admin-tabs a.active { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.stat-card.dark { background: var(--ink-2); color: #fff; }
.stat-card svg { color: #000; margin-bottom: 12px; }
.stat-card.dark svg { color: var(--zinc-400); }
.stat-card h4 { font-size: .64rem; font-family: ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 6px; font-weight: 700; }
.stat-card.dark h4 { color: var(--zinc-400); }
.stat-card p { font-family: var(--display); font-size: 1.7rem; font-weight: 800; }
.stat-card p small { font-family: var(--font); font-size: .72rem; font-weight: 600; color: var(--emerald); margin-left: 6px; }

.panel { background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.panel h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.admin-cols { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; align-items: start; }
.stack { display: flex; flex-direction: column; gap: 14px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.admin-table th { text-align: left; font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: var(--zinc-400); padding: 10px 12px; border-bottom: 1px solid var(--zinc-200); }
.admin-table td { padding: 12px; border-bottom: 1px solid var(--zinc-100); }

.admin-row { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--zinc-100); border-radius: 12px; margin-bottom: 10px; }
.admin-row-thumb { width: 48px; height: 48px; border-radius: 10px; background-size: cover; background-position: center; background-color: var(--zinc-100); flex: 0 0 auto; }
.admin-row-info { flex: 1; }
.admin-row-info strong { display: block; font-size: .9rem; }
.admin-row-info small { color: var(--zinc-500); font-size: .7rem; }

.lead-card { border: 1px solid var(--zinc-200); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.lead-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.lead-head strong { display: block; }
.lead-head a { font-size: .76rem; }
.lead-meta { display: flex; gap: 8px; align-items: center; }
.tag { background: var(--zinc-100); color: var(--zinc-600); font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.status { font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: capitalize; }
.status-pending { background: #fef3c7; color: #b45309; }
.status-analyzing { background: #dbeafe; color: #1d4ed8; }
.status-accepted { background: #dcfce7; color: #15803d; }
.status-refused { background: #fee2e2; color: #b91c1c; }
.lead-msg { font-size: .85rem; color: var(--zinc-600); background: var(--zinc-50); padding: 12px; border-radius: 10px; margin-bottom: 12px; }
.lead-foot { display: flex; justify-content: space-between; align-items: center; }
.lead-actions { display: flex; gap: 8px; align-items: center; }
.lead-actions select { padding: 6px 10px; border-radius: 8px; border: 1px solid var(--zinc-200); font-size: .78rem; }

.setting-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.setting-row strong { display: block; }

.legal-body { line-height: 1.8; color: var(--zinc-600); }
.legal-body p { margin-bottom: 16px; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
    .nav-pills, .header-cta { display: none; }
    .hamburger { display: block; }
    .admin-cols { grid-template-columns: 1fr; }
    .footer-grid { gap: 28px; }
}
@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
    .newsletter-inner { flex-direction: column; align-items: stretch; }
    .footer-bottom { flex-direction: column; }
    .section-head { margin-bottom: 32px; }
}

/* ============================ EFFETS MODERNES (3D / scroll / parallax) ============================ */
/* Révélation au défilement */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .40s; }
.reveal-scale { opacity: 0; transform: translateY(28px) scale(.96); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.in { opacity: 1; transform: none; }

/* Scène 3D + cartes inclinables au survol */
.scene { perspective: 1200px; }
.tilt { transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; transform-style: preserve-3d; will-change: transform; }
.tilt .tilt-pop { transform: translateZ(36px); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.tilt .tilt-shine { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), transparent 45%); transition: opacity .3s; mix-blend-mode: overlay; }
.tilt:hover .tilt-shine { opacity: 1; }

/* Zoom d'image fluide */
.zoom-wrap { overflow: hidden; }
.zoom-wrap img, .zoom-img { transition: transform .9s cubic-bezier(.16,1,.3,1); }
.zoom-wrap:hover img, .zoom-wrap:hover .zoom-img { transform: scale(1.08); }

/* Dégradé animé (aura du hero) */
@keyframes floatAura { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(4%, -3%, 0) scale(1.12); } }
.aura { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: -1; animation: floatAura 14s ease-in-out infinite; }

/* Bouton magnétique / brillance */
.btn-dark { position: relative; overflow: hidden; }
.btn-dark::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent); transform: skewX(-20deg); transition: left .6s ease; }
.btn-dark:hover::after { left: 140%; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none; }
    .tilt, .aura { transform: none !important; animation: none; }
}

/* Showcase : profondeur + zoom image au survol */
.proj-card { position: relative; }
.proj-card .tilt-shine { z-index: 5; }
.proj-card:hover .zoom-img { transform: scale(1.09); }
.proj-card .proj-media.zoom-img { transition: transform 1s cubic-bezier(.16,1,.3,1); }
.feature-card, .why-card, .testi-card, .step-card { position: relative; }
.feature-card .feature-icon, .why-card h3, .testi-card .testi-text { position: relative; z-index: 2; }

/* ============================ CARROUSEL 3D ============================ */
.c3d { position: relative; width: min(100%, 1240px); margin: 22px auto 0; padding: 0 20px 22px; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.c3d-stage { position: relative; width: 100%; max-width: 1120px; height: 430px; margin: 0 auto; perspective: 1100px; touch-action: pan-y; user-select: none; cursor: grab; overflow: hidden; }
.c3d-stage:active { cursor: grabbing; }
@media (min-width: 768px) { .c3d-stage { height: 500px; } }
.c3d-ring { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.c3d-card { position: absolute; top: 50%; left: 50%; width: min(82vw, 340px); height: 390px; will-change: transform, opacity; }
@media (min-width: 768px) { .c3d-card { height: 430px; } }
.c3d-ring:not(.dragging) .c3d-card { transition: transform .72s cubic-bezier(.16,1,.3,1), opacity .72s ease, visibility .72s step-end; }
.c3d-inner { width: 100%; height: 100%; background: #fff; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--zinc-200); box-shadow: 0 12px 28px rgba(0,0,0,.10); cursor: pointer; }
.c3d-card.is-front .c3d-inner { border-color: var(--ink); box-shadow: 0 26px 60px rgba(0,0,0,.24); }
.c3d-media { height: 45%; background-size: cover; background-position: center; position: relative; flex-shrink: 0; }
.c3d-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,11,.55), transparent 70%); }
.c3d-num, .c3d-heart { position: absolute; top: 10px; z-index: 2; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 800; border: 1px solid rgba(255,255,255,.4); }
.c3d-num { left: 10px; } .c3d-heart { right: 10px; }
.c3d-heart svg { width: 12px; height: 12px; }
.c3d-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.c3d-body h3 { font-family: var(--display); font-weight: 800; font-size: 1.12rem; line-height: 1.12; margin-bottom: 4px; }
.c3d-body small { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #000; display: block; margin-bottom: 9px; }
.c3d-body p { font-size: .78rem; color: var(--zinc-500); line-height: 1.48; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.c3d-price { display: inline-flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; padding: 8px 10px; border-radius: 10px; background: #ecfdf5; color: #047857; font-weight: 900; font-size: .72rem; line-height: 1.2; text-align: center; }
.c3d-price svg { width: 14px; height: 14px; }
.c3d-btn { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; border-radius: 10px; background: linear-gradient(90deg, #000, var(--zinc-600)); color: #fff; font-weight: 700; font-size: .76rem; }
.c3d-nav { display: flex; gap: 16px; margin-top: 14px; z-index: 30; position: relative; }
.c3d-nav button { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--zinc-200); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--zinc-600); transition: transform .2s, background .2s; }
.c3d-nav button:hover { background: var(--zinc-50); transform: translateY(-2px); }
.c3d-prev svg { transform: rotate(90deg); } .c3d-next svg { transform: rotate(-90deg); }
.c3d-hint { margin-top: 14px; font-size: .74rem; color: var(--zinc-400); display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.c3d-hint svg { transform: rotate(180deg); }

@media (max-width: 560px) {
    .showcase { padding-bottom: 58px; border-radius: 32px 32px 0 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 22px; }
    .pricing-top { align-items: flex-start; }
    .pricing-label { max-width: 150px; }
    .payment-note { align-items: flex-start; }
    .cart-row { align-items: flex-start; flex-wrap: wrap; }
    .cart-info { min-width: 0; }
    .cart-price { min-width: 0; flex: 1 1 120px; text-align: left; }
    .c3d { margin-top: 12px; padding-inline: 12px; }
    .c3d-stage { height: 410px; }
    .c3d-card { width: min(86vw, 292px); height: 370px; }
    .c3d-body { padding: 15px 16px 17px; }
    .c3d-body h3 { font-size: 1rem; }
    .c3d-body p { font-size: .72rem; -webkit-line-clamp: 2; }
    .c3d-price { font-size: .68rem; padding: 7px 8px; margin-top: 10px; }
    .c3d-hint { max-width: 280px; line-height: 1.35; }
}
