/* ─────────────────────────────────────────────
   Scentyo Landing Page — Premium Design System
   ───────────────────────────────────────────── */

/* ── Design Tokens ── */
:root {
    --bg:          #FAF9F6;
    --surface:     #FFFFFF;
    --surface-alt: #F3F1EC;
    --surface-warm:#EDE9E1;
    --text:        #1A1814;
    --text-muted:  #6B6560;
    --text-light:  #A09890;
    --accent:      #C9972E;
    --accent-soft: #F8EDD1;
    --accent-mid:  #E8B84B;
    --accent-dark: #8B6220;
    --border:      #E8E3DC;
    --border-soft: #F0EBE4;
    --gold:        #C9972E;
    --gold-soft:   #F8EDD1;
    --shadow-xs:   0 1px 2px rgba(26,24,20,.04);
    --shadow-sm:   0 2px 8px rgba(26,24,20,.06);
    --shadow:      0 4px 20px rgba(26,24,20,.08);
    --shadow-md:   0 8px 32px rgba(26,24,20,.10);
    --shadow-lg:   0 16px 56px rgba(26,24,20,.13);
    --shadow-xl:   0 32px 80px rgba(26,24,20,.18);
    --r-xs:        6px;
    --r-s:         12px;
    --r-m:         18px;
    --r-l:         24px;
    --r-xl:        32px;
    --r-2xl:       44px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-ui:      'Inter', system-ui, sans-serif;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; }

.lp-body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Navigation ── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s ease, box-shadow .3s ease;
}
.lp-nav.scrolled {
    background: rgba(250,249,246,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.lp-nav__brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -.01em;
}
.lp-nav__brand .lp-drop-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #E8B84B, #C9972E 55%, #8B6220);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
}
.lp-nav__links {
    display: none;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-nav__links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}
.lp-nav__links a:hover { color: var(--text); }

.lp-nav__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}
/* Mobile nav: cacher le CTA waitlist (trop large), garder Se connecter + EN/FR */
@media (max-width: 767px) {
    .lp-nav__actions .lp-btn-primary {
        display: none;
    }
    .lp-nav__actions {
        gap: .375rem;
    }
    .lp-nav {
        padding: 0 .75rem;
    }
}
@media (min-width: 768px) {
    .lp-nav__links { display: flex; }
    .lp-nav { padding: 0 2rem; }
}
@media (min-width: 1024px) {
    .lp-nav { padding: 0 3rem; }
}

/* ── Buttons ── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.625rem;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: .9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all .22s cubic-bezier(.16,1,.3,1);
    white-space: nowrap;
    letter-spacing: -.01em;
}
.lp-btn-primary {
    background: var(--text);
    color: #fff;
    box-shadow: 0 2px 12px rgba(26,24,20,.18);
}
.lp-btn-primary:hover {
    background: #2E2C28;
    box-shadow: 0 6px 24px rgba(26,24,20,.22);
    transform: translateY(-1px);
    color: #fff;
}
.lp-btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 12px rgba(201,151,46,.25);
}
.lp-btn-accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 24px rgba(201,151,46,.3);
    transform: translateY(-1px);
    color: #fff;
}
.lp-btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
}
.lp-btn-ghost:hover {
    background: var(--surface-alt);
    color: var(--text);
    border-color: var(--accent-mid);
}
.lp-btn-sm {
    padding: .5rem 1.125rem;
    font-size: .8125rem;
}
.lp-btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* ── Badge ── */
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .3125rem .875rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid rgba(201,151,46,.18);
}
.lp-badge-gold {
    background: var(--gold-soft);
    color: #9A6E2A;
    border-color: rgba(201,169,110,.2);
}

/* ── Section anatomy ── */
.lp-section {
    padding: 6rem 0;
}
.lp-section-sm { padding: 4rem 0; }
.lp-section-xs { padding: 2.5rem 0; }

.lp-section-label {
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: .75rem;
}
.lp-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 1.125rem;
}
.lp-section-title em {
    font-style: italic;
    color: var(--accent);
}
.lp-section-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 52ch;
}

