/* ══════════════════════════════════════════════════════════════
   member/funnel.css — Registration & onboarding funnel
   Form wrapper, parcours inscription, decouverte, side panel,
   stepper, choice cards, animal grid
   ══════════════════════════════════════════════════════════════ */
/* =========================================
   FUNNEL FORM WRAPPER — Unified layout for
   annonce + profil step-by-step funnels
   ========================================= */

.funnel-form-wrapper {
    padding-top: 90px;
    padding-bottom: 60px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.funnel-form-content {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .funnel-form-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Mobile action bar (annonce + profil funnels) */
.funnel-mobile-action-bar {
    z-index: 1030;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
}

@media (max-width: 767.98px) {
    .funnel-form-wrapper {
        padding-top: 70px;
        padding-bottom: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Typography */
    .funnel-form-wrapper .display-4 { font-size: 1.75rem; }
    .funnel-form-wrapper .display-5 { font-size: 1.5rem; }
    .funnel-form-wrapper .display-6 { font-size: 1.25rem; }
    .funnel-form-wrapper .lead { font-size: 1rem; }

    /* Spacing */
    .funnel-form-wrapper .gap-4 { gap: 0.75rem !important; }
    .funnel-form-wrapper .gap-3 { gap: 0.5rem !important; }
    .funnel-form-wrapper .mb-5 { margin-bottom: 1.5rem !important; }
    .funnel-form-wrapper .mb-4 { margin-bottom: 1rem !important; }

    /* Textarea */
    .funnel-form-wrapper textarea.form-control {
        min-height: 100px !important;
        max-height: 150px;
    }

    /* Form text */
    .funnel-form-wrapper .form-text { font-size: 0.8rem; line-height: 1.4; }
    .funnel-form-wrapper .form-text ul { margin-bottom: 0.5rem; padding-left: 1.25rem; }
    .funnel-form-wrapper .form-text li { margin-bottom: 0.25rem; }

    /* Touch feedback */
    .funnel-form-wrapper .lift:active,
    .funnel-form-wrapper .selectable-card:active {
        transform: translateY(-3px) !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

    /* Compact navbar padding on mobile */
    .funnel-navbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}

/* =========================================
   ANNONCE CREATION FORM - MOBILE OPTIMIZATIONS
   ========================================= */

/* Mobile-only fixed bottom action bar */
.annonce-mobile-action-bar {
    z-index: 1030;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
}

@media (max-width: 767.98px) {
    /* Reduce map height on mobile */
    .funnel-form-wrapper #map {
        height: 250px !important;
    }

    /* Reduce calendar min-height on mobile */
    .funnel-form-wrapper #calendar {
        min-height: 300px !important;
    }

    /* Animal selection grid - 2 columns on mobile */
    .animal-selection-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem !important;
        overflow: visible;
    }

    .animal-selection-grid > * {
        width: 100% !important;
        overflow: visible;
    }

    /* Mobile touch feedback for lift effect (no hover on touch devices) */
    .lift:active,
    .selectable-card:active {
        transform: translateY(-3px) !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

    /* Equipment grid - 3 columns on mobile */
    .equipment-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .equipment-grid > * {
        width: 100% !important;
    }

    .equipment-grid .selectable-card {
        padding: 6px !important;
        border-radius: 12px !important;
    }

    .equipment-grid .selectable-card .icon-state {
        font-size: 1.1rem !important;
    }

    .equipment-grid .selectable-card .selectable-card-label {
        font-size: 0.7rem !important;
    }

    .equipment-grid .selectable-card .check-indicator {
        top: 4px !important;
        right: 4px !important;
        width: 14px !important;
        height: 14px !important;
    }

    .equipment-grid .selectable-card .check-indicator i {
        font-size: 0.45rem !important;
    }

    /* Habitation type - 2 columns on mobile */
    .habitation-type-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .habitation-type-grid > * {
        width: 100% !important;
    }

    /* Matching criteria grid - consistent sizing on mobile */
    .matching-criteria-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem !important;
        align-items: stretch;
    }

    .matching-criteria-grid > * {
        width: 100% !important;
        display: flex;
    }

    .matching-criteria-grid .btn {
        width: 100% !important;
        justify-content: center;
        text-align: center;
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem !important;
        line-height: 1.2;
        align-items: center;
        min-height: 44px;
    }

    .matching-criteria-grid .btn i {
        display: none; /* Hide all icons on mobile to save space */
    }

    /* But keep matching info tooltip icon visible */
    .matching-criteria-grid .matching-info-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        min-height: 28px;
        opacity: 0.7;
        cursor: pointer;
        right: 0.25rem;
    }

    .matching-criteria-grid .matching-info-btn i {
        display: block !important;
        font-size: 0.85rem !important;
        color: var(--bs-secondary);
    }

    /* Add more right padding to labels with info button on mobile */
    .matching-criteria-item label.pe-4 {
        padding-right: 1.75rem !important;
    }

    /* Matching card compact on mobile */
    #matching-criterion-scope .card {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        border-radius: 0 !important;
    }

    #matching-criterion-scope .card-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #matching-criterion-scope .card-header h3 {
        font-size: 1rem;
    }

    #matching-criterion-scope .card-header .icon-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem;
    }

    #matching-criterion-scope .card-body {
        padding: 0.75rem !important;
    }

    /* Fix limit tooltip breaking mobile layout */
    #matching-criterion-scope .profil-section-header > .d-flex > .flex-shrink-0 {
        position: relative;
    }

    #matching-criterion-scope .profil-section-header .limit-tooltip {
        position: absolute;
        right: 0;
        left: auto;
        top: 100%;
        text-align: right;
        font-size: 0.7rem;
        width: max-content;
        max-width: 200px;
    }
}


/* =========================================
   FUNNEL SIDE PANEL - Sticky + Functional
   ========================================= */

.funnel-side-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
    padding-right: 5rem;
}

/* Tip card inside funnel side panel */
.funnel-side-panel .funnel-tip-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Quote / testimonial card inside funnel side panel */
.funnel-side-panel .funnel-quote-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.funnel-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.funnel-testimonial-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.funnel-testimonial-stars {
    font-size: 0.65rem;
    color: #ffc107;
    letter-spacing: 1px;
}

.funnel-testimonial-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #66d9a0;
}

/* ============================================================
   Parcours Inscription — Warm French Editorial
   Palette: Forest teal + terracotta + warm cream
   Typography: Fraunces display, system-ui body
   ============================================================ */

/* Design tokens (--pt-*) are defined in shared.css */

/* ---- 2. Reveal Animation (replaces AOS) ---- */
.pt-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--pt-delay, 0s);
}
.pt-reveal.pt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- 3. Accessibility ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- 4. Navbar ---- */
.pt-navbar {
    background: rgba(255, 254, 251, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pt-parchment);
}
.pt-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pt-muted);
    font-size: 13px;
    font-weight: 500;
}

/* ---- 5. Progress Bar ---- */
.pt-progress-track {
    height: 4px;
    background: var(--pt-parchment);
}
.pt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pt-forest) 0%, var(--pt-sage) 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

/* ---- 6. Step Indicator ---- */
.pt-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.pt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.pt-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--pt-parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--pt-parchment);
    transition: all 0.3s ease;
}
.pt-step.active .pt-step-dot {
    background: var(--pt-forest);
    border-color: var(--pt-forest);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(61, 107, 86, 0.12);
}
.pt-step.done .pt-step-dot {
    background: var(--pt-forest);
    border-color: var(--pt-forest);
    color: #fff;
}
.pt-step-line {
    width: 36px;
    height: 2px;
    background: var(--pt-parchment);
    margin: 0 6px;
    margin-bottom: 18px;
    transition: background 0.4s ease;
}
.pt-step-line.done {
    background: var(--pt-forest);
}
.pt-step-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--pt-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pt-step.active .pt-step-label {
    color: var(--pt-forest);
}

/* ---- 7. Buttons ---- */
.pt-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--pt-forest);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--pt-radius-pill);
    height: 52px;
    padding: 0 32px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--pt-transition-base),
                box-shadow var(--pt-transition-base),
                transform var(--pt-transition-base);
    box-shadow: 0 2px 12px rgba(61, 107, 86, 0.25);
    white-space: nowrap;
}
.pt-btn-primary:hover {
    background: #2D5243;
    color: #fff;
    box-shadow: 0 6px 24px rgba(61, 107, 86, 0.35);
    transform: translateY(-1px);
    text-decoration: none;
}
.pt-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(61, 107, 86, 0.2);
}
.pt-btn-primary:disabled,
.pt-btn-primary[disabled] {
    background: var(--pt-mist);
    box-shadow: none;
    transform: none;
    opacity: 0.6;
    cursor: not-allowed;
}
.pt-btn-primary:disabled:hover,
.pt-btn-primary[disabled]:hover {
    background: var(--pt-mist);
    box-shadow: none;
    transform: none;
}
.pt-btn-lg {
    height: 60px;
    font-size: 17px;
    padding: 0 40px;
}
.pt-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--pt-forest);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--pt-radius-pill);
    height: 48px;
    padding: 0 20px;
    border: 1.5px solid var(--pt-parchment);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--pt-transition-fast);
}
.pt-btn-ghost:hover {
    border-color: var(--pt-forest);
    background: var(--pt-fog);
    color: var(--pt-forest);
    text-decoration: none;
}

/* ---- 8. Typography ---- */
.pt-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-forest);
    margin-bottom: 14px;
}
.pt-hero-title {
    font-family: var(--pt-font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 600;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.pt-hero-sub {
    font-size: 17px;
    color: var(--pt-muted);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.pt-section-title {
    font-family: var(--pt-font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    line-height: 1.25;
    margin-bottom: 36px;
}
.pt-section-title em {
    font-style: italic;
    color: var(--pt-forest);
}
.pt-section-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-muted);
    margin-bottom: 20px;
}

/* ---- 9. Bienvenue: Hero ---- */
.pt-hero {
    background: var(--pt-cream);
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--pt-parchment);
    text-align: center;
}
.pt-hero-wave {
    display: inline-block;
    animation: pt-wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}
@keyframes pt-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-5deg); }
}

