/* ═══════════════════════════════════════════════════════════
   MED-TECH Design System — Flat & Clean E-commerce
   Palette : Noir #171717 + Accent #F97316 (Orange MED-TECH)
   Typo : Rubik (headings) + Nunito Sans (body)
   NO gradients — solid colors only
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg: #FAFAFA;
    --surface: #FFFFFF;
    --surface-warm: #F5F5F5;
    --surface-muted: #E5E5E5;
    --text: #171717;
    --text-soft: #404040;
    --muted: #737373;
    --border: #E5E5E5;
    --border-light: #F5F5F5;

    --brand: #F97316;
    --brand-deep: #EA580C;
    --brand-soft: #FFF7ED;
    --accent: #171717;
    --accent-hover: #262626;
    --accent-soft: #F5F5F5;

    --danger: #DC2626;
    --danger-soft: #FEF2F2;
    --success: #16A34A;
    --success-soft: #F0FDF4;

    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --radius-full: 999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.08);
    --focus-ring: 0 0 0 3px rgba(249,115,22,.2);
    --transition: .18s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; font-family: 'Rubik', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
button, input, select, textarea { font: inherit; }

/* ─── Utilities ─── */
.container { width: min(100% - 2rem, 1200px); margin: 0 auto; }
.container-narrow { width: min(100% - 2rem, 900px); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-muted { color: var(--muted); }
.text-brand { color: var(--brand); }

/* ─── Layout ─── */
.shell { min-height: 100dvh; min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
main { flex: 1 0 auto; }
.page { padding: 2.5rem 0 4rem; }

/* ─── Topbar ─── */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .5rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0; }
.brand img { height: 38px; width: auto; }

/* ─── Navigation ─── */
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a, .nav-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .85rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .875rem; color: var(--text-soft); border: 1px solid transparent; background: transparent; cursor: pointer; transition: all var(--transition); }
.nav a:hover, .nav-btn:hover { background: var(--surface-warm); color: var(--text); }
.nav-cta { background: var(--accent) !important; color: #fff !important; border-color: transparent !important; border-radius: var(--radius-sm) !important; }
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Mobile nav */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); cursor: pointer; }
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
.nav-toggle span + span { margin-top: 4px; }

@media (max-width: 768px) {
    .nav-toggle { display: flex; flex-direction: column; }
    .nav { position: fixed; top: 0; right: 0; width: min(80vw, 300px); height: 100dvh; flex-direction: column; align-items: stretch; padding: 1.5rem; background: var(--surface); border-left: 1px solid var(--border); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s ease; z-index: 100; gap: .5rem; }
    .nav.is-open { transform: translateX(0); }
    .nav a, .nav-btn { width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm); justify-content: flex-start; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; cursor: pointer; transition: all var(--transition); min-height: 44px; text-align: center; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--brand); color: #fff; border-color: transparent; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-dark { background: var(--accent); color: #fff; }
.btn-dark:hover { background: var(--accent-hover); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-warm); border-color: var(--text); }
.btn-danger { background: var(--danger-soft); color: var(--danger); border-color: rgba(220,38,38,.15); }
.btn-danger:hover { background: #fecaca; }
.btn-ghost { background: transparent; color: var(--text-soft); padding: .5rem .75rem; }
.btn-ghost:hover { color: var(--brand); background: var(--brand-soft); }

/* ─── Cards ─── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: var(--shadow-md); }
.card-warm { background: var(--surface-warm); border-color: var(--border); }
.card-accent { background: var(--brand-soft); border-color: rgba(249,115,22,.15); }

/* ─── Product cards ─── */
.product-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.product-card { display: flex; flex-direction: column; gap: 0; overflow: hidden; padding: 0; }
.product-card .product-img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--surface-warm); }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-img img { transform: scale(1.03); }
.product-card .product-body { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-card .product-category { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); }
.product-card .product-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.product-card .product-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; flex: 1; }
.product-card .product-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border); }
.product-price { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.product-price small { font-size: .75rem; font-weight: 600; color: var(--muted); margin-left: .15rem; }

/* ─── Forms ─── */
.form-group { display: grid; gap: .4rem; }
label { font-size: .875rem; font-weight: 600; color: var(--text); }
input, select, textarea { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); color: var(--text); transition: border-color var(--transition), box-shadow var(--transition); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--focus-ring); }
textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; gap: 1rem; }
.form-error { font-size: .8rem; color: var(--danger); margin-top: .25rem; }