/* ── ─────────────────────────────── ── */
/* ── HERO                             ── */
/* ── ─────────────────────────────── ── */
.lp-hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
    /* Garantir que les éléments déco absolus ne causent pas de scroll horizontal */
    contain: layout;
}
.lp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200,168,152,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(201,169,110,.08) 0%, transparent 60%),
        var(--bg);
    z-index: 0;
}
.lp-hero__deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.lp-hero__deco-1 {
    width: 600px; height: 600px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(200,168,152,.12) 0%, transparent 70%);
}
.lp-hero__deco-2 {
    width: 300px; height: 300px;
    bottom: 50px; left: -80px;
    background: radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}
.lp-hero__content { width: 100%; max-width: 580px; }
.lp-hero__pretitle {
    margin-bottom: 1.25rem;
}
.lp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 9vw, 5rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.035em;
    color: var(--text);
    margin-bottom: 1.375rem;
}
.lp-hero__title em {
    font-style: italic;
    color: var(--accent);
}
.lp-hero__sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}
.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
.lp-hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8125rem;
    color: var(--text-light);
}
.lp-trust-item i { color: var(--accent-mid); font-size: .9rem; }

.lp-hero__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ── Desktop hero layout ── */
@media (min-width: 900px) {
    .lp-hero__inner {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        gap: 4rem;
    }
    .lp-hero__content { max-width: 520px; }
    .lp-hero__sub { margin-left: 0; margin-right: 0; }
    .lp-hero__actions { justify-content: flex-start; }
    .lp-hero__trust { justify-content: flex-start; }
    .lp-hero__visual { width: auto; }
}

/* ── Phone Mockup Frame ── */
.lp-phone {
    position: relative;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,.22)) drop-shadow(0 8px 16px rgba(0,0,0,.12));
}
.lp-phone__frame {
    width: 260px;
    background: #111110;
    border-radius: 46px;
    padding: 10px;
    position: relative;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.12),
        0 0 0 1px rgba(0,0,0,.35);
}
.lp-phone__frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 8px;
    background: #111110;
    border-radius: 0 0 6px 6px;
    z-index: 10;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.06);
}
/* Side button */
.lp-phone__frame::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -3px;
    width: 3px;
    height: 52px;
    background: #1c1b1a;
    border-radius: 0 2px 2px 0;
}
.lp-phone__screen {
    background: var(--bg);
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    display: flex;
    flex-direction: column;
    position: relative;
}
/* floating second phone (desktop only) */
.lp-phone-secondary {
    display: none;
    position: absolute;
    right: -70px;
    bottom: -40px;
    opacity: .65;
    transform: rotate(6deg) scale(.82);
    z-index: -1;
}
@media (min-width: 900px) {
    .lp-phone-secondary { display: block; }
    .lp-phone__frame { width: 280px; }
}

/* ── Mock App UI ── */
.mock-status {
    padding: 4px 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 600;
    color: var(--text);
    min-height: 20px;
}
.mock-status-icons { display: flex; gap: 3px; align-items: center; font-size: 9px; }

.mock-nav {
    padding: 4px 14px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-soft);
}
.mock-brand {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}
.mock-brand-dot {
    width: 8px; height: 8px;
    background: linear-gradient(135deg, #E8B84B, #C9972E 55%, #8B6220);
    border-radius: 2px;
}
.mock-nav-icons { display: flex; gap: 4px; }
.mock-icon-btn {
    width: 22px; height: 22px;
    background: var(--surface-alt);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--text-muted);
}