/* ---- 10. Bienvenue: Onboarding Role Picker ---- */
.pt-bienvenue {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 65px);
}
.pt-hero--onboard {
    padding: 56px 0 40px;
}
.pt-hero-title-name {
    color: var(--pt-terra);
    font-style: italic;
    font-weight: 500;
}
.pt-hero-sub--wide {
    max-width: 580px;
    color: var(--pt-text);
    font-size: 17px;
}
.pt-hero-sub--wide strong {
    color: var(--pt-ink);
    font-weight: 500;
}
.pt-eyebrow--flanked::before,
.pt-eyebrow--flanked::after {
    content: "·";
    margin: 0 8px;
    color: var(--pt-mist);
}
.pt-eyebrow--pulse {
    color: var(--pt-terra);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pt-eyebrow-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pt-terra);
    box-shadow: 0 0 0 0 rgba(196, 98, 45, 0.5);
    animation: pt-eyebrow-pulse 1.8s infinite;
    flex-shrink: 0;
}
@keyframes pt-eyebrow-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(196, 98, 45, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(196, 98, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 98, 45, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .pt-eyebrow-pulse { animation: none; }
}

.pt-roles {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.pt-roles-form {
    display: flex;
    margin: 0;
}

.pt-role {
    position: relative;
    width: 100%;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    overflow: hidden;
    text-align: left;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.28s ease,
                border-color 0.28s ease;
}
.pt-roles-form:first-child .pt-role {
    border-radius: var(--pt-radius-lg) 0 0 var(--pt-radius-lg);
    border-right: none;
}
.pt-roles-form:last-child .pt-role {
    border-radius: 0 var(--pt-radius-lg) var(--pt-radius-lg) 0;
}
.pt-role:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(26, 41, 34, 0.12);
    z-index: 2;
}
.pt-role:focus-visible {
    outline: 3px solid var(--pt-forest);
    outline-offset: 4px;
}

.pt-role-halo {
    position: absolute;
    inset: auto -40px -40px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    opacity: 0.55;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.pt-role--traveler .pt-role-halo {
    background: radial-gradient(circle, #F5C09A 0%, transparent 70%);
}
.pt-role--owner .pt-role-halo {
    background: radial-gradient(circle, var(--pt-mist) 0%, transparent 70%);
}
.pt-role:hover .pt-role-halo {
    opacity: 0.85;
}

.pt-role-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}
.pt-role-ico {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.pt-role--traveler .pt-role-ico {
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
}
.pt-role--owner .pt-role-ico {
    background: rgba(61, 107, 86, 0.10);
    color: var(--pt-forest);
}
.pt-role:hover .pt-role-ico {
    transform: rotate(-4deg) scale(1.05);
}
.pt-role-ico svg {
    width: 30px;
    height: 30px;
}
.pt-role-heading {
    min-width: 0;
}
.pt-role-kicker {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.pt-role--traveler .pt-role-kicker { color: var(--pt-terra); }
.pt-role--owner .pt-role-kicker { color: var(--pt-forest); }
.pt-role-title {
    font-family: var(--pt-font-display);
    font-size: 1.6rem;
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.pt-role-desc {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--pt-text);
    max-width: 38ch;
    line-height: 1.55;
    margin: 0;
}
.pt-role-desc em {
    color: var(--pt-ink);
    font-style: normal;
    font-weight: 500;
}

.pt-role-perks {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pt-role-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--pt-text);
    line-height: 1.5;
}
.pt-role-perks svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}
.pt-role--traveler .pt-role-perks svg { color: var(--pt-terra); }
.pt-role--owner .pt-role-perks svg { color: var(--pt-forest); }

@media (max-width: 767.98px) {
    .pt-role-perks {
        display: none;
    }
}

.pt-role-cta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px dashed var(--pt-parchment);
}
.pt-role-cta-label {
    font-family: var(--pt-font-display);
    font-size: 1.02rem;
    font-weight: 500;
    font-style: italic;
    color: var(--pt-ink);
    line-height: 1.3;
}
.pt-role-cta-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.28s ease;
}
.pt-role--traveler .pt-role-cta-arrow {
    background: var(--pt-terra);
    box-shadow: 0 6px 16px rgba(196, 98, 45, 0.3);
}
.pt-role--owner .pt-role-cta-arrow {
    background: var(--pt-forest);
    box-shadow: 0 6px 16px rgba(61, 107, 86, 0.3);
}
.pt-role:hover .pt-role-cta-arrow {
    transform: translateX(6px);
}
.pt-role-cta-arrow svg {
    width: 18px;
    height: 18px;
}

.pt-later-wrap {
    text-align: center;
    padding: 0 24px 32px;
}
.pt-later {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    color: var(--pt-muted);
    font-size: 0.9rem;
}
.pt-later svg {
    width: 14px;
    height: 14px;
    color: var(--pt-forest);
    flex-shrink: 0;
}

/* ---- 11. Stats Strip ---- */
.pt-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 8px 0;
}
.pt-stat {
    text-align: center;
    padding: 0 28px;
}
.pt-stat-num {
    font-family: var(--pt-font-display);
    font-size: 30px;
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--pt-forest);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.pt-stat-unit {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
}
.pt-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--pt-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.pt-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--pt-parchment);
    flex-shrink: 0;
}
.pt-stats-dark {
    background: var(--pt-ink);
    padding: 32px 0;
}
.pt-stats-dark .pt-stat-num { color: var(--pt-mist); }
.pt-stats-dark .pt-stat-label { color: rgba(255, 255, 255, 0.45); }
.pt-stats-dark .pt-stat-sep { background: rgba(255, 255, 255, 0.1); }

/* ---- 12. Guarantees ---- */
.pt-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 16px;
}
.pt-guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    font-size: 14px;
    color: var(--pt-text);
}
.pt-guarantee-item i {
    color: var(--pt-forest);
    font-size: 16px;
    flex-shrink: 0;
}
.pt-guarantee-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-ink);
    line-height: 1.3;
}
.pt-guarantee-item span {
    display: block;
    font-size: 12px;
    color: var(--pt-muted);
    line-height: 1.3;
}
.pt-guarantee-sep {
    width: 1px;
    height: 36px;
    background: var(--pt-parchment);
    flex-shrink: 0;
}
.pt-section-cream {
    background: var(--pt-cream);
    padding: 36px 0;
    border-top: 1px solid var(--pt-parchment);
}

/* ---- 13. Testimonials ---- */
.pt-testimonial {
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: var(--pt-radius-md);
    padding: 28px;
    margin: 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pt-testimonial::before {
    content: '\201C';
    font-family: var(--pt-font-display);
    font-style: italic;
    font-size: 64px;
    line-height: 0.8;
    color: var(--pt-terra);
    opacity: 0.2;
    position: absolute;
    top: 18px;
    left: 20px;
    pointer-events: none;
}
.pt-testimonial-text {
    font-size: 15px;
    color: var(--pt-text);
    line-height: 1.65;
    font-style: italic;
    padding-left: 8px;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}
.pt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pt-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pt-fog);
    color: var(--pt-forest);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pt-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--pt-ink);
    line-height: 1.2;
}
.pt-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.pt-star { color: var(--pt-terra); font-size: 12px; }
.pt-star-empty { color: var(--pt-parchment); font-size: 12px; }
.pt-verified-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--pt-forest);
    background: var(--pt-fog);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    margin-left: 4px;
}
.pt-testimonials-section {
    padding: 64px 0;
    background: var(--pt-cream);
}
.pt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ---- 14. Form Pages ---- */
.pt-form-page {
    background: var(--pt-cream);
    min-height: calc(100vh - 65px);
    padding: 48px 0 80px;
}
.pt-form-wrap {
    max-width: 560px;
    margin: 0 auto;
}
.pt-form-header {
    margin-bottom: 40px;
}
.pt-form-title {
    font-family: var(--pt-font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 10px;
}
.pt-form-title strong {
    font-weight: 700;
    font-style: italic;
    color: var(--pt-terra, #b85f3e);
}
.pt-form-sub {
    font-size: 16px;
    color: var(--pt-muted);
    line-height: 1.6;
    margin: 0;
}
.pt-questions {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    border: 1px solid var(--pt-parchment);
    box-shadow: var(--pt-shadow-sm);
    padding: 0 28px;
    margin-bottom: 24px;
}
.pt-question {
    padding: 28px 0;
    border-bottom: 1px solid var(--pt-fog);
    position: relative;
    z-index: 1;
}
.pt-question:first-child {
    z-index: 3;
}
.pt-question:nth-child(2) {
    z-index: 2;
}
.pt-question:last-child {
    border-bottom: none;
}
.pt-question-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.pt-question-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}
.pt-question-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--pt-fog);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pt-forest);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background var(--pt-transition-base),
                color var(--pt-transition-base);
}
.pt-question.completed .pt-question-icon {
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
}
.pt-question-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pt-ink);
    line-height: 1.3;
    margin-bottom: 2px;
}
.pt-question-hint {
    font-size: 13px;
    color: var(--pt-muted);
    line-height: 1.4;
}
.pt-question-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--pt-parchment);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: transparent;
    flex-shrink: 0;
    margin-top: 6px;
    transition: border-color var(--pt-transition-base),
                background var(--pt-transition-base),
                color var(--pt-transition-base),
                transform var(--pt-transition-base);
}
.pt-question.completed .pt-question-check {
    border-color: var(--pt-forest);
    background: var(--pt-forest);
    color: #fff;
    transform: scale(1.1);
}
.pt-question-body { }
.pt-address-confirmed {
    margin-top: 10px;
    font-size: 13px;
    color: var(--pt-forest);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pt-address-confirmed--banner {
    margin-top: 12px;
    padding: 14px 18px;
    background: rgba(61, 107, 86, 0.05);
    border: 1px solid rgba(61, 107, 86, 0.18);
    border-radius: 12px;
    color: var(--pt-ink);
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
}
.pt-address-confirmed--banner i {
    color: var(--pt-forest);
    font-size: 16px;
    flex-shrink: 0;
}
.pt-address-confirmed__text {
    flex: 1;
    min-width: 0;
}

/* ---- 14b. Form: Cards Variant (mini_annonce) ---- */
.pt-form-page--cards {
    padding: 36px 0 100px;
}
.pt-form-wrap--wide {
    max-width: 720px;
}
.pt-form-wrap--wide .pt-form-header {
    text-align: center;
    margin-bottom: 32px;
}
.pt-form-wrap--wide .pt-form-sub {
    max-width: 560px;
    margin: 0 auto;
}
.pt-questions--cards {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.pt-questions--cards .pt-question {
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: 16px;
    padding: 0;
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 1;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pt-questions--cards .pt-question:first-child,
.pt-questions--cards .pt-question:nth-child(2),
.pt-questions--cards .pt-question:last-child {
    z-index: 1;
}
.pt-questions--cards .pt-question:first-child {
    z-index: 10;
}
.pt-questions--cards .pt-question.completed {
    border-color: var(--pt-forest);
    box-shadow: 0 0 0 3px rgba(61, 107, 86, 0.08);
}
.pt-questions--cards .pt-question-header {
    padding: 22px 24px;
    margin-bottom: 0;
    align-items: center;
    gap: 16px;
}
.pt-questions--cards .pt-question-label {
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.pt-questions--cards .pt-question-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--pt-parchment);
    color: var(--pt-forest);
    font-size: 16px;
    margin-top: 0;
}
.pt-questions--cards .pt-question.completed .pt-question-icon {
    background: var(--pt-parchment);
    color: var(--pt-forest);
}
.pt-questions--cards .pt-question-title {
    font-family: var(--pt-font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--pt-ink);
    line-height: 1.25;
    margin-bottom: 4px;
    font-optical-sizing: auto;
}
.pt-questions--cards .pt-question-title-optional {
    font-family: var(--pt-font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--pt-muted);
    letter-spacing: 0;
    margin-left: 4px;
    vertical-align: 2px;
}
.pt-questions--cards .pt-question-hint {
    font-size: 13px;
    color: var(--pt-muted);
    line-height: 1.4;
}
.pt-questions--cards .pt-question-check {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--pt-forest);
    color: #fff;
    font-size: 11px;
    margin-top: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s ease,
                transform 0.25s cubic-bezier(0.4, 1.6, 0.6, 1);
}
.pt-questions--cards .pt-question.completed .pt-question-check {
    opacity: 1;
    transform: scale(1);
    border: none;
}
.pt-questions--cards .pt-question-body {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--pt-parchment);
}
@media (max-width: 767px) {
    .pt-form-page--cards { padding: 24px 0 100px; }
    .pt-questions--cards .pt-question-header { padding: 18px 18px; }
    .pt-questions--cards .pt-question-body { padding: 18px 18px 20px; }
    .pt-questions--cards .pt-question-title { font-size: 1.1rem; }
    .pt-questions--cards .pt-question-icon { width: 38px; height: 38px; font-size: 15px; }
}

/* ---- 15. Chips ---- */
.pt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pt-chip {
    cursor: pointer;
    user-select: none;
}
.pt-chip-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.pt-chip-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border: 1.5px solid var(--pt-parchment);
    border-radius: var(--pt-radius-pill);
    background: var(--pt-white);
    font-size: 14px;
    font-weight: 500;
    color: var(--pt-text);
    cursor: pointer;
    transition: all var(--pt-transition-fast);
    line-height: 1;
}
.pt-chip-label i {
    font-size: 14px;
    color: var(--pt-muted);
    transition: color var(--pt-transition-fast);
}
.pt-chip-label:hover {
    border-color: var(--pt-sage);
    background: var(--pt-fog);
    box-shadow: 0 2px 8px rgba(61, 107, 86, 0.06);
}
.pt-chip-input:checked + .pt-chip-label {
    background: var(--pt-terra-pale);
    border-color: var(--pt-terra);
    color: var(--pt-terra);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(196, 98, 45, 0.12);
}
.pt-chip-input:checked + .pt-chip-label i {
    color: var(--pt-terra);
}
.pt-chip-input:focus-visible + .pt-chip-label {
    outline: 2px solid var(--pt-forest);
    outline-offset: 2px;
}

/* ---- 16. Geocoder Overrides ---- */
.pt-question .mapboxgl-ctrl-geocoder {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    background: var(--pt-fog);
    border: 1.5px solid var(--pt-parchment);
    border-radius: 12px;
    font-family: inherit;
    padding: 4px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-question .mapboxgl-ctrl-geocoder:focus-within {
    background: #fff;
    border-color: var(--pt-forest);
    box-shadow: var(--pt-shadow-focus);
}
.pt-question .mapboxgl-ctrl-geocoder--input {
    padding: 12px 12px 12px 40px;
    height: auto;
    font-size: 15px;
    font-weight: 500;
    color: var(--pt-ink);
    background: transparent;
}
.pt-question .mapboxgl-ctrl-geocoder--input::placeholder {
    color: var(--pt-muted);
    opacity: 0.6;
}
.pt-question .mapboxgl-ctrl-geocoder--icon-search {
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    fill: var(--pt-forest);
    width: 18px;
    height: 18px;
}
.pt-question .mapboxgl-ctrl-geocoder--icon-close {
    top: 50%;
    transform: translateY(-50%);
}
.pt-question .mapboxgl-ctrl-geocoder .suggestions {
    background: #fff;
    border: 1px solid var(--pt-parchment);
    border-radius: 12px;
    box-shadow: var(--pt-shadow-lg);
    margin-top: 4px;
    overflow: hidden;
}
.pt-question .mapboxgl-ctrl-geocoder .suggestions li {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.pt-question .mapboxgl-ctrl-geocoder .suggestions li:last-child {
    border-bottom: none;
}
.pt-question .mapboxgl-ctrl-geocoder .suggestions li:hover,
.pt-question .mapboxgl-ctrl-geocoder .suggestions li.active {
    background: var(--pt-fog);
    color: var(--pt-forest);
}

/* ---- Address validation states ---- */
.pt-question .mapboxgl-ctrl-geocoder.address-confirmed {
    border-color: var(--pt-forest);
    background: #fff;
    position: relative;
}
.pt-question .mapboxgl-ctrl-geocoder.address-confirmed .address-check-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pt-forest);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}
/* Cards variant: the .pt-question-check in the card header is the unified
   completion indicator — hide the redundant in-input check (which also
   collided visually with the geocoder's clear button). */
.pt-questions--cards .pt-question .mapboxgl-ctrl-geocoder.address-confirmed .address-check-icon {
    display: none;
}
/* Cards variant: the global icon-close override (top: 50% + translateY)
   visually shifts the X up because the SVG itself is position: static —
   the translate fires but `top` doesn't. Reset to default flow. */
.pt-questions--cards .pt-question .mapboxgl-ctrl-geocoder--icon-close {
    top: auto;
    transform: none;
}
.pt-question .mapboxgl-ctrl-geocoder.address-error {
    border-color: var(--bs-danger);
}
.pt-question .mapboxgl-ctrl-geocoder.address-error:focus-within {
    border-color: var(--pt-forest);
    box-shadow: var(--pt-shadow-focus);
}
.pt-address-error-msg {
    margin-top: 6px;
    font-size: 13px;
    color: var(--bs-danger);
    display: none;
}
.pt-address-error-msg.visible {
    display: block;
}

/* ---- 17. Animal Card Grid (mini_annonce) ---- */
.pt-animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}
.pt-animal-card {
    position: relative;
    background: var(--pt-white);
    border: 1.5px solid var(--pt-parchment);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform var(--pt-transition-fast),
                border-color var(--pt-transition-fast),
                background var(--pt-transition-fast),
                box-shadow var(--pt-transition-fast);
}
.pt-animal-card:hover {
    border-color: rgba(61, 107, 86, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 41, 34, 0.08);
}
.pt-animal-card:focus-visible {
    outline: none;
    border-color: var(--pt-forest);
    box-shadow: var(--pt-shadow-focus);
}
.pt-animal-card.is-active {
    border-color: var(--pt-forest);
    background: rgba(61, 107, 86, 0.04);
    box-shadow: 0 0 0 3px rgba(61, 107, 86, 0.1);
}
.pt-animal-card__emoji {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 6px;
    transition: transform var(--pt-transition-fast);
}
.pt-animal-card.is-active .pt-animal-card__emoji {
    transform: scale(1.1);
}
.pt-animal-card__name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--pt-ink);
}
.pt-animal-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pt-terra);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: grid;
    place-items: center;
    line-height: 1;
    opacity: 0;
    transform: scale(0.3);
    transition: opacity var(--pt-transition-fast),
                transform 0.25s cubic-bezier(0.4, 1.6, 0.6, 1);
}
.pt-animal-card.is-active .pt-animal-card__badge {
    opacity: 1;
    transform: scale(1);
}
.pt-animal-card__stepper-wrap {
    max-height: 0;
    overflow: hidden;
    padding: 0 4px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.pt-animal-card.is-active .pt-animal-card__stepper-wrap {
    max-height: 60px;
    padding: 10px 4px 0;
}
.pt-animal-card__stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--pt-fog);
}
.pt-animal-card__step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pt-parchment);
    color: var(--pt-forest);
    border: none;
    display: grid;
    place-items: center;
    font-size: 11px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--pt-transition-fast),
                color var(--pt-transition-fast);
}
.pt-animal-card__step:hover {
    background: var(--pt-forest);
    color: #fff;
}
.pt-animal-card__step:active {
    transform: scale(0.94);
}
.pt-animal-card__value,
.pt-animal-card__value.form-control {
    min-width: 30px;
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--pt-ink);
    font-size: 16px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
    padding: 0;
    box-shadow: none;
    -moz-appearance: textfield;
    pointer-events: none;
}
.pt-animal-card__value:focus,
.pt-animal-card__value.form-control:focus {
    outline: none;
    box-shadow: none;
}
.pt-animal-card__value::-webkit-inner-spin-button,
.pt-animal-card__value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ---- 18. Form Actions ---- */
.pt-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.pt-trust-footnote {
    text-align: center;
    font-size: 12px;
    color: var(--pt-muted);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ---- 19. Mobile Bar ---- */
.pt-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--pt-parchment);
    box-shadow: 0 -4px 20px rgba(26, 41, 34, 0.06);
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    display: flex;
    gap: 10px;
}
.pt-mobile-back {
    width: 48px;
    height: 50px;
    border: 1.5px solid var(--pt-parchment);
    border-radius: var(--pt-radius-pill);
    background: transparent;
    color: var(--pt-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all var(--pt-transition-fast);
}
.pt-mobile-back:hover {
    background: var(--pt-fog);
    color: var(--pt-forest);
    text-decoration: none;
}
.pt-mobile-submit {
    flex: 1;
    min-height: 50px;
}

/* ---- Inscription Page ---- */
.pt-auth-page {
    background: var(--pt-cream);
    min-height: 100vh;
    font-family: var(--pt-font-ui);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
}
.pt-auth-wrap {
    width: 100%;
    max-width: 460px;
}
.pt-auth-logo {
    text-align: center;
    margin-bottom: 28px;
}
.pt-auth-logo img {
    height: 36px;
    width: auto;
}
.pt-auth-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow-md);
    padding: 48px 40px 40px;
}
.pt-auth-title {
    font-family: var(--pt-font-display);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 8px;
    text-align: center;
}
.pt-auth-sub {
    font-size: 15px;
    color: var(--pt-muted);
    text-align: center;
    line-height: 1.5;
    margin: 0 0 28px;
}
.pt-auth-form .pt-field {
    margin-bottom: 14px;
}
.pt-auth-form .pt-field-row {
    display: flex;
    gap: 10px;
}
.pt-auth-form .pt-field-row .pt-field {
    flex: 1;
}
.pt-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    font-family: var(--pt-font-ui);
    color: var(--pt-text);
    background: var(--pt-white);
    border: 1.5px solid var(--pt-parchment);
    border-radius: var(--pt-radius-sm);
    transition: border-color var(--pt-transition-fast),
                box-shadow var(--pt-transition-fast);
    outline: none;
}
.pt-input::placeholder {
    color: var(--pt-muted);
}
.pt-input:focus {
    border-color: var(--pt-forest);
    box-shadow: var(--pt-shadow-focus);
}
.pt-field-hint {
    font-size: 13px;
    color: var(--pt-muted);
    margin-top: 4px;
}
.pt-checkbox-field {
    margin-top: 4px;
    margin-bottom: 20px !important;
}
.pt-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--pt-text);
    line-height: 1.5;
    cursor: pointer;
}
.pt-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--pt-forest);
}
.pt-checkbox-label a {
    color: var(--pt-forest);
    text-decoration: underline;
}
.pt-auth-alt-link {
    text-align: center;
    font-size: 14px;
    color: var(--pt-muted);
    margin: 20px 0 0;
}
.pt-auth-alt-link a {
    color: var(--pt-forest);
    font-weight: 600;
    text-decoration: none;
}
.pt-auth-alt-link a:hover {
    text-decoration: underline;
}
.pt-auth-back {
    text-align: center;
    margin: 20px 0 0;
}
.pt-auth-back a {
    font-size: 14px;
    color: var(--pt-muted);
    text-decoration: none;
}
.pt-auth-back a:hover {
    color: var(--pt-forest);
}

/* Mobile: no card, flush layout */
@media (max-width: 767.98px) {
    .pt-auth-page {
        padding: 16px 0;
        padding-bottom: 100px;
    }
    .pt-auth-card {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 24px 20px 40px;
    }
}

/* ---- 20. Decouverte: Count Reveal ---- */
.pt-reveal-hero {
    background: var(--pt-cream);
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--pt-parchment);
}
.pt-reveal-hero-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.pt-confirm-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pt-fog);
    border: 1px solid var(--pt-parchment);
    border-radius: var(--pt-radius-pill);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-forest);
    margin-bottom: 28px;
}
.pt-count-reveal {
    margin-bottom: 28px;
}
.pt-count-display {
    font-family: var(--pt-font-display);
    font-size: clamp(72px, 15vw, 120px);
    font-weight: 700;
    font-optical-sizing: auto;
    color: var(--pt-forest);
    letter-spacing: -0.04em;
    line-height: 1;
    animation: pt-count-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.15s;
}
@keyframes pt-count-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.88);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
.pt-count-label {
    font-family: var(--pt-font-display);
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 400;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    margin: 8px 0 12px;
    line-height: 1.3;
}
.pt-count-local {
    font-size: 16px;
    color: var(--pt-muted);
    margin-bottom: 12px;
}
.pt-count-local strong {
    color: var(--pt-forest);
    font-weight: 700;
}
.pt-recency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pt-terra-pale);
    border: 1px solid var(--pt-terra-light);
    border-radius: var(--pt-radius-pill);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-terra);
    margin-bottom: 8px;
}
.pt-hero-cta-sub {
    margin-top: 14px;
    font-size: 13px;
    color: var(--pt-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pt-hero-local-badge {
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ---- 21. Decouverte: Preview Cards ---- */
.pt-preview-section {
    padding: 56px 0 48px;
    background: var(--pt-white);
}
.pt-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pt-preview-card {
    border-radius: var(--pt-radius-md);
    overflow: hidden;
    border: 1px solid var(--pt-parchment);
    background: var(--pt-white);
    box-shadow: var(--pt-shadow-sm);
    position: relative;
    min-height: 180px;
}
.pt-preview-content {
    padding: 20px;
}
.pt-preview-blur {
    filter: blur(4px);
    opacity: 0.75;
    pointer-events: none;
    user-select: none;
}
.pt-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 248, 244, 0.6);
    backdrop-filter: blur(1px);
}
.pt-preview-lock-content {
    text-align: center;
    padding: 20px;
}
.pt-preview-lock-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    box-shadow: var(--pt-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pt-forest);
    font-size: 16px;
    margin: 0 auto 10px;
}
.pt-preview-lock-content span {
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-text);
}
.pt-preview-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pt-fog);
    flex-shrink: 0;
}
.pt-preview-avatar-lg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pt-fog);
    margin: 0 auto 10px;
}
.pt-preview-city {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.pt-preview-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--pt-ink);
}
.pt-preview-detail {
    font-size: 12px;
    color: var(--pt-muted);
}
.pt-preview-photo {
    height: 80px;
    border-radius: var(--pt-radius-sm);
    background: var(--pt-fog);
    margin-bottom: 12px;
}
.pt-preview-line {
    height: 10px;
    border-radius: 100px;
    background: var(--pt-fog);
    width: 75%;
}
.pt-preview-line.short {
    width: 55%;
    margin: 6px auto 0;
}
.pt-preview-profil {
    text-align: center;
}