/* ─── Tags / Chips ─── */
.tag { display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .65rem; border-radius: var(--radius-full); font-size: .75rem; font-weight: 700; background: var(--surface-muted); color: var(--text-soft); }
.tag-accent { background: var(--brand-soft); color: var(--brand-deep); }

/* ─── Notices ─── */
.notice { padding: 1rem 1.1rem; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface-warm); color: var(--text-soft); font-size: .9rem; line-height: 1.5; }
.notice-success { background: var(--success-soft); border-color: rgba(22,163,74,.15); color: #166534; }
.notice-error { background: var(--danger-soft); border-color: rgba(220,38,38,.15); color: #991b1b; }
.notice-warning { background: var(--brand-soft); border-color: rgba(249,115,22,.2); color: var(--brand-deep); }

/* ─── Sections ─── */
.section-header { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.section-header h2 { font-size: 1.5rem; }
.section-header p { color: var(--muted); max-width: 55ch; }
.eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }

/* ─── Grid helpers ─── */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: .75rem; }
.actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* ─── Hero (flat, no gradient) ─── */
.hero { position: relative; padding: 4rem 2.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.hero-dark { background: var(--accent); color: #fff; }
.hero-dark .text-muted { color: rgba(255,255,255,.7); }
.hero-dark .eyebrow { color: var(--brand); }
.hero-content { position: relative; z-index: 2; display: grid; gap: 1.25rem; max-width: 560px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; }
.hero-img { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.hero-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--accent) 0%, transparent 70%); z-index: 1; }

/* ─── Feature icons ─── */
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--brand-soft); color: var(--brand); }
.feature-icon svg { width: 24px; height: 24px; }

/* ─── Footer ─── */
.footer { flex-shrink: 0; padding: 2rem 0 1.5rem; border-top: 1px solid var(--border); background: var(--surface); }
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.footer-info { display: flex; flex-direction: column; gap: .4rem; }
.footer-brand { margin-bottom: .25rem; }
.footer-nav {
    display: flex;
    gap: 1.25rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-soft);
    flex-wrap: wrap;
}
.footer-nav a { transition: color .18s; }
.footer-nav a:hover { color: var(--brand); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-socials {
    display: flex;
    gap: .75rem;
    align-items: center;
}
.footer-socials a {
    color: var(--muted);
    transition: color .18s;
}
.footer-socials a:hover { color: var(--brand); }

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-info { align-items: center; }
    .footer-nav {
        justify-content: center;
        gap: .75rem 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .75rem;
    }
}

/* ─── Auth pages ─── */
.auth-shell { display: grid; place-items: center; min-height: 60vh; }
.auth-card { max-width: 420px; width: 100%; }
.auth-divider { display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .8rem; font-weight: 600; }
.auth-divider span:first-child, .auth-divider span:last-child { flex: 1; height: 1px; background: var(--border); }
.social-btn { width: 100%; justify-content: center; }
.social-btn svg { flex-shrink: 0; }

/* ─── Sticky sidebar ─── */
.sidebar-sticky { position: sticky; top: 80px; }

/* ─── Icons ─── */
.ui-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ─── Misc ─── */
.split { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.badge-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 .4rem; border-radius: var(--radius-full); background: var(--brand-soft); color: var(--brand-deep); font-size: .7rem; font-weight: 800; }

/* ─── Animations ─── */
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fade-in .4s ease both; }