.mock-body {
    flex: 1;
    overflow: hidden;
    padding: 10px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mock-greeting-row {}
.mock-greeting {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}
.mock-subgreeting { font-size: 8px; color: var(--text-light); margin-top: 1px; }

.mock-rec-card {
    background: linear-gradient(135deg, #1A1814 0%, #2E2A24 100%);
    border-radius: 12px;
    padding: 10px 12px;
    color: #fff;
}
.mock-rec-tag {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .55;
    margin-bottom: 6px;
}
.mock-rec-inner { display: flex; align-items: center; gap: 8px; }
.mock-rec-img {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #C9972E, #E8B84B);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.mock-rec-info {}
.mock-rec-name { font-size: 11px; font-weight: 600; line-height: 1.2; }
.mock-rec-brand { font-size: 8px; opacity: .65; margin-top: 1px; }
.mock-rec-stars { font-size: 7px; color: var(--gold); margin-top: 3px; letter-spacing: 1px; }
.mock-rec-tag2 {
    margin-left: auto;
    font-size: 6px;
    font-weight: 600;
    background: rgba(255,255,255,.12);
    border-radius: 4px;
    padding: 2px 5px;
    color: rgba(255,255,255,.7);
    letter-spacing: .04em;
    flex-shrink: 0;
    align-self: flex-start;
}

.mock-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.mock-stat-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 4px;
    text-align: center;
}
.mock-stat-num { display: block; font-size: 12px; font-weight: 600; color: var(--text); line-height: 1; }
.mock-stat-lbl { display: block; font-size: 6px; color: var(--text-light); margin-top: 2px; }

.mock-section-label { font-size: 8px; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; }

.mock-collection-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.mock-coll-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}
.mock-coll-img {
    flex: 1;
    background: linear-gradient(135deg, #E8D5C4, #C4A882);
}
.mock-coll-img-2 { background: linear-gradient(135deg, #D4C5E2, #A882C4); }
.mock-coll-img-3 { background: linear-gradient(135deg, #C4D4E8, #82A4C4); }
.mock-coll-name { font-size: 5px; font-weight: 600; padding: 2px 4px 1px; color: var(--text); }
.mock-coll-brand { font-size: 4px; color: var(--text-light); padding: 0 4px 3px; }

.mock-bottom-nav {
    display: flex;
    background: rgba(250,249,246,.95);
    border-top: 1px solid var(--border);
    padding: 4px 0 10px;
}
.mock-bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    font-size: 6px;
    color: var(--text-light);
    padding-top: 4px;
}
.mock-bnav-item.active { color: var(--accent); }
.mock-bnav-item i { font-size: 11px; }

/* ── Benefits Section ── */
.lp-benefits {
    background: var(--surface-alt);
    padding: 6rem 0;
}
.lp-benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
}
@media (min-width: 640px) {
    .lp-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .lp-benefit-grid { grid-template-columns: repeat(4, 1fr); }
}
.lp-benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 2rem 1.625rem;
    transition: box-shadow .25s, transform .25s;
}
.lp-benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.lp-benefit-icon {
    width: 48px; height: 48px;
    border-radius: var(--r-m);
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: var(--accent);
}
.lp-benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.lp-benefit-text {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── How it Works ── */
.lp-how { padding: 6rem 0; }
.lp-steps {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(to bottom, var(--border), var(--border-soft));
}
.lp-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 0 0 2.75rem;
    position: relative;
}
.lp-step:last-child { padding-bottom: 0; }
.lp-step__num {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
}
.lp-step.active .lp-step__num {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.lp-step__content { padding-top: .375rem; }
.lp-step__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: .375rem;
    letter-spacing: -.01em;
}
.lp-step__text { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; max-width: 44ch; }

@media (min-width: 768px) {
    .lp-steps {
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
    }
    .lp-steps::before { display: none; }
    .lp-step {
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
        padding: 0;
    }
    .lp-step__text { max-width: none; }
}

/* ── Import Feature ── */
.lp-import { background: var(--text); padding: 6rem 0; overflow: hidden; }
.lp-import .lp-section-label { color: rgba(255,255,255,.4); }
.lp-import .lp-section-title { color: #fff; }
.lp-import .lp-section-title em { color: var(--accent-mid); }
.lp-import .lp-section-sub { color: rgba(255,255,255,.55); }

.lp-import-visual {
    position: relative;
    margin-top: 3rem;
}
.lp-import-url-bar {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-m);
    padding: .875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}
.lp-import-url-icon { color: var(--accent-mid); font-size: 1rem; flex-shrink: 0; }
.lp-import-url-text {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lp-import-url-btn {
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-s);
    padding: .375rem .875rem;
    font-size: .8125rem;
    font-weight: 500;
    cursor: pointer;
}
.lp-import-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin: .875rem 0;
    font-size: .8125rem;
    color: rgba(255,255,255,.3);
}
.lp-import-arrow i { color: var(--accent-mid); }

.lp-import-card {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.lp-import-card__header {
    height: 140px;
    background: linear-gradient(135deg, #E8D5C4 0%, #C4A882 50%, #9A7C60 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}
.lp-import-card__header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(250,249,246,.15) 100%);
}
.lp-import-card__body { padding: 1.5rem 1.75rem; }
.lp-import-card__source {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .625rem;
    display: flex;
    align-items: center;
    gap: .375rem;
}
.lp-import-card__source i { font-size: .7rem; }
.lp-import-card__name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.1;
}
.lp-import-card__brand {
    font-size: .9375rem;
    color: var(--text-muted);
    margin-top: .25rem;
    margin-bottom: 1.125rem;
}
.lp-import-notes {}
.lp-import-note-row {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: .5rem;
    font-size: .8125rem;
}
.lp-import-note-label {
    width: 36px;
    font-size: .625rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-light);
    flex-shrink: 0;
}
.lp-import-note-tags { display: flex; flex-wrap: wrap; gap: .3125rem; }
.lp-note-tag {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .1875rem .625rem;
    font-size: .75rem;
    color: var(--text-muted);
}
.lp-import-card__actions {
    margin-top: 1.375rem;
    display: flex;
    gap: .625rem;
    flex-wrap: wrap;
}
.lp-import-card__actions .lp-btn { font-size: .875rem; padding: .625rem 1.25rem; }

/* ── Feature Showcase ── */
.lp-features { padding: 6rem 0; background: var(--surface-alt); }
.lp-feature-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.lp-feature-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .lp-feature-item {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .lp-feature-item.reverse .lp-feature-visual { order: -1; }
}

.lp-feature-visual {
    display: flex;
    justify-content: center;
}
.lp-screen-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.lp-feature-content {}
.lp-feature-title {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 500;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: .75rem;
}
.lp-feature-title em { font-style: italic; color: var(--accent); }
.lp-feature-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 42ch;
}
.lp-feature-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.lp-feature-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .25rem .875rem;
    font-size: .8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .375rem;
}
.lp-feature-tag i { color: var(--accent); font-size: .85rem; }

