/* Tikehub — Pages contenu (FAQ, Comment ça marche, Blog) */
.th-page {
    --th-shadow: 0 2px 12px rgba(26, 43, 72, 0.06);
    --th-shadow-hover: 0 12px 32px rgba(26, 43, 72, 0.12);
    --th-radius-lg: 16px;
    --th-listing-accent: var(--th-orange);
    --th-listing-accent-hover: var(--th-orange-hover);
    --th-listing-accent-light: var(--th-orange-light);
    --th-listing-accent-ring: rgba(242, 145, 36, 0.15);
    --th-listing-accent-shadow: rgba(242, 145, 36, 0.35);
    background: var(--th-bg);
    min-height: calc(100vh - 80px);
    padding-bottom: 3rem;
}

.th-page-body {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem 0;
}

.th-page-body--narrow {
    max-width: 48rem;
}

@media (min-width: 640px) {
    .th-page-body {
        padding: 2.5rem 1.5rem 0;
    }
}

@media (min-width: 1024px) {
    .th-page-body {
        padding: 3rem 2rem 0;
    }
}

/* Hero (réutilise classes listing) */
.th-page .th-listing-hero::after {
    background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(242, 145, 36, 0.2), transparent 55%);
}

.th-page .th-listing-hero__badge {
    background: rgba(242, 145, 36, 0.92);
}

/* ——— FAQ ——— */
.th-faq-category {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--th-navy);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--th-orange);
    letter-spacing: -0.02em;
}

.th-faq-category:first-child {
    margin-top: 0;
}

.th-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.th-faq-item {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius);
    overflow: hidden;
    box-shadow: var(--th-shadow);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.th-faq-item.is-open {
    border-color: var(--th-orange);
    box-shadow: var(--th-shadow-hover);
}

.th-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--th-navy);
    transition: color 0.2s;
}

.th-faq-item__question:hover {
    color: var(--th-orange);
}

.th-faq-item__question i {
    flex-shrink: 0;
    color: var(--th-orange);
    transition: transform 0.25s ease;
}

.th-faq-item.is-open .th-faq-item__question i {
    transform: rotate(180deg);
}

.th-faq-item__answer {
    display: none;
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--th-text-muted);
}

.th-faq-item.is-open .th-faq-item__answer {
    display: block;
}

.th-page-cta {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--th-orange-light);
    border: 1px solid rgba(242, 145, 36, 0.25);
    border-radius: var(--th-radius-lg);
}

.th-page-cta__title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--th-navy);
    margin-bottom: 0.5rem;
}

.th-page-cta__text {
    color: var(--th-text-muted);
    margin-bottom: 1.25rem;
}

.th-page-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #fff;
    background: var(--th-orange);
    text-decoration: none;
    box-shadow: 0 4px 14px var(--th-listing-accent-shadow);
    transition: background 0.2s, transform 0.2s;
}

.th-page-cta__btn:hover {
    background: var(--th-orange-hover);
    color: #fff;
    transform: translateY(-1px);
}

.th-page-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--th-surface);
    border: 1px dashed var(--th-border);
    border-radius: var(--th-radius-lg);
}

.th-page-empty__icon {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.th-page-empty__text {
    color: var(--th-text-muted);
    font-size: 1.0625rem;
}

/* ——— Onglets (Comment ça marche) ——— */
.th-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.th-tabs__nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.35rem;
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: 9999px;
    box-shadow: var(--th-shadow);
}

.th-tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.15rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--th-text-muted);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}

.th-tabs__btn:hover {
    color: var(--th-navy);
    background: var(--th-bg);
}

.th-tabs__btn.is-active {
    color: #fff;
    background: var(--th-orange);
    box-shadow: 0 2px 10px rgba(242, 145, 36, 0.35);
}

.th-tabs__panel {
    display: none;
}

.th-tabs__panel.is-active {
    display: block;
}

.th-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .th-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .th-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.th-step-card {
    background: var(--th-surface);
    border-radius: var(--th-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--th-border);
    border-left: 4px solid var(--th-orange);
    box-shadow: var(--th-shadow);
    transition: box-shadow 0.25s, transform 0.25s;
}

