/* ============================================================
   GENTLEMAN CLEANING — reservation.css
   Tunnel de réservation · 6 étapes
============================================================ */

/* ── Page layout ── */
.tunnel-page { padding-top: 84px; background: #141414; min-height: 100vh; }

/* ── Hero tunnel ── */
.tunnel-hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tunnel-hero__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.tunnel-hero__title em { font-style: italic; color: var(--gold); }
.tunnel-hero__sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Reassurance bar ── */
.tunnel-reassurance {
    background: rgba(212,168,67,0.07);
    border-bottom: 1px solid var(--gold-border);
    padding: 0.75rem 0;
}
.tunnel-reassurance .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
}
.tunnel-reassurance span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.03em;
}

/* ── Main section ── */
.tunnel-section { padding: 2.5rem 0 5rem; }

/* ── Stepper ── */
.tunnel-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.ts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.ts-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--gray-2);
    color: var(--muted-2);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-3);
    transition: all var(--dur) var(--ease);
    flex-shrink: 0;
}
.ts-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--muted-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--dur) var(--ease);
}
.ts-connector {
    width: 40px;
    height: 2px;
    background: var(--gray);
    flex-shrink: 0;
    margin-bottom: 1.2rem;
    transition: background var(--dur) var(--ease);
}
.ts-item.active .ts-dot {
    background: var(--gold-alpha);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,168,67,0.1);
}
.ts-item.active .ts-label { color: var(--gold); }
.ts-item.done .ts-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-size: 0;
}
.ts-item.done .ts-dot::after {
    content: '✓';
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
}
.ts-item.done .ts-label { color: var(--muted); }
.ts-item.done ~ .ts-connector { background: var(--gold-border); }

/* ── Panel container ── */
.tunnel-panels { position: relative; }

.tunnel-panel {
    display: none;
    animation: fadeInUp 0.35s var(--ease);
}
.tunnel-panel.active { display: block; }

/* ── Panel header ── */
.tpanel__title {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.tpanel__sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* ── Navigation buttons ── */
.tun-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}
.tun-nav--end { justify-content: flex-end; }

/* ── Not-listed trigger ── */
.not-listed-link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
    transition: color var(--dur) var(--ease);
    width: 100%;
    text-decoration: underline;
    text-decoration-color: var(--gold-border);
}
.not-listed-link:hover { color: var(--gold); }

/* ── STEP 2 : NEED GRID ── */
.need-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}
.need-btn {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-align: left;
}
.need-btn:hover {
    border-color: var(--gold-border);
    background: var(--gold-alpha);
    transform: translateY(-2px);
}
.need-btn.selected {
    border-color: var(--gold);
    background: rgba(212,168,67,0.1);
    box-shadow: 0 0 0 1px var(--gold);
}
.need-btn__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.need-btn__body { display: flex; flex-direction: column; gap: 0.2rem; }
.need-btn__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}
.need-btn.selected .need-btn__title { color: var(--gold-light); }
.need-btn__desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ── STEP 3 : FORMULA CARDS ── */
.formula-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}
.fc-tunnel {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}
.fc-tunnel:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.fc-tunnel.selected {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(212,168,67,0.15);
}
.fc-tunnel--star {
    border-color: var(--gold-border);
    background: linear-gradient(160deg, rgba(212,168,67,0.07) 0%, var(--black-3) 100%);
}

/* Top badge (fixed position) */
.fct-top-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    text-align: center;
}
.fct-rec-badge {
    background: rgba(212,168,67,0.15);
    color: var(--gold);
    border-bottom: 1px solid var(--gold-border);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    text-align: center;
}

/* Before/after slider in card */
.fct-slider-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
    user-select: none;
    touch-action: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fct-after {
    position: absolute;
    inset: 0;
}
.fct-after img {
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
.fct-before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
    transition: none;
}
.fct-before img {
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
.fct-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    z-index: 3;
    cursor: ew-resize;
}
.fct-handle__line {
    width: 2px;
    background: var(--gold);
    flex: 1;
}
.fct-handle__grip {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    flex-shrink: 0;
}
.fct-badge {
    position: absolute;
    top: 8px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}
