/* =============================================================================
   DIGIV-PRO — style.css
   Styles spécifiques aux vues (regroupés depuis les blocs <style> inline)
   Design system global → digiv.css
   ============================================================================= */


/* =============================================================================
   HOME — page d'accueil
   ============================================================================= */

/* ── Layout helpers ── */
.home-section {
    width: 100%;
    overflow-x: hidden;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 5rem 1.25rem 5rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 560px;
    height: 560px;
    top: -30%;
    right: -8%;
    background: rgba(255, 255, 255, .06);
}

.hero::after {
    width: 380px;
    height: 380px;
    bottom: -25%;
    left: -6%;
    background: rgba(255, 255, 255, .05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero-title .gradient-word {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #fff;
    color: var(--lien-marin);
    border: none;
    padding: .78rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .97rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
    color: var(--lien-marin);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .38);
    padding: .78rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .97rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
    transform: translateY(-3px);
}

.hero-micro-trust {
    font-size: .78rem;
    opacity: .6;
    margin-top: .9rem;
}

/* ── Mockup Card ── */
.mockup-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
    max-width: 290px;
    margin: 0 auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .1);
}

.mockup-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .7rem;
    box-shadow: 0 4px 16px rgba(27, 94, 140, .4);
}

.mockup-name {
    font-weight: 700;
    color: #1a2035;
    font-size: .97rem;
    text-align: center;
}

.mockup-job {
    font-size: .75rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

.mockup-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: #f5f6fa;
    border-radius: 11px;
    padding: .48rem .7rem;
    margin-bottom: .45rem;
    font-size: .77rem;
    color: #1a2035;
    font-weight: 500;
}

.mockup-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.mockup-qr {
    border: 1.5px dashed #dee2e6;
    border-radius: 11px;
    padding: .7rem;
    text-align: center;
    margin-top: .65rem;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(7, 10px);
    gap: 2px;
    justify-content: center;
}

.qr-cell {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.mockup-qr-label {
    font-size: .68rem;
    color: #adb5bd;
    margin-top: .45rem;
    margin-bottom: 0;
}

.mockup-badge {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: #fff;
    border-radius: 14px;
    padding: .5rem .85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: #1a2035;
    white-space: nowrap;
}

.mockup-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

/* ── Stats band ── */
.stats-band {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 2.5rem 1.25rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-lbl {
    font-size: .8rem;
    color: #6c757d;
    margin-top: .2rem;
}

/* ── Features ── */
.features-sec {
    background: var(--bg-app);
    padding: 5rem 1.25rem;
}

.sec-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lien-marin);
    margin-bottom: .6rem;
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a2035;
    margin-bottom: .5rem;
}

.sec-sub {
    color: #6c757d;
    font-size: .93rem;
    max-width: 480px;
    margin: 0 auto .3rem;
}

.feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid #e5eaf5;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(63, 181, 202, .14);
    border-color: rgba(63, 181, 202, .38);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
    flex-shrink: 0;
}

.feat-title {
    font-weight: 700;
    color: #1a2035;
    font-size: 1.02rem;
    margin-bottom: .45rem;
}

.feat-desc {
    color: #6c757d;
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Steps ── */
.steps-sec {
    background: #fff;
    padding: 5rem 1.25rem;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(27, 94, 140, .35);
}

.step-connector {
    width: 2px;
    height: 36px;
    background: linear-gradient(var(--lien-marin), var(--horizon));
    opacity: .2;
    margin: .4rem auto;
}

.step-title {
    font-weight: 700;
    color: #1a2035;
    font-size: 1rem;
    margin-bottom: .2rem;
}

.step-desc {
    color: #6c757d;
    font-size: .87rem;
    margin: 0;
    line-height: 1.6;
}

/* ── CTA bottom ── */
.cta-sec {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 5rem 1.25rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 420px;
    height: 420px;
    top: -45%;
    right: 3%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}

.cta-sub {
    opacity: .8;
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}


/* =============================================================================
   DASHBOARD
   ============================================================================= */

/* ── Header hero ── */
.dash-hero {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 2.4rem 2rem 3.8rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.dash-hero::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 480px;
    height: 480px;
    top: -40%;
    right: -5%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.dash-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 280px;
    height: 280px;
    bottom: -55%;
    left: 3%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.dash-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.dash-greeting {
    flex: 1;
    min-width: 0;
}

.dash-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    border: 2px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: .6rem;
}

.dash-hello {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .25rem;
}

.dash-hello-sub {
    font-size: .85rem;
    opacity: .75;
}

.dash-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
}