.th-step-card:hover {
    box-shadow: var(--th-shadow-hover);
    transform: translateY(-3px);
}

.th-step-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.th-step-card__num {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--th-orange);
    background: var(--th-orange-light);
    transition: background 0.2s, color 0.2s;
}

.th-step-card:hover .th-step-card__num {
    background: var(--th-orange);
    color: #fff;
}

.th-step-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--th-navy);
    line-height: 1.3;
    margin: 0;
}

.th-step-card__desc {
    font-size: 0.9375rem;
    color: var(--th-text-muted);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.th-step-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--th-text-muted);
}

.th-step-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.th-step-card__list i {
    color: var(--th-orange);
    margin-top: 0.15rem;
}

.th-page-actions {
    margin-top: 3rem;
    text-align: center;
}

.th-page-actions__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--th-navy);
    margin-bottom: 1.25rem;
}

.th-page-actions__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 640px) {
    .th-page-actions__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.th-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: var(--th-orange);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--th-listing-accent-shadow);
    transition: background 0.2s, transform 0.2s;
    min-height: 44px;
}

.th-btn-primary:hover {
    background: var(--th-orange-hover);
    color: #fff;
    transform: translateY(-1px);
}

.th-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--th-navy);
    background: var(--th-surface);
    text-decoration: none;
    border: 2px solid var(--th-navy);
    transition: all 0.2s;
    min-height: 44px;
}

.th-btn-outline:hover {
    border-color: var(--th-orange);
    color: var(--th-orange);
    background: var(--th-orange-light);
}

/* ——— Blog ——— */
.th-blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.th-blog-main {
    min-width: 0;
}

@media (min-width: 1024px) {
    .th-blog-layout {
        grid-template-columns: 16rem 1fr;
        gap: 2rem;
        align-items: start;
    }
}

.th-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .th-blog-sidebar {
        position: sticky;
        top: 6rem;
    }
}

.th-blog-panel {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--th-shadow);
}

.th-blog-panel__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--th-navy);
    margin-bottom: 0.85rem;
}

.th-blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.th-blog-categories li + li {
    margin-top: 0.25rem;
}

.th-blog-categories a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--th-text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.th-blog-categories a:hover,
.th-blog-categories a.is-active {
    background: var(--th-orange-light);
    color: var(--th-orange-hover);
}

.th-blog-categories__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.th-blog-featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.th-blog-featured__item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.th-blog-featured__item img {
    width: 100%;
    height: 7rem;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: opacity 0.2s;
}

.th-blog-featured__item:hover img {
    opacity: 0.88;
}

.th-blog-featured__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--th-navy);
    margin-bottom: 0.2rem;
    transition: color 0.2s;
}

.th-blog-featured__item:hover .th-blog-featured__title {
    color: var(--th-orange);
}

.th-blog-featured__meta {
    font-size: 0.75rem;
    color: var(--th-text-muted);
}

.th-blog-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.th-blog-search__input {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid var(--th-border);
    border-radius: 10px;
    background: var(--th-surface);
    min-height: 44px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.th-blog-search__input:focus {
    outline: none;
    border-color: var(--th-orange);
    box-shadow: 0 0 0 3px var(--th-listing-accent-ring);
}

.th-blog-search__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.15rem;
    border: none;
    border-radius: 10px;
    background: var(--th-orange);
    color: #fff;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    transition: background 0.2s;
}

.th-blog-search__btn:hover {
    background: var(--th-orange-hover);
}

.th-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .th-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.th-blog-card {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    overflow: hidden;
    box-shadow: var(--th-shadow);
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.th-blog-card:hover {
    box-shadow: var(--th-shadow-hover);
    transform: translateY(-3px);
}

.th-blog-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.th-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.th-blog-card:hover .th-blog-card__media img {
    transform: scale(1.03);
}

.th-blog-card__body {
    padding: 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.th-blog-card__category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.th-blog-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--th-navy);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.th-blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.th-blog-card__title a:hover {
    color: var(--th-orange);
}

.th-blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--th-text-muted);
    line-height: 1.55;
    margin-bottom: 0.85rem;
    flex: 1;
}

.th-blog-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--th-text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--th-border);
}

.th-blog-card__footer i {
    color: var(--th-orange);
}

.th-blog-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.th-blog-pagination nav {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius);
    box-shadow: var(--th-shadow);
    padding: 0.5rem 0.75rem;
}

.th-blog-pagination span[aria-current="page"] span {
    background: var(--th-orange) !important;
    border-color: var(--th-orange) !important;
}

.th-blog-pagination a:hover {
    color: var(--th-orange) !important;
    border-color: var(--th-orange) !important;
}

/* ——— Article blog (show) ——— */
.th-listing-hero--article {
    padding-bottom: 2.5rem;
}

.th-listing-hero__title--article {
    max-width: 52rem;
    line-height: 1.2;
}

.th-blog-article-hero__category {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    margin-bottom: 0.85rem;
    transition: opacity 0.2s;
}

.th-blog-article-hero__category:hover {
    opacity: 0.88;
}

.th-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0.5rem;
}

.th-blog-article-meta i {
    color: var(--th-orange);
    margin-right: 0.25rem;
}

.th-blog-article-meta__sep {
    opacity: 0.5;
}

.th-page-body--article {
    max-width: 48rem;
}

.th-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--th-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.th-blog-back:hover {
    color: var(--th-orange-hover);
}

.th-blog-back--bar {
    margin-bottom: 1.5rem;
}

.th-blog-article__featured {
    margin-bottom: 2rem;
    border-radius: var(--th-radius-lg);
    overflow: hidden;
    box-shadow: var(--th-shadow-hover);
    border: 1px solid var(--th-border);
}

.th-blog-article__featured img {
    width: 100%;
    max-height: 28rem;
    object-fit: cover;
    display: block;
}

.th-blog-prose {
    color: var(--th-text);
    line-height: 1.75;
    font-size: 1.0625rem;
}

.th-blog-prose h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    color: var(--th-navy);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.th-blog-prose h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--th-navy);
    line-height: 1.35;
}

.th-blog-prose p {
    margin-top: 1.15rem;
    margin-bottom: 1.15rem;
}

.th-blog-prose ul,
.th-blog-prose ol {
    margin-top: 1.15rem;
    margin-bottom: 1.15rem;
    padding-left: 1.5rem;
}

.th-blog-prose ul {
    list-style-type: disc;
}

.th-blog-prose ol {
    list-style-type: decimal;
}

.th-blog-prose li {
    margin-top: 0.45rem;
    margin-bottom: 0.45rem;
}

.th-blog-prose li::marker {
    color: var(--th-orange);
}

.th-blog-prose strong {
    font-weight: 700;
    color: var(--th-navy);
}

.th-blog-prose a {
    color: var(--th-orange);
    text-decoration: underline;
    font-weight: 500;
}

.th-blog-prose a:hover {
    color: var(--th-orange-hover);
}

.th-blog-prose code {
    background: var(--th-orange-light);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: var(--th-navy);
}

.th-blog-prose blockquote {
    border-left: 4px solid var(--th-orange);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--th-text-muted);
    background: var(--th-orange-light);
    padding: 1rem 1rem 1rem 1.25rem;
    border-radius: 0 10px 10px 0;
}

.th-blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--th-radius);
    margin: 1.5rem 0;
    box-shadow: var(--th-shadow);
}

.th-blog-prose hr {
    border: none;
    border-top: 1px solid var(--th-border);
    margin: 2rem 0;
}

@media (max-width: 640px) {
    .th-blog-prose h2 {
        font-size: 1.5rem;
    }

    .th-blog-prose h3 {
        font-size: 1.2rem;
    }
}

.th-blog-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--th-border);
}

.th-blog-related__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--th-navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.th-blog-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .th-blog-related__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.th-blog-related-card {
    display: block;
    text-decoration: none;
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius);
    overflow: hidden;
    box-shadow: var(--th-shadow);
    transition: box-shadow 0.25s, transform 0.25s;
}

.th-blog-related-card:hover {
    box-shadow: var(--th-shadow-hover);
    transform: translateY(-2px);
}

.th-blog-related-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.th-blog-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.th-blog-related-card:hover .th-blog-related-card__media img {
    transform: scale(1.04);
}

.th-blog-related-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--th-navy);
    padding: 0.85rem 1rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.th-blog-related-card:hover .th-blog-related-card__title {
    color: var(--th-orange);
}

.th-blog-article-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--th-border);
}

/* ——— Sections communes ——— */
.th-section-head {
    text-align: center;
    margin-bottom: 2rem;
}

.th-section-head__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--th-navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .th-section-head__title {
        font-size: 2.25rem;
    }
}

.th-section-head__subtitle {
    font-size: 1rem;
    color: var(--th-text-muted);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.55;
}

.th-section-block {
    margin-bottom: 3rem;
}

.th-section-block:last-child {
    margin-bottom: 0;
}

/* ——— Tarifs (pricing) ——— */
.th-pricing-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.th-pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.th-pricing-pill i {
    color: var(--th-orange);
}

.th-pricing-commission {
    background: linear-gradient(135deg, var(--th-navy) 0%, #243a5e 55%, #2d4a6f 100%);
    border-radius: var(--th-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--th-shadow-hover);
    border: 1px solid rgba(242, 145, 36, 0.2);
}

.th-pricing-commission::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(242, 145, 36, 0.25), transparent 60%);
    pointer-events: none;
}

.th-pricing-commission__inner {
    position: relative;
    z-index: 1;
}

.th-pricing-commission__label {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(242, 145, 36, 0.2);
    border: 1px solid rgba(242, 145, 36, 0.35);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: var(--th-orange);
}

.th-pricing-commission__rate {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.th-pricing-commission__rate span {
    font-size: 2.25rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .th-pricing-commission__rate {
        font-size: 6rem;
    }

    .th-pricing-commission__rate span {
        font-size: 3rem;
    }
}

.th-pricing-commission__desc {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
}

.th-pricing-commission__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .th-pricing-commission__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.th-pricing-commission__stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--th-radius);
    padding: 1rem;
}

.th-pricing-commission__stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.th-pricing-commission__stat-label {
    font-size: 0.8125rem;
    opacity: 0.85;
}

.th-pricing-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 52rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .th-pricing-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.th-pricing-detail-card {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--th-shadow);
    border-top: 3px solid var(--th-orange);
}

.th-pricing-detail-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.th-pricing-detail-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: var(--th-orange-light);
    color: var(--th-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.th-pricing-detail-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--th-navy);
    margin: 0;
}

.th-pricing-detail-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.th-pricing-detail-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
}

.th-pricing-detail-card__list i {
    color: var(--th-orange);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.th-pricing-detail-card__list strong {
    display: block;
    color: var(--th-navy);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.th-pricing-detail-card__list span {
    color: var(--th-text-muted);
    font-size: 0.8125rem;
}

.th-pricing-calc {
    max-width: 40rem;
    margin: 0 auto;
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--th-shadow);
}

@media (min-width: 768px) {
    .th-pricing-calc {
        padding: 2rem;
    }
}

.th-pricing-calc__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--th-border);
    font-size: 0.9375rem;
}

.th-pricing-calc__row:last-of-type {
    border-bottom: none;
}

.th-pricing-calc__row--total {
    padding-top: 1rem;
    margin-top: 0.25rem;
    border-top: 2px solid var(--th-orange);
}

.th-pricing-calc__label {
    color: var(--th-text-muted);
    font-weight: 500;
}

.th-pricing-calc__value {
    font-weight: 700;
    color: var(--th-navy);
    text-align: right;
}

.th-pricing-calc__value--deduct {
    color: var(--th-orange);
}

.th-pricing-calc__value--net {
    font-size: 1.5rem;
    color: #059669;
}

.th-pricing-calc__tip {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    background: var(--th-orange-light);
    border: 1px solid rgba(242, 145, 36, 0.25);
    border-radius: var(--th-radius);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--th-text);
}

.th-pricing-calc__tip i {
    color: var(--th-orange);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.th-pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .th-pricing-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.th-pricing-feature {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius);
    padding: 1.15rem 0.85rem;
    text-align: center;
    box-shadow: var(--th-shadow);
    transition: box-shadow 0.25s, transform 0.25s;
}

.th-pricing-feature:hover {
    box-shadow: var(--th-shadow-hover);
    transform: translateY(-2px);
}

.th-pricing-feature__icon {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.65rem;
    border-radius: 50%;
    background: var(--th-orange-light);
    color: var(--th-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.th-pricing-feature__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--th-navy);
    margin-bottom: 0.25rem;
}

.th-pricing-feature__desc {
    font-size: 0.75rem;
    color: var(--th-text-muted);
    line-height: 1.4;
}

.th-pricing-cta {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--th-navy) 0%, #243a5e 100%);
    border-radius: var(--th-radius-lg);
    position: relative;
    overflow: hidden;
}

.th-pricing-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(242, 145, 36, 0.2), transparent 55%);
    pointer-events: none;
}

.th-pricing-cta__inner {
    position: relative;
    z-index: 1;
}

.th-pricing-cta__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.th-pricing-cta__text {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.th-pricing-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .th-pricing-cta__buttons {
        flex-direction: row;
    }
}

.th-pricing-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--th-navy);
    background: #fff;
    text-decoration: none;
    min-height: 44px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.th-pricing-cta__btn-primary:hover {
    transform: translateY(-1px);
    color: var(--th-navy);
}

.th-pricing-cta__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    min-height: 44px;
    transition: border-color 0.2s, background 0.2s;
}

.th-pricing-cta__btn-outline:hover {
    border-color: var(--th-orange);
    background: rgba(242, 145, 36, 0.15);
    color: #fff;
}

/* ——— Contact ——— */
.th-contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .th-contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.th-contact-panel {
    background: var(--th-surface);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--th-shadow);
}

@media (min-width: 768px) {
    .th-contact-panel {
        padding: 2rem;
    }
}

.th-contact-panel__title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--th-navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.th-alert-success {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--th-radius);
    color: #065f46;
    font-size: 0.9375rem;
}

.th-alert-success i {
    color: #059669;
    margin-top: 0.1rem;
}

.th-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.th-form__group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--th-navy);
    margin-bottom: 0.4rem;
}

.th-form__input,
.th-form__textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid var(--th-border);
    border-radius: 10px;
    background: var(--th-bg);
    color: var(--th-text);
    min-height: 44px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.th-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.th-form__input:focus,
.th-form__textarea:focus {
    outline: none;
    border-color: var(--th-orange);
    box-shadow: 0 0 0 3px var(--th-listing-accent-ring);
    background: var(--th-surface);
}

.th-form__error {
    color: #dc2626;
    font-size: 0.8125rem;
    margin-top: 0.35rem;
}

.th-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--th-orange);
    cursor: pointer;
    min-height: 48px;
    box-shadow: 0 4px 14px var(--th-listing-accent-shadow);
    transition: background 0.2s, transform 0.2s;
}

.th-form__submit:hover {
    background: var(--th-orange-hover);
    transform: translateY(-1px);
}

.th-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.th-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.th-contact-info__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: var(--th-orange-light);
    color: var(--th-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.th-contact-info__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--th-navy);
    margin-bottom: 0.2rem;
}

.th-contact-info__value {
    font-size: 0.9375rem;
    color: var(--th-text-muted);
    line-height: 1.55;
}

.th-contact-info__value a {
    color: var(--th-orange);
    text-decoration: none;
    font-weight: 500;
}

.th-contact-info__value a:hover {
    color: var(--th-orange-hover);
    text-decoration: underline;
}

.th-contact-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.th-contact-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--th-orange-light);
    color: var(--th-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.th-contact-social a:hover {
    background: var(--th-orange);
    color: #fff;
}

.th-contact-map {
    margin-top: 1.5rem;
}

.th-contact-map__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--th-navy);
    margin-bottom: 0.75rem;
}

.th-contact-map__embed {
    border-radius: var(--th-radius);
    overflow: hidden;
    border: 1px solid var(--th-border);
    box-shadow: var(--th-shadow);
}

.th-contact-map__embed iframe {
    display: block;
    width: 100%;
    min-height: 220px;
}