/* ---- 21b. Decouverte: Real Photo Preview Cards ---- */
.pt-preview-real-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.pt-preview-real-card {
    border-radius: var(--pt-radius-md);
    overflow: hidden;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    box-shadow: var(--pt-shadow-sm);
    position: relative;
}
.pt-preview-featured .pt-preview-real-photo {
    height: 220px;
}
.pt-preview-teased .pt-preview-real-photo {
    height: 140px;
}
.pt-preview-real-photo {
    position: relative;
    overflow: hidden;
}
.pt-preview-real-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pt-preview-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pt-preview-badge i {
    color: #f5c542;
    font-size: 11px;
}
.pt-preview-real-body {
    padding: 14px 16px;
}
.pt-preview-real-city {
    font-size: 15px;
    font-weight: 600;
    color: var(--pt-ink);
}
.pt-preview-real-animals {
    font-size: 13px;
    color: var(--pt-muted);
    margin-top: 2px;
}
.pt-preview-real-lock {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
    .pt-preview-real-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .pt-preview-featured {
        grid-column: 1 / -1;
    }
    .pt-preview-featured .pt-preview-real-photo {
        height: 280px;
    }
}
@media (max-width: 767.98px) {
    .pt-preview-real-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .pt-preview-featured {
        width: 100%;
        flex-shrink: 0;
    }
    .pt-preview-teased {
        width: calc(50% - 6px);
        flex-shrink: 0;
    }
}

/* ---- 21c. Decouverte: Match Cards (propriétaire) ---- */
.pt-match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pt-match-card {
    border-radius: var(--pt-radius-md);
    overflow: hidden;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    box-shadow: var(--pt-shadow-sm);
}
.pt-match-photo {
    position: relative;
    height: 180px;
}
.pt-match-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pt-match-avatar {
    position: absolute;
    bottom: -16px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--pt-white);
    box-shadow: var(--pt-shadow-sm);
}
.pt-match-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pt-match-body {
    padding: 20px 16px 16px;
}
.pt-match-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--pt-ink);
}
.pt-match-date {
    font-size: 13px;
    color: var(--pt-muted);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pt-match-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--pt-forest);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pt-match-badge i {
    font-size: 11px;
}

@media (max-width: 767.98px) {
    .pt-match-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pt-match-photo {
        height: 200px;
    }
}

/* ---- 22. Decouverte: Dark CTA Band ---- */
.pt-cta-band {
    background: linear-gradient(135deg, var(--pt-ink) 0%, #2A4D3C 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.pt-cta-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 98, 45, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.pt-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.pt-cta-band-copy { flex: 1; }
.pt-cta-band-title {
    font-family: var(--pt-font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 500;
    font-optical-sizing: auto;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}
.pt-cta-band-title em {
    font-style: italic;
    color: var(--pt-mist);
}
.pt-cta-band-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
.pt-cta-band-action {
    flex-shrink: 0;
    text-align: center;
}
.pt-cta-band-guarantees {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    justify-content: center;
    flex-wrap: wrap;
}
.pt-cta-band-guarantees span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ---- 23. Welcome Post-Payment ---- */

/* Minimal navbar override (no stepper — user "arrived") */
.pt-welcome-navbar {
    padding: 18px 32px;
    background: var(--pt-white);
    border-bottom: 1px solid var(--pt-parchment);
    position: static;
}
.pt-welcome-navbar__brand img {
    max-height: 34px;
    display: block;
}
.pt-welcome-navbar__secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pt-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}
.pt-welcome-navbar__secure i {
    color: var(--pt-forest);
    font-size: 12px;
}

/* Stage */
.pt-welcome {
    background: var(--pt-cream);
    flex: 1;
    padding: 72px 0 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
}
.pt-welcome-stage {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ── Celebratory animation: ring + tick + glow + particles ── */
.pt-welcome-check {
    position: relative;
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pt-welcome-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
.pt-welcome-ring {
    fill: none;
    stroke: var(--pt-forest);
    stroke-width: 2.5;
    stroke-dasharray: 150.8;
    stroke-dashoffset: 150.8;
    transform-origin: center;
    animation: welcome-ring 0.9s cubic-bezier(0.6, 0.05, 0.3, 1) 0.1s forwards;
}
.pt-welcome-tick {
    fill: none;
    stroke: var(--pt-forest);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: welcome-tick 0.5s cubic-bezier(0.6, 0.05, 0.3, 1) 0.85s forwards;
}
.pt-welcome-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 107, 86, 0.18) 0%, rgba(61, 107, 86, 0) 68%);
    opacity: 0;
    animation: welcome-glow 1.2s ease-out 1s forwards;
}
@keyframes welcome-ring { to { stroke-dashoffset: 0; } }
@keyframes welcome-tick { to { stroke-dashoffset: 0; } }
@keyframes welcome-glow {
    0%   { opacity: 0; transform: scale(0.85); }
    50%  { opacity: 1; transform: scale(1.08); }
    100% { opacity: 0; transform: scale(1.15); }
}

/* Particles — 12 particles scattering from the centre */
.pt-welcome-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pt-welcome-particle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: welcome-particle 1.2s cubic-bezier(0.2, 0.7, 0.3, 1) 1.05s forwards;
}
.pt-welcome-particle:nth-child(1)  { background: var(--pt-terra);  --tx: -60px; --ty: -52px; width: 8px; height: 8px; }
.pt-welcome-particle:nth-child(2)  { background: var(--pt-forest); --tx: 58px;  --ty: -48px; width: 6px; height: 6px; }
.pt-welcome-particle:nth-child(3)  { background: #D4A257;          --tx: 72px;  --ty: 14px;  width: 7px; height: 7px; }
.pt-welcome-particle:nth-child(4)  { background: var(--pt-mist);   --tx: -78px; --ty: 10px;  width: 6px; height: 6px; }
.pt-welcome-particle:nth-child(5)  { background: var(--pt-terra);  --tx: -30px; --ty: 68px;  width: 5px; height: 5px; animation-delay: 1.15s; }
.pt-welcome-particle:nth-child(6)  { background: #D4A257;          --tx: 38px;  --ty: 72px;  width: 7px; height: 7px; animation-delay: 1.15s; }
.pt-welcome-particle:nth-child(7)  { background: var(--pt-forest); --tx: -88px; --ty: -22px; width: 5px; height: 5px; animation-delay: 1.2s;  }
.pt-welcome-particle:nth-child(8)  { background: var(--pt-mist);   --tx: 88px;  --ty: -28px; width: 5px; height: 5px; animation-delay: 1.2s;  }
.pt-welcome-particle:nth-child(9)  { background: var(--pt-terra);  --tx: 10px;  --ty: -82px; width: 6px; height: 6px; animation-delay: 1.1s;  }
.pt-welcome-particle:nth-child(10) { background: #D4A257;          --tx: -12px; --ty: 88px;  width: 5px; height: 5px; animation-delay: 1.25s; }
.pt-welcome-particle:nth-child(11) { background: var(--pt-forest); --tx: 50px;  --ty: -80px; width: 4px; height: 4px; animation-delay: 1.2s;  }
.pt-welcome-particle:nth-child(12) { background: var(--pt-mist);   --tx: -58px; --ty: 46px;  width: 4px; height: 4px; animation-delay: 1.15s; }
@keyframes welcome-particle {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
    20%  { opacity: 1; transform: translate(calc(-50% + var(--tx) * 0.4), calc(-50% + var(--ty) * 0.4)) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--tx) * 1.1), calc(-50% + var(--ty) * 1.1 + 14px)) scale(0.6); }
}

/* ── Title + lead ── */
.pt-welcome-title {
    font-family: var(--pt-font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    color: var(--pt-ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 14px;
    opacity: 0;
    animation: welcome-up 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s forwards;
}
.pt-welcome-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--pt-terra);
}
.pt-welcome-lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--pt-muted);
    max-width: 480px;
    margin: 0 auto 36px;
    opacity: 0;
    animation: welcome-up 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 1.25s forwards;
}
@keyframes welcome-up {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Payment recap ── */
.pt-payment-recap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: 12px;
    max-width: 440px;
    margin: 0 auto 36px;
    text-align: left;
    box-shadow: var(--pt-shadow-xs);
    opacity: 0;
    animation: welcome-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1.4s forwards;
}
.pt-payment-recap__ico {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(61, 107, 86, 0.1);
    color: var(--pt-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.pt-payment-recap__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pt-payment-recap__plan {
    font-family: var(--pt-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pt-ink);
    line-height: 1.2;
}
.pt-payment-recap__plan .price { color: var(--pt-terra); }
.pt-payment-recap__sub {
    font-size: 0.8rem;
    color: var(--pt-muted);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pt-payment-recap__sub strong {
    color: var(--pt-forest);
    font-weight: 600;
}

/* ── Onboarding timeline ── */
.pt-welcome-timeline {
    list-style: none;
    padding: 0;
    margin: 0 auto 36px;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    opacity: 0;
    animation: welcome-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1.55s forwards;
}
.pt-welcome-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.pt-welcome-step.is-done {
    background: rgba(61, 107, 86, 0.05);
    border-color: rgba(61, 107, 86, 0.2);
}
.pt-welcome-step.is-next {
    border-color: var(--pt-mist);
    box-shadow: 0 4px 16px rgba(61, 107, 86, 0.08);
}

.pt-welcome-bullet {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pt-fog);
    color: var(--pt-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--pt-font-display);
    transition: all var(--pt-transition-base);
}
.pt-welcome-step.is-done .pt-welcome-bullet {
    background: var(--pt-forest);
    color: #fff;
}
.pt-welcome-step.is-done .pt-welcome-bullet i {
    font-size: 11px;
}
.pt-welcome-step.is-next .pt-welcome-bullet {
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
    border: 1.5px solid var(--pt-terra);
}

.pt-welcome-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pt-text);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pt-welcome-step.is-done .pt-welcome-label { color: var(--pt-muted); }
.pt-welcome-step.is-next .pt-welcome-label { color: var(--pt-ink); }

.pt-step-hint {
    font-size: 0.78rem;
    color: var(--pt-muted);
    font-weight: 400;
    display: block;
    margin-top: 2px;
    width: 100%;
}
.pt-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-left: auto;
}
.pt-step-badge i { font-size: 9px; }

/* ── CTAs ── */
.pt-welcome-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: welcome-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1.7s forwards;
}
.pt-welcome-secondary {
    background: transparent;
    color: var(--pt-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.2s;
}
.pt-welcome-secondary:hover {
    color: var(--pt-forest);
    text-decoration: none;
}
.pt-welcome-secondary i {
    font-size: 11px;
    transition: transform 0.2s;
}
.pt-welcome-secondary:hover i { transform: translateX(3px); }

/* ── Mobile ── */
@media (max-width: 767.98px) {
    .pt-welcome-navbar { padding: 14px 20px; }
    .pt-welcome { padding: 48px 0 64px; }
    .pt-welcome-check { width: 88px; height: 88px; margin-bottom: 24px; }
    .pt-welcome-lead { font-size: 1rem; }
    .pt-welcome-timeline { max-width: 100%; }
    .pt-welcome-action .pt-btn-primary { width: 100%; }
    .pt-step-badge { margin-left: 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .pt-welcome-ring,
    .pt-welcome-tick,
    .pt-welcome-glow,
    .pt-welcome-particle,
    .pt-welcome-title,
    .pt-welcome-lead,
    .pt-payment-recap,
    .pt-welcome-timeline,
    .pt-welcome-action {
        animation: none;
        opacity: 1;
    }
    .pt-welcome-ring,
    .pt-welcome-tick { stroke-dashoffset: 0; }
}

/* ---- 23b. Confetti burst ----
   Shared celebration effect reused on review/completed, profil/end_homesitter,
   annonce/end_owner. Not used by the post-payment page anymore (replaced there
   by the ring+tick+particles animation), but these consumers still rely on it.
*/
.pt-confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
    animation: confetti-hide 0.01s linear 4s forwards;
}
@keyframes confetti-hide { to { visibility: hidden; } }

.pt-confetti-piece {
    position: absolute;
    top: -16px;
    display: block;
    opacity: 0;
    will-change: transform, opacity;
    animation: confetti-fall 2.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* shapes */
.pt-confetti-piece:nth-child(odd)  { width: 9px; height: 9px; border-radius: 2px; }
.pt-confetti-piece:nth-child(even) { width: 7px; height: 14px; border-radius: 1px; }
.pt-confetti-piece:nth-child(3n)   { width: 10px; height: 6px; border-radius: 50%; }
.pt-confetti-piece:nth-child(5n)   { width: 5px; height: 5px; border-radius: 50%; }

/* palette */
.pt-confetti-piece:nth-child(5n+1) { background: var(--pt-forest); }
.pt-confetti-piece:nth-child(5n+2) { background: #E2B959; }
.pt-confetti-piece:nth-child(5n+3) { background: #D4796A; }
.pt-confetti-piece:nth-child(5n+4) { background: #7BAFD4; }
.pt-confetti-piece:nth-child(5n+5) { background: var(--pt-sage); }

/* scatter positions & timing — 40 pieces across viewport */
.pt-confetti-piece:nth-child(1)  { left: 3%;  animation-delay: 0.55s; }
.pt-confetti-piece:nth-child(2)  { left: 8%;  animation-delay: 0.48s; }
.pt-confetti-piece:nth-child(3)  { left: 12%; animation-delay: 0.62s; }
.pt-confetti-piece:nth-child(4)  { left: 16%; animation-delay: 0.50s; }
.pt-confetti-piece:nth-child(5)  { left: 20%; animation-delay: 0.70s; }
.pt-confetti-piece:nth-child(6)  { left: 24%; animation-delay: 0.45s; }
.pt-confetti-piece:nth-child(7)  { left: 28%; animation-delay: 0.58s; }
.pt-confetti-piece:nth-child(8)  { left: 32%; animation-delay: 0.52s; }
.pt-confetti-piece:nth-child(9)  { left: 35%; animation-delay: 0.66s; }
.pt-confetti-piece:nth-child(10) { left: 38%; animation-delay: 0.48s; }
.pt-confetti-piece:nth-child(11) { left: 41%; animation-delay: 0.72s; }
.pt-confetti-piece:nth-child(12) { left: 44%; animation-delay: 0.55s; }
.pt-confetti-piece:nth-child(13) { left: 47%; animation-delay: 0.60s; }
.pt-confetti-piece:nth-child(14) { left: 50%; animation-delay: 0.46s; }
.pt-confetti-piece:nth-child(15) { left: 53%; animation-delay: 0.68s; }
.pt-confetti-piece:nth-child(16) { left: 56%; animation-delay: 0.50s; }
.pt-confetti-piece:nth-child(17) { left: 59%; animation-delay: 0.74s; }
.pt-confetti-piece:nth-child(18) { left: 62%; animation-delay: 0.53s; }
.pt-confetti-piece:nth-child(19) { left: 65%; animation-delay: 0.62s; }
.pt-confetti-piece:nth-child(20) { left: 68%; animation-delay: 0.48s; }
.pt-confetti-piece:nth-child(21) { left: 71%; animation-delay: 0.70s; }
.pt-confetti-piece:nth-child(22) { left: 74%; animation-delay: 0.55s; }
.pt-confetti-piece:nth-child(23) { left: 77%; animation-delay: 0.64s; }
.pt-confetti-piece:nth-child(24) { left: 80%; animation-delay: 0.50s; }
.pt-confetti-piece:nth-child(25) { left: 83%; animation-delay: 0.72s; }
.pt-confetti-piece:nth-child(26) { left: 86%; animation-delay: 0.58s; }
.pt-confetti-piece:nth-child(27) { left: 89%; animation-delay: 0.46s; }
.pt-confetti-piece:nth-child(28) { left: 92%; animation-delay: 0.66s; }
.pt-confetti-piece:nth-child(29) { left: 95%; animation-delay: 0.52s; }
.pt-confetti-piece:nth-child(30) { left: 97%; animation-delay: 0.60s; }
.pt-confetti-piece:nth-child(31) { left: 6%;  animation-delay: 0.78s; }
.pt-confetti-piece:nth-child(32) { left: 14%; animation-delay: 0.82s; }
.pt-confetti-piece:nth-child(33) { left: 22%; animation-delay: 0.76s; }
.pt-confetti-piece:nth-child(34) { left: 30%; animation-delay: 0.85s; }
.pt-confetti-piece:nth-child(35) { left: 42%; animation-delay: 0.80s; }
.pt-confetti-piece:nth-child(36) { left: 52%; animation-delay: 0.88s; }
.pt-confetti-piece:nth-child(37) { left: 60%; animation-delay: 0.76s; }
.pt-confetti-piece:nth-child(38) { left: 72%; animation-delay: 0.84s; }
.pt-confetti-piece:nth-child(39) { left: 82%; animation-delay: 0.78s; }
.pt-confetti-piece:nth-child(40) { left: 90%; animation-delay: 0.86s; }

@keyframes confetti-fall {
    0%   { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
    75%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(105vh) rotate(540deg) scale(0.6); }
}

/* ---- 24. Responsive ---- */
@media (max-width: 860px) {
    .pt-roles {
        grid-template-columns: 1fr;
        padding: 0 20px 32px;
    }
    .pt-roles-form:first-child .pt-role {
        border-radius: var(--pt-radius-lg) var(--pt-radius-lg) 0 0;
        border-right: 1px solid var(--pt-parchment);
        border-bottom: none;
    }
    .pt-roles-form:last-child .pt-role {
        border-radius: 0 0 var(--pt-radius-lg) var(--pt-radius-lg);
    }
}
@media (max-width: 639px) {
    .pt-role {
        padding: 28px 22px 26px;
        gap: 20px;
    }
    .pt-role-top { gap: 14px; }
    .pt-role-ico {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
    .pt-role-ico svg { width: 26px; height: 26px; }
    .pt-role-title { font-size: 1.35rem; }
    .pt-role-desc { font-size: 0.95rem; }
    .pt-role-cta-label { font-size: 0.96rem; }
    .pt-role-cta-arrow { width: 40px; height: 40px; }
    .pt-hero--onboard { padding: 40px 0 28px; }
    .pt-preview-grid { grid-template-columns: 1fr; gap: 12px; }
    .pt-guarantee-sep { display: none; }
    .pt-guarantee-item { padding: 0 16px; width: 100%; }
    .pt-stat { padding: 0 16px; }
    .pt-stat-num { font-size: 24px; }
}
@media (max-width: 767px) {
    .pt-hero { padding: 40px 0 32px; }
    .pt-testimonials-grid { grid-template-columns: 1fr; }
    .pt-cta-band-inner { flex-direction: column; text-align: center; gap: 28px; }
    .pt-cta-band { padding: 48px 0; }
    .pt-form-page { padding: 32px 0 90px; }
    .pt-form-wrap { padding: 0 1rem; }
    .pt-form-header { margin-bottom: 28px; }
    .pt-questions { padding: 0 20px; }
    .pt-question { padding: 22px 0; }
    .pt-reveal-hero { padding: 40px 0 36px; }
    .pt-preview-section { padding: 40px 0 36px; }
    .pt-testimonials-section { padding: 48px 0; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .pt-testimonials-grid { grid-template-columns: 1fr 1fr; }
}


/* ==========================================================================
   Funnel Stepper — icon stepper navbar, card selections, sections
   ========================================================================== */

/* --- Stepper container --- */
.funnel-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* --- Step item (icon + label) --- */
.funnel-stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

/* Completed step */
.funnel-stepper-step--completed {
    color: #19833a;
    cursor: pointer;
}
.funnel-stepper-step--completed:hover {
    opacity: 0.75;
    color: #19833a;
}

/* Current step */
.funnel-stepper-step--current {
    color: var(--pt-terra);
}
.funnel-stepper-step--current .funnel-stepper-icon {
    transform: scale(1.12);
    box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.15);
}

/* Future step */
.funnel-stepper-step--future {
    color: #95aac9;
    opacity: 0.45;
    cursor: default;
}

/* --- Connecting line --- */
.funnel-stepper-line {
    flex-grow: 1;
    height: 2px;
    min-width: 24px;
    max-width: 60px;
    background: #d2ddec;
    align-self: center;
    margin: 0 4px;
    /* Vertically center with the icon (offset for label below) */
    margin-bottom: 16px;
    border-radius: 1px;
}
.funnel-stepper-line--active {
    background: #19833a;
}

/* --- Icon circle --- */
.funnel-stepper-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: currentColor;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.funnel-stepper-icon i {
    color: #fff;
    font-size: 0.8rem;
}

/* --- Label below icon --- */
.funnel-stepper-label {
    font-size: 0.7rem;
    margin-top: 4px;
    font-weight: 500;
    white-space: nowrap;
    display: none;
}
@media (min-width: 992px) {
    .funnel-stepper-label {
        display: block;
    }
}

/* --- Conversational heading --- */
.funnel-heading {
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* --- Subtitle below heading --- */
.funnel-subtitle {
    text-align: center;
    color: #6e84a3;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* --- Inline hint block --- */
.funnel-inline-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: var(--pt-terra-pale);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}
.funnel-inline-hint i {
    color: var(--pt-terra);
    flex-shrink: 0;
    margin-top: 2px;
}
.funnel-inline-hint span,
.funnel-inline-hint p {
    color: #6e84a3;
    margin: 0;
}

/* --- Inspiration bracket warning --- */
.inspiration-warning {
    display: none;
    align-items: center;
    gap: 0.6rem;
    background: #fff3f0;
    border: 1px solid var(--pt-terra);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--pt-terra);
}
.inspiration-warning.is-visible {
    display: flex;
    animation: warningPulse 0.4s ease-out;
}
.inspiration-warning i {
    flex-shrink: 0;
    font-size: 1rem;
}
.inspiration-warning span {
    color: #5a3e36;
}
@keyframes warningPulse {
    0%   { opacity: 0; transform: translateY(-6px); }
    50%  { transform: translateY(2px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Open stacked section --- */
.funnel-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

/* --- Section header: icon-circle + title --- */
.funnel-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
}
.funnel-section-header .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* --- Promenade cards: stretch to fill grid columns equally --- */
.funnel-section .row > .col-md-6 > .lift[data-controller="number-button"] {
    max-width: none !important;
    min-width: 0 !important;
    width: 100%;
    height: 100%;
}
.funnel-section .row > .col-md-6 > .lift[data-controller="number-button"] > div {
    height: 100%;
    justify-content: flex-start !important;
}
.funnel-section .row > .col-md-6 > .lift[data-controller="number-button"] label {
    flex-grow: 1;
}
.funnel-section .row > .col-md-6 > .lift[data-controller="number-button"] .input-group {
    margin-top: auto;
}
.funnel-section .row > .col-md-6 > .lift[data-controller="number-button"] label i {
    display: inline !important;
    font-size: 1.2rem;
    margin-bottom: 0 !important;
    margin-right: 0.4rem;
    vertical-align: middle;
}

/* --- Tappable selection card --- */
.funnel-step-card {
    min-height: 100px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}
.funnel-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.funnel-step-card--selected {
    border-color: var(--pt-terra);
    background: var(--pt-terra-pale);
}
.funnel-step-card--selected .funnel-step-card-icon {
    color: var(--pt-terra);
}
.funnel-step-card-icon {
    font-size: 1.6rem;
    color: #95aac9;
    transition: color 0.15s ease;
}
.funnel-step-card-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #12263f;
}
.funnel-step-card-counter {
    font-size: 0.8rem;
    color: #95aac9;
}

/* --- Mobile responsive --- */
@media (max-width: 767.98px) {
    .funnel-stepper-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    .funnel-stepper-icon i {
        font-size: 0.7rem;
    }
    .funnel-stepper-line {
        min-width: 14px;
        max-width: 36px;
        margin-bottom: 0;
    }
    .funnel-stepper-step--current .funnel-stepper-icon {
        box-shadow: 0 0 0 2px rgba(196, 98, 45, 0.15);
    }
    .funnel-step-card {
        min-height: 72px;
        padding: 1rem;
    }
    .funnel-step-card-icon {
        font-size: 1.3rem;
    }
    .funnel-heading {
        font-size: 1.35rem;
    }
}

/* --- Companion cards --- */
.funnel-companion-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--pt-parchment, #EDE9E1);
    border-radius: 0;
    padding: 0.75rem 0;
    transition: background var(--pt-transition-fast) ease;
}
.funnel-companion-card:last-child {
    border-bottom: none;
}
.funnel-companion-card:focus-within {
    background: var(--pt-fog, #F2F0EB);
    border-radius: var(--pt-radius-sm, 8px);
    padding: 0.75rem 0.5rem;
    margin: 0 -0.5rem;
}
.funnel-companion-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pt-forest, #3D6B56);
    color: var(--pt-white, #FFFEFB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.funnel-companion-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.funnel-companion-info input {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pt-ink, #1A2922);
    height: auto;
    line-height: 1.3;
}
.funnel-companion-info input:focus {
    outline: none;
    box-shadow: inset 0 -2px 0 0 var(--pt-sage);
}
.funnel-companion-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid var(--pt-parchment, #EDE9E1);
    background: var(--pt-white, #FFFEFB);
    color: var(--pt-text, #2D3B35);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: var(--pt-radius-pill, 100px);
    cursor: pointer;
    transition: all var(--pt-transition-fast) ease;
    align-self: flex-start;
}
.funnel-companion-toggle:hover {
    background: var(--pt-fog, #F2F0EB);
    border-color: var(--pt-muted, #6B7C75);
}
.funnel-companion-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--pt-sage, #5D8876);
}
.funnel-companion-toggle:active {
    transform: scale(0.95);
}
.funnel-companion-toggle--enfant {
    background: var(--pt-white, #FFFEFB);
    color: var(--pt-forest, #3D6B56);
    border-color: var(--pt-mist, #8FB5A4);
}
.funnel-companion-toggle--enfant:hover {
    background: var(--pt-fog, #F2F0EB);
}
.funnel-companion-remove {
    color: var(--pt-muted, #6B7C75);
    border: none;
    background: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--pt-transition-fast) ease;
    flex-shrink: 0;
}
.funnel-companion-remove:hover {
    color: var(--bs-danger);
    background: rgba(var(--bs-danger-rgb), 0.08);
}
.funnel-companion-remove:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--bs-danger-rgb), 0.3);
}
.funnel-companion-remove:active {
    transform: scale(0.9);
}
.funnel-companion-add {
    border: 1.5px dashed var(--pt-parchment, #EDE9E1);
    border-radius: var(--pt-radius-sm, 8px);
    background: transparent;
    color: var(--pt-muted, #6B7C75);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.625rem;
    cursor: pointer;
    transition: all var(--pt-transition-fast) ease;
}
.funnel-companion-add:hover {
    border-color: var(--pt-sage, #5D8876);
    background: var(--pt-fog, #F2F0EB);
    color: var(--pt-forest, #3D6B56);
}
.funnel-companion-add:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--pt-sage, #5D8876);
}

/* --- Companion empty state --- */
.companion-empty-icon {
    font-size: 2rem;
    opacity: 0.25;
}

/* --- Companion card animations --- */
.companion-entering {
    animation: funnel-card-in 0.25s ease;
}

@keyframes funnel-card-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes funnel-card-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(8px); }
}

/* ── Facebook Login Button ── */
.pt-btn-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background-color: #1877F2;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s;
    cursor: pointer;
}

.pt-btn-facebook:hover {
    background-color: #166FE5;
    color: #fff;
    text-decoration: none;
}

/* ── Auth separator "ou" ── */
.pt-auth-separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    color: #8492a6;
    font-size: 13px;
}

.pt-auth-separator::before,
.pt-auth-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e4e8ee;
}

/* ============ Charter step (étape 3) ============ */

.pt-charter-meta {
    font-size: 13px;
    color: var(--pt-muted, #6B7C75);
    margin-top: 6px;
}
.pt-pillar {
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
}
.pt-pillar-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 14px;
}
.pt-pillar-num {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--pt-muted, #6B7C75);
    font-weight: 600;
}
.pt-pillar-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.pt-pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pt-pillar-grid--single {
    grid-template-columns: 1fr;
}
@media (max-width: 680px) {
    .pt-pillar-grid { grid-template-columns: 1fr; }
}
.pt-commit h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px;
    font-weight: 600;
}
.pt-commit-you h3 { color: var(--pt-forest, #3D6B56); }
.pt-commit-them h3 { color: var(--pt-muted, #6B7C75); }
.pt-commit ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.55;
    font-size: 14px;
}
.pt-commit ul li { margin-bottom: 5px; }

.pt-engagement {
    margin-top: 32px;
    padding: 22px 24px;
    border: 2px solid var(--pt-forest, #3D6B56);
    border-radius: 12px;
    background: rgba(61, 107, 86, 0.05);
}
.pt-engagement-note {
    font-size: 13px;
    color: var(--pt-muted, #6B7C75);
    margin-top: 6px;
    margin-left: 32px;
}
.pt-charter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
    flex-wrap: wrap;
}
.pt-charter-link {
    font-size: 14px;
    color: var(--pt-forest, #3D6B56);
    text-decoration: underline;
}

/* ── Micro-feedback lines (mini-profil Q1-Q4) ── */
.pt-micro-feedback {
    margin-top: 10px;
    font-size: 13px;
    color: var(--pt-forest, #3D6B56);
    font-style: italic;
    min-height: 18px;
}
.pt-micro-feedback:empty {
    display: none;
}
.pt-chips--multi { flex-wrap: wrap; }

/* ============ Découverte refondue ============ */

.pt-decouverte { padding-bottom: 40px; }

.pt-decouverte-hero { padding: 48px 0 24px; text-align: left; }
.pt-decouverte-title { font-size: 32px; font-weight: 600; line-height: 1.2; margin: 0 0 12px; }
.pt-decouverte-lead { font-size: 16px; line-height: 1.6; color: var(--pt-muted, #6b6b6b); max-width: 640px; margin: 0; }

.pt-decouverte-section {
    padding: 40px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
}
.pt-decouverte-section h2 { font-size: 24px; font-weight: 600; margin: 0 0 12px; }
.pt-section-lead { font-size: 15px; line-height: 1.6; color: var(--pt-muted, #6b6b6b); max-width: 640px; margin: 0 0 20px; }
.pt-section-note {
    font-size: 13px;
    color: var(--pt-forest, #3D6B56);
    background: rgba(61, 107, 86, 0.08);
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 3px solid var(--pt-forest, #3D6B56);
    margin-top: 20px;
}

.pt-decouverte-section--accent {
    background: rgba(61, 107, 86, 0.05);
    border-left: 4px solid var(--pt-forest, #3D6B56);
}
.pt-decouverte-section--dark {
    background: #1a1a1a;
    color: #fff;
    border: none;
}
.pt-decouverte-section--dark .pt-section-lead { color: rgba(255, 255, 255, 0.75); }
.pt-decouverte-section--dark .pt-section-note {
    color: #9ec8b6;
    background: rgba(158, 200, 182, 0.1);
    border-color: #9ec8b6;
}

.pt-model-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pt-model-step {
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}
.pt-model-step .pt-model-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--pt-forest, #3D6B56);
    letter-spacing: 1px;
}
.pt-model-step h3 { font-size: 16px; margin: 4px 0 6px; }
.pt-model-step p { font-size: 14px; line-height: 1.5; color: var(--pt-muted, #6b6b6b); margin: 0; }
@media (max-width: 720px) { .pt-model-steps { grid-template-columns: 1fr; } }

.pt-guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pt-guarantee {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--pt-forest, #3D6B56);
    border-radius: 8px;
}
.pt-guarantee-icon { font-size: 22px; color: var(--pt-forest, #3D6B56); }
.pt-guarantee h3 { font-size: 15px; color: var(--pt-forest, #3D6B56); margin: 6px 0 4px; }
.pt-guarantee p { font-size: 13px; line-height: 1.5; margin: 0; color: #333; }
@media (max-width: 720px) { .pt-guarantees { grid-template-columns: 1fr; } }

.pt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.pt-stat { text-align: center; }
.pt-stat-value { font-size: 28px; font-weight: 700; color: #9ec8b6; }
.pt-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.75; margin-top: 4px; }
@media (max-width: 540px) { .pt-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.pt-financing-title { font-size: 14px; margin: 28px 0 10px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.pt-financing-list { list-style: none; padding: 0; margin: 0; }
.pt-financing-list li { padding: 8px 0; font-size: 14px; }
.pt-financing-list li::before { content: '✓ '; color: #9ec8b6; font-weight: 700; margin-right: 8px; }

.pt-matches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.pt-match {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pt-match-photo { aspect-ratio: 4/3; background: rgba(0, 0, 0, 0.04); overflow: hidden; }
.pt-match-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-match-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #d4e8b7 0%, #a3c680 100%); }
.pt-match-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.pt-match-header { display: flex; align-items: center; gap: 10px; }
.pt-match-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.pt-match-avatar--placeholder { background: #ccc; }
.pt-match-text { font-size: 14px; line-height: 1.45; margin: 0; }
.pt-match-text strong { color: var(--pt-forest, #3D6B56); }
.pt-match-meta {
    font-size: 12px;
    color: var(--pt-muted, #6b6b6b);
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-top: auto;
}
@media (max-width: 720px) { .pt-matches { grid-template-columns: 1fr; } }

.pt-decouverte-cta { text-align: center; padding: 56px 40px; }
.pt-cta-lead { opacity: 0.8; font-size: 15px; margin-bottom: 24px; color: rgba(255, 255, 255, 0.85); }
.pt-cta-sub { margin-top: 14px; font-size: 13px; opacity: 0.7; }

/* ── Trust footer (bienvenue role picker) ── */
.pt-trust-footer {
    background: var(--pt-fog);
    border-top: 1px solid var(--pt-parchment);
    padding: 20px 24px;
    margin-top: auto;
}
.pt-trust-footer-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    font-size: 0.78rem;
    color: var(--pt-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}
.pt-trust-footer-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pt-mist);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   APERCU PAGE — Task 8 (annonce showcase during onboarding)
   ══════════════════════════════════════════════════════════════ */

/* Outer wrapper */
.pt-apercu {
    padding-block: 48px 80px;
    background: var(--pt-cream);
    min-height: 100vh;
}

/* ── Head ── */
.pt-apercu-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 36px;
}
.pt-apercu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pt-terra);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.pt-apercu-eyebrow-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pt-terra);
    box-shadow: 0 0 0 0 rgba(196, 98, 45, 0.5);
    animation: pt-apercu-pulse 1.8s infinite;
}
@keyframes pt-apercu-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(196, 98, 45, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(196, 98, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 98, 45, 0); }
}
.pt-apercu-title {
    font-family: var(--pt-font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
    text-wrap: balance;
}
.pt-apercu-title-name {
    color: var(--pt-terra);
    font-style: italic;
}
.pt-apercu-sub {
    color: var(--pt-text);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.55;
}
.pt-apercu-sub strong {
    color: var(--pt-ink);
    font-weight: 500;
}

/* ── Grid wrapper + counter ── */
.pt-apercu-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}
.pt-apercu-counter {
    text-align: center;
    margin: 0 0 24px;
    color: var(--pt-muted);
    font-size: 0.88rem;
}
.pt-apercu-counter strong {
    color: var(--pt-terra);
    font-weight: 600;
    font-family: var(--pt-font-display);
    font-size: 1rem;
}

.pt-apercu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: 22px;
}

/* ── Listing card ── */
.pt-apercu-card {
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
}
.pt-apercu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26, 41, 34, 0.10);
}

.pt-apercu-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pt-fog);
}
.pt-apercu-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26, 41, 34, 0.35) 100%);
    pointer-events: none;
}
.pt-apercu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-apercu-card:hover .pt-apercu-card-img {
    transform: scale(1.04);
}
.pt-apercu-card-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--pt-font-display);
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--pt-mist), var(--pt-forest));
}

.pt-apercu-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255, 254, 251, 0.95);
    backdrop-filter: blur(8px);
    color: var(--pt-ink);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pt-apercu-pill svg {
    width: 11px;
    height: 11px;
    color: var(--pt-terra);
}
.pt-apercu-pill--featured {
    background: var(--pt-terra);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.78rem;
}
.pt-apercu-pill--featured svg { color: #fff; }

.pt-apercu-card-kick {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    font-family: var(--pt-font-display);
    font-style: italic;
    font-size: 1.05rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.pt-apercu-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.pt-apercu-card-city {
    font-family: var(--pt-font-display);
    font-size: 1.15rem;
    color: var(--pt-ink);
    font-weight: 500;
    line-height: 1.2;
}
.pt-apercu-card-meta {
    font-size: 0.88rem;
    color: var(--pt-muted);
    line-height: 1.45;
}
.pt-apercu-card-foot {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.pt-apercu-card-verif {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    color: var(--pt-forest);
    font-weight: 600;
    background: rgba(61, 107, 86, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
}
.pt-apercu-card-verif svg { width: 12px; height: 12px; }

/* Featured card — spans 2 cols × 2 rows */
.pt-apercu-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}
.pt-apercu-card--featured .pt-apercu-card-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 340px;
}
.pt-apercu-card--featured .pt-apercu-card-body {
    padding: 22px 26px 24px;
}
.pt-apercu-card--featured .pt-apercu-card-city {
    font-size: 1.55rem;
}

/* ── Final CTA block ── */
.pt-apercu-cta-block {
    text-align: center;
    padding: 44px 24px 28px;
    max-width: 640px;
    margin: 0 auto;
}
.pt-apercu-cta-note {
    color: var(--pt-muted);
    font-size: 0.93rem;
    margin: 0 0 20px;
    line-height: 1.55;
}
.pt-apercu-cta-note strong {
    color: var(--pt-ink);
    font-weight: 500;
}
.pt-apercu-cta-btn {
    background: var(--pt-forest);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-family: var(--pt-font-display);
    font-weight: 500;
    font-size: 1.08rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 24px rgba(61, 107, 86, 0.3);
    text-decoration: none;
}
.pt-apercu-cta-btn:hover,
.pt-apercu-cta-btn:focus-visible {
    background: #2F5644;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(61, 107, 86, 0.4);
    text-decoration: none;
}
.pt-apercu-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}
.pt-apercu-cta-btn:hover svg {
    transform: translateX(4px);
}
.pt-apercu-cta-perks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--pt-muted);
}
.pt-apercu-cta-perks span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pt-apercu-cta-perks svg {
    width: 14px;
    height: 14px;
    color: var(--pt-forest);
}
.pt-apercu-cta-sub {
    font-size: 0.85rem;
    color: var(--pt-muted);
    margin: 14px 0 0;
}

/* ── Empty state — engaging fallback when no listings are available ── */
.pt-apercu-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 64px 32px;
    background: var(--pt-white);
    border-radius: var(--pt-radius-md);
    border: 1px solid var(--pt-parchment);
}
.pt-apercu-empty-state__icon {
    font-size: 56px;
    color: var(--pt-forest);
    opacity: 0.35;
    margin-bottom: 24px;
}
.pt-apercu-empty-state__title {
    font-family: var(--pt-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--pt-ink);
    margin: 0 0 12px;
    max-width: 480px;
}
.pt-apercu-empty-state__text {
    font-size: 15px;
    color: var(--pt-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 420px;
}

/* ── Responsive ── */
@media (max-width: 920px) {
    .pt-apercu-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-apercu-card--featured {
        grid-column: span 2;
        grid-row: auto;
    }
    .pt-apercu-card--featured .pt-apercu-card-media {
        min-height: 260px;
    }
}
@media (max-width: 599px) {
    .pt-apercu { padding-block: 32px 64px; }
    .pt-apercu-head { padding-bottom: 28px; }
    .pt-apercu-wrap { padding: 0 18px; }
    .pt-apercu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pt-apercu-card--featured {
        grid-column: span 1;
    }
    .pt-apercu-card--featured .pt-apercu-card-city {
        font-size: 1.25rem;
    }
    .pt-apercu-card-kick {
        left: 16px;
        bottom: 16px;
        font-size: 0.95rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   TEMOIGNAGES PAGE — Task 10 (social proof during onboarding)
   ══════════════════════════════════════════════════════════════ */

/* Centering wrapper (layered inside .funnel-form-content) */
.temoignages-wrapper {
    max-width: 700px;
    margin-inline: auto;
}

/* ── KPI strip ── */
.temoignages-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.temoignages-kpi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--pt-parchment);
    border-radius: var(--pt-radius-md);
    min-width: 130px;
    text-align: center;
    box-shadow: var(--pt-shadow-xs);
}
.temoignages-kpi__value {
    font-family: var(--pt-font-display);
    font-size: 2.25rem;
    font-optical-sizing: auto;
    font-weight: 700;
    color: var(--pt-forest);
    line-height: 1;
}
.temoignages-kpi__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--pt-muted);
    font-weight: 600;
}

/* ── Testimonial list ── */
.temoignages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 12px;
}

/* ── Individual testimonial card ── */
.temoignage-card {
    background: #fff;
    border-radius: var(--pt-radius-md);
    padding: 24px 28px;
    box-shadow: var(--pt-shadow-sm);
    border: 1px solid var(--pt-parchment);
}
.temoignage-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.temoignage-card__name {
    font-family: var(--pt-font-display);
    font-size: 15px;
    font-optical-sizing: auto;
    font-weight: 700;
    color: var(--pt-ink);
    margin: 0;
}
.temoignage-card__region {
    font-size: 12px;
    color: var(--pt-muted);
    margin: 0;
}
.temoignage-card__text {
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
    color: var(--pt-text);
    margin: 0;
    padding: 0;
    border: none;
}

/* Mobile tweaks */
@media (max-width: 599px) {
    .temoignages-kpi {
        min-width: 110px;
        padding: 16px 16px;
    }
    .temoignages-kpi__value {
        font-size: 1.75rem;
    }
    .temoignage-card {
        padding: 18px 18px;
    }
}

/* ============================================================
   Témoignages — design refondu (étape 4 onboarding homesitter)
   ============================================================ */

.pt-temoignages {
    padding: 48px 0 80px;
    background: var(--pt-cream);
}

.pt-temoignages-header {
    max-width: 720px;
    margin: 0 auto 40px;
}
.pt-temoignages-title {
    font-family: var(--pt-font-display);
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--pt-heading);
    line-height: 1.2;
    margin: 8px 0 12px;
}
.pt-temoignages-lead {
    font-size: 1.0625rem;
    color: var(--pt-muted);
    line-height: 1.55;
    margin: 0;
}

/* Témoignage cards */
.pt-temoignages-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}
@media (max-width: 960px) {
    .pt-temoignages-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .pt-temoignages-list { grid-template-columns: 1fr; gap: 18px; }
}
.pt-temoignage-card {
    background: var(--pt-white);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-md);
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--pt-shadow-xs);
    transition: var(--pt-transition-fast);
    overflow: hidden;
}
.pt-temoignage-card:hover {
    box-shadow: var(--pt-shadow-sm);
    transform: translateY(-2px);
}

.pt-temoignage-card__header {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
}
.pt-temoignage-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pt-font-display);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    box-shadow: var(--pt-shadow-xs);
    flex-shrink: 0;
}
.pt-temoignage-card__avatar--forest { background: linear-gradient(135deg, #2d5a3d 0%, #3e7a54 100%); }
.pt-temoignage-card__avatar--sun    { background: linear-gradient(135deg, #d4a257 0%, #e6b770 100%); }
.pt-temoignage-card__avatar--berry  { background: linear-gradient(135deg, #a34a5c 0%, #c25f75 100%); }
.pt-temoignage-card__avatar--sky    { background: linear-gradient(135deg, #4a7a9a 0%, #6a99b8 100%); }
.pt-temoignage-card__avatar--clay   { background: linear-gradient(135deg, #9a6a4a 0%, #b8845e 100%); }

.pt-temoignage-card__identity {
    min-width: 0;
}
.pt-temoignage-card__name {
    font-family: var(--pt-font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--pt-heading);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pt-temoignage-card__date {
    display: block;
    font-size: 12px;
    color: var(--pt-muted);
    margin-top: 2px;
}

.pt-temoignage-card__rating {
    display: inline-flex;
    gap: 2px;
    font-size: 13px;
    color: var(--pt-fog, #d4d4d4);
}
.pt-temoignage-card__rating .is-filled {
    color: #f5b041;
}

.pt-temoignage-card__text {
    position: relative;
    font-size: 14px;
    font-style: italic;
    line-height: 1.65;
    color: var(--pt-text);
    margin: 0;
    padding: 0 0 0 26px;
    border: none;
}
.pt-temoignage-card__quote-icon {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--pt-forest);
    opacity: 0.25;
    font-size: 18px;
}

/* Cover photo annonce — negative margins match the card's padding so the image
   bleeds cleanly to the border on every side. Card's overflow:hidden clips the
   top corners to the card's border-radius. */
.pt-temoignage-card__cover {
    margin: -24px -24px 16px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pt-cream);
}
.pt-temoignage-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Meta (région + date) — pushed to the bottom so cards align across the row */
.pt-temoignage-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pt-muted);
    margin-top: auto;
    margin-bottom: 4px;
}
.pt-temoignage-card__meta i {
    margin-right: 4px;
    font-size: 11px;
}
.pt-temoignage-card__meta-sep {
    opacity: 0.6;
}

/* Avatars animaux — auto-push to bottom when there's no meta above */
.pt-temoignage-card__pets {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 4px;
    margin-top: auto;
}
.pt-temoignage-card__meta + .pt-temoignage-card__pets {
    margin-top: 0;
}
.pt-temoignage-card__pet-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pt-cream);
    border: 1px solid var(--pt-border);
    color: var(--pt-forest, #2d5a3d);
    font-size: 14px;
    overflow: hidden;
}
.pt-temoignage-card__pet-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pt-temoignage-card__pet-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--pt-cream);
    border: 1px solid var(--pt-border);
    font-size: 12px;
    font-weight: 600;
    color: var(--pt-muted);
}

/* CTA */
.pt-temoignages-cta {
    padding-top: 16px;
}
.pt-temoignages-cta__sub {
    font-size: 13px;
    color: var(--pt-muted);
    margin-top: 12px;
}

/* Responsive cards */
@media (max-width: 599px) {
    .pt-temoignages { padding: 32px 0 72px; }
    .pt-temoignage-card { padding: 20px 18px 18px; }
    .pt-temoignage-card__header {
        grid-template-columns: 44px 1fr auto;
        gap: 10px;
    }
    .pt-temoignage-card__avatar {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .pt-temoignage-card__cover {
        margin: -20px -18px 14px;
    }
}

/* Featured card — first review spans 2 cols on desktop, image+body side-by-side */
.pt-temoignage-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (min-width: 961px) {
    .pt-temoignage-card--featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 0;
        padding: 0;
        overflow: hidden;
    }
    .pt-temoignage-card--featured .pt-temoignage-card__cover {
        margin: 0;
        aspect-ratio: auto;
        height: 100%;
        min-height: 320px;
    }
    .pt-temoignage-card--featured .pt-temoignage-card__body {
        padding: 28px 28px 24px;
        gap: 16px;
    }
    .pt-temoignage-card--featured .pt-temoignage-card__text {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Invite card — "Bientôt votre avis ici" placeholder at end of grid */
.pt-temoignage-card--invite {
    background: repeating-linear-gradient(
        45deg,
        var(--pt-white) 0 10px,
        var(--pt-fog) 10px 20px
    );
    border: 1.5px dashed var(--pt-mist);
    box-shadow: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 26px;
    min-height: 260px;
}
.pt-temoignage-card--invite:hover {
    transform: none;
    box-shadow: none;
}
.pt-invite-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pt-white);
    border: 1px solid var(--pt-border, var(--pt-parchment));
    color: var(--pt-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: var(--pt-shadow-xs);
    font-size: 20px;
}
.pt-invite-title {
    font-family: var(--pt-font-display);
    font-size: 1.1rem;
    color: var(--pt-ink);
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.25;
}
.pt-invite-sub {
    font-size: 0.88rem;
    color: var(--pt-muted);
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

/* CTA emphasis */
.pt-temoignages-cta__sub strong {
    color: var(--pt-ink);
    font-weight: 600;
}

/* ============================================================
   Parcours Garanties — Si→Alors flow + plan grid + CTA + modal
   ============================================================ */

.pt-garanties-page {
    background: var(--pt-cream);
    padding: 56px 0 80px;
    min-height: calc(100vh - 65px);
}
@media (max-width: 760px) {
    .pt-garanties-page { padding: 40px 0 64px; }
}

.pt-garanties-header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}
.pt-garanties-title {
    font-family: var(--pt-font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    color: var(--pt-ink);
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 12px;
}
.pt-garanties-title strong {
    font-weight: 700;
    font-style: italic;
    color: var(--pt-terra);
}
.pt-garanties-sub {
    font-size: 1.02rem;
    color: var(--pt-muted);
    line-height: 1.55;
    margin: 0;
}

.pt-guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 0 0 48px;
}

.pt-guarantee-card {
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: var(--pt-radius-md);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.pt-guarantee-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pt-guarantee-card__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pt-guarantee-card__title {
    font-family: var(--pt-font-display);
    font-size: 1.28rem;
    font-weight: 500;
    color: var(--pt-ink);
    letter-spacing: -0.01em;
    margin: 0;
}

.pt-guarantee-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: stretch;
    background: var(--pt-cream);
    border: 1px solid var(--pt-parchment);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 2px 0 4px;
}
.pt-guarantee-flow__cell {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--pt-text);
}
.pt-guarantee-flow__cell strong {
    display: block;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pt-muted);
    margin-bottom: 3px;
}
.pt-guarantee-flow__arrow {
    display: flex;
    align-items: center;
    color: var(--pt-forest);
    padding: 0 2px;
}
.pt-guarantee-flow__arrow svg {
    width: 18px;
    height: 18px;
}

.pt-guarantee-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--pt-font-display);
    color: var(--pt-terra);
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: -2px;
}
.pt-guarantee-highlight .unit {
    font-size: 0.8rem;
    color: var(--pt-muted);
    font-weight: 500;
    font-family: var(--pt-font-ui);
}

.pt-guarantee-card__link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--pt-muted);
    text-decoration: none;
    margin-top: auto;
    padding-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.pt-guarantee-card__link:hover {
    color: var(--pt-terra);
    text-decoration: none;
}
.pt-guarantee-card__link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}
.pt-guarantee-card__link:hover i { transform: translateX(2px); }

/* Plans section ------------------------------------------------ */
.pt-plans-form { margin: 0; }

.pt-plans-section { margin-bottom: 28px; }

.pt-plans-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.pt-plans-header h2 {
    font-family: var(--pt-font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--pt-ink);
    margin: 0;
    letter-spacing: -0.01em;
}
.pt-plans-note {
    font-size: 0.86rem;
    color: var(--pt-muted);
}

.pt-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 880px) {
    .pt-plans-grid { grid-template-columns: 1fr; }
}

.pt-plan {
    position: relative;
    background: var(--pt-white);
    border: 1.5px solid var(--pt-parchment);
    border-radius: var(--pt-radius-md);
    padding: 22px 22px 20px;
    cursor: pointer;
    transition: border-color var(--pt-transition-base),
                box-shadow var(--pt-transition-base),
                transform var(--pt-transition-base);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}
.pt-plan:hover { border-color: var(--pt-mist); }
.pt-plan input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pt-plan.selected {
    border-color: var(--pt-forest);
    box-shadow: 0 6px 24px rgba(61, 107, 86, 0.14);
}
.pt-plan--recommended { border-color: var(--pt-mist); }
.pt-plan--premium { border-color: var(--pt-terra-pale); }

.pt-plan__ribbon {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--pt-forest);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}
.pt-plan__ribbon--premium { background: var(--pt-terra); }

.pt-plan__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.pt-plan__name-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pt-plan__name {
    font-family: var(--pt-font-display);
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--pt-ink);
    line-height: 1.1;
}
.pt-plan__tagline {
    font-size: 0.82rem;
    color: var(--pt-muted);
}
.pt-plan__radio {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--pt-parchment);
    background: #fff;
    position: relative;
    transition: all var(--pt-transition-fast);
}
.pt-plan.selected .pt-plan__radio {
    border-color: var(--pt-forest);
    background: var(--pt-forest);
}
.pt-plan.selected .pt-plan__radio::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
}

.pt-plan__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.pt-plan__price-amount {
    font-family: var(--pt-font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--pt-ink);
    letter-spacing: -0.02em;
    line-height: 1;
}
.pt-plan__price-unit {
    font-size: 0.86rem;
    color: var(--pt-muted);
}

.pt-plan__divider {
    height: 1px;
    background: var(--pt-parchment);
    margin: 2px -22px;
}

.pt-plan__feats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.pt-plan__feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--pt-text);
    line-height: 1.4;
}
.pt-plan__feat strong { font-weight: 600; color: var(--pt-ink); }
.pt-plan__feat-ico {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
}
.pt-plan__feat--check .pt-plan__feat-ico {
    background: rgba(61, 107, 86, 0.12);
    color: var(--pt-forest);
}
.pt-plan__feat--exclusive .pt-plan__feat-ico {
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
}

.pt-plan__essentiel-note {
    font-size: 0.78rem;
    color: var(--pt-muted);
    background: var(--pt-fog);
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.45;
    margin-top: 4px;
}
.pt-plan__essentiel-note strong {
    font-weight: 600;
    color: var(--pt-ink);
}

/* Payment reassurance ----------------------------------------- */
.pt-payment-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 18px;
    margin: 28px 0 18px;
    padding: 0 4px;
}
.pt-pay-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--pt-muted);
}
.pt-pay-item i {
    font-size: 12px;
    color: var(--pt-forest);
}
.pt-pay-sep {
    width: 3px;
    height: 3px;
    background: var(--pt-muted);
    border-radius: 50%;
    opacity: 0.45;
}
@media (max-width: 600px) {
    .pt-pay-sep { display: none; }
}

/* CTA summary block ------------------------------------------- */
.pt-cta-summary {
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: var(--pt-radius-md);
    padding: 24px 28px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    box-shadow: var(--pt-shadow-xs);
}
.pt-cta-summary__label {
    font-size: 0.95rem;
    color: var(--pt-muted);
    margin: 0;
}
.pt-cta-summary__label strong {
    color: var(--pt-ink);
    font-weight: 600;
}
.pt-cta-summary__price {
    font-family: var(--pt-font-display);
    color: var(--pt-terra);
    font-weight: 600;
}