.btn-dash-white {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    color: var(--lien-marin);
    border: none;
    border-radius: 50px;
    padding: .55rem 1.2rem;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .18);
    transition: transform .2s, box-shadow .2s;
    font-family: inherit;
    cursor: pointer;
}

.btn-dash-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    color: var(--lien-marin);
}

.btn-dash-ghost {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .14);
    border: 1.5px solid rgba(255, 255, 255, .32);
    color: #fff;
    border-radius: 50px;
    padding: .52rem 1.15rem;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
    font-family: inherit;
    cursor: pointer;
}

.btn-dash-ghost:hover {
    background: rgba(255, 255, 255, .24);
    color: #fff;
    transform: translateY(-2px);
}

.btn-dash-danger {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--danger);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .55rem 1.2rem;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(224, 82, 82, .32);
    transition: transform .2s, box-shadow .2s;
}

.btn-dash-danger:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 22px rgba(224, 82, 82, .42);
}

/* ── Contenu principal ── */
.dash-body {
    max-width: 1140px;
    margin: -2.2rem auto 0;
    padding: 0 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

/* ── Cartes de stats ── */
.stat-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(63, 181, 202, .14);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(63, 181, 202, .14);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-val {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-lbl {
    font-size: .78rem;
    color: var(--text-mid);
    margin-top: .15rem;
}

.stat-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 50px;
}

/* ── Blocs info ── */
.info-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid rgba(63, 181, 202, .14);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid #f0f6f8;
    font-weight: 700;
    font-size: .88rem;
    color: var(--ancre);
}

.info-card-header .header-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.info-card-body {
    padding: 1.2rem 1.4rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 0;
    border-bottom: 1px solid #f0f6f8;
    font-size: .85rem;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-key {
    color: var(--text-mid);
    min-width: 90px;
    flex-shrink: 0;
}

.info-val {
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-all;
}

.badge-published {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #d1fae5;
    color: #065f46;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50px;
}

.badge-unpublished {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fee2e2;
    color: #991b1b;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Tableau visites ── */
.period-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .38rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(63, 181, 202, .28);
    color: var(--text-mid);
    background: var(--field-bg);
    transition: all .18s;
}

.period-btn:hover {
    border-color: var(--horizon);
    color: var(--lien-marin);
    background: var(--ecume);
}

.period-btn.active {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    border-color: var(--lien-marin);
    color: #fff;
}

.visits-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .84rem;
}

.visits-table th {
    padding: .6rem 1rem;
    background: var(--bg-app);
    color: var(--text-mid);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(63, 181, 202, .14);
}

.visits-table th:first-child {
    border-radius: 10px 0 0 0;
}

.visits-table th:last-child {
    border-radius: 0 10px 0 0;
}

.visits-table td {
    padding: .7rem 1rem;
    border-bottom: 1px solid #f0f6f8;
    color: var(--text-dark);
    vertical-align: middle;
}

.visits-table tr:last-child td {
    border-bottom: none;
}

.visits-table tr:hover td {
    background: var(--ecume);
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--ecume);
    color: var(--lien-marin);
    font-size: .72rem;
    font-weight: 600;
    padding: .22rem .65rem;
    border-radius: 50px;
}

/* ── QR code card ── */
.qr-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid rgba(63, 181, 202, .14);
    box-shadow: var(--shadow-card);
    padding: 1.6rem;
}

.qr-preview {
    width: 140px;
    height: 140px;
    border-radius: 14px;
    border: 2px solid rgba(63, 181, 202, .2);
    padding: .5rem;
    background: #fff;
    flex-shrink: 0;
    display: block;
}