/* ─── Admin product form mode toggle ─── */
[data-product-form] .field[data-field] { display: none; }
[data-product-form][data-mode="quick"] .field[data-field*="quick"] { display: block; }
[data-product-form][data-mode="status"] .field[data-field*="status"] { display: block; }
[data-product-form][data-mode="seo"] .field[data-field*="seo"] { display: block; }
.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ─── Print ─── */
@media print { .topbar, .footer, .nav-toggle, .nav-backdrop { display: none; } .page { padding: 0; } }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero { padding: 2.5rem 1.5rem; }
    .hero-img { position: relative; width: 100%; height: 200px; border-radius: var(--radius); margin-top: 1.5rem; }
    .hero-img::before { background: linear-gradient(180deg, var(--accent) 0%, transparent 80%); }
    .hero-content { max-width: 100%; }
    .grid-2 { grid-template-columns: 1fr; }
    .sidebar-sticky { position: static; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .page { padding: 1.5rem 0 2.5rem; }
    .card { padding: 1.1rem; }
    h1 { font-size: 1.75rem; }
    .section-header h2 { font-size: 1.25rem; }
    .hero { min-height: auto !important; }
    .hero-img { display: none; }
    .hero h1 { font-size: 1.5rem; }
    .hero-content { max-width: 100%; }
    .topbar-inner { min-height: 56px; }
    .brand img { height: 32px; }
    .auth-shell { min-height: auto; padding: 1rem 0; }
    .auth-card { max-width: 100%; }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 1.5rem); }
    .product-card .product-body { padding: .85rem 1rem 1rem; }
    .actions { gap: .5rem; }
    .split { flex-direction: column; align-items: stretch; gap: .5rem; }
    .tag { font-size: .7rem; }
    .btn { padding: .7rem 1rem; font-size: .85rem; }
    .hero { padding: 1.5rem 1rem; border-radius: var(--radius); }
    .hero h1 { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — MED-TECH Storefront
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.landing-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111 url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1600&h=900&fit=crop') center/cover no-repeat;
    overflow: hidden;
}
.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}
.landing-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 4rem 1rem;
}
.landing-hero-logo {
    height: 56px;
    width: auto;
    margin: 0 auto 1.5rem;
}
.landing-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
    text-wrap: balance;
}
.landing-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Value proposition */
.lp-value {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
}
.lp-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.lp-value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.lp-value-item svg {
    flex-shrink: 0;
    color: var(--brand);
    margin-top: .15rem;
}
.lp-value-item strong {
    display: block;
    font-size: .95rem;
    margin-bottom: .25rem;
    color: var(--text);
}
.lp-value-item p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Section headers */
.landing-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.landing-section-top h2 { font-size: 1.3rem; }
.landing-link { font-size: .9rem; font-weight: 600; color: var(--brand); }
.landing-link:hover { text-decoration: underline; }

/* Products section */
.landing-products { padding: 3rem 0; }

/* Product grid — COMPACT */
.landing-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.lp-card {
    display: block;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow .18s ease, transform .18s ease;
}
.lp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.lp-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-warm);
}
.lp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.lp-card:hover .lp-card-img img { transform: scale(1.04); }
.lp-card-body { padding: .75rem .85rem; }
.lp-card-cat {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--brand);
    margin-bottom: .2rem;
}
.lp-card-title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 .3rem;
    line-height: 1.3;
}
.lp-card-price {
    font-size: .9rem;
    font-weight: 800;
    color: var(--text);
}

/* About section */
.landing-about {
    padding: 4.5rem 0;
    background: var(--surface-warm);
    border-top: 1px solid var(--border);
}
.landing-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.landing-about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.landing-about-text p {
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.landing-about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

/* Stats row */
.lp-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.lp-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
}
.lp-stat span {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 600;
}

/* CTA final */
.landing-cta {
    padding: 4rem 0;
}
.lp-cta-box {
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
}
.lp-cta-box h2 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    margin-bottom: .5rem;
    text-wrap: balance;
}
.lp-cta-box p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    max-width: 420px;
    margin: 0 auto;
}

/* Landing responsive */
@media (max-width: 900px) {
    .landing-about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .landing-about-img { order: -1; }
    .landing-about { padding: 3rem 0; }
}
@media (max-width: 768px) {
    .landing-hero { min-height: 70vh; }
    .landing-hero-logo { height: 44px; }
    .lp-value-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .landing-product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .75rem; }
    .lp-card-body { padding: .6rem .7rem; }
    .lp-card-title { font-size: .8rem; }
    .lp-card-price { font-size: .8rem; }
    .lp-stats { gap: 1.5rem; flex-wrap: wrap; }
    .lp-stat strong { font-size: 1.1rem; }
    .lp-cta-box { padding: 2.5rem 1.5rem; }
    .landing-about-text h2 { font-size: 1.25rem; }
    .landing-about-text p { font-size: .9rem; }
}
@media (max-width: 480px) {
    .landing-hero { min-height: 60vh; }
    .landing-hero-title { font-size: 1.5rem; }
    .landing-hero-sub { font-size: .95rem; }
    .landing-product-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stats { flex-direction: row; gap: 1rem; justify-content: space-between; }
    .lp-stat { text-align: center; flex: 1; }
    .lp-stat strong { font-size: 1rem; }
    .lp-stat span { font-size: .7rem; }
    .landing-about-grid { gap: 1.5rem; }
    .landing-about-text h2 { font-size: 1.15rem; }
    .lp-cta-box { padding: 2rem 1.25rem; }
    .lp-cta-box h2 { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   LANDING — Nouvelles sections (10 ajouts)
   ═══════════════════════════════════════════════════════════ */

/* (8) Promo bar */
.lp-promo-bar {
    background: var(--brand);
    color: #fff;
    text-align: center;
    padding: .6rem 1rem;
    font-size: .8rem;
    font-weight: 600;
}
.lp-promo-bar code {
    background: rgba(255,255,255,.2);
    padding: .15rem .4rem;
    border-radius: 4px;
    font-size: .8rem;
    margin-left: .25rem;
}

/* (10) Live counter */
.lp-live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.7);
}
.lp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: lp-pulse 1.5s infinite;
}
@keyframes lp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* (2 & 3) Guarantee + Payment badges */
.lp-guarantee {
    padding: 1rem 0;
    background: var(--surface-warm);
    border-bottom: 1px solid var(--border);
}
.lp-guarantee-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.lp-guarantee-text {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}
.lp-guarantee-text svg { color: var(--brand); flex-shrink: 0; }
.lp-payment-badges {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.lp-badge {
    padding: .3rem .6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-soft);
}

