/* ======== STICKY NAV INTERNE ======== */
.tarifs-sticky-nav {
    position: sticky;
    top: 64px;
    /* nav mobile h-16 */
    z-index: 48;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tarifs-sticky-nav::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .tarifs-sticky-nav {
        top: 80px;
    }
}

.tarifs-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    max-width: 80rem;
    margin: 0 auto;
    gap: 4px;
}

@media (min-width: 1280px) {
    .tarifs-nav-inner {
        padding: 0 40px;
    }
}

.tarifs-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--ink-light);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color .25s ease;
}

.tarifs-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.tarifs-nav-link:hover {
    color: var(--ink);
}

.tarifs-nav-link:hover::after {
    transform: scaleX(1);
}

.tarifs-nav-link.active {
    color: var(--navy);
    font-weight: 600;
}

.tarifs-nav-link.active::after {
    transform: scaleX(1);
}

.tarifs-nav-select {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--cream-soft);
    border-radius: 3px;
    padding: 8px 12px;
    width: 100%;
    max-width: 260px;
}

/* ======== GUIDE DE CHOIX ======== */
.choice-guide {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-left: 3px solid var(--navy);
    border-radius: 0 4px 4px 0;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.choice-guide h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
}

.plan-table th,
.plan-table td {
    padding: 6px 0;
    font-size: .9rem;
    vertical-align: top;
}

.plan-table th {
    font-weight: 600;
    color: var(--navy);
    width: 130px;
    font-family: 'Inter', sans-serif;
}

.plan-table td.arrow {
    color: var(--coral);
    padding: 6px 10px;
    width: 20px;
}

.plan-table td:last-child {
    color: var(--ink-light);
}

.hesitation {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .875rem;
    color: var(--ink-light);
}

.hesitation a {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--coral);
    border: 1px solid var(--coral);
    padding: 7px 16px;
    border-radius: 2px;
    transition: background .25s, color .25s;
}

.hesitation a:hover {
    background: var(--coral);
    color: white;
}

/* ======== PRICING CARDS ======== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.pricing-card {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(23, 26, 33, .08);
}

.recommended-card {
    border-color: var(--navy);
    border-width: 2px;
}

.recommended-badge {
    background: var(--navy);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 14px;
    text-align: center;
    border-radius: 4px 4px 0 0;
}

.pricing-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 12px;
}

.price-intro {
    font-size: .78rem;
    color: var(--ink-light);
    margin-bottom: 4px;
}

.price-container {
    margin-bottom: 20px;
}

.bloc-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-big {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    color: var(--navy);
}

.price-period {
    font-size: .82rem;
    color: var(--ink-light);
}

.formule-precedente {
    font-size: .78rem;
    color: var(--ink-light);
    margin-top: 4px;
}

.formule-precedente span {
    font-weight: 600;
    color: var(--navy);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .875rem;
    line-height: 1.45;
    color: var(--ink-light);
}

.feature-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--navy);
    margin-top: 1px;
}

.feature-item.option svg {
    color: var(--coral);
}

.details-accord summary,
.options-accord summary {
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-light);
    cursor: pointer;
    padding: 8px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    transition: color .2s;
}

.details-accord summary::-webkit-details-marker,
.options-accord summary::-webkit-details-marker {
    display: none;
}

.details-accord summary::after,
.options-accord summary::after {
    content: "\203A";
    display: inline-block;
    margin-left: auto;
    font: inherit;
    font-weight: 400;
    line-height: 1;
    color: currentColor;
    transform: rotate(90deg);
    transition: transform .25s ease;
}

.details-accord summary:hover,
.options-accord summary:hover {
    color: var(--navy);
}

.details-accord[open] summary,
.options-accord[open] summary {
    color: var(--navy);
}

.details-accord[open] summary::after,
.options-accord[open] summary::after {
    transform: rotate(-90deg);
}

.features-list.extras {
    margin-top: 10px;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.extension-devis {
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--coral);
    margin: 16px 0 0;
}

.card-footer {
    padding: 20px 28px 28px;
}

.btn-card-primary {
    display: block;
    text-align: center;
    background: var(--navy);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 2px;
    transition: background .25s;
}

.btn-card-primary:hover {
    background: var(--navy-deep);
}

.btn-card-secondary {
    display: block;
    text-align: center;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 2px;
    transition: background .25s, color .25s;
}

.btn-card-secondary:hover {
    background: var(--navy);
    color: white;
}

.btn-card-coral {
    display: block;
    text-align: center;
    background: var(--coral);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 2px;
    transition: background .25s;
}

.btn-card-coral:hover {
    background: var(--coral-dark);
}

/* Notes tarifaires */
.pricing-notes {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-note {
    font-size: .8rem;
    color: var(--ink-light);
}

/* Micro-rassurances */
.micro-reassurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 32px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--ink-light);
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 8px 14px;
}

.reassurance-item svg {
    width: 18px;
    height: 18px;
    color: var(--coral);
    flex-shrink: 0;
}

/* Bloc abonnement technique obligatoire */
.subscription-notice {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-left: 3px solid var(--coral);
    border-radius: 0 4px 4px 0;
    padding: 28px 32px;
    margin-top: 40px;
}

.subscription-notice h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.subscription-notice p {
    font-size: .9rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ======== SECTION LOCATION — TABLEAU ======== */
.plan-switcher {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .plan-switcher {
        display: none;
    }
}

.plan-switcher button {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--cream-soft);
    color: var(--ink-light);
    cursor: pointer;
    transition: all .2s;
}