.btn-dl {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--ecume);
    color: var(--lien-marin);
    border: 1.5px solid rgba(63, 181, 202, .3);
    border-radius: 50px;
    padding: .45rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.btn-dl:hover {
    background: var(--lien-marin);
    color: #fff;
    border-color: var(--lien-marin);
    transform: translateY(-2px);
}

.copy-link-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-app);
    border: 1.5px solid rgba(63, 181, 202, .22);
    border-radius: 10px;
    overflow: hidden;
    max-width: 380px;
}

.copy-link-url {
    flex: 1;
    padding: .55rem .9rem;
    font-size: .78rem;
    color: var(--text-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-link-btn {
    padding: .5rem .9rem;
    background: var(--lien-marin);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: background .18s;
    font-family: inherit;
    flex-shrink: 0;
}

.copy-link-btn:hover {
    background: var(--ancre);
}

/* ── Empty state ── */
.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
}

.empty-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--ecume);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.empty-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .35rem;
}

.empty-sub {
    font-size: .85rem;
    color: #adb5bd;
}


/* =============================================================================
   AUTH — commun login + register
   ============================================================================= */

.auth-split {
    min-height: calc(100vh - 58px);
    display: flex;
}

/* ── Panneau gauche ── */
.auth-panel-left {
    flex: 0 0 45%;
    background: linear-gradient(145deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.auth-panel-left::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    top: -20%;
    right: -22%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.auth-panel-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    bottom: -18%;
    left: -12%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.left-logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.left-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.left-sub {
    font-size: .9rem;
    opacity: .78;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ── Panneau droit ── */
.auth-panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #fff;
    overflow-y: auto;
}

.auth-form-box {
    width: 100%;
    max-width: 420px;
}

/* ── Eyebrow + titre ── */
.auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--lien-marin);
    background: var(--ecume);
    padding: .3rem .85rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.auth-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ancre);
    margin-bottom: .35rem;
    line-height: 1.2;
}

.auth-sub {
    font-size: .88rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

/* ── Champs ── */
.auth-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .4rem;
    display: block;
}

.auth-input {
    width: 100%;
    padding: .72rem 1rem;
    border: 1.5px solid var(--field-border);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--field-text);
    background: var(--field-bg);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-family: inherit;
}

.auth-input:focus {
    border-color: var(--field-focus-border);
    background: #fff;
    box-shadow: 0 0 0 3px var(--field-focus-shadow);
}

.auth-input-wrap {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: .95rem;
    pointer-events: none;
}

.auth-input.has-icon {
    padding-left: 2.6rem;
}

.toggle-pw {
    position: absolute;
    right: .9rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #adb5bd;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
    transition: color .2s;
}

.toggle-pw:hover {
    color: var(--horizon);
}

/* ── Bouton principal ── */
.btn-auth {
    width: 100%;
    padding: .82rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: .97rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(27, 94, 140, .28);
}

.btn-auth:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27, 94, 140, .38);
}

.btn-auth:active {
    transform: translateY(0);
}

/* ── Séparateur ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 1.4rem 0;
    color: #adb5bd;
    font-size: .78rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

/* ── Footer ── */
.auth-footer {
    text-align: center;
    font-size: .85rem;
    color: #6c757d;
    margin-top: 1.4rem;
}

.auth-footer a {
    color: var(--lien-marin);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .auth-panel-left {
        display: none;
    }

    .auth-panel-right {
        padding: 2rem 1.25rem;
        min-height: calc(100vh - 58px);
    }
}



/* =============================================================================
   AUTH LOGIN — spécifique
   ============================================================================= */

.left-tag {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    position: relative;
    z-index: 1;
}

.testi-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1rem 1.2rem;
}

.testi-text {
    font-size: .83rem;
    opacity: .9;
    line-height: 1.6;
    margin-bottom: .65rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.testi-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .72rem;
    flex-shrink: 0;
}