.fct-badge--before {
    left: 10px;
    background: rgba(0,0,0,0.65);
    color: var(--muted);
    border: 1px solid var(--gray);
}
.fct-badge--after {
    right: 10px;
    background: var(--gold-alpha);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

/* Card body */
.fct-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.fct-name {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.fc-tunnel--star .fct-name { color: var(--gold-light); }
.fct-baseline {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}
.fct-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.fct-price {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.fct-price-old {
    font-size: 0.88rem;
    color: var(--muted-2);
    text-decoration: line-through;
}
.fct-dur {
    font-size: 0.75rem;
    color: var(--muted-2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.fct-dur::before { content: '⏱'; font-size: 0.8rem; }
.fct-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
    flex: 1;
}
.fct-list li {
    font-size: 0.82rem;
    color: var(--white-soft);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.35;
}
.fct-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
}
.fct-note {
    font-size: 0.75rem;
    color: var(--muted-2);
    font-style: italic;
    padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid var(--gray);
    border-radius: 0 4px 4px 0;
    margin-bottom: 1rem;
    line-height: 1.45;
}
.fct-gift {
    font-size: 0.78rem;
    color: var(--white-soft);
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.fct-gift strong { color: var(--gold); }

/* Value recap block (gentleman + leasing) */
.fct-value-block {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
}
.fct-value-block.visible { display: flex; }
.fct-vrow {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
}
.fct-vrow--total { font-size: 0.82rem; font-weight: 500; color: var(--white-soft); }
.fct-vrow--eco { color: #4caf50; font-size: 0.8rem; font-weight: 500; }
.fct-vrow .line-through { text-decoration: line-through; color: var(--muted-2); }
.fct-vrow .gold { color: var(--gold); font-weight: 600; font-size: 1rem; font-family: var(--font-title); }

/* Exterior toggle */
.fct-ext-toggle {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    background: var(--black-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    margin-bottom: 0;
}
.fct-ext-toggle:hover { border-color: var(--gold-border); }
.fct-ext-toggle input[type="checkbox"] { display: none; }
.fct-ext-box {
    width: 18px; height: 18px;
    border: 1.5px solid var(--gray-2);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--dur) var(--ease);
}
.fct-ext-toggle input:checked ~ .fct-ext-label,
.fct-ext-toggle.checked .fct-ext-label { color: var(--gold-light); }
.fct-ext-toggle.checked .fct-ext-box {
    background: var(--gold);
    border-color: var(--gold);
}
.fct-ext-toggle.checked .fct-ext-box::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
}
.fct-ext-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white-soft);
    flex: 1;
    transition: color var(--dur) var(--ease);
}
.fct-ext-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── STEP 4 : LOCATION ── */
.loc-banner {
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    font-size: 0.82rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
    margin-bottom: 1.25rem;
}
.loc-card {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.loc-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.loc-card.selected {
    border-color: var(--gold);
    background: rgba(212,168,67,0.08);
    box-shadow: 0 0 0 1px var(--gold);
}
.loc-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.loc-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.loc-card__title-row { display: flex; flex-direction: column; gap: 0.15rem; }
.loc-card__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.loc-card.selected .loc-card__name { color: var(--gold-light); }
.loc-recommended {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-alpha);
    border: 1px solid var(--gold-border);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
}
.loc-card__sub { font-size: 0.8rem; color: var(--muted); }
.loc-card__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.loc-card__checks {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.loc-card__checks span {
    font-size: 0.78rem;
    color: var(--muted);
    padding-left: 1.1rem;
    position: relative;
}
.loc-card__checks span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}
.loc-card__price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-alpha);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 0.3rem 0.65rem;
    display: inline-block;
    align-self: flex-start;
}
.loc-checkbox-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
}
.loc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.83rem;
    color: var(--white-soft);
    line-height: 1.4;
}
.loc-checkbox-label input[type="checkbox"] { display: none; }
.loc-cbox {
    width: 18px; height: 18px;
    border: 1.5px solid var(--gray-2);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all var(--dur) var(--ease);
}
.loc-checkbox-label input:checked + .loc-cbox {
    background: var(--gold);
    border-color: var(--gold);
}
.loc-checkbox-label input:checked + .loc-cbox::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
}
.loc-soft-msg {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.6rem;
    padding: 0.65rem 0.9rem;
    background: rgba(212,168,67,0.05);
    border-left: 2px solid var(--gold-border);
    border-radius: 0 4px 4px 0;
    display: none;
    line-height: 1.45;
}
.loc-soft-msg.visible { display: block; }

/* ── Champ adresse + autocomplete (étape 4) ── */
.loc-address-wrap {
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}
.loc-address-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white-soft);
    margin-bottom: 0.5rem;
}
.addr-required { color: #e05050; }
.addr-input-row {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
    position: relative;
    flex-wrap: wrap;
}
.loc-address-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid var(--gray-2);
    border-radius: var(--radius);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--dur) var(--ease);
    min-width: 0;
}
.loc-address-input:focus {
    border-color: var(--gold);
    background: rgba(212,168,67,0.04);
}
.loc-address-input::placeholder { color: var(--muted-2); }
.btn-my-position {
    flex-shrink: 0;
    background: rgba(212,168,67,0.1);
    border: 1.5px solid var(--gold-border);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
    min-height: 44px;
}
.btn-my-position:hover:not(:disabled) {
    background: rgba(212,168,67,0.2);
    border-color: var(--gold);
}
.btn-my-position:disabled { opacity: 0.55; cursor: not-allowed; }
.addr-suggest {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1c1c1c;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 50;
    max-height: 220px;
    overflow-y: auto;
    display: none;
    width: 100%;
}
.addr-suggest__item {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    color: var(--white-soft);
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.35;
    transition: background var(--dur) var(--ease);
}
.addr-suggest__item:last-child { border-bottom: none; }
.addr-suggest__item:hover { background: rgba(212,168,67,0.1); color: var(--gold-light); }
.loc-address-hint {
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 0.45rem;
    line-height: 1.4;
}

/* ── STEP 5 : RECAP ── */
.recap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;                          /* gap géré par col padding + divider */
    margin-bottom: 1.5rem;
}
@media (max-width: 720px) { .recap-grid { grid-template-columns: 1fr; } }

/* Chaque colonne a son propre espace interne — symétrique des deux côtés */
.recap-col {
    padding: 0 1.75rem;
    box-sizing: border-box;
    align-self: stretch;
}
.recap-col:first-child {
    /* padding-left hérité de .recap-col (1.75rem) — NE PAS forcer 0 */
    padding-right: 2rem;
    border-right: 1px solid rgba(212,168,67,0.15);
}
.recap-col:last-child {
    padding-left: 2rem;
    /* padding-right hérité de .recap-col (1.75rem) */
}
@media (max-width: 720px) {
    .recap-col { padding: 0; align-self: auto; }
    .recap-col:first-child { padding-bottom: 1.5rem; border-right: none; border-bottom: 1px solid rgba(212,168,67,0.15); }
    .recap-col:last-child { padding-top: 1.5rem; }
}

.recap-col__title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.recap-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 1rem;
}
.recap-line:last-child { border-bottom: none; }
.recap-line__key {
    font-size: 0.78rem;
    color: var(--muted);
    flex-shrink: 0;
}
.recap-line__val {
    font-size: 0.82rem;
    color: var(--white-soft);
    font-weight: 500;
    text-align: right;
}
.recap-line__val.gold { color: var(--gold); }

/* Price block */
.price-block {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: visible;               /* pas de rognage des enfants */
}
.pb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.82rem;
}
.pb-row:last-child { border-bottom: none; }
.pb-row__label { color: var(--muted); }
.pb-row__val { font-weight: 500; color: var(--white-soft); }
.pb-row__val.line-through { text-decoration: line-through; color: var(--muted-2); }
.pb-row__val.green { color: #4caf50; font-weight: 600; }
.pb-row__val.gold { color: var(--gold); }
.pb-section-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-2);
    padding: 0.7rem 1.1rem 0.3rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.supp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: background var(--dur) var(--ease);
}
.supp-item:hover { background: rgba(255,255,255,0.03); }
.supp-item:last-child { border-bottom: none; }
.supp-item input[type="checkbox"] { display: none; }
.supp-box {
    width: 16px; height: 16px;
    border: 1.5px solid var(--gray-2);
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--dur) var(--ease);
}
.supp-item input:checked + .supp-box {
    background: var(--gold);
    border-color: var(--gold);
}
.supp-item input:checked + .supp-box::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 800;
}
.supp-label { font-size: 0.8rem; color: var(--white-soft); flex: 1; }
.supp-price { font-size: 0.78rem; color: var(--gold); font-weight: 500; flex-shrink: 0; }
.supp-note {
    font-size: 0.72rem;
    color: var(--muted-2);
    padding: 0.5rem 1.1rem;
    background: rgba(255,255,255,0.02);
    font-style: italic;
    line-height: 1.4;
}
.pb-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.1rem;
    background: rgba(212,168,67,0.07);
    border-top: 2px solid var(--gold-border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.pb-total__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pb-total__price {
    font-family: var(--font-title);
    font-size: 2rem;              /* plus gros — élément le plus visible */
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

/* Reassurance badges — séparés du recap-frame par un espace */
.recap-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}
.recap-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1rem 1rem;
    font-size: 0.77rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
}
.recap-badge strong { display: block; color: var(--white-soft); margin-bottom: 0.2rem; font-size: 0.82rem; font-weight: 600; }

/* Testimonial */
.recap-testi {
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.recap-testi__quote {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.2rem;
}
.recap-testi__body {}
.recap-testi__text {
    font-size: 0.88rem;
    color: var(--white-soft);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.5rem;
}
.recap-testi__author {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
}
.recap-testi__stars { color: var(--gold); font-size: 0.75rem; }

/* ── STEP 6 : FORM ── */
.resa-form { max-width: 560px; }
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.fg label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white-soft);
    letter-spacing: 0.02em;
}
.fg input, .fg select, .fg textarea {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.88rem;
    transition: border-color var(--dur) var(--ease);
    outline: none;
    width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}
.fg input::placeholder, .fg select::placeholder { color: var(--muted-2); }
.fg select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.fg-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.fg-check input[type="checkbox"] { display: none; }
.check-box {
    width: 18px; height: 18px;
    border: 1.5px solid var(--gray-2);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}
.fg-check label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.fg-check input:checked + .check-box {
    background: var(--gold);
    border-color: var(--gold);
}
.fg-check input:checked + .check-box::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
}
.resa-form-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid var(--gold-border);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.5;
}

/* ── Success ── */
.tunnel-success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}
.tunnel-success.active { display: block; }
.ts-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(76,175,80,0.15);
    border: 2px solid #4caf50;
    color: #4caf50;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.ts-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.ts-sub {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 420px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.ts-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.ts-badge {
    font-size: 0.78rem;
    color: var(--muted);
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
}
.ts-tel {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1.5rem;
}
.ts-tel a { color: var(--gold); font-weight: 500; }

/* ── Simplified footer for tunnel page ── */
.tunnel-footer {
    background: var(--black-2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
}
.tunnel-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tunnel-footer__copy {
    font-size: 0.75rem;
    color: var(--muted-2);
}
.tunnel-footer__links {
    display: flex;
    gap: 1.25rem;
}
.tunnel-footer__links a {
    font-size: 0.75rem;
    color: var(--muted-2);
    transition: color var(--dur) var(--ease);
}
.tunnel-footer__links a:hover { color: var(--gold); }

/* ── Hero background photo + overlay ── */
.tunnel-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/apres3.jpeg') center center / cover no-repeat;
    z-index: 0;
}
.tunnel-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,11,11,0.78) 0%,
        rgba(11,11,11,0.65) 60%,
        rgba(20,20,20,0.95) 100%
    );
    z-index: 1;
}
.tunnel-hero__content { position: relative; z-index: 2; }

