/* ── UFINDIT — Styles principaux ── */

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

:root {
    --navy:       #001B4E;
    --blue:       #0066B3;
    --cyan:       #00AEEF;
    --gold:       #F2B705;
    --white:      #FFFFFF;
    --offwhite:   #EFF4FA;
    --muted:      #6B87A8;
    --light-bg:   #F5F8FD;
    --border:     rgba(0,102,179,0.15);
    --border-lt:  rgba(0,27,78,0.08);
    --red:        #DC2626;
    --green:      #059669;
    --font-d:     'Barlow Condensed', sans-serif;
    --font-b:     'Barlow', sans-serif;
    --nav-h:      68px;
    --radius:     4px;
    --shadow:     0 4px 30px rgba(0,27,78,0.08);
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--navy); font-family: var(--font-b); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-d); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(2.4rem,6vw,5.5rem); font-weight: 800; color: var(--white); }
h1 em { font-style: normal; color: var(--gold); }
h2 { font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 800; color: var(--navy); }
h2 em { font-style: normal; color: var(--cyan); }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
p { color: var(--muted); }

/* ── LAYOUT ── */
section { padding: 5rem 5vw; }
.container { max-width: 1160px; margin: 0 auto; }
.section-label { font-family: var(--font-d); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; }
.divider-gold { width: 48px; height: 3px; background: var(--gold); margin: 1.2rem 0 2rem; border-radius: 2px; }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block; background: var(--gold); color: var(--navy);
    font-family: var(--font-d); font-weight: 700; font-size: .88rem;
    letter-spacing: .1em; text-transform: uppercase; padding: .85rem 2.2rem;
    border-radius: var(--radius); text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #e0a800; transform: translateY(-2px); }
.btn-ghost {
    display: inline-block; border: 1px solid rgba(255,255,255,.25); color: var(--white);
    font-family: var(--font-d); font-weight: 600; font-size: .88rem;
    letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2.2rem;
    border-radius: var(--radius); text-decoration: none;
    transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(0,174,239,.08); }
.btn-ghost-dark {
    display: inline-block; border: 1px solid var(--border); color: var(--navy);
    font-family: var(--font-d); font-weight: 600; font-size: .88rem;
    letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2.2rem;
    border-radius: var(--radius); text-decoration: none; transition: border-color .2s;
}
.btn-ghost-dark:hover { border-color: var(--blue); }
.btn-full { width: 100%; text-align: center; }
.btn-xl { font-size: 1rem !important; padding: 1.1rem 2.5rem !important; }
.btn-stripe { background: #635BFF; color: #fff; }
.btn-stripe:hover { background: #4f46e5; }

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4vw; height: var(--nav-h);
    background: var(--white); border-bottom: 1px solid var(--border-lt);
    box-shadow: 0 2px 20px rgba(0,27,78,.06);
}
.nav-logo {
    display: flex; align-items: center;
    text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
    height: 60px; width: auto;
    display: block;
}
.nav-menu {
    display: flex; align-items: center; gap: 1.5rem;
}
.nav-links { list-style: none; display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { text-decoration: none; font-size: .87rem; font-weight: 500; color: var(--navy); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { font-size: .82rem !important; padding: .5rem 1.3rem !important; }

/* Hamburger */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: .5rem; z-index: 201;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LANG SWITCHER ── */
.lang-switcher { position: relative; }
.lang-btn {
    background: none; border: 1px solid var(--border-lt); color: var(--navy);
    font-family: var(--font-b); font-size: .82rem; font-weight: 500;
    padding: .35rem .75rem; border-radius: var(--radius); cursor: pointer;
    transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--blue); }
.lang-dropdown {
    position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow);
    list-style: none; min-width: 80px; z-index: 300;
    display: none;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li button {
    display: block; width: 100%; padding: .6rem 1rem; background: none; border: none;
    font-size: .84rem; cursor: pointer; text-align: left; color: var(--navy);
    transition: background .15s;
}
.lang-dropdown li button:hover { background: var(--offwhite); }

/* ── FLASH ── */
.flash-container { position: fixed; top: calc(var(--nav-h) + 10px); right: 1rem; z-index: 500; display: flex; flex-direction: column; gap: .5rem; max-width: 380px; }
.flash { padding: .85rem 1.2rem; border-radius: var(--radius); font-size: .9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: var(--shadow); }
.flash-success { background: #ecfdf5; border: 1px solid #86efac; color: #166534; }
.flash-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.flash-close { background: none; border: none; cursor: pointer; font-size: 1.1rem; opacity: .6; }

/* ── HERO ── */
.hero {
    min-height: 100svh; display: flex; align-items: stretch;
    position: relative; overflow: hidden; background: var(--navy);
    padding-top: var(--nav-h);
}
.hero-left {
    flex: 0 0 55%; display: flex; flex-direction: column;
    justify-content: center; padding: 5rem 4rem 8rem 5vw;
}
.hero-right {
    flex: 0 0 48%; position: relative; overflow: hidden;
}
/* Image hero pleine hauteur */
.hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    display: block;
}
/* Fondu gauche : fondu progressif vers --navy pour fusionner avec hero-left */
.hero-img-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        90deg,
        var(--navy)           0%,
        rgba(0,27,78,.80)    10%,
        rgba(0,27,78,.30)    30%,
        transparent          55%
    ),
    /* Fondu bas vers la barre de stats */
    linear-gradient(
        to top,
        var(--navy)  0%,
        transparent  30%
    );
}

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    border: 1px solid rgba(242,183,5,.4); background: rgba(242,183,5,.08);
    color: var(--gold); font-family: var(--font-d); font-size: .72rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; padding: .4rem 1.1rem;
    border-radius: 2px; margin-bottom: 2rem;
}
.hero-badge::before { content: '●'; font-size: .4rem; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.hero-sub { font-size: clamp(.95rem,1.5vw,1.1rem); font-weight: 300; color: rgba(255,255,255,.65); max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-bottom-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
    display: flex; align-items: center;
    background: rgba(0,27,78,.85); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,174,239,.2); padding: 1.2rem 5vw;
}
.stat { flex: 1; text-align: center; }
.stat-num { font-family: var(--font-d); font-size: 2rem; font-weight: 800; color: var(--white); display: block; text-transform: uppercase; }
.stat-num .gold { color: var(--gold); }
.stat-num .cyan { color: var(--cyan); }
.stat-label { font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* ── PROBLEM ── */
.problem-section { background: var(--light-bg); }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-list { list-style: none; margin-top: 1.5rem; }
.problem-list li { display: flex; align-items: flex-start; gap: .8rem; padding: .75rem 0; border-bottom: 1px solid var(--border-lt); color: var(--muted); font-size: .9rem; }
.problem-list li .icon { color: var(--red); flex-shrink: 0; }
.visual-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; box-shadow: var(--shadow); }
.loss-tag { background: rgba(220,38,38,.04); border: 1px solid rgba(220,38,38,.15); border-left: 3px solid var(--red); border-radius: 4px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.found-tag { background: rgba(0,174,239,.04); border: 1px solid var(--border); border-left: 3px solid var(--cyan); border-radius: 4px; padding: 1rem 1.2rem; }
.tag-label { font-family: var(--font-d); font-size: .65rem; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; }
.loss-tag .tag-label { color: var(--red); }
.tag-item { font-size: .92rem; color: var(--navy); font-weight: 500; margin-top: .25rem; }
.loss-tag .tag-status { font-size: .78rem; color: var(--red); margin-top: .3rem; }
.found-tag .tag-status { font-size: .78rem; color: var(--green); margin-top: .3rem; }
.vs-line { text-align: center; padding: .8rem 0; color: var(--muted); font-size: .8rem; letter-spacing: .08em; font-family: var(--font-d); text-transform: uppercase; }

/* ── HOW ── */
.how-section { background: var(--white); }
.how-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.how-header .divider-gold { margin: 1.2rem auto 2rem; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; gap: 0; }
.steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 2px; background: linear-gradient(90deg,var(--cyan),var(--blue)); z-index: 0; }
.step { padding: 0 1.5rem 2rem; text-align: center; position: relative; z-index: 1; }
.step-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); border: 3px solid var(--cyan); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; z-index: 2; position: relative; }
.step-num-inner { font-family: var(--font-d); font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.step h3 { margin-bottom: .6rem; font-size: .9rem; }
.step p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* ── FEATURES ── */
.features-section { background: var(--navy); }
.features-section h2 { color: var(--white); }
.features-section .section-label { color: var(--cyan); }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(0,174,239,.15); border: 1px solid rgba(0,174,239,.15); border-radius: 4px; overflow: hidden; margin-top: 3rem; }
.feature-card { background: rgba(255,255,255,.03); padding: 2.5rem; transition: background .2s; position: relative; }
.feature-card:hover { background: rgba(255,255,255,.06); }
.feature-card.featured { background: rgba(0,174,239,.06); }
.feature-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.feature-num { font-family: var(--font-d); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.feature-num::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.feature-card h3 { color: var(--white); margin-bottom: .8rem; font-size: .95rem; }
.feature-card p { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.feature-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.tag { font-family: var(--font-d); font-size: .68rem; font-weight: 600; color: var(--cyan); border: 1px solid rgba(0,174,239,.3); padding: .2rem .7rem; border-radius: 2px; text-transform: uppercase; letter-spacing: .06em; }

/* ── COMPARE ── */
.compare-section { background: var(--light-bg); }
.compare-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.compare-header .divider-gold { margin: 1.2rem auto 2rem; }
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table thead th { padding: 1.2rem 2rem; font-family: var(--font-d); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.compare-table thead th:first-child { text-align: left; background: var(--navy); color: rgba(255,255,255,.5); }
.compare-table thead th:nth-child(2) { background: var(--blue); color: var(--white); border-top: 3px solid var(--gold); }
.compare-table thead th:nth-child(3) { background: #e8edf5; color: var(--muted); }
.compare-table tbody td { padding: 1rem 2rem; font-size: .88rem; border-bottom: 1px solid var(--border-lt); transition: background .15s; }
.compare-table tbody td:first-child { color: var(--navy); font-weight: 500; }
.compare-table tbody td:nth-child(2) { font-weight: 600; text-align: center; background: rgba(0,102,179,.03); }
.compare-table tbody td:nth-child(3) { color: var(--muted); text-align: center; }
.check { color: var(--green); } .cross { color: var(--red); } .warn { color: #D97706; }

/* ── USES ── */
.uses-section { background: var(--white); }
.uses-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.uses-header .divider-gold { margin: 1.2rem auto 2rem; }
.uses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); border-radius: 6px; overflow: hidden; }
.use-card { background: var(--white); padding: 2.5rem 2rem; transition: background .2s; }
.use-card:hover { background: var(--light-bg); }
.use-icon { width: 52px; height: 52px; background: rgba(0,27,78,.04); border: 1px solid var(--border-lt); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.4rem; }
.use-items { list-style: none; }
.use-items li { font-size: .86rem; color: var(--muted); padding: .35rem 0; border-bottom: 1px solid var(--border-lt); display: flex; align-items: center; gap: .5rem; }
.use-items li::before { content: '›'; color: var(--cyan); font-size: 1.1rem; }
.use-items li:last-child { border-bottom: none; }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg,var(--navy) 0%,#002a7a 100%);
    padding: 8rem 5vw; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--gold),var(--cyan),var(--blue)); }
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-inner p { color: rgba(255,255,255,.6); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-price { display: inline-flex; align-items: baseline; gap: .5rem; font-family: var(--font-d); margin-bottom: 2.5rem; }
.cta-price .from { font-size: .9rem; color: rgba(255,255,255,.45); }
.cta-price .amount { font-size: 3.5rem; font-weight: 800; color: var(--gold); }
.cta-price .unit { font-size: .9rem; color: rgba(255,255,255,.45); }
.cta-features { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.cta-feat { font-size: .8rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .4rem; }
.cta-feat::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── FAQ ── */
.faq-section { background: var(--light-bg); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .divider-gold { margin: 1.2rem auto 2rem; }
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-q { width: 100%; background: none; border: none; color: var(--navy); font-family: var(--font-b); font-size: .93rem; font-weight: 600; text-align: left; padding: 1.3rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .2s; }
.faq-q:hover,.faq-q.active { color: var(--blue); }
.faq-q .toggle { font-size: 1.2rem; color: var(--gold); transition: transform .2s; flex-shrink: 0; }
.faq-q.active .toggle { transform: rotate(45deg); }
.faq-a { font-size: .88rem; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; }
.faq-a.open { max-height: 400px; padding-bottom: 1.3rem; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form-wrap { background: var(--light-bg); border: 1px solid var(--border-lt); border-radius: 6px; padding: 2.5rem; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius);
    font-family: var(--font-b); font-size: .92rem; color: var(--navy); background: var(--white);
    transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,179,.1); }
.input-disabled { background: var(--light-bg) !important; color: var(--muted) !important; cursor: not-allowed; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .78rem; color: var(--muted); margin-top: .4rem; }
.form-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-lt); }
.form-section h3 { margin-bottom: 1.2rem; }

/* ── AUTH PAGES ── */
.auth-page { min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: 5rem 1rem; background: var(--offwhite); }
.auth-card { background: var(--white); border: 1px solid var(--border-lt); border-radius: 8px; padding: 2.5rem; width: 100%; max-width: 440px; box-shadow: var(--shadow); }
.auth-card-wide { max-width: 600px; }
.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-logo a { display: inline-block; text-decoration: none; }
.auth-logo img { height: 52px; width: auto; display: block; }
.auth-title { font-size: 1.4rem; text-align: center; margin-bottom: 2rem; }
.auth-switch { text-align: center; margin-top: 1.5rem; font-size: .88rem; color: var(--muted); }
.auth-switch a { color: var(--blue); }
.form-footer-link a { font-size: .82rem; color: var(--blue); text-decoration: none; }
.form-footer-link a:hover { text-decoration: underline; }

/* ── SHOP ── */
.shop-page { min-height: calc(100svh - var(--nav-h)); padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 5rem; }
.product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.product-tag-display { display: flex; justify-content: center; align-items: center; padding: 3rem 2rem; background: var(--navy); border-radius: 12px; }
.tag-body-large { background: linear-gradient(135deg,#fff,#f0f4ff); border-radius: 12px; padding: 2.5rem 3rem; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.tag-brand-lg { display: block; font-family: var(--font-d); font-size: 2.2rem; font-weight: 900; color: var(--navy); letter-spacing: .08em; }
.tag-uid-lg { display: block; font-family: monospace; font-size: 1.1rem; color: var(--blue); margin: .5rem 0; letter-spacing: .15em; }
.tag-email-lg { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.tag-features { display: flex; flex-direction: column; gap: .4rem; }
.tag-features span { font-size: .78rem; color: var(--navy); background: var(--offwhite); padding: .3rem .8rem; border-radius: 20px; }
.product-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.badge { font-size: .78rem; font-weight: 600; color: var(--green); background: rgba(5,150,105,.08); border: 1px solid rgba(5,150,105,.2); padding: .3rem .9rem; border-radius: 20px; }
.product-title { font-size: 2.2rem; margin: 1rem 0 .5rem; }
.product-desc { color: var(--muted); margin-bottom: 2rem; }
.product-price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 2rem; }
.price-amount { font-family: var(--font-d); font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.price-unit { font-size: .88rem; color: var(--muted); }
.qty-group .form-group { margin-bottom: 0; }
.qty-control { display: flex; align-items: center; gap: .5rem; }
.qty-control input { width: 80px; text-align: center; }
.qty-control button { width: 40px; height: 40px; border: 1px solid var(--border); background: var(--white); border-radius: var(--radius); cursor: pointer; font-size: 1.2rem; font-weight: 600; color: var(--navy); transition: background .15s; }
.qty-control button:hover { background: var(--offwhite); }
.order-total { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; margin: 1rem 0; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); font-size: 1rem; }
.order-total strong { font-family: var(--font-d); font-size: 1.4rem; color: var(--navy); }
.login-prompt { background: var(--light-bg); border: 1px solid var(--border-lt); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.login-prompt p { color: var(--navy); font-weight: 500; margin-bottom: 1rem; }
.login-btns { display: flex; gap: .8rem; justify-content: center; }
.product-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.pf-item { display: flex; align-items: center; gap: .8rem; font-size: .88rem; color: var(--muted); }
.pf-icon { font-size: 1.2rem; }

/* ── CHECKOUT ── */
.checkout-page { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 5rem; }
.checkout-inner { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; padding: 0 5vw; max-width: 1100px; margin: 0 auto; }
.checkout-title { font-size: 1.8rem; margin-bottom: 2rem; }
.form-section h3 { font-size: 1rem; margin-bottom: 1.2rem; color: var(--navy); }
.checkout-secure { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .8rem; }
.summary-card { background: var(--light-bg); border: 1px solid var(--border-lt); border-radius: 6px; padding: 1.5rem; position: sticky; top: calc(var(--nav-h) + 1rem); }
.summary-card h3 { margin-bottom: 1.2rem; }
.summary-item { display: flex; justify-content: space-between; padding: .8rem 0; border-bottom: 1px solid var(--border-lt); font-size: .9rem; }
.summary-total { border-bottom: none; padding-top: 1rem; font-size: 1rem; }
.total-price { font-family: var(--font-d); font-size: 1.4rem; color: var(--navy); }
.summary-badges { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.summary-badges span { font-size: .8rem; color: var(--green); display: flex; align-items: center; gap: .4rem; }

/* ── RÉSULTAT COMMANDE ── */
.result-page { min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: 5rem 1rem; background: var(--offwhite); padding-top: calc(var(--nav-h) + 3rem); }
.result-card { background: var(--white); border-radius: 8px; padding: 3rem 2.5rem; text-align: center; max-width: 500px; width: 100%; box-shadow: var(--shadow); }
.result-icon { font-size: 3.5rem; width: 80px; height: 80px; border-radius: 50%; background: rgba(5,150,105,.1); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.cancel-icon { background: rgba(220,38,38,.1); color: var(--red); }
.result-card h1 { font-size: 1.8rem; margin-bottom: 1rem; }
.result-card p { color: var(--muted); margin-bottom: 2rem; }
.order-recap { background: var(--light-bg); border-radius: var(--radius); padding: 1.2rem; margin: 1.5rem 0; text-align: left; }
.recap-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border-lt); font-size: .9rem; }
.recap-row:last-child { border-bottom: none; }

/* ── STATUS BADGES ── */
.status-badge { display: inline-block; font-family: var(--font-d); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .7rem; border-radius: 20px; }
.status-pending    { background: rgba(251,191,36,.15); color: #92400e; }
.status-paid       { background: rgba(5,150,105,.15); color: #064e3b; }
.status-processing { background: rgba(0,174,239,.15); color: #0c4a6e; }
.status-shipped    { background: rgba(0,102,179,.15); color: var(--navy); }
.status-delivered  { background: rgba(5,150,105,.2); color: #064e3b; }
.status-cancelled  { background: rgba(220,38,38,.12); color: #7f1d1d; }
.status-refunded   { background: rgba(107,135,168,.15); color: var(--navy); }

/* ── ACCOUNT ── */
.account-page { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 5rem; background: var(--offwhite); min-height: 100svh; }
.account-inner { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
.account-sidebar { background: var(--white); border: 1px solid var(--border-lt); border-radius: 8px; padding: 2rem; height: fit-content; position: sticky; top: calc(var(--nav-h) + 1rem); }
.account-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-d); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.account-name { text-align: center; font-weight: 700; font-size: .95rem; color: var(--navy); }
.account-email { text-align: center; font-size: .78rem; color: var(--muted); margin-bottom: 1.5rem; }
.account-nav { display: flex; flex-direction: column; gap: .3rem; }
.account-nav a { text-decoration: none; padding: .7rem 1rem; border-radius: var(--radius); font-size: .88rem; color: var(--navy); transition: background .15s; }
.account-nav a:hover,.account-nav a.active { background: var(--light-bg); color: var(--blue); font-weight: 600; }
.account-content { background: var(--white); border: 1px solid var(--border-lt); border-radius: 8px; padding: 2.5rem; }
.account-content h1 { font-size: 1.8rem; margin-bottom: .5rem; }
.account-sub { color: var(--muted); margin-bottom: 2rem; }
.account-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.account-card { display: flex; flex-direction: column; align-items: center; padding: 1.5rem; background: var(--light-bg); border: 1px solid var(--border-lt); border-radius: 6px; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.account-card:hover { border-color: var(--blue); box-shadow: 0 4px 12px rgba(0,102,179,.08); }
.card-icon { font-size: 2rem; margin-bottom: .8rem; }
.card-label { font-family: var(--font-d); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }
.empty-state { text-align: center; padding: 3rem; }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.5rem; }
.orders-table-wrap { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { font-family: var(--font-d); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: .8rem 1rem; text-align: left; border-bottom: 2px solid var(--border-lt); }
.orders-table td { padding: .9rem 1rem; font-size: .88rem; border-bottom: 1px solid var(--border-lt); }
.order-num { font-family: var(--font-d); font-weight: 700; letter-spacing: .06em; }
.tracking-num { font-family: monospace; font-size: .82rem; }
.muted { color: var(--muted); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: var(--white); padding: 4rem 5vw 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-img {
    height: 48px; width: auto;
    display: block; margin-bottom: 1rem;
    /* Si le logo est sombre, le rendre blanc pour le fond navy du footer : */
    filter: brightness(0) invert(1);
}
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-socials a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 1.2rem; }
.footer-col h4 { font-family: var(--font-d); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-langs { display: flex; gap: .4rem; }
.footer-langs button { background: none; border: none; cursor: pointer; font-size: 1.1rem; opacity: .5; transition: opacity .2s; padding: .2rem; border-radius: 2px; }
.footer-langs button:hover,.footer-langs button.active { opacity: 1; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .product-inner,
    .checkout-inner { grid-template-columns: 1fr; }
    .summary-card { position: static; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 5vw; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 1.8rem; }

    /* Nav mobile */
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none; flex-direction: column; align-items: flex-start;
        position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
        background: var(--white); padding: 2rem; gap: 1rem;
        overflow-y: auto; z-index: 199;
        border-top: 1px solid var(--border-lt);
    }
    .nav-menu.open { display: flex; }
    .nav-links { flex-direction: column; gap: .5rem; width: 100%; }
    .nav-links a { font-size: 1.1rem; padding: .5rem 0; display: block; }
    .nav-cta { width: 100%; text-align: center; margin-top: .5rem; padding: .9rem !important; }
    .lang-switcher { width: 100%; }
    .lang-btn { width: 100%; justify-content: flex-start; }
    .lang-dropdown { width: 100%; position: static; box-shadow: none; border: 1px solid var(--border-lt); }

    /* Hero mobile */
    .hero { flex-direction: column; min-height: auto; padding-top: var(--nav-h); }
    .hero-left { flex: none; padding: 3rem 5vw 2rem; }
    .hero-right {
        flex: none; min-height: 280px;
        /* En mobile l'image est placée entre le texte et les stats */
    }
    /* Sur mobile, le fondu change d'axe : haut→bas et non gauche→droite */
    .hero-img-overlay {
        background: linear-gradient(
            to bottom,
            var(--navy)           0%,
            rgba(0,27,78,.60)    15%,
            rgba(0,27,78,.20)    50%,
            var(--navy)          100%
        );
    }
    .hero-bottom-bar { position: relative; flex-wrap: wrap; gap: .5rem; }
    .stat-sep { display: none; }
    .stat { flex: 0 0 calc(50% - .5rem); }

    /* Grilles mobiles */
    .problem-inner,
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .features-grid,
    .uses-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .account-inner { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-cards { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .steps { grid-template-columns: 1fr; }
    .cta-features { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; }
    .account-cards { grid-template-columns: 1fr; }
    .stat-num { font-size: 1.5rem; }
}

/* ── PACK SELECTOR ── */
.pack-selector {
    margin: 1.5rem 0 1rem;
}
.pack-label {
    font-size: .78rem; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: .75rem;
}
.pack-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
}
.pack-btn {
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem .5rem .8rem; border: 2px solid var(--border-lt);
    background: var(--white); border-radius: 6px; cursor: pointer;
    transition: border-color .18s, background .18s, transform .12s;
    position: relative; user-select: none;
    font-family: var(--font-b);
}
.pack-btn:hover {
    border-color: var(--blue); background: var(--offwhite);
    transform: translateY(-2px);
}
.pack-btn.active {
    border-color: var(--blue); background: rgba(0,102,179,.06);
    box-shadow: 0 0 0 3px rgba(0,102,179,.12);
}
.pack-btn.active::after {
    content: '✓';
    position: absolute; top: -10px; right: -10px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--blue); color: var(--white);
    font-size: .75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.pack-qty {
    font-family: var(--font-d); font-size: 2rem; font-weight: 800;
    color: var(--navy); line-height: 1;
}
.pack-name {
    font-size: .72rem; color: var(--muted); text-transform: uppercase;
    letter-spacing: .06em; margin: .2rem 0 .5rem;
}
.pack-price {
    font-family: var(--font-d); font-size: .95rem; font-weight: 700;
    color: var(--navy);
}
.pack-tag {
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-d); font-size: .6rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em;
    background: var(--muted); color: var(--white);
    padding: .15rem .55rem; border-radius: 20px; white-space: nowrap;
}
.pack-tag.popular {
    background: var(--gold); color: var(--navy);
}

/* ── QUANTITÉ MANUELLE ── */
.qty-custom {
    display: flex; align-items: center; gap: 1rem;
    margin: 1rem 0; padding: .9rem 1.2rem;
    background: var(--light-bg); border: 1px solid var(--border-lt);
    border-radius: 6px;
}
.qty-custom-label {
    font-size: .84rem; color: var(--muted); white-space: nowrap; flex: 1;
}
.qty-control {
    display: flex; align-items: center; gap: .4rem;
}
.qty-control input {
    width: 70px; text-align: center; font-size: 1rem; font-weight: 700;
    padding: .45rem .5rem !important;
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
}
.qty-control button {
    width: 36px; height: 36px;
    border: 1px solid var(--border); background: var(--white);
    border-radius: 4px; cursor: pointer; font-size: 1.2rem; font-weight: 700;
    color: var(--navy); transition: background .15s, border-color .15s;
    display: flex; align-items: center; justify-content: center;
    padding: 0; line-height: 1;
}
.qty-control button:hover:not(:disabled) { background: var(--offwhite); border-color: var(--blue); }
.qty-control button:disabled { opacity: .35; cursor: not-allowed; }

/* ── RÉCAPITULATIF COMMANDE ── */
.order-recap-box {
    background: var(--navy); border-radius: 6px;
    padding: 1.2rem 1.4rem; margin: 1.2rem 0 1.5rem;
}
.recap-line {
    display: flex; justify-content: space-between;
    font-size: .88rem; color: rgba(255,255,255,.65);
}
.recap-divider {
    height: 1px; background: rgba(255,255,255,.1); margin: .9rem 0;
}
.recap-total-line {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: .9rem; color: rgba(255,255,255,.7);
}
.recap-total-line strong {
    font-family: var(--font-d); font-size: 1.8rem; font-weight: 800;
    color: var(--gold); transition: color .2s;
}
.recap-shipping {
    font-size: .76rem; color: rgba(255,255,255,.45);
    margin-top: .65rem; text-align: right;
}

/* Animation changement de prix */
@keyframes priceBump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.price-bump { animation: priceBump .25s ease-out; }

/* ── USAGE HINT ── */
.usage-hint {
    margin-top: 1.5rem;
    background: var(--offwhite); border: 1px solid var(--border-lt);
    border-radius: 6px; padding: 1.1rem 1.3rem;
}
.usage-hint-title {
    font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .7rem;
}
.usage-list {
    list-style: none; display: flex; flex-direction: column; gap: .45rem;
}
.usage-list li {
    font-size: .82rem; color: var(--muted);
    display: flex; align-items: center; gap: .6rem;
}
.usage-qty {
    font-family: var(--font-d); font-size: .88rem; font-weight: 800;
    color: var(--blue); background: rgba(0,102,179,.1);
    padding: .15rem .55rem; border-radius: 20px; min-width: 28px; text-align: center;
}

/* ── Responsive pack grid ── */
@media (max-width: 480px) {
    .pack-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .pack-qty  { font-size: 1.6rem; }
    .qty-custom { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* ── Tag mockup shadow (multi-tag effect) ── */
.tag-mockup-wrap { position: relative; display: inline-block; }
.tag-shadow {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #e8edf8, #d4dff0);
    border-radius: 12px; border: 2px solid rgba(0,102,179,.15);
    z-index: -1;
}
.tag-shadow-2 { transform: translate(8px, 8px); z-index: -1; opacity: .6; }
.tag-shadow-3 { transform: translate(16px, 16px); z-index: -2; opacity: .35; }

/* ══════════════════════════════════════════
   PAGE — FORMULAIRE TAG RETROUVÉ
══════════════════════════════════════════ */
.found-page {
    min-height: calc(100vh - var(--nav-h));
    background: var(--light-bg);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 1.2rem 5rem;
}
.found-card-wrap { width: 100%; max-width: 560px; }

.found-card {
    background: var(--white);
    border: 1px solid var(--border-lt);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0,27,78,.07);
}

/* Logo */
.found-logo { text-align: center; margin-bottom: 1.8rem; }
.found-logo a { display: inline-block; }
.found-logo img { height: 48px; width: auto; }

/* En-tête */
.found-header { margin-bottom: 1.8rem; }
.found-header .section-label { font-size: .72rem; margin-bottom: .6rem; }
.found-header h1 {
    font-family: var(--font-d); font-size: 1.8rem;
    font-weight: 800; color: var(--navy); margin-bottom: .8rem;
}
.found-sub { color: var(--muted); font-size: .93rem; line-height: 1.6; }

/* Aperçu visuel du tag */
.found-tag-hint {
    background: var(--offwhite);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.found-tag-preview {
    flex-shrink: 0;
    background: var(--navy);
    border-radius: 8px;
    padding: .6rem .9rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 130px;
    text-align: center;
}
.ftag-brand {
    font-family: var(--font-d); font-size: .85rem;
    font-weight: 900; color: var(--gold); letter-spacing: .08em;
}
.ftag-uid { font-size: .78rem; color: var(--white); font-weight: 600; }
.ftag-uid strong { color: var(--cyan); }
.ftag-mail { font-size: .62rem; color: rgba(255,255,255,.55); }
.found-tag-hint-text { font-size: .83rem; color: var(--muted); line-height: 1.5; }

/* Champ code — mis en avant */
.found-code-input {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
}
.form-label-required::after { content: ''; }

/* Section optionnelle (accordéon) */
.found-optional {
    margin-top: 1.2rem;
    border: 1px solid var(--border-lt);
    border-radius: 8px;
    overflow: hidden;
}
.found-optional summary {
    padding: .8rem 1rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--offwhite);
    transition: background .15s;
}
.found-optional summary::-webkit-details-marker { display: none; }
.found-optional summary::before {
    content: '+';
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform .2s;
}
.found-optional[open] summary::before { content: '−'; }
.found-optional[open] summary { background: #e8f0fb; }
.found-optional-inner {
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

/* Note confidentialité */
.found-privacy {
    margin-top: 1.2rem;
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
}

/* ── Confirmation de succès ── */
.found-success { text-align: center; padding: 1rem 0; }
.found-success-icon {
    width: 64px; height: 64px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.4rem;
}
.found-success h1 {
    font-family: var(--font-d); font-size: 1.8rem;
    font-weight: 800; color: var(--navy); margin-bottom: .8rem;
}
.found-success p { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-bottom: 1.4rem; }
.found-code-recap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    background: var(--offwhite);
    border: 1px solid var(--border-lt);
    border-radius: 8px;
    padding: .8rem 2rem;
}
.found-code-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.found-code-value {
    font-family: var(--font-d); font-size: 1.6rem;
    font-weight: 900; color: var(--navy); letter-spacing: .1em;
}

/* Responsive */
@media (max-width: 480px) {
    .found-card { padding: 1.8rem 1.2rem; }
    .found-tag-hint { flex-direction: column; text-align: center; }
    .found-tag-preview { min-width: unset; width: 100%; }
}

/* ══════════════════════════════════════════
   PRIX PROMOTIONNEL
══════════════════════════════════════════ */

/* CTA section */
.amount-old {
    font-family: var(--font-d);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-decoration: line-through;
    margin-right: .4rem;
}
.promo-flash {
    animation: promoGlow 1.8s ease-in-out infinite;
}
@keyframes promoGlow {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50%       { text-shadow: 0 0 18px rgba(242,183,5,.7); }
}
.promo-badge-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-d);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    padding: .2rem .6rem;
    border-radius: 4px;
    vertical-align: middle;
    margin: 0 .5rem;
    transform: rotate(-2deg);
    display: inline-block;
}

/* Shop page */
.price-amount-old {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: .5rem;
}
.price-promo-badge {
    display: inline-block;
    background: #DC2626;
    color: #fff;
    font-family: var(--font-d);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    padding: .18rem .55rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: .5rem;
}
.promo-pulse {
    color: #DC2626;
    animation: promoPulse 2s ease-in-out infinite;
}
@keyframes promoPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .75; }
}