.testi-name {
    font-size: .78rem;
    font-weight: 700;
}

.testi-role {
    font-size: .70rem;
    opacity: .65;
}

.testi-stars {
    margin-left: auto;
    font-size: .75rem;
    letter-spacing: .05em;
    opacity: .9;
}

.pw-forgot {
    display: block;
    text-align: right;
    font-size: .77rem;
    color: var(--text-mid);
    margin-top: .45rem;
    text-decoration: none;
    transition: color .18s;
}

.pw-forgot:hover {
    color: var(--lien-marin);
}


/* =============================================================================
   AUTH REGISTER — spécifique
   ============================================================================= */

.left-tagline {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.left-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    position: relative;
    z-index: 1;
}

.left-perk {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .88rem;
    font-weight: 500;
}

.perk-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    flex-shrink: 0;
}

.mini-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 300px;
}

.mini-card-head {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .85rem;
}

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
}

.mini-name {
    font-weight: 700;
    font-size: .9rem;
}

.mini-job {
    font-size: .72rem;
    opacity: .7;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: .38rem .6rem;
    font-size: .73rem;
    margin-bottom: .35rem;
}

.mini-row:last-child {
    margin-bottom: 0;
}

.mini-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    flex-shrink: 0;
}

.pw-strength {
    height: 4px;
    border-radius: 4px;
    background: #e9ecef;
    margin-top: .45rem;
    overflow: hidden;
}

.pw-strength-bar {
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width .35s, background .35s;
}

.pw-hint {
    font-size: .72rem;
    color: #adb5bd;
    margin-top: .3rem;
}

.auth-cgu {
    font-size: .75rem;
    color: #adb5bd;
    text-align: center;
    margin-top: .9rem;
    line-height: 1.6;
}

.auth-cgu a {
    color: var(--text-mid);
    text-decoration: underline;
}


/* =============================================================================
   PROFILE EDIT
   ============================================================================= */

/* ── Header hero ── */
.profile-hero {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 2.2rem 2rem 3.6rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.profile-hero::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 440px;
    height: 440px;
    top: -35%;
    right: -4%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.profile-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    bottom: -50%;
    left: 2%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.profile-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.profile-hero-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: .2rem;
}

.profile-hero-sub {
    font-size: .82rem;
    opacity: .72;
}

.btn-hero-save {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #fff;
    color: var(--lien-marin);
    border: none;
    border-radius: 50px;
    padding: .6rem 1.4rem;
    font-weight: 700;
    font-size: .88rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
    cursor: pointer;
    font-family: inherit;
    transition: transform .2s, box-shadow .2s;
}

.btn-hero-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

.btn-hero-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .13);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: .55rem 1.1rem;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
}

.btn-hero-back:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Contenu ── */
.profile-body {
    max-width: 1000px;
    margin: -2rem auto 0;
    padding: 0 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

/* ── Section cards ── */
.pf-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid rgba(63, 181, 202, .14);
    box-shadow: var(--shadow-card);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.pf-card-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 1.05rem 1.5rem;
    border-bottom: 1px solid #f0f6f8;
    font-weight: 700;
    font-size: .88rem;
    color: var(--ancre);
}

.pf-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.pf-card-body {
    padding: 1.4rem 1.5rem;
}

/* ── Titres de colonnes ── */
.pf-col-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--profondeur);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--profondeur);
    padding-bottom: .4rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* ── Séparateur de colonne ── */
.pf-col-sep {
    border: none;
    border-top: 1.5px solid var(--field-border);
    margin: 1.2rem 0 1rem;
}

/* ── Cases à cocher ── */
.pf-check-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .75rem;
}

.pf-check-row input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--profondeur);
    flex-shrink: 0;
    cursor: pointer;
}

.pf-check-row label {
    font-size: .83rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.3;
}

.pf-input-px {
    width: 4.5rem !important;
    padding: .25rem .4rem;
    font-size: .83rem;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
}

.pf-px-unit {
    font-size: .83rem;
    color: var(--text-dark);
}

/* ── Champs ── */
.pf-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .38rem;
}