/* (4) Countdown / Urgency */
.lp-urgency {
    padding: 1.25rem 0;
    background: var(--accent);
}
.lp-urgency-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lp-urgency-text {
    color: #fff;
    font-size: .9rem;
}
.lp-urgency-text strong { display: block; font-size: 1rem; }
.lp-urgency-text span { opacity: .8; font-size: .85rem; }
.lp-countdown {
    display: flex;
    gap: .5rem;
}
.lp-cd-unit {
    background: rgba(255,255,255,.15);
    border-radius: 6px;
    padding: .5rem .7rem;
    text-align: center;
    min-width: 44px;
    color: #fff;
}
.lp-cd-unit span {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}
.lp-cd-unit small {
    font-size: .65rem;
    opacity: .7;
    text-transform: uppercase;
}

/* (7) Popular teams */
.lp-teams {
    padding: 3rem 0;
    background: var(--surface-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.lp-teams-grid {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
}
.lp-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    padding: .75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 1.75rem;
    transition: all .18s ease;
    min-width: 80px;
}
.lp-team span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-soft);
}
.lp-team:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* (1) Reviews */
.lp-reviews {
    padding: 3.5rem 0;
}
.lp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.lp-review {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}
.lp-review-stars {
    color: var(--brand);
    font-size: .9rem;
    margin-bottom: .5rem;
}
.lp-review p {
    font-size: .85rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: .75rem;
}
.lp-review-author {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
}
.lp-review-author strong { color: var(--text); }
.lp-review-author span { color: var(--muted); }

/* (9) Client photo feed */
.lp-feed {
    padding: 3rem 0;
    background: var(--surface-warm);
    border-top: 1px solid var(--border);
}
.lp-feed-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
}
.lp-feed-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.lp-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.lp-feed-item:hover img { transform: scale(1.06); }

/* (6) FAQ */
.lp-faq {
    padding: 3.5rem 0;
}
.lp-faq-list {
    display: grid;
    gap: .5rem;
}
.lp-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
}
.lp-faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--muted);
    transition: transform .2s;
}
.lp-faq-item[open] summary::after {
    content: '−';
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item p {
    padding: 0 1.25rem 1rem;
    font-size: .85rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* (5) Newsletter / WhatsApp opt-in */
.lp-newsletter {
    padding: 3rem 0;
    background: var(--surface-warm);
    border-top: 1px solid var(--border);
}
.lp-newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.lp-newsletter-text h3 {
    font-size: 1.1rem;
    margin-bottom: .25rem;
}
.lp-newsletter-text p {
    font-size: .85rem;
    color: var(--muted);
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .lp-promo-bar { font-size: .75rem; padding: .5rem .75rem; }
    .lp-guarantee-inner { justify-content: center; text-align: center; flex-direction: column; gap: .75rem; }
    .lp-urgency-box { justify-content: center; text-align: center; flex-direction: column; gap: 1rem; }
    .lp-teams-grid { gap: .5rem; }
    .lp-team { min-width: 70px; padding: .6rem .75rem; font-size: 1.5rem; }
    .lp-reviews-grid { grid-template-columns: 1fr; }
    .lp-feed-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-newsletter-box { flex-direction: column; text-align: center; gap: 1rem; }
    .lp-newsletter-text { text-align: center; }
}
@media (max-width: 480px) {
    .lp-countdown { gap: .35rem; }
    .lp-cd-unit { padding: .4rem .5rem; min-width: 38px; }
    .lp-cd-unit span { font-size: 1rem; }
    .lp-team { min-width: 60px; padding: .5rem .6rem; font-size: 1.3rem; }
    .lp-team span { font-size: .6rem; }
    .lp-feed-grid { grid-template-columns: repeat(2, 1fr); }
}