.pt-btn-lock i {
    font-size: 14px;
}

/* Footnote ----------------------------------------------------- */
.pt-charter-footnote {
    font-size: 0.78rem;
    color: var(--pt-muted);
    text-align: center;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.pt-charter-footnote a {
    color: var(--pt-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pt-charter-footnote a:hover { color: var(--pt-terra); }

/* Desktop/mobile CTA visibility ------------------------------- */
@media (max-width: 767.98px) {
    .pt-desktop-cta { display: none; }
}

/* Responsive — stack cards + tighten spacing on mobile */
@media (max-width: 760px) {
    .pt-guarantee-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 0 0 36px;
    }

    .pt-guarantee-card {
        padding: 20px;
    }

    .pt-guarantee-card__title {
        font-size: 1.15rem;
    }

    .pt-cta-summary {
        padding: 22px 18px;
    }

    .pt-charter-footnote {
        font-size: 0.72rem;
        gap: 6px;
    }
}

/* ============================================================
   Parcours Profil — two-column layout with progress sidebar
   Used only by templates/v4/client_area/parcours/profil.html.twig
   ============================================================ */
.pt-profil-page {
    background: var(--pt-cream);
    min-height: calc(100vh - 65px);
    padding: 56px 0 120px;
}
.pt-profil-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    align-items: start;
}
.pt-profil-side {
    position: sticky;
    top: 89px;
    padding-right: 48px;
    border-right: 1px solid var(--pt-parchment);
}
.pt-profil-side-title {
    font-family: var(--pt-font-display);
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--pt-ink);
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 12px;
    text-wrap: balance;
}
.pt-profil-side-lead {
    color: var(--pt-text);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 26px;
}
.pt-profil-why {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: var(--pt-radius-md);
    margin-bottom: 22px;
}
.pt-profil-why-ico {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pt-profil-why h3 {
    font-family: var(--pt-font-ui);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--pt-ink);
    margin: 0 0 3px;
}
.pt-profil-why p {
    font-size: 0.86rem;
    color: var(--pt-muted);
    line-height: 1.5;
    margin: 0;
}
.pt-profil-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--pt-muted);
}
.pt-profil-progress-count {
    font-weight: 600;
    color: var(--pt-forest);
    font-variant-numeric: tabular-nums;
}
.pt-profil-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--pt-parchment);
    border-radius: 2px;
    overflow: hidden;
}
.pt-profil-progress-fill {
    height: 100%;
    width: 0;
    background: var(--pt-forest);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pt-profil-form-col {
    padding-left: 48px;
}

/* Individual question cards (variant for profil only) */
.pt-profil-q {
    background: var(--pt-white);
    border: 1px solid var(--pt-parchment);
    border-radius: 16px;
    padding: 24px 26px;
    margin-bottom: 18px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}
.pt-profil-q.completed {
    border-color: var(--pt-mist);
    box-shadow: 0 4px 16px rgba(61, 107, 86, 0.06);
}
.pt-profil-q-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.pt-profil-q-num {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--pt-fog);
    color: var(--pt-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pt-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s ease, color 0.25s ease;
}
.pt-profil-q.completed .pt-profil-q-num {
    background: var(--pt-forest);
    color: #fff;
}
.pt-profil-q-num .pt-profil-q-n { display: inline; }
.pt-profil-q-num .pt-profil-q-chk { display: none; }
.pt-profil-q.completed .pt-profil-q-num .pt-profil-q-n { display: none; }
.pt-profil-q.completed .pt-profil-q-num .pt-profil-q-chk { display: inline-flex; }
.pt-profil-q-title {
    font-family: var(--pt-font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--pt-ink);
    line-height: 1.25;
    margin: 0 0 3px;
}
.pt-profil-q-sub {
    font-size: 0.83rem;
    color: var(--pt-muted);
    margin: 0;
}

/* Sticky CTA bar at bottom of form column (desktop) */
.pt-profil-cta-bar {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(250, 248, 244, 0) 0%, var(--pt-cream) 35%);
    padding: 36px 0 28px;
    margin-top: 12px;
    text-align: center;
    z-index: 10;
}
.pt-profil-cta {
    background: var(--pt-forest);
    color: #fff;
    border: none;
    padding: 1rem 2.4rem;
    border-radius: var(--pt-radius-pill);
    font-family: var(--pt-font-display);
    font-weight: 500;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 8px 24px rgba(61, 107, 86, 0.25);
}
.pt-profil-cta:hover:not(:disabled) {
    background: #2F5644;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(61, 107, 86, 0.35);
    color: #fff;
}
.pt-profil-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}
.pt-profil-cta i {
    transition: transform 0.2s ease;
}
.pt-profil-cta:hover:not(:disabled) i {
    transform: translateX(4px);
}
.pt-profil-cta-hint {
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: var(--pt-muted);
}

/* Stagger fade-in */
.pt-profil-q {
    animation: pt-profil-q-up 0.4s both;
}
.pt-profil-q:nth-child(1) { animation-delay: 0.05s; }
.pt-profil-q:nth-child(2) { animation-delay: 0.10s; }
.pt-profil-q:nth-child(3) { animation-delay: 0.15s; }
@keyframes pt-profil-q-up {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

/* Responsive: collapse sidebar above form */
@media (max-width: 940px) {
    .pt-profil-page {
        padding: 36px 0 120px;
    }
    .pt-profil-layout {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .pt-profil-side {
        position: static;
        padding: 0 0 28px;
        border-right: none;
        border-bottom: 1px solid var(--pt-parchment);
        margin-bottom: 28px;
    }
    .pt-profil-form-col {
        padding-left: 0;
    }
}
@media (max-width: 639px) {
    .pt-profil-q {
        padding: 20px 18px;
    }
    .pt-profil-cta-bar {
        padding: 24px 0 16px;
    }
    .pt-profil-cta {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}
