/* ══════════════════════════════════════════════════════════════
   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-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: Choice Cards ---- */
.pt-choices {
    padding: 40px 0;
    background: var(--pt-white);
}
.pt-choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}
.pt-choices-grid > form {
    display: flex;
}
.pt-choice-card {
    width: 100%;
    height: 100%;
    background: var(--pt-white);
    border: 1.5px solid var(--pt-parchment);
    border-radius: var(--pt-radius-lg);
    padding: 28px 24px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color var(--pt-transition-base),
                box-shadow var(--pt-transition-base),
                transform var(--pt-transition-base),
                background var(--pt-transition-base);
    box-shadow: var(--pt-shadow-xs);
}
.pt-choice-card:hover {
    border-color: var(--pt-forest);
    box-shadow: var(--pt-shadow-md);
    transform: translateY(-2px);
    background: var(--pt-cream);
}
.pt-choice-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.pt-choice-emblem {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--pt-fog);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pt-forest);
    font-size: 20px;
    flex-shrink: 0;
    transition: background var(--pt-transition-base),
                transform var(--pt-transition-base);
}
.pt-choice-card:hover .pt-choice-emblem {
    transform: scale(1.06);
}
.pt-choice-emblem--terra {
    background: var(--pt-terra-pale);
    color: var(--pt-terra);
}
.pt-choice-content {
    flex: 1;
    min-width: 0;
}
.pt-choice-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pt-forest);
    margin-bottom: 8px;
}
.pt-choice-tag--terra {
    color: var(--pt-terra);
}
.pt-choice-title {
    font-family: var(--pt-font-display);
    font-size: 22px;
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--pt-ink);
    margin: 0 0 8px;
    line-height: 1.2;
}
.pt-choice-desc {
    font-size: 14px;
    color: var(--pt-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.pt-choice-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-forest);
}
.pt-choice-arrow {
    color: var(--pt-muted);
    font-size: 16px;
    padding-top: 16px;
    flex-shrink: 0;
    transition: transform var(--pt-transition-base),
                color var(--pt-transition-base);
}
.pt-choice-card:hover .pt-choice-arrow {
    transform: translateX(4px);
    color: var(--pt-forest);
}

/* ---- 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-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;
}

/* ---- 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;
}
.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 Grid (mini_annonce) ---- */
.pt-animal-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pt-animal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--pt-fog);
}
.pt-animal-row:last-child { border-bottom: none; }
.pt-animal-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pt-text);
}
.pt-animal-label i {
    color: var(--pt-muted);
    font-size: 15px;
    width: 20px;
    text-align: center;
}
.pt-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--pt-parchment);
    border-radius: var(--pt-radius-sm);
    background: var(--pt-white);
    overflow: hidden;
    transition: border-color var(--pt-transition-fast),
                box-shadow var(--pt-transition-fast);
}
.pt-stepper:focus-within {
    border-color: var(--pt-forest);
    box-shadow: var(--pt-shadow-focus);
}
.pt-stepper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--pt-sage);
    font-size: 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--pt-transition-fast),
                color var(--pt-transition-fast);
    -webkit-tap-highlight-color: transparent;
}
.pt-stepper-btn:hover {
    background: var(--pt-fog);
    color: var(--pt-forest);
}
.pt-stepper-btn:active {
    background: var(--pt-parchment);
}
.pt-animal-input,
.pt-animal-input.form-control {
    display: block;
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--pt-parchment);
    border-right: 1px solid var(--pt-parchment);
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pt-ink);
    background: transparent;
    padding: 8px 0;
    box-shadow: none;
    -moz-appearance: textfield;
}
.pt-animal-input::-webkit-inner-spin-button,
.pt-animal-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.pt-animal-input:focus,
.pt-animal-input.form-control:focus {
    outline: none;
    border-color: transparent;
    border-left: 1px solid var(--pt-parchment);
    border-right: 1px solid var(--pt-parchment);
    box-shadow: none;
}

/* ---- 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 ---- */

/* Stage */
.pt-welcome {
    background: var(--pt-cream);
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 80px;
}
.pt-welcome-stage {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

/* ── Animated SVG checkmark ── */
.pt-welcome-check {
    width: 88px;
    height: 88px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 16px rgba(61, 107, 86, 0.18));
}
.pt-welcome-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.pt-welcome-ring {
    fill: none;
    stroke: var(--pt-forest);
    stroke-width: 2.4;
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: welcome-ring 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}
.pt-welcome-tick {
    fill: none;
    stroke: var(--pt-forest);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: welcome-tick 0.45s cubic-bezier(0.65, 0, 0.35, 1) 0.85s forwards;
}
@keyframes welcome-ring {
    to { stroke-dashoffset: 0; }
}
@keyframes welcome-tick {
    to { stroke-dashoffset: 0; }
}

/* ── Title + lead ── */
.pt-welcome-title {
    font-family: var(--pt-font-display);
    font-size: clamp(30px, 5.5vw, 42px);
    font-weight: 600;
    font-style: normal;
    color: var(--pt-ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    opacity: 0;
    animation: welcome-up 0.55s ease 1.05s forwards;
}
.pt-welcome-title em {
    font-style: italic;
    color: var(--pt-forest);
}
.pt-welcome-lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--pt-muted);
    max-width: 380px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: welcome-up 0.55s ease 1.2s forwards;
}

/* ── Onboarding timeline ── */
.pt-welcome-timeline {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    opacity: 0;
    animation: welcome-up 0.55s ease 1.35s forwards;
}
/* vertical connector */
.pt-welcome-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 10px;
    width: 1.5px;
    background: var(--pt-parchment);
}
.pt-welcome-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}
.pt-welcome-bullet {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all var(--pt-transition-base);
    background: var(--pt-fog);
    color: var(--pt-muted);
    border: 1.5px solid var(--pt-parchment);
}
.pt-welcome-step.is-done .pt-welcome-bullet {
    background: var(--pt-forest);
    color: #fff;
    border-color: var(--pt-forest);
    box-shadow: 0 2px 8px rgba(61, 107, 86, 0.25);
}
.pt-welcome-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--pt-text);
}
.pt-welcome-step.is-done .pt-welcome-label {
    color: var(--pt-forest);
    font-weight: 600;
}

/* ── CTA ── */
.pt-welcome-action {
    opacity: 0;
    animation: welcome-up 0.55s ease 1.5s forwards;
}
.pt-welcome-action .pt-btn-primary {
    animation: welcome-pulse 2s ease 2.8s 2;
}
@keyframes welcome-pulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(61, 107, 86, 0.25); }
    50%      { box-shadow: 0 4px 24px rgba(61, 107, 86, 0.40); }
}

/* shared fade-up */
@keyframes welcome-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Confetti ── */
.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); }
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
    .pt-welcome { padding: 32px 0 64px; min-height: 100dvh; }
    .pt-welcome-check { width: 68px; height: 68px; margin-bottom: 24px; }
    .pt-welcome-lead { font-size: 15px; }
    .pt-welcome-timeline { max-width: 100%; padding: 0 4px; }
    .pt-welcome-action .pt-btn-primary { width: 100%; }
}

/* ---- 24. Responsive ---- */
@media (max-width: 639px) {
    .pt-choices-grid { grid-template-columns: 1fr; gap: 12px; }
    .pt-choice-card { padding: 20px 18px; }
    .pt-choice-emblem { width: 44px; height: 44px; font-size: 18px; }
    .pt-choice-title { font-size: 19px; }
    .pt-choice-desc { font-size: 13px; margin-bottom: 8px; }
    .pt-choice-card-inner { gap: 14px; }
    .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;
}