/* Mock collection screen */
.mock-grid-screen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    padding: .25rem;
    overflow: hidden;
}
.mock-grid-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}
.mock-grid-card-img {
    flex: 1;
    background: linear-gradient(135deg, #E8D5C4, #C4A882);
}
.grd-2 { background: linear-gradient(135deg, #D4C5E2, #B8A0CC); }
.grd-3 { background: linear-gradient(135deg, #C4D4E8, #90B0CC); }
.grd-4 { background: linear-gradient(135deg, #D4E8C4, #90CC90); }
.grd-5 { background: linear-gradient(135deg, #E8E4C4, #CCB890); }
.grd-6 { background: linear-gradient(135deg, #E8C4C4, #CC9090); }
.mock-grid-card-info { padding: 4px 6px 5px; }
.mock-grid-card-name { font-size: 6px; font-weight: 600; color: var(--text); }
.mock-grid-card-brand { font-size: 5px; color: var(--text-light); }

/* Mock list screen */
.mock-list-screen {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    padding: .25rem;
    overflow: hidden;
}
.mock-list-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mock-list-thumb {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #E8D5C4, #C4A882);
    flex-shrink: 0;
}
.thumb-v { background: linear-gradient(135deg, #D4C5E2, #B8A0CC); }
.thumb-c { background: linear-gradient(135deg, #C4D4E8, #90B0CC); }
.thumb-g { background: linear-gradient(135deg, #D4E8C4, #90CC90); }
.mock-list-info { flex: 1; min-width: 0; }
.mock-list-name { font-size: 8px; font-weight: 600; color: var(--text); }
.mock-list-brand { font-size: 7px; color: var(--text-light); }
.mock-list-badge {
    font-size: 6px;
    font-weight: 600;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 4px;
    padding: 2px 5px;
    flex-shrink: 0;
}

/* ── Lifestyle / Emotional ── */
.lp-lifestyle {
    padding: 7rem 0;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-lifestyle__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% 50%, rgba(200,168,152,.10) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 75% 40%, rgba(201,169,110,.06) 0%, transparent 60%);
    pointer-events: none;
}
.lp-lifestyle__quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) {
    .lp-lifestyle__quotes { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .lp-lifestyle__quotes { grid-template-columns: repeat(4, 1fr); }
}
.lp-quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 1.75rem 1.5rem;
    text-align: left;
    box-shadow: var(--shadow-xs);
    transition: box-shadow .25s, transform .25s;
}
.lp-quote-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.lp-quote-mark {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: .8;
    color: var(--accent-mid);
    margin-bottom: .75rem;
    display: block;
}
.lp-quote-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.45;
    font-style: italic;
}

/* ── Waitlist / CTA ── */
.lp-waitlist {
    padding: 7rem 0;
    background: var(--surface-alt);
    text-align: center;
}
.lp-waitlist-inner {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.lp-waitlist .lp-section-title { font-size: clamp(2rem, 6vw, 3.5rem); }
.lp-waitlist .lp-section-sub { margin: 0 auto 2.25rem; }
.lp-waitlist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.lp-waitlist-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 440px;
    margin: 0 auto;
}
.lp-email-input {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: .875rem 1.5rem;
    font-size: 1rem;
    color: var(--text);
    font-family: var(--font-ui);
    outline: none;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}
.lp-email-input::placeholder { color: var(--text-light); }
.lp-email-input:focus {
    border-color: var(--accent-mid);
    box-shadow: 0 0 0 3px rgba(201,151,46,.14);
}
.lp-waitlist-success {
    display: none;
    background: var(--accent-soft);
    border: 1px solid rgba(201,151,46,.2);
    border-radius: var(--r-l);
    padding: 1.5rem;
    color: var(--accent-dark);
    font-size: .9375rem;
}
.lp-waitlist-success i { font-size: 1.5rem; display: block; margin-bottom: .5rem; }
.lp-waitlist-note {
    font-size: .8125rem;
    color: var(--text-light);
    margin-top: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
}

@media (min-width: 480px) {
    .lp-waitlist-form { flex-direction: row; }
    .lp-waitlist-form .lp-btn { white-space: nowrap; flex-shrink: 0; }
}

/* ── FAQ ── */
.lp-faq { padding: 6rem 0; }
.lp-faq-list { margin-top: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-faq-item {
    border-bottom: 1px solid var(--border);
}
.lp-faq-item:first-child { border-top: 1px solid var(--border); }
.lp-faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: color .2s;
}
.lp-faq-btn:hover { color: var(--accent); }
.lp-faq-btn i {
    font-size: .875rem;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.lp-faq-btn[aria-expanded="true"] i { transform: rotate(45deg); color: var(--accent); }
.lp-faq-body {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* ── Footer ── */
.lp-footer {
    background: var(--text);
    color: rgba(255,255,255,.55);
    padding: 4rem 0 2.5rem;
}
.lp-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 3rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .lp-footer__top { grid-template-columns: 1.5fr 1fr 1fr; }
}
.lp-footer__brand {}
.lp-footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .875rem;
    text-decoration: none;
}
.lp-footer__brand-name .lp-drop-icon {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, #E8B84B, #C9972E 55%, #8B6220);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: #fff;
}
.lp-footer__desc { font-size: .875rem; line-height: 1.65; max-width: 30ch; }
.lp-footer__col-title {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 1rem;
}
.lp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.lp-footer__links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .9375rem;
    transition: color .2s;
}
.lp-footer__links a:hover { color: rgba(255,255,255,.9); }

.lp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
    font-size: .8125rem;
}
@media (min-width: 640px) {
    .lp-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ── Scroll-reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Utility ── */
.text-accent { color: var(--accent) !important; }
.text-gold   { color: var(--gold) !important; }
.bg-lp-dark  { background: var(--text); }
.lp-divider  { border: none; border-top: 1px solid var(--border); }

@media (max-width: 480px) {
    .lp-section { padding: 4.5rem 0; }
    .lp-hero {
        padding: 5rem 0 3rem;
        min-height: 100svh;
    }
    .lp-hero__title {
        font-size: clamp(2.1rem, 10vw, 2.75rem);
    }
    .lp-hero__sub {
        font-size: 1rem;
    }
    .lp-phone__frame {
        width: min(220px, 60vw);
    }
    /* S'assurer que le hero visual ne déborde pas */
    .lp-hero__visual {
        max-width: 100%;
        overflow: hidden;
    }
    /* Réduire le gap hero inner pour que tout rentre */
    .lp-hero__inner {
        gap: 2rem;
    }
    /* Nav brand font-size réduit sur très petit écran */
    .lp-nav__brand {
        font-size: 1.25rem;
    }
}