/* ── Tunnel frame (wraps all panels + success screen) ── */
.tunnel-frame {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    box-sizing: border-box;
    overflow: visible;               /* texte jamais rogné */
    box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
@media (max-width: 640px) {
    .tunnel-frame { padding: 1.5rem 1.1rem 1.25rem; border-radius: 16px; }
}

/* ── Recap frame (étape 5) ── */
.recap-frame {
    background: #181818;
    border: 1px solid rgba(212,168,67,0.4);
    border-radius: 20px;
    padding: 3rem 1.5rem 2.5rem;   /* padding horizontal réduit : les colonnes ont leur propre padding */
    box-sizing: border-box;
    box-shadow: 0 8px 40px rgba(212,168,67,0.08);
    overflow: visible;
    margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
    .recap-frame { padding: 2rem 1.25rem; border-radius: 14px; }
}

/* ── Vehicle description inline box ── */
.vdesc-box {
    margin-top: 1rem;
    background: var(--black-3);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}
.vdesc-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white-soft);
    margin-bottom: 0.6rem;
}
.vdesc-input {
    width: 100%;
    background: var(--black-4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.88rem;
    font-family: var(--font-body);
    resize: vertical;
    transition: border-color var(--dur) var(--ease);
    outline: none;
    box-sizing: border-box;
    min-height: 80px;
}
.vdesc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,0.12); }
.vdesc-input::placeholder { color: var(--muted-2); }
.vdesc-back {
    margin-top: 0.75rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    transition: color var(--dur) var(--ease);
    text-decoration: underline;
    text-decoration-color: var(--gray);
}
.vdesc-back:hover { color: var(--gold-light); }

/* ── Leasing depot rules ── */
.loc-card.disabled {
    opacity: 0.38;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(0.5);
}
.depot-free {
    color: #4caf50;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ── Parrainage code input (étape 5) ── */
.parr-code-section {
    padding: 0.85rem 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.parr-code-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white-soft);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.parr-code-optional { color: var(--muted-2); font-weight: 400; text-transform: none; letter-spacing: 0; }
.parr-code-input {
    width: 100%;
    background: var(--black-4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: border-color var(--dur) var(--ease);
    outline: none;
    box-sizing: border-box;
}
.parr-code-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,0.12); }
.parr-code-input::placeholder { color: var(--muted-2); font-weight: 400; letter-spacing: 0; }
.parr-status {
    font-size: 0.75rem;
    margin-top: 0.4rem;
    line-height: 1.3;
    min-height: 1rem;
}
.parr-status--loading { color: var(--muted); }
.parr-status--ok     { color: #4caf50; }
.parr-status--error  { color: #e74c3c; }

/* ── Parrainage error line in form step 6 ── */
.parr-error {
    font-size: 0.82rem;
    color: #e74c3c;
    margin-bottom: 0.75rem;
    min-height: 1.2em;
    line-height: 1.4;
}

/* ── Success: referral code block ── */
.success-code-block {
    background: rgba(212,168,67,0.08);
    border: 1px solid rgba(212,168,67,0.35);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 1.5rem auto;
    max-width: 420px;
    text-align: center;
}
.success-code-intro {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.success-code {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}
.success-code-hint {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .need-grid { grid-template-columns: 1fr; }
    .formula-cards-grid { grid-template-columns: 1fr; }
    .recap-badges { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .ts-connector { width: 20px; }
    .ts-label { font-size: 0.58rem; }
    .fct-slider-wrap { height: 130px; }

    /* Touch targets ≥44px */
    .veh-btn { min-height: 72px; }
    .need-btn { min-height: 60px; }
    .loc-card { padding: 1.25rem 1rem; }
    .supp-item { padding: 0.85rem 1rem; min-height: 44px; }
    .btn { min-height: 48px; }

    /* Form fields larger on mobile */
    .fg input, .fg select, .fg textarea {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
    .parr-code-input { font-size: 1rem; padding: 0.75rem 1rem; }
}
@media (max-width: 480px) {
    .tunnel-stepper { gap: 0; }
    .ts-connector { width: 12px; }
    .ts-dot { width: 28px; height: 28px; font-size: 0.7rem; }
    .ts-label { font-size: 0.55rem; letter-spacing: 0.03em; }
    .recap-badges { grid-template-columns: 1fr; }
    .success-code-block { padding: 1.25rem 1.1rem; }
    .success-code { font-size: 1.75rem; }
}