.pf-input,
.pf-select,
.pf-textarea {
    width: 100%;
    padding: .68rem 1rem;
    border: 1.5px solid var(--field-border);
    border-radius: 10px;
    font-size: .88rem;
    color: var(--field-text);
    background: var(--field-bg);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-family: inherit;
}

.pf-input:focus,
.pf-select:focus,
.pf-textarea:focus {
    border-color: var(--field-focus-border);
    background: #fff;
    box-shadow: 0 0 0 3px var(--field-focus-shadow);
}

.pf-input-group {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--field-border);
    border-radius: 10px;
    background: var(--field-bg);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.pf-input-group:focus-within {
    border-color: var(--field-focus-border);
    background: #fff;
    box-shadow: 0 0 0 3px var(--field-focus-shadow);
}

.pf-input-group-prefix {
    padding: .68rem .8rem;
    font-size: .8rem;
    color: var(--text-mid);
    background: var(--ecume);
    border-right: 1.5px solid var(--field-border);
    white-space: nowrap;
    flex-shrink: 0;
}

.pf-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: .68rem .9rem;
    font-size: .88rem;
    color: var(--field-text);
    outline: none;
    font-family: inherit;
}

.pf-hint {
    font-size: .73rem;
    color: #adb5bd;
    margin-top: .35rem;
}

.pf-textarea {
    resize: vertical;
    min-height: 60px;
}

/* ── Toggle publication ── */
.publish-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ecume);
    border: 1.5px solid rgba(63, 181, 202, .22);
    border-radius: 14px;
    padding: 1rem 1.2rem;
}

.publish-toggle-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: .9rem;
}

.publish-toggle-sub {
    font-size: .78rem;
    color: var(--text-mid);
    margin-top: .15rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #dee2e6;
    border-radius: 26px;
    transition: .25s;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    transition: .25s;
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--courant);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

/* ── Liens sociaux ── */
.social-row-card {
    background: var(--field-bg);
    border: 1.5px solid rgba(63, 181, 202, .2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: .7rem;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: .7rem;
    align-items: end;
}

@media (max-width: 768px) {
    .social-row-card {
        grid-template-columns: 1fr 1fr;
    }

    .social-row-url {
        grid-column: 1 / -1;
    }

    .social-row-acts {
        grid-column: 1 / -1;
        display: flex;
        gap: .5rem;
        align-items: center;
        justify-content: flex-end;
    }
}

.move-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1.5px solid var(--field-border);
    background: #fff;
    font-size: .8rem;
    cursor: pointer;
    color: var(--text-mid);
    transition: border-color .18s, color .18s, background .18s;
}

.move-btn:hover {
    border-color: var(--horizon);
    color: var(--lien-marin);
    background: var(--ecume);
}

/* ── QR card ── */
.qr-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: center;
    background: var(--ecume);
    border: 1.5px solid rgba(63, 181, 202, .22);
    border-radius: 14px;
    padding: 1.2rem;
}

.qr-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 2px solid rgba(63, 181, 202, .2);
    padding: .4rem;
    background: #fff;
    flex-shrink: 0;
}

.btn-qr-dl {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--ecume);
    color: var(--lien-marin);
    border: 1.5px solid rgba(63, 181, 202, .3);
    border-radius: 50px;
    padding: .4rem .9rem;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.btn-qr-dl:hover {
    background: var(--lien-marin);
    color: #fff;
    border-color: var(--lien-marin);
    transform: translateY(-2px);
}

/* ── Bouton submit bas ── */
.btn-save-bottom {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .75rem 2rem;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(27, 94, 140, .28);
    transition: opacity .2s, transform .2s, box-shadow .2s;
}

.btn-save-bottom:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27, 94, 140, .38);
}

.btn-view-public {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--ecume);
    color: var(--lien-marin);
    border: 1.5px solid rgba(63, 181, 202, .3);
    border-radius: 50px;
    padding: .72rem 1.4rem;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.btn-view-public:hover {
    background: var(--lien-marin);
    color: #fff;
    border-color: var(--lien-marin);
    transform: translateY(-2px);
}

/* ── Bouton aperçu mobile (hero) ── */
.btn-hero-preview {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .13);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: .55rem 1.1rem;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
    font-family: inherit;
    text-decoration: none;
}

.btn-hero-preview:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

/* ── Modale prévisualisation mobile ── */
#mobilePreviewModal .modal-dialog {
    max-width: 380px;
}

#mobilePreviewModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.preview-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    padding: 0 .25rem;
}

.phone-shell {
    width: 292px;
    border-radius: 44px;
    background: #1a2035;
    padding: 12px 12px 6px;
    box-shadow: 0 0 0 2px #2d3560, 0 30px 80px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .07);
    margin: 0 auto;
}

.phone-notch {
    width: 90px;
    height: 22px;
    background: #1a2035;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.phone-notch-dot {
    width: 7px;
    height: 7px;
    background: #0a0e1a;
    border-radius: 50%;
}

.phone-notch-bar {
    width: 44px;
    height: 5px;
    background: #0a0e1a;
    border-radius: 3px;
}

.phone-screen-wrap {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    height: 540px;
    position: relative;
}

.phone-status {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 26px;
    background: rgba(255, 255, 255, .97);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-size: .62rem;
    font-weight: 700;
    color: #1a2035;
    z-index: 3;
    border-bottom: 1px solid #f0f0f0;
}

.phone-content {
    width: 100%;
    min-height: 514px;
    max-height: 514px;
    margin-top: 26px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.phone-content::-webkit-scrollbar {
    width: 3px;
}

.phone-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 3px;
}

/* ── Preview elements ── */
.pv-inner {
    padding: 1rem 1rem 2rem;
    text-align: center;
}

/* Pleine largeur */
.pv-avatar-photo,
.pv-avatar-logo {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 160px;
    min-height: 60px;
    border-radius: 0;
    margin-bottom: .1rem;
}

/* Rond */
.pv-avatar-round {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 1rem auto .6rem;
    border: 2px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

/* Carré */
.pv-avatar-square {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 1rem auto .6rem;
    border: 2px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

/* Overlay circulaire sur le crop box Cropper.js */
#cropperModal.cropper-round-mode .cropper-view-box,
#cropperModal.cropper-round-mode .cropper-face {
    border-radius: 50%;
}

#cropperModal.cropper-round-mode .cropper-view-box {
    outline: 1px solid rgba(63, 181, 202, .75);
    outline-offset: 0;
}

/* Aperçu carré dans la modale crop */
#cropperModal.cropper-square-mode .cp-preview-round-wrap>div {
    border-radius: 8px !important;
}

#cropperModal.cropper-square-mode .cp-preview-round-wrap>div>div {
    border-radius: 8px !important;
}

.pv-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 .2rem;
    line-height: 1.2;
}

.pv-headline {
    font-size: .78rem;
    font-weight: 600;
    opacity: .9;
    margin: 0 0 .15rem;
}

.pv-tagline {
    font-size: .74rem;
    opacity: .65;
    margin: 0 0 .9rem;
}

.pv-bio {
    font-size: .74rem;
    text-align: left;
    opacity: .85;
    line-height: 1.55;
    margin-bottom: .9rem;
}

.pv-bio p {
    margin: 0 0 .4rem;
}

.pv-bio ul,
.pv-bio ol {
    padding-left: 1.2rem;
    margin: 0 0 .4rem;
}

.pv-bio li {
    margin-bottom: .2rem;
}

.pv-action-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 10px;
    padding: .42rem .65rem;
    font-size: .72rem;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .07);
    width: 100%;
    margin-bottom: .38rem;
    color: #1a2035;
}

.pv-action-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .76rem;
    flex-shrink: 0;
}

.pv-action-icon--phone {
    background: #22c55e;
}

.pv-action-icon--email {
    background: #ef4444;
}

.pv-action-icon--website {
    background: #3b82f6;
}

.pv-action-icon--facebook {
    background: #1877f2;
}

.pv-action-icon--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.pv-action-icon--linkedin {
    background: #0077b5;
}

.pv-action-icon--youtube {
    background: #ff0000;
}

.pv-action-icon--x {
    background: #1a1a1a;
}

.pv-action-icon--tiktok {
    background: #010101;
}

.pv-action-icon--whatsapp {
    background: #25d366;
}

.pv-action-icon--other {
    background: #6c757d;
}

.pv-action-label {
    /* flex: 1; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pv-socials {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: .3rem;
    width: 100%;
}

.pv-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    flex-direction: column;
    gap: .5rem;
    min-height: 300px;
}

.phone-home-bar {
    width: 90px;
    height: 4px;
    background: rgba(255, 255, 255, .25);
    border-radius: 3px;
    margin: 8px auto 2px;
}


/* =============================================================================
   CONTACT
   ============================================================================= */

.contact-hero {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 4rem 1.5rem 5.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::before {
    width: 500px;
    height: 500px;
    top: -25%;
    right: -8%;
    background: rgba(255, 255, 255, .06);
}

.contact-hero::after {
    width: 340px;
    height: 340px;
    bottom: -30%;
    left: -6%;
    background: rgba(255, 255, 255, .05);
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .8rem;
    position: relative;
    z-index: 1;
}

.contact-hero-sub {
    font-size: 1rem;
    opacity: .82;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.contact-wrap {
    max-width: 640px;
    margin: -2.5rem auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(63, 181, 202, .14), 0 2px 8px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.contact-card-header {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    padding: 1.6rem 2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-header h2 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.contact-card-header p {
    color: rgba(255, 255, 255, .78);
    font-size: .83rem;
    margin: .2rem 0 0;
}

.contact-card-body {
    padding: 2rem 2rem 2.2rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: var(--ecume);
    border: 1px solid rgba(63, 181, 202, .14);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform .18s, box-shadow .18s;
    margin-bottom: .8rem;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 181, 202, .18);
    text-decoration: none;
    color: var(--text-dark);
}

.contact-row-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.contact-row-icon--email {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
}

.contact-row-icon--support {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-row-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-row-text span {
    font-size: .82rem;
    color: var(--text-mid);
}

.contact-divider {
    border: none;
    border-top: 1px solid rgba(63, 181, 202, .14);
    margin: 1.5rem 0;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--ecume);
    border: 1px solid rgba(63, 181, 202, .22);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: .83rem;
    color: var(--lien-marin);
    line-height: 1.6;
}

.contact-info i {
    font-size: 1.1rem;
    color: var(--lien-marin);
    margin-top: .1rem;
    flex-shrink: 0;
}


/* =============================================================================
   PRIVACY — Politique de confidentialité
   ============================================================================= */

.priv-hero {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 4rem 1.5rem 5.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.priv-hero::before,
.priv-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.priv-hero::before {
    width: 500px;
    height: 500px;
    top: -25%;
    right: -8%;
    background: rgba(255, 255, 255, .06);
}

.priv-hero::after {
    width: 340px;
    height: 340px;
    bottom: -30%;
    left: -6%;
    background: rgba(255, 255, 255, .05);
}

.priv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.priv-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .8rem;
    position: relative;
    z-index: 1;
}

.priv-hero-sub {
    font-size: 1rem;
    opacity: .82;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.priv-hero-date {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.4rem;
    font-size: .78rem;
    opacity: .65;
    position: relative;
    z-index: 1;
}

.priv-wrap {
    max-width: 700px;
    margin: -2.5rem auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.priv-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(63, 181, 202, .14), 0 2px 8px rgba(0, 0, 0, .05);
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.priv-card-header {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.priv-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.priv-card-header h2 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.priv-card-header p {
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
    margin: .15rem 0 0;
}

.priv-card-body {
    padding: 1.8rem 2rem 2rem;
}

.priv-section {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--ecume);
    border: 1px solid rgba(63, 181, 202, .14);
    border-radius: 14px;
    margin-bottom: .85rem;
}

.priv-section:last-child {
    margin-bottom: 0;
}

.priv-section-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.priv-section-icon--blue {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
}

.priv-section-icon--green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.priv-section-icon--orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.priv-section-icon--teal {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.priv-section-icon--purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.priv-section-icon--red {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.priv-section-content strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .3rem;
}

.priv-section-content p,
.priv-section-content ul {
    font-size: .83rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.65;
}

.priv-section-content ul {
    padding-left: 1.1rem;
    margin-top: .25rem;
}

.priv-section-content ul li {
    margin-bottom: .2rem;
}

.priv-divider {
    border: none;
    border-top: 1px solid rgba(63, 181, 202, .14);
    margin: 1.5rem 0;
}

.priv-info {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--ecume);
    border: 1px solid rgba(63, 181, 202, .22);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: .83rem;
    color: var(--lien-marin);
    line-height: 1.6;
}

.priv-info i {
    font-size: 1.1rem;
    color: var(--lien-marin);
    margin-top: .1rem;
    flex-shrink: 0;
}

.priv-cta {
    text-align: center;
    padding: 1.8rem 1rem 2rem;
}

.priv-cta a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    color: #fff;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    box-shadow: 0 4px 18px rgba(27, 94, 140, .28);
    transition: transform .18s, box-shadow .18s;
}

.priv-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 94, 140, .38);
    color: #fff;
}


/* =============================================================================
   LEGAL — Mentions légales
   ============================================================================= */

.legal-hero {
    background: linear-gradient(135deg, var(--ancre) 0%, var(--lien-marin) 60%, var(--horizon) 100%);
    padding: 4rem 1.5rem 5.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.legal-hero::before,
.legal-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero::before {
    width: 500px;
    height: 500px;
    top: -25%;
    right: -8%;
    background: rgba(255, 255, 255, .06);
}

.legal-hero::after {
    width: 340px;
    height: 340px;
    bottom: -30%;
    left: -6%;
    background: rgba(255, 255, 255, .05);
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.legal-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .8rem;
    position: relative;
    z-index: 1;
}

.legal-hero-sub {
    font-size: 1rem;
    opacity: .82;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.legal-hero-date {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.4rem;
    font-size: .78rem;
    opacity: .65;
    position: relative;
    z-index: 1;
}

.legal-wrap {
    max-width: 700px;
    margin: -2.5rem auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.legal-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(63, 181, 202, .14), 0 2px 8px rgba(0, 0, 0, .05);
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.legal-card-header {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-card-header h2 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.legal-card-header p {
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
    margin: .15rem 0 0;
}

.legal-card-body {
    padding: 1.8rem 2rem 2rem;
}

.legal-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: var(--ecume);
    border: 1px solid rgba(63, 181, 202, .14);
    border-radius: 14px;
    margin-bottom: .85rem;
}

.legal-row:last-child {
    margin-bottom: 0;
}

.legal-row-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.legal-row-icon--blue {
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
}

.legal-row-icon--green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.legal-row-icon--orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.legal-row-icon--teal {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.legal-row-icon--purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.legal-row-content strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .25rem;
}

.legal-row-content p,
.legal-row-content span {
    font-size: .83rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.65;
}

.legal-divider {
    border: none;
    border-top: 1px solid rgba(63, 181, 202, .14);
    margin: 1.5rem 0;
}

.legal-info {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--ecume);
    border: 1px solid rgba(63, 181, 202, .22);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: .83rem;
    color: var(--lien-marin);
    line-height: 1.6;
}

.legal-info i {
    font-size: 1.1rem;
    color: var(--lien-marin);
    margin-top: .1rem;
    flex-shrink: 0;
}

.legal-cta {
    text-align: center;
    padding: 1.8rem 1rem 2rem;
}

.legal-cta a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--lien-marin), var(--horizon));
    color: #fff;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    box-shadow: 0 4px 18px rgba(27, 94, 140, .28);
    transition: transform .18s, box-shadow .18s;
}

.legal-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 94, 140, .38);
    color: #fff;
}