.plan-switcher button.is-active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.plan-switcher button:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.lease-table-wrapper {
    overflow-x: auto;
}

.lease-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.lease-table th,
.lease-table td {
    padding: 12px 16px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.lease-table thead th {
    background: var(--cream-warm);
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.lease-table thead th.is-reco {
    background: var(--navy);
    color: white;
}

.lease-table thead th.is-na {
    background: var(--cream-warm);
    color: var(--ink-light);
}

.lease-table tbody th {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--ink);
    background: var(--cream-soft);
    font-size: .85rem;
    width: 35%;
}

.lease-table tbody td {
    color: var(--ink-light);
    background: white;
}

.lease-table .na {
    color: var(--ink-light);
    text-align: center;
    font-style: italic;
    background: var(--cream-warm);
}

.lease-table .price {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
}

.lease-table small.sub {
    display: block;
    font-size: .75rem;
    color: var(--ink-light);
    margin-top: 2px;
}

.lease-table .muted {
    color: var(--ink-light);
    font-size: .8em;
}

.lease-table tr:hover td,
.lease-table tr:hover th {
    background: var(--cream-soft);
}

/* Switcher mobile colonnes */
@media (max-width: 767px) {
    .lease-table .col-plan {
        display: none;
    }

    .lease-table-wrapper.show-col-2 .col-plan:nth-child(2) {
        display: table-cell;
    }

    .lease-table-wrapper.show-col-3 .col-plan:nth-child(3) {
        display: table-cell;
    }
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

.btn-outline-navy {
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px 20px;
    border: 1px solid var(--navy);
    color: var(--navy);
    border-radius: 2px;
    transition: background .25s, color .25s;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: white;
}

.btn-outline-ink {
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px 20px;
    border: 1px solid var(--line);
    color: var(--ink-light);
    border-radius: 2px;
    transition: border-color .25s, color .25s;
}

.btn-outline-ink:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.lease-notes {
    margin-top: 28px;
}

.lease-terms {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lease-terms li {
    font-size: .875rem;
    color: var(--ink-light);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.lease-terms li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-size: 1.2rem;
    top: -1px;
}

/* ======== INCLUS / EXCLUSIONS ======== */
.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .inclusion-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.inclusion-card {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    padding: 28px;
}

.inclusion-card.card-included {
    border-top: 2px solid var(--navy);
}

.inclusion-card.card-excluded {
    border-top: 2px solid #9CA3AF;
}

.inclusion-title {
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.inclusion-title.t-included {
    color: var(--navy);
}

.inclusion-title.t-excluded {
    color: var(--ink-light);
}

.inclusion-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .875rem;
    color: var(--ink-light);
    line-height: 1.45;
}

.inclusion-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.inclusion-dot.d-included {
    background: var(--navy);
}

.inclusion-dot.d-excluded {
    background: #9CA3AF;
}

.p-excluded {
    font-size: .82rem;
    color: var(--ink-light);
    margin-top: 18px;
    font-style: italic;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

/* ======== COMPARATIF ======== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.comparison-table th,
.comparison-table td {
    padding: 13px 18px;
    border: 1px solid var(--line);
    vertical-align: top;
}

.comparison-table colgroup .col-feature {
    width: 38%;
}

.comparison-table colgroup .col-lease {
    background: rgba(30, 58, 95, .03);
}

.comparison-table thead th {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: var(--cream-warm);
    color: var(--ink-light);
}

.comparison-table thead th.is-highlight {
    background: var(--navy);
    color: white;
}

.comparison-table tbody th {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--ink);
    background: var(--cream-soft);
    font-size: .85rem;
}

.comparison-table tbody td {
    color: var(--ink-light);
    background: white;
}

.comparison-table tbody td.table-positive {
    background: rgba(30, 58, 95, .04);
    color: var(--ink);
}

.comparison-table tbody tr:hover td,
.comparison-table tbody tr:hover th {
    background: var(--cream-soft);
}

/* Profils comparatif */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.profile-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px 18px;
}

.profile-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--ink);
}

.profile-card p {
    font-size: .82rem;
    color: var(--ink-light);
    margin-bottom: 6px;
    line-height: 1.4;
}

.profile-recommendation {
    font-weight: 700;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
}

.profile-link {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--coral);
    border-bottom: 1px solid var(--coral);
    transition: color .2s;
}

.profile-link:hover {
    color: var(--coral-dark);
}

.profiles-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding: 18px 20px;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: .875rem;
    color: var(--ink-light);
    text-align: center;
}

/* ======== FAQ ======== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    cursor: pointer;
    background: var(--cream-soft);
    transition: background .2s;
}

.faq-question:hover {
    background: var(--cream-warm);
}

.faq-item.active .faq-question {
    background: var(--cream-warm);
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--coral);
    transition: transform .3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 16px 24px 20px;
    font-size: .875rem;
    color: var(--ink-light);
    line-height: 1.7;
    margin: 0;
}

/* ======== CTA FINAL — ACCENT ======== */
.cta-accent {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.4;
    color: rgba(242, 239, 232, .6);
    margin: 8px 0 32px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: .82rem;
    color: rgba(242, 239, 232, .55);
}

.payment-methods svg {
    color: var(--coral);
}