/* assets/css/style.css - Version FINALE ET PROPRE */

/* --- VARIABLES --- */
:root {
    --primary: #1a1a2e;
    --accent: #c5a059;
    --accent-hover: #b89345;
    --accent-ink: #6f5012;
    --text: #333;
    --bg-light: #fdfdfd;
    --font-title: "Times New Roman", Georgia, serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1100px;
    --site-header-offset: 0px;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-body); 
    color: var(--text); 
    background: var(--bg-light); 
    line-height: 1.6;
    display: flex; flex-direction: column; min-height: 100vh;
}

main { flex: 1; width: 100%; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* --- HEADER PRINCIPAL (Menu Fixe) --- */
#site-header { 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 999; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

/* Pour cacher le menu au scroll (géré par le JS) */
#site-header.hide { transform: translateY(-100%); }

.top-bar { background: var(--primary); color: #fff; padding: 8px 0; font-size: 0.85rem; }
.top-bar-content { display: flex; justify-content: flex-end; gap: 20px; }
.main-header { background: rgba(255,255,255,0.98); padding: 15px 0; backdrop-filter: blur(5px); }
.main-header .container { max-width: 1280px; }
.top-bar .container { max-width: 1280px; }
.header-flex { display: flex; justify-content: space-between; align-items: center; gap: 16px; }

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.logo-symbol {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    display: block;
}
.logo-text {
    line-height: 1;
}

nav { flex: 1; min-width: 0; }
nav ul { display: flex; gap: 20px; align-items: center; flex-wrap: nowrap; justify-content: flex-end; }
nav li { flex: 0 0 auto; }
nav a { font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.28px; white-space: nowrap; }
nav a:hover { color: var(--accent-ink); }
.nav-lang-switch-wrap {
    margin-left: 2px;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid #dadce6;
    background: #f6f7fb;
}
.lang-separator {
    color: #8a8f9f;
    font-size: 0.72rem;
    line-height: 1;
}
.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #28304f;
    line-height: 1;
}
.lang-link:hover {
    background: #eceff7;
    color: #1d2443;
}
.lang-link.is-active {
    background: var(--primary);
    color: #fff;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(111, 80, 18, 0.25);
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 22px rgba(197, 160, 89, 0.28);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }
.nav-cta:focus-visible {
    outline: 3px solid #f5deb0;
    outline-offset: 2px;
}
.nav-cta-header {
    min-width: 172px;
}

@media (max-width: 1180px) {
    .main-header .container { max-width: 1200px; }
    .top-bar .container { max-width: 1200px; }
    .logo { font-size: 1.26rem; }
    .logo-symbol { width: 36px; height: 36px; border-radius: 9px; }
    nav ul { gap: 12px; }
    nav a { font-size: 0.74rem; letter-spacing: 0.16px; }
    .lang-link {
        min-width: 38px;
        padding: 5px 9px;
        font-size: 0.68rem;
    }
    .nav-cta { padding: 8px 14px; }
    .nav-cta-header { min-width: 150px; }
}

/* ESPACEUR CRUCIAL : Pousse le contenu sous le menu fixe */
.header-spacer { height: var(--site-header-offset); display: block; }

/* --- MOBILE --- */
.menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: var(--primary); }

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-spacer { height: var(--site-header-offset); }
    .menu-toggle { display: flex; }
    .logo { font-size: 1.2rem; gap: 8px; }
    .logo-symbol { width: 34px; height: 34px; border-radius: 8px; }
    nav { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 20px; transform: translateY(-150%); transition: 0.3s; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    nav.active { transform: translateY(0); }
    nav ul { flex-direction: column; gap: 15px; }
    nav a { white-space: normal; }
    .nav-lang-switch-wrap {
        width: 100%;
    }
    .nav-lang-switch-wrap .lang-switch {
        width: 100%;
        justify-content: center;
    }
    .nav-cta { display: flex; width: 100%; text-align: center; min-width: 0; }
}

/* --- PAGE ARTICLE --- */
.breadcrumb { padding: 20px 0; font-size: 0.9rem; color: #666; }
.breadcrumb a:hover { color: var(--accent-ink); }

.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; padding-bottom: 60px; }

/* Header de l'article (NON FIXE) */
.post-header { margin-bottom: 30px; position: relative; }
.post-category { color: var(--accent-ink); font-weight: bold; text-transform: uppercase; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.post-header h1 { font-family: var(--font-title); font-size: 2.2rem; color: var(--primary); margin: 0 0 20px 0; line-height: 1.3; }

.post-meta { display: flex; align-items: center; gap: 30px; font-size: 0.9rem; color: #666; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.post-meta .avatar { font-size: 1.2rem; margin-right: 5px; }
.post-featured-image img { width: 100%; border-radius: 10px; margin-bottom: 30px; }

.post-content { font-size: 1.1rem; color: #444; line-height: 1.8; }
.post-content h2 { font-family: var(--font-title); color: var(--primary); margin: 40px 0 20px; font-size: 1.8rem; }
.post-content h3 { color: var(--primary); margin: 30px 0 15px; font-size: 1.4rem; }
.post-content p { margin-bottom: 20px; }
.post-content strong { color: var(--primary); }

/* Sidebar & Widgets */
.sidebar-widget { padding: 20px; }
.sidebar-widget h3 { font-family: var(--font-title); margin-bottom: 20px; font-size: 1.2rem; color: var(--primary); border-bottom: 2px solid var(--accent); padding-bottom: 10px; display: inline-block; }
.mini-list { display: flex; flex-direction: column; gap: 15px; }
.mini-voyant { display: flex; align-items: center; gap: 15px; text-decoration: none; border-bottom: 1px solid #f5f5f5; padding-bottom: 10px; }
.mini-voyant:last-child { border-bottom: none; }
.mini-voyant img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.mini-voyant strong { display: block; color: var(--primary); font-size: 1rem; }
.mini-voyant span { font-size: 0.8rem; color: #666; }
.mini-voyant:hover strong { color: var(--accent-ink); }

.article-cta { background: #fcf8f0; border: 1px solid #eee; padding: 30px; text-align: center; border-radius: 10px; margin-top: 50px; }
.article-cta h3 { font-family: var(--font-title); color: var(--primary); margin-bottom: 10px; }
.btn-cta { display: inline-block; background: var(--accent-ink); color: white; padding: 12px 30px; border-radius: 30px; font-weight: bold; margin-top: 15px; }
.btn-cta:hover { background: var(--accent-hover); }

/* Blog Index */
.blog-header { background: var(--primary); color: white; padding: 60px 0; text-align: center; margin-bottom: 50px; }
.page-title { font-family: var(--font-title); font-size: 2.5rem; margin-bottom: 10px; }
.page-subtitle { opacity: 0.8; font-size: 1.1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; border: 1px solid #eee; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img-link { display: block; position: relative; height: 200px; overflow: hidden; }
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.category-badge { position: absolute; top: 15px; right: 15px; background: var(--accent-ink); color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
.blog-card-content { padding: 20px; }
.blog-card-content h2 { font-family: var(--font-title); font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-content h2 a { color: var(--primary); }
.blog-card-content h2 a:hover { color: var(--accent-ink); }
.meta-info { font-size: 0.8rem; color: #666; margin-bottom: 10px; display: flex; gap: 15px; }
.excerpt { font-size: 0.95rem; color: #666; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { color: var(--accent-ink); font-weight: bold; font-size: 0.9rem; }

/* Widget & Footer & Forms */
.widget-card { background: white; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid #eee; overflow: hidden; margin-bottom: 30px; transition: transform 0.3s; }
a.widget-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.widget-content { padding: 30px; }
.widget-title { font-family: var(--font-title); color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; }
footer { background: var(--primary); color: #ccc; padding: 60px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--accent); font-family: var(--font-title); margin-bottom: 20px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-lang {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-lang-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4d4e6;
}
.footer-lang .lang-switch {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
}
.footer-lang .lang-separator {
    color: #b9bdd0;
}
.footer-lang .lang-link {
    color: #ececf6;
}
.footer-lang .lang-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    padding-left: 10px;
}
.footer-lang .lang-link.is-active {
    background: #ffffff;
    color: var(--primary);
}
.payment-icons-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.payment-logo {
    display: inline-block;
    width: auto;
    height: 22px;
    max-width: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px 5px;
}

.payment-logo-paypal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    font-size: 12px;
    font-weight: 700;
    color: #003087;
    letter-spacing: 0.01em;
}
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.85rem; color: #c9c9d9; }
#backToTop { position: fixed; bottom: 20px; right: 20px; width: 45px; height: 45px; background: var(--accent-ink); color: #fff; border: none; border-radius: 50%; cursor: pointer; opacity: 0; transition: opacity 0.3s, bottom 0.25s ease; z-index: 920; pointer-events: none; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
#backToTop.show { opacity: 1; pointer-events: all; bottom: 30px; }
.footer-cookie-manage {
    appearance: none;
    background: none;
    border: none;
    color: #ccc;
    font: inherit;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}
.footer-cookie-manage:hover {
    color: #fff;
    padding-left: 5px;
}
.btn-cookie-settings {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 920;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(111, 80, 18, 0.24);
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(18, 20, 35, 0.16);
    transition: bottom 0.25s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.btn-cookie-settings:hover {
    border-color: rgba(197, 160, 89, 0.8);
}
body.cookie-banner-visible .btn-cookie-settings {
    opacity: 0;
    pointer-events: none;
}
.sticky-consult-cta.is-visible ~ #backToTop {
    bottom: 104px;
}

.sticky-consult-cta.is-visible ~ .btn-cookie-settings {
    bottom: 92px;
}
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2600;
    background: #101427;
    color: #e7e8ef;
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(8, 9, 16, 0.48);
    padding: 14px 16px;
}
.cookie-banner[hidden] {
    display: none !important;
}
.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 12px 16px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-banner-copy {
    max-width: 760px;
}
.cookie-banner-title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.cookie-banner-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #d4d7e4;
}
.cookie-banner-subtext {
    margin-top: 7px;
    color: #9ea6c4;
    font-size: 0.8rem;
}
.cookie-banner-link {
    color: #f1d79b;
    text-decoration: underline;
    font-weight: 600;
}
.cookie-banner-actions {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-banner .btn {
    min-width: 112px;
    justify-content: center;
    min-height: 40px;
}
.cookie-btn-accept {
    background: var(--accent);
    color: #1a1a2e;
}
.cookie-btn-accept:hover {
    background: var(--accent-hover);
}
.cookie-btn-refuse {
    background: rgba(222, 226, 238, 0.12);
    border: 1px solid rgba(222, 226, 238, 0.28);
    color: #f8f9ff;
}
.cookie-btn-refuse:hover {
    background: rgba(222, 226, 238, 0.2);
}
.cookie-btn-customize {
    appearance: none;
    border: none;
    background: none;
    color: #d4d7e4;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    padding: 4px 2px;
    font-size: 0.86rem;
}
.cookie-btn-customize:hover {
    color: #fff;
}
.cookie-preferences {
    width: 100%;
    margin-top: 7px;
    padding-top: 9px;
    border-top: 1px dashed rgba(212, 215, 228, 0.27);
}
.cookie-preferences-title {
    margin: 0 0 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #fff;
}
.cookie-pref-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #f1f3f8;
}
.cookie-pref-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
.cookie-pref-help {
    margin: 6px 0 10px;
    font-size: 0.77rem;
    line-height: 1.45;
    color: #adb4cc;
}
.cookie-preferences-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cookie-btn-save {
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.48);
    color: #f5dfb1;
}
.cookie-btn-save:hover {
    background: rgba(197, 160, 89, 0.3);
}
body.cookie-banner-visible {
    padding-bottom: 175px;
}
@media (min-width: 768px) {
    body.cookie-banner-visible {
        padding-bottom: 114px;
    }
}
@media (min-width: 992px) {
    .cookie-banner {
        left: 1rem;
        right: auto;
        width: min(460px, calc(100vw - 2rem));
        bottom: 1rem;
    }
    .cookie-banner-inner {
        display: block;
        max-width: none;
    }
    .cookie-banner-copy {
        max-width: none;
    }
    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 10px;
    }
    .cookie-banner .btn {
        width: 100%;
        min-width: 0;
    }
    .cookie-btn-customize {
        grid-column: 1 / -1;
        text-align: left;
        padding-top: 2px;
    }
    body.cookie-banner-visible {
        padding-bottom: 72px;
    }
}
@media (max-width: 767px) {
    .btn-cookie-settings {
        left: 16px;
        bottom: 82px;
        height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        border-radius: 12px;
    }
    .cookie-banner .btn {
        min-width: 0;
    }

    .sticky-consult-cta.is-visible ~ #backToTop {
        bottom: 138px;
    }

    .sticky-consult-cta.is-visible ~ .btn-cookie-settings {
        bottom: 128px;
    }
}
.btn-pay { width: 100%; background: var(--accent-ink); color: #fff; border: none; padding: 15px; font-weight: bold; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: 0.3s; }
.btn-pay:hover { background: var(--accent-hover); }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.alert-error { background: #ffebee; color: #c62828; padding: 10px; border-radius: 6px; margin-top: 10px; font-size: 0.9rem; text-align: center; }
.legal-section { background: #f9f9f9; padding: 15px; border-radius: 8px; border: 1px solid #eee; margin: 20px 0; }
.legal-intro { font-size: 0.9rem; font-weight: bold; margin-bottom: 15px; color: var(--accent-ink); }
.legal-list { margin: 0 0 12px; padding-left: 18px; display: grid; gap: 8px; }
.legal-list li { font-size: 0.8rem; line-height: 1.5; color: #555; }
.legal-list a { color: var(--primary); text-decoration: underline; }
.legal-status { margin: 10px 0 0; font-size: 0.82rem; color: #666; }
.legal-accept-btn { margin-top: 6px; padding: 10px 16px; font-size: 0.9rem; }
.btn-pay.legal-accept-btn:disabled { background: #2e7d32; opacity: 1; cursor: default; }
.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
.form-check input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.form-check label { font-size: 0.75rem; color: #555; line-height: 1.4; cursor: pointer; display: inline-block; }
.form-check label strong { color: var(--primary); font-weight: 700; }
.form-check label a { text-decoration: underline; color: var(--primary); }
.form-check label a:hover { color: var(--accent); }
.btn-pay:disabled { background-color: #d3d3d3; color: #4d4d4d; cursor: not-allowed; opacity: 1; }

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .article-layout { grid-template-columns: 1fr; }
    .post-header h1 { font-size: 1.8rem; }
}
/* --- AVATAR PAR DÉFAUT (LETTRE) --- */
.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f8; /* Fond gris bleuté très clair */
    color: var(--accent-ink);      /* Lettre couleur Or lisible */
    font-family: var(--font-title);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.5rem; /* Taille par défaut */
    box-sizing: border-box;
}

/* --- TUNNEL VOYANT (ETAPES) --- */
.voyant-tunnel-section {
    background: #f8f9fb;
}

.voyant-tunnel-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(340px, 1fr);
    gap: 28px;
    align-items: start;
}

.voyant-tunnel-profile,
.voyant-tunnel-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.voyant-tunnel-profile {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.voyant-tunnel-avatar-wrap {
    display: flex;
    justify-content: center;
}

.voyant-tunnel-avatar,
.voyant-tunnel-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.voyant-tunnel-avatar {
    object-fit: cover;
    border: 4px solid #f3f3f3;
}

.voyant-tunnel-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2f6;
    color: var(--accent-ink);
    font-size: 3.2rem;
    font-family: var(--font-title);
    border: 4px solid #f3f3f3;
}

.voyant-tunnel-profile h2 {
    margin: 0;
    text-align: center;
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 2rem;
}

.voyant-tunnel-job,
.voyant-tunnel-rating {
    margin: 0;
    text-align: center;
}

.voyant-tunnel-job {
    color: var(--accent-ink);
    font-weight: 700;
}

.voyant-tunnel-rating {
    color: #8a6516;
    font-weight: 700;
}

.voyant-tunnel-profile blockquote {
    margin: 10px 0 0;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    color: #555;
    font-size: 1.05rem;
    line-height: 1.65;
    font-style: italic;
}

.voyant-tunnel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.voyant-tunnel-tags span {
    background: #edf2f7;
    color: #36506b;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.voyant-tunnel-availability {
    border: 1px solid #f4deb1;
    background: #fff6df;
    border-radius: 10px;
    padding: 14px;
    color: #7a5e24;
    font-weight: 600;
}

.voyant-tunnel-main {
    min-width: 0;
}

.voyant-tunnel-card {
    padding: 26px;
    display: grid;
    gap: 18px;
}

.voyant-tunnel-head h2 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 2.1rem;
}

.voyant-tunnel-head p {
    margin: 6px 0 0;
    color: #6b7280;
}

.voyant-tunnel-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    color: var(--accent-ink);
    font-weight: 700;
}

.voyant-tunnel-progress {
    display: grid;
    gap: 8px;
}

.voyant-tunnel-progress span {
    font-size: 0.84rem;
    color: #5c5c5c;
    font-weight: 700;
}

.voyant-tunnel-progress-bar {
    height: 8px;
    border-radius: 999px;
    background: #eceff3;
    overflow: hidden;
}

.voyant-tunnel-progress-bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #c5a059 0%, #dfbf7b 100%);
    transition: width 0.2s ease;
}

.voyant-tunnel-form {
    display: grid;
    gap: 20px;
}

.voyant-tunnel-step {
    display: none;
    gap: 14px;
}

.voyant-tunnel-step.is-active {
    display: grid;
}

.voyant-tunnel-step h3 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-title);
}

.voyant-tunnel-step label {
    display: grid;
    gap: 8px;
    color: #32323f;
    font-weight: 700;
}

.voyant-tunnel-consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f9f5ee;
    font-weight: 500;
}

.voyant-tunnel-consent input {
    margin-top: 4px;
}

.voyant-tunnel-step input,
.voyant-tunnel-step textarea {
    width: 100%;
    border: 1px solid #d8dce2;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
}

.voyant-tunnel-options,
.voyant-tunnel-legal {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 14px;
    background: #fafafa;
}

.voyant-tunnel-options h4,
.voyant-tunnel-legal h4 {
    margin: 0 0 10px;
    color: #555;
    font-size: 1rem;
}

.voyant-tunnel-legal-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.voyant-tunnel-legal-list li {
    color: #444;
    line-height: 1.5;
}

.voyant-tunnel-legal-list a {
    color: #2e3f63;
    text-decoration: underline;
}

.voyant-tunnel-legal-footnote {
    margin: 12px 0 0;
    color: #666;
    font-size: 0.9rem;
}

.voyant-tunnel-option,
.voyant-tunnel-legal-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.voyant-tunnel-option:last-child,
.voyant-tunnel-legal-row:last-child {
    margin-bottom: 0;
}

.voyant-tunnel-option input,
.voyant-tunnel-legal-row input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.voyant-tunnel-legal-row {
    grid-template-columns: auto 1fr;
}

.voyant-tunnel-legal-row span,
.voyant-tunnel-option span {
    font-weight: 500;
    color: #444;
}

.voyant-tunnel-legal-row a {
    color: #2e3f63;
    text-decoration: underline;
}

.voyant-tunnel-total {
    background: #f8f1e3;
    border: 1px solid #e7d2a7;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.voyant-tunnel-total strong {
    color: #a98033;
    font-size: 1.4rem;
}

.voyant-tunnel-payment {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.voyant-tunnel-error {
    background: #fde8e8;
    color: #9b1c1c;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.92rem;
}

.voyant-tunnel-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.voyant-tunnel-nav-legal {
    justify-content: stretch;
}

.voyant-tunnel-legal-cta {
    width: 100%;
    min-height: 64px;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(111, 80, 18, 0.28);
}

.voyant-tunnel-legal-cta:hover,
.voyant-tunnel-legal-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(111, 80, 18, 0.34);
}

.voyant-tunnel-step[data-step="1"] .voyant-tunnel-nav {
    justify-content: stretch;
}

.voyant-tunnel-step[data-step="1"] .voyant-tunnel-nav .btn[data-accept-legal] {
    width: 100%;
    min-height: 64px;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 14px;
}

@media (max-width: 1024px) {
    .voyant-tunnel-grid {
        grid-template-columns: 1fr;
    }
}
/* --- CHECKOUT STEP-BY-STEP (inspire de vpm) --- */
.section {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 30px;
}

.section-head h1,
.section-head h2 {
    font-family: var(--font-title);
    color: var(--primary);
    margin-bottom: 10px;
}

.section-head p {
    color: #666;
}

.muted {
    color: #666;
    font-size: 0.92rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--accent-ink);
    color: #fff;
}

.btn.ghost {
    background: #fff;
    color: var(--accent-ink);
    border: 1px solid rgba(111, 80, 18, 0.45);
}

.btn:disabled,
button.btn:disabled {
    opacity: 1;
    color: #4d4d4d;
    background: #d3d3d3;
    cursor: not-allowed;
}

.checkout {
    background: linear-gradient(180deg, #fdfbf7 0%, #f3e9dc 100%);
}

.checkout-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbf6ee 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(199, 164, 106, 0.2);
    box-shadow: 0 16px 40px rgba(12, 12, 18, 0.1);
}

.checkout-head {
    background: radial-gradient(circle at top right, rgba(199, 164, 106, 0.25), transparent 60%),
        linear-gradient(140deg, #1b1e2a 0%, #0e0f14 100%);
    color: #f8f2e9;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 18px;
}

.checkout-head-compact {
    padding: 18px 20px;
}

.checkout-head-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-head-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(199, 164, 106, 0.16);
    border: 1px solid rgba(199, 164, 106, 0.34);
    flex-shrink: 0;
}

.checkout-head h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    color: #fff;
}

.checkout-head p {
    margin: 0 0 16px;
    color: rgba(248, 242, 233, 0.78);
    max-width: 640px;
}

.checkout-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: rgba(199, 164, 106, 0.9);
}

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
}

.checkout-trust span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(199, 164, 106, 0.15);
    border: 1px solid rgba(199, 164, 106, 0.3);
    color: #f8f2e9;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.checkout-main {
    min-width: 0;
}

.checkout-flow-shell {
    border: 1px solid rgba(199, 164, 106, 0.24);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffefb 0%, #fff9f0 100%);
    padding: 18px;
    box-shadow: 0 16px 40px rgba(12, 12, 18, 0.1);
}

.checkout-flow-head {
    padding: 6px 4px 18px;
    border-bottom: 1px solid rgba(199, 164, 106, 0.2);
    margin-bottom: 18px;
}

.checkout-progress-kicker {
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
}

.checkout-progress-kicker strong {
    color: #1a1a2e;
    letter-spacing: 0.06em;
}

.checkout-progress-title {
    margin: 0 0 12px;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--primary);
}

.checkout-progress-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.checkout-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #d8b16e 0%, #f2d59e 100%);
    border-radius: inherit;
    transition: width 0.24s ease;
}

.checkout-aside {
    position: sticky;
    top: 120px;
    align-self: start;
    display: grid;
    gap: 16px;
}

.summary-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbf6ee 100%);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(199, 164, 106, 0.2);
    box-shadow: 0 16px 40px rgba(12, 12, 18, 0.1);
    display: grid;
    gap: 12px;
}

.summary-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    color: #666;
}

.summary-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-ink);
}

.summary-items {
    display: grid;
    gap: 8px;
    font-size: 0.85rem;
}

.summary-items div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.summary-items strong {
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.summary-note {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.summary-trust {
    border: 1px solid rgba(199, 164, 106, 0.2);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

.summary-trust h4 {
    margin: 0 0 10px;
    font-size: 0.95rem;
}

.summary-trust ul {
    margin: 0;
    padding-left: 0;
    color: var(--ink2);
    display: grid;
    gap: 10px;
    font-size: 0.85rem;
}

.summary-trust li {
    position: relative;
    padding-left: 18px;
    line-height: 1.65;
}

.checkout-form {
    display: grid;
    gap: 22px;
}

.checkout-step {
    display: none;
    gap: 18px;
}

.checkout-step.is-active {
    display: grid;
}

.checkout-step h3 {
    margin: 0 0 12px;
    font-family: var(--font-title);
    color: var(--primary);
}

.checkout-block {
    display: grid;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.08);
}

.checkout-block h4 {
    margin: 0;
    font-size: 1rem;
}

.consent-block {
    background: linear-gradient(135deg, rgba(27, 30, 42, 0.05), rgba(199, 164, 106, 0.08));
    border: 1px solid rgba(199, 164, 106, 0.35);
}

.consent-lead,
.consent-note {
    margin: 0;
}

.consent-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: #3a2b1c;
    list-style: disc;
}

.legal-footnote {
    margin: 0;
}

.checkout-loading,
.payment-unavailable {
    padding: 16px;
    border-radius: 12px;
    background: rgba(199, 164, 106, 0.12);
    border: 1px dashed rgba(199, 164, 106, 0.4);
    color: #5a4532;
}

.step-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.checkout-sticky-footer {
    position: sticky;
    bottom: 0;
    margin: 8px -18px -18px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(199, 164, 106, 0.24);
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(14px);
    display: grid;
    gap: 10px;
    z-index: 5;
}

.checkout-sticky-note {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.74rem;
    color: #6b5b4a;
}

.checkout-sticky-actions {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 10px;
}

.checkout-sticky-actions .btn {
    min-height: 48px;
}

.message-guide {
    border-radius: 16px;
    border: 1px solid rgba(111, 80, 18, 0.18);
    padding: 14px;
    background: linear-gradient(180deg, #f8f1e6 0%, #f3ebde 100%);
    display: grid;
    gap: 10px;
}

.message-guide h4,
.message-guide p {
    margin: 0;
}

.message-guide h4 {
    color: #3c2e22;
}

.message-guide ul {
    margin: 0;
    padding-left: 0;
    color: #5a4c40;
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
    list-style: none;
}

.message-guide li {
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
}

.message-guide li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a8893e;
}

.message-guide .muted,
.message-guide p {
    color: #6a5b4d !important;
}

.checkout-assurance {
    border-radius: 14px;
    border: 1px dashed rgba(0,0,0,0.15);
    padding: 14px 16px;
    background: #fff7ed;
    color: var(--primary);
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
}

.checkout-assurance strong {
    font-weight: 700;
}

.offer-selector,
.options-grid,
.astro-fields,
.voyance-fields {
    display: grid;
    gap: 12px;
}

.offer-pill {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
}

.offer-pill.is-selected {
    border-color: rgba(199, 164, 106, 0.7);
    box-shadow: 0 10px 24px rgba(199, 164, 106, 0.2);
}

.offer-pill input {
    margin: 0;
}

.offer-pill span {
    font-weight: 600;
}

.offer-pill strong {
    justify-self: end;
}

.offer-pill em {
    font-size: 0.85rem;
    color: #666;
    grid-column: 2 / -1;
    font-style: normal;
}

.offer-single {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f7f2ea;
}

.option-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    align-items: center;
}

.option-row.is-selected {
    border-color: rgba(199, 164, 106, 0.72);
    box-shadow: 0 10px 18px rgba(199, 164, 106, 0.16);
    background: #fdf6ec;
}

.option-row.is-hidden {
    display: none;
}

.option-row em {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-style: normal;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.step-field-group {
    display: grid;
    gap: 6px;
}

.checkout-collapse {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.checkout-collapse summary {
    list-style: none;
    cursor: pointer;
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.checkout-collapse summary::-webkit-details-marker {
    display: none;
}

.checkout-collapse summary::after {
    content: "+";
    float: right;
    color: var(--accent-ink);
    font-size: 1rem;
    line-height: 1;
}

.checkout-collapse[open] summary::after {
    content: "−";
}

.checkout-collapse-body {
    padding: 0 16px 16px;
}

.checkout-consent-option {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f9f5ee;
}

.checkout-consent-option input {
    margin-top: 4px;
}

.checkout-consent-option span {
    display: grid;
    gap: 4px;
}

.checkout-consent-option strong {
    font-size: 0.92rem;
    color: #3f3329;
}

.checkout-consent-option em {
    font-style: normal;
    font-size: 0.82rem;
    color: #6d6258;
    line-height: 1.5;
}

.field-label {
    display: block;
    font-size: 0.9rem;
    color: #444;
}

.field-hint {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
}

.required-mark {
    color: #b97f17;
}

.optional-mark {
    font-weight: 300;
    color: #666;
    font-size: 0.85em;
}

.checkout-form label {
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
}

.checkout-form input,
.checkout-form textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    font-family: inherit;
}

.payment-element {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.1);
}

.checkout-summary {
    display: grid;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.checkout-summary strong {
    font-size: 1.4rem;
}

.checkout-payment-trust {
    background: linear-gradient(135deg, #131629 0%, #1a1e37 100%);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f2f2f2;
}

.legal-acceptance-block {
    margin-bottom: 16px;
    padding: 14px 16px;
    background: #f7f2ea;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.legal-acceptance-text {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.65;
}

.legal-acceptance-text a {
    color: var(--accent);
    text-decoration: underline;
}

.checkout-error {
    color: #9b1c1c;
    background: #fde8e8;
    padding: 10px 12px;
    border-radius: 8px;
}

.cash-offer-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbf6ee 100%);
    border: 1px solid rgba(199, 164, 106, 0.2);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(12, 12, 18, 0.1);
    display: grid;
    gap: 12px;
}

.cash-offer-card.is-highlight {
    border-color: rgba(199, 164, 106, 0.55);
    box-shadow: 0 18px 42px rgba(199, 164, 106, 0.28);
}

.cash-offer-badge {
    justify-self: start;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
    color: #2f2214;
    background: rgba(199, 164, 106, 0.2);
    border: 1px solid rgba(199, 164, 106, 0.45);
    border-radius: 999px;
    padding: 6px 10px;
}

.cash-offer-card h2 {
    margin: 0;
    color: var(--primary);
}

.cash-offer-price {
    margin: 0;
    font-size: 2rem;
    font-family: var(--font-title);
    color: var(--accent-ink);
    font-weight: 700;
}

.cash-offer-features {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    list-style: disc;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-flow-shell {
        padding: 14px;
    }

    .checkout-aside {
        position: static;
        order: 2;
    }

    .step-controls {
        justify-content: flex-start;
    }

    .order-overlay .checkout-aside {
        display: none;
    }

    .order-overlay .checkout-head-compact {
        padding: 16px 18px;
        margin-bottom: 12px;
    }

    .order-overlay .checkout-flow-head {
        padding: 0 0 16px;
        margin-bottom: 16px;
    }

    .order-overlay .checkout-progress-bar {
        height: 3px;
    }

    .order-overlay .checkout-flow-shell {
        padding: 14px;
    }

    .order-overlay .checkout-sticky-footer {
        margin: 8px -14px -14px;
    }

    .order-overlay .checkout-sticky-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-overlay .checkout-sticky-actions .btn {
        width: 100%;
    }
}

/* --- HOME CONVERSION (clean + accessible) --- */
.home-hero {
    padding: 78px 0 64px;
    background:
        radial-gradient(1000px circle at 84% -20%, rgba(197, 160, 89, 0.24), transparent 58%),
        linear-gradient(132deg, #101629 0%, #1e2a44 100%);
    color: #f7f8fb;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 30px;
    align-items: stretch;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-hero-copy h1 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: #ffffff;
}

.home-hero-lead {
    margin: 18px 0 0;
    max-width: 640px;
    font-size: 1.08rem;
    color: #d5dced;
    line-height: 1.75;
}

.home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
    width: 100%;
    max-width: 460px;
}

.home-main-cta {
    width: 100%;
    min-height: 56px;
    padding: 14px 28px;
    font-size: 1.03rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(197, 160, 89, 0.35);
}

.home-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #f7f8fb;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
}

.home-secondary-cta:hover,
.home-secondary-cta:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.72);
}

.home-hero-trust {
    margin: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-hero-trust li {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(10, 16, 31, 0.32);
    color: #edf0f8;
    font-size: 0.85rem;
    padding: 7px 12px;
}

.home-hero-panel {
    background: #ffffff;
    color: #222f4b;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(9, 13, 21, 0.2);
    padding: 26px;
    display: grid;
    gap: 18px;
}

.home-hero-panel h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1.7rem;
    color: #141f36;
}

.home-hero-steps {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.home-hero-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.home-hero-steps strong {
    color: var(--accent-ink);
    font-size: 1.05rem;
}

.home-hero-steps span {
    color: #334155;
    line-height: 1.6;
}

.home-hero-panel-note {
    margin: 0;
    font-size: 0.92rem;
    color: #475569;
}

.home-proof {
    padding: 72px 0;
    background: #ffffff;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.home-proof-media {
    margin: 0;
    position: relative;
    padding-bottom: 54px;
}

.home-proof-media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.home-proof-media figcaption {
    position: absolute;
    right: -18px;
    bottom: 0;
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 14px 18px;
    color: #4b5563;
    display: grid;
    gap: 4px;
    font-size: 1rem;
    background: #ffffff;
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.16);
    max-width: min(320px, 92%);
}

.home-proof-media figcaption strong {
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-proof-media figcaption strong span {
    color: #d0a43f;
}

.home-proof-copy h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    color: var(--primary);
    line-height: 1.25;
}

.home-proof-copy > p {
    margin: 16px 0 0;
    color: #374151;
    line-height: 1.8;
    max-width: 720px;
}

.home-proof-cards {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-proof-cards article {
    border: 1px solid #e6e8ef;
    border-radius: 12px;
    padding: 16px;
    background: #fbfcff;
}

.home-proof-cards h3 {
    margin: 0;
    color: #1f2b45;
    font-size: 1.05rem;
}

.home-proof-cards p {
    margin: 8px 0 0;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
}

.home-thomas {
    padding: 78px 0;
    background: #f6f7fb;
    border-top: 1px solid #eceff6;
    border-bottom: 1px solid #eceff6;
}

.home-thomas-head {
    text-align: center;
    margin-bottom: 34px;
}

.home-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #efe3c7;
    color: #5f4310;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.home-thomas-head h2 {
    margin: 14px 0 8px;
    font-family: var(--font-title);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    color: var(--primary);
}

.home-thomas-head p {
    margin: 0;
    color: #475569;
}

.home-thomas-grid {
    display: grid;
    grid-template-columns: minmax(290px, 0.95fr) minmax(320px, 1.05fr);
    gap: 24px;
    align-items: start;
}

.home-thomas-card {
    background: #ffffff;
    border: 1px solid #e6e8ef;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 18px;
}

.home-thomas-profile {
    text-align: center;
}

.home-thomas-avatar,
.home-thomas-avatar-fallback {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid #f1f3f8;
}

.home-thomas-avatar {
    object-fit: cover;
}

.home-thomas-avatar-fallback {
    font-size: 3.4rem;
}

.home-thomas-profile h3 {
    margin: 14px 0 4px;
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--primary);
}

.home-thomas-role {
    margin: 0;
    color: var(--accent-ink);
    font-weight: 700;
}

.home-thomas-rating {
    margin: 8px 0 0;
    color: #744f10;
    font-weight: 700;
    font-size: 0.92rem;
}

.home-thomas-quote {
    margin: 0;
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    color: #4b5563;
    line-height: 1.72;
    font-style: italic;
}

.home-thomas-specialties h4 {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #374151;
    font-size: 0.78rem;
}

.home-thomas-specialties ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.home-thomas-specialties li {
    background: #edf2f7;
    color: #334e68;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.88rem;
    font-weight: 600;
}

.home-thomas-availability {
    margin: 0;
    border: 1px solid #edd9aa;
    border-radius: 10px;
    background: #fff7df;
    color: #62460f;
    padding: 12px;
    font-size: 0.93rem;
}

.home-thomas-checkout {
    position: sticky;
    top: 102px;
}

.home-missing-voyant {
    padding: 48px 0;
    background: #fff6f6;
    color: #9b1c1c;
    border-top: 1px solid #ffd4d4;
    border-bottom: 1px solid #ffd4d4;
}

.home-missing-voyant p {
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.home-voyants {
    padding: 74px 0;
    background: #ffffff;
}

.home-section-head {
    text-align: center;
    margin-bottom: 30px;
}

.home-section-head h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: var(--primary);
}

.home-section-head p {
    margin: 10px 0 0;
    color: #4b5563;
}

.home-voyants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.home-voyant-card {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.home-voyant-image,
.home-voyant-fallback {
    width: 100%;
    height: 240px;
}

.home-voyant-image {
    object-fit: cover;
}

.home-voyant-fallback {
    border-radius: 0;
    font-size: 3rem;
}

.home-voyant-content {
    display: grid;
    gap: 10px;
    flex: 1;
}

.home-voyant-content .widget-title {
    margin-bottom: 0;
}

.home-voyant-job {
    margin: 0;
    color: var(--accent-ink);
    font-weight: 700;
}

.home-voyant-desc {
    margin: 0;
    color: #4b5563;
    line-height: 1.65;
    flex: 1;
}

.home-voyant-link {
    text-align: center;
}

.home-voyants-cta {
    margin-top: 26px;
    text-align: center;
}

.home-voyants-cta a {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
}

.voyants-directory-hero {
    background:
        radial-gradient(circle at 20% 10%, rgba(199, 164, 106, 0.18), transparent 34%),
        linear-gradient(180deg, #fffaf2 0%, #ffffff 82%);
}

.voyants-directory {
    background: #ffffff;
}

.voyants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.voyant-card {
    overflow: hidden;
    padding: 0;
}

.voyant-card-media {
    background: #f4eadb;
}

.voyant-card-image,
.voyant-card-fallback {
    width: 100%;
    height: 260px;
}

.voyant-card-image {
    display: block;
    object-fit: cover;
}

.voyant-card-fallback {
    border-radius: 0;
    font-size: 4rem;
}

.voyant-card-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.voyant-card-body h2,
.voyant-profile-panel h2 {
    margin: 0;
    color: var(--primary);
}

.voyant-card-body p,
.voyant-profile-panel p,
.voyant-profile-panel li {
    color: #4b5563;
    line-height: 1.7;
}

.voyant-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.voyant-card-actions .btn {
    flex: 1 1 180px;
    justify-content: center;
    text-align: center;
}

.voyants-empty {
    max-width: 720px;
    margin: 0 auto;
}

.voyant-profile-hero {
    background:
        radial-gradient(circle at 78% 16%, rgba(199, 164, 106, 0.2), transparent 30%),
        linear-gradient(135deg, #fffaf2 0%, #ffffff 58%, #f7efe2 100%);
}

.voyant-profile-hero-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: center;
}

.voyant-profile-portrait {
    justify-self: center;
}

.voyant-profile-portrait img,
.voyant-profile-fallback {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 24px 70px rgba(17, 17, 24, 0.18);
}

.voyant-profile-portrait img {
    display: block;
    object-fit: cover;
}

.voyant-profile-fallback {
    font-size: 5rem;
}

.voyant-profile-intro h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.92;
    color: var(--primary);
}

.voyant-profile-intro h1 span {
    display: inline-block;
    margin-left: 8px;
    font-family: var(--font-body);
    font-size: 0.24em;
    font-weight: 600;
    color: #6b7280;
    vertical-align: middle;
}

.voyant-profile-role {
    margin: 14px 0 0;
    color: var(--accent-ink);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.voyant-profile-intro .lead {
    max-width: 760px;
    margin: 18px 0 0;
    color: #374151;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.voyant-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.voyant-profile-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(199, 164, 106, 0.28);
    color: #4b5563;
    font-weight: 600;
    font-size: 0.9rem;
}

.voyant-profile-body,
.voyant-profile-pricing,
.voyant-profile-faq {
    background: #ffffff;
}

.voyant-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.voyant-profile-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fbf6ee 100%);
    border: 1px solid rgba(199, 164, 106, 0.22);
    border-radius: 22px;
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 18px 48px rgba(12, 12, 18, 0.08);
}

.voyant-profile-side {
    position: sticky;
    top: calc(var(--site-header-offset, 0px) + 24px);
}

.voyant-profile-home-link {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(199, 164, 106, 0.22);
}

.voyant-profile-home-link a {
    color: var(--primary);
    font-weight: 800;
    border-bottom: 2px solid var(--accent);
}

.voyant-process-list {
    margin: 18px 0 24px;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.voyant-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.voyant-faq-list details {
    border: 1px solid rgba(199, 164, 106, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 16px 18px;
}

.voyant-faq-list summary {
    cursor: pointer;
    color: var(--primary);
    font-weight: 800;
}

.voyant-faq-list p {
    margin: 12px 0 0;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .voyant-profile-hero-grid,
    .voyant-profile-grid {
        grid-template-columns: 1fr;
    }

    .voyant-profile-intro {
        text-align: center;
    }

    .voyant-profile-tags,
    .voyant-profile-intro .hero-actions {
        justify-content: center;
    }

    .voyant-profile-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .voyant-profile-portrait img,
    .voyant-profile-fallback {
        width: 190px;
        height: 190px;
    }

    .voyant-card-actions .btn,
    .voyant-profile-intro .hero-actions .btn {
        flex: 1 1 100%;
    }
}

.home-blog {
    padding: 72px 0;
    background: #fdfdfd;
    border-top: 1px solid #eceff6;
}

.home-blog-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 24px;
}

.home-blog-head h2 {
    margin: 0;
    font-family: var(--font-title);
    color: var(--primary);
}

.home-blog-head p {
    margin: 10px 0 0;
    color: #4b5563;
}

.home-blog-head > a {
    color: var(--accent-ink);
    font-weight: 700;
}

.home-blog-grid {
    gap: 22px;
}

.home-blog-card-content {
    display: grid;
    gap: 10px;
}

.home-blog-card-content h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.4;
}

.home-blog-card-content h3 a {
    color: var(--primary);
}

.home-blog-card-content p {
    margin: 0;
    color: #4b5563;
    font-size: 0.94rem;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .home-hero-grid,
    .home-proof-grid,
    .home-thomas-grid {
        grid-template-columns: 1fr;
    }

    .home-proof-cards {
        grid-template-columns: 1fr;
    }

    .home-thomas-checkout {
        position: static;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 60px 0 52px;
    }

    .home-hero-actions {
        max-width: 100%;
    }

    .home-main-cta,
    .home-secondary-cta {
        width: 100%;
        text-align: center;
    }

    .home-proof-media {
        padding-bottom: 0;
    }

    .home-proof-media figcaption {
        position: static;
        right: auto;
        margin-top: 12px;
        max-width: 100%;
    }

    .home-blog-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-proof,
    .home-thomas,
    .home-voyants,
    .home-blog {
        padding: 58px 0;
    }
}

/* --- REFONTE SOIR CALME --- */
:root {
    --bg: #141418;
    --surf: #1b1b21;
    --surf2: #222228;
    --surf3: #2a2a32;
    --ink: #ede9e0;
    --ink2: #c4bfb5;
    --muted: #908a81;
    --muted2: #b7b0a5;
    --gold: #c8a96e;
    --gold2: #a8893e;
    --gold-lt: rgba(200, 169, 110, 0.10);
    --gold-glow: rgba(200, 169, 110, 0.08);
    --border: rgba(255, 255, 255, 0.06);
    --border2: rgba(255, 255, 255, 0.11);
    --bg-gold: rgba(200, 169, 110, 0.25);
    --rad: 6px;
    --rad-lg: 12px;
    --font-title: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --max-width: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top right, rgba(200, 169, 110, 0.08), transparent 32%),
        linear-gradient(180deg, #141418 0%, #16161c 100%);
    color: var(--ink2);
    font-family: var(--font-body);
}

main {
    width: 100%;
}

a {
    color: inherit;
}

p {
    color: var(--muted2);
}

.container {
    max-width: var(--max-width);
    padding: 0 32px;
}

.top-bar {
    background: rgba(16, 16, 20, 0.88);
    border-bottom: 1px solid var(--border);
}

.top-bar-content {
    color: var(--muted2);
}

.main-header {
    background: rgba(20, 20, 24, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.logo {
    color: var(--ink);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.7rem;
}

.logo-symbol {
    border-radius: 50%;
    border: 1px solid var(--border2);
    background: var(--surf2);
}

.menu-toggle span {
    background: var(--ink);
}

nav a {
    color: var(--muted2);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

nav a:hover,
.footer-col a:hover,
.footer-bottom-links a:hover {
    color: var(--gold);
}

.lang-switch {
    border-color: var(--border2);
    background: rgba(255, 255, 255, 0.03);
}

.lang-link {
    color: var(--ink2);
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
}

.lang-link.is-active {
    background: var(--gold);
    color: #111;
}

.header-spacer {
    background: transparent;
}

.eyebrow,
.checkout-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before,
.checkout-eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.eyebrow-center {
    justify-content: center;
}

.section {
    padding: 96px 0;
}

.section-head {
    margin-bottom: 36px;
}

.section-head-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
}

.section-head > * + * {
    margin-top: 16px;
}

.section-head h1,
.section-head h2,
.service-hero h1,
.offers-hero h1,
.method-hero h1,
.blog-hero-v2 h1,
.home-final-cta h2,
.home-contrast h2,
.section h2 {
    font-family: var(--font-title);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.06;
}

.section-head h1,
.service-hero h1,
.offers-hero h1,
.method-hero h1,
.blog-hero-v2 h1 {
    font-size: clamp(2.8rem, 7vw, 4.4rem);
    font-style: italic;
}

.section-head h2,
.home-final-cta h2,
.home-contrast h2,
.section h2 {
    font-size: clamp(2.1rem, 5vw, 3.1rem);
    font-style: italic;
}

.section-head p,
.service-hero p,
.offers-hero p,
.method-hero p,
.blog-hero-v2 p {
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted2);
}

.section-head-center p,
.offers-hero p,
.blog-hero-v2 p,
.home-final-cta p {
    margin-left: auto;
    margin-right: auto;
}

.btn,
.btn-cta,
.nav-cta,
.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: var(--rad);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn,
.btn.primary,
.btn-gold,
.nav-cta,
.btn-cta {
    background: var(--gold);
    color: #111 !important;
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(200, 169, 110, 0.22);
}

.btn:hover,
.btn.primary:hover,
.btn-gold:hover,
.nav-cta:hover,
.btn-cta:hover {
    background: var(--gold2);
    color: #fff !important;
    transform: translateY(-1px);
}

.btn.ghost,
.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--ink) !important;
    border: 1px solid rgba(200, 169, 110, 0.42);
    box-shadow: none;
}

.btn.ghost:hover,
.btn-outline:hover {
    background: rgba(200, 169, 110, 0.1);
    border-color: rgba(200, 169, 110, 0.7);
    color: var(--ink) !important;
    transform: translateY(-1px);
}

.btn.ghost:focus-visible,
.btn-outline:focus-visible {
    outline: 2px solid rgba(200, 169, 110, 0.8);
    outline-offset: 2px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-actions-center {
    justify-content: center;
}

.service-hero,
.offers-hero,
.method-hero,
.blog-hero-v2 {
    padding: 110px 0 72px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-hero::after,
.offers-hero::after,
.method-hero::after,
.blog-hero-v2::after {
    content: "";
    position: absolute;
    inset: auto -10% 0 auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.16), transparent 70%);
    pointer-events: none;
}

.home-hero-v2 {
    padding: 104px 0 82px;
    position: relative;
    overflow: hidden;
}

.home-hero-v2-grid,
.home-split-grid,
.home-pricing-preview .pricing-grid,
.service-benefits-grid,
.guarantee-grid,
.process-grid,
.faq-grid,
.testimonial-grid,
.pricing-grid-3 {
    display: grid;
    gap: 20px;
}

.home-hero-v2-grid,
.home-split-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
}

.home-hero-v2-copy h1 {
    font-family: var(--font-title);
    font-size: clamp(3.1rem, 7vw, 4.8rem);
    line-height: 1.02;
    color: var(--ink);
    margin: 24px 0 24px;
}

.home-hero-v2-lead,
.home-hero-v2-note {
    max-width: 760px;
    line-height: 1.85;
}

.home-hero-v2-copy .eyebrow {
    display: inline-flex;
    margin-bottom: 4px;
}

.home-hero-v2-copy .hero-actions {
    margin-top: 30px;
}

.home-hero-v2-note {
    margin-top: 18px;
    font-size: 0.95rem;
}

.home-hero-v2-note a,
.section a,
.footer-bottom-links a {
    color: var(--gold);
}

.home-hero-v2-aside {
    position: relative;
    min-height: 520px;
    display: grid;
    gap: 16px;
}

.home-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ring-1,
.ring-2,
.ring-3,
.ring-arc {
    position: absolute;
    border-radius: 50%;
}

.ring-1 {
    width: 500px;
    height: 500px;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--border2);
}

.ring-2 {
    width: 700px;
    height: 700px;
    right: -190px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--border);
}

.ring-3 {
    width: 920px;
    height: 920px;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ring-arc {
    width: 500px;
    height: 500px;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    opacity: 0.22;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.home-proof-card,
.home-compare-card,
.process-card,
.testimonial-card,
.pricing-card,
.cash-offer-card,
.guarantee-card,
.service-benefit-card,
.blog-card,
.faq-item,
.capture-card,
.blog-card-v2,
.method-step-box,
.ethics-item,
.summary-card,
.summary-trust,
.checkout-flow-shell,
.checkout-head,
.checkout-block,
.offer-pill,
.lead-popup-dialog,
.order-modal {
    background: linear-gradient(180deg, rgba(34, 34, 40, 0.96) 0%, rgba(27, 27, 33, 0.96) 100%);
    border: 1px solid var(--border);
    color: var(--ink2);
    border-radius: var(--rad-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.home-proof-card,
.process-card,
.testimonial-card,
.pricing-card,
.cash-offer-card,
.guarantee-card,
.service-benefit-card,
.blog-card,
.blog-card-v2 {
    padding: 28px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    gap: 14px;
}

.home-proof-card {
    position: relative;
    z-index: 1;
}

.home-proof-card > * + * {
    margin-top: 16px;
}

.home-proof-card strong {
    display: block;
}

.home-proof-card-featured h2,
.service-benefit-card h2,
.pricing-card h2,
.pricing-card h3,
.testimonial-card strong,
.method-step-body h2,
.ethics-item h3,
.guarantee-card h3,
.blog-card-content-v2 h2 a {
    color: var(--ink);
}

.pricing-card-head {
    display: grid;
    gap: 10px;
    width: 100%;
}

.pricing-card-badge-slot {
    min-height: 52px;
    display: flex;
    align-items: flex-start;
}

.pricing-card h2,
.pricing-card h3 {
    margin: 0;
    min-height: 2.5em;
}

.home-proof-card-featured ul,
.pricing-card ul,
.method-step-box ul {
    list-style: none;
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 8px 0 0;
}

.pricing-card ul {
    flex: 1 1 auto;
    width: 100%;
}

.home-proof-card-featured li,
.pricing-card li,
.method-step-box li {
    position: relative;
    padding-left: 16px;
    line-height: 1.5;
    color: var(--ink2);
}

.home-proof-card-featured li::before,
.pricing-card li::before,
.method-step-box li::before,
.summary-trust li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.home-proof-kicker,
.pricing-badge,
.blog-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gold-lt);
    border: 1px solid var(--bg-gold);
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.trust-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.trust-band-grid,
.guarantee-grid,
.service-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-band-grid {
    display: grid;
    gap: 18px;
    padding: 26px 0;
}

.trust-band-grid div {
    display: grid;
    gap: 4px;
    padding: 0 10px;
}

.trust-band-grid strong {
    color: var(--ink);
    font-size: 1rem;
}

.trust-band-grid span {
    color: var(--muted2);
    font-size: 0.92rem;
}

.home-compare-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
}

.home-contrast .container > div:first-child {
    display: grid;
    gap: 22px;
}

.home-contrast .container > div:first-child p {
    margin: 0;
}

.home-compare-card h3 {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.home-compare-card ul {
    display: grid;
    gap: 12px;
    padding-left: 18px;
}

.process-grid,
.faq-grid,
.testimonial-grid,
.pricing-grid,
.pricing-grid-3,
.blog-grid-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
    grid-template-columns: 2fr 1fr 1fr;
}

.testimonial-card.is-featured {
    background: linear-gradient(160deg, var(--surf) 0%, rgba(200, 169, 110, 0.08) 100%);
    border-color: var(--bg-gold);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
}

.testimonial-card p {
    color: var(--ink2);
    line-height: 1.85;
    margin: 0;
    flex: 1 1 auto;
}

.testimonial-card footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin: 0;
    padding: 18px 0 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: var(--muted2);
}

.testimonial-card-meta {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.testimonial-card-meta strong {
    font-size: 1.05rem;
    line-height: 1.2;
}

.testimonial-card footer > span {
    font-size: 0.95rem;
    white-space: nowrap;
    align-self: end;
}

.testimonial-card-meta .review-badge {
    justify-self: start;
}

.review-entry-actions {
    justify-content: center;
}

.review-section-feedback {
    margin: 18px auto 0;
    max-width: 720px;
}

.home-process-v2 .section-head,
.home-testimonials-v2 .section-head,
.home-pricing-preview .section-head {
    display: grid;
    gap: 18px;
}

.home-process-v2 .section-head h2,
.home-testimonials-v2 .section-head h2,
.home-pricing-preview .section-head h2,
.home-process-v2 .section-head p,
.home-testimonials-v2 .section-head p,
.home-pricing-preview .section-head p {
    margin: 0;
}

.home-testimonials-v2 .section-head .hero-actions {
    margin-top: 12px;
}

.process-card {
    display: grid;
    gap: 16px;
}

.process-card h3,
.process-card p,
.pricing-card p,
.pricing-card ul {
    margin: 0;
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card.is-star,
.pricing-card.is-pack {
    background: linear-gradient(160deg, var(--surf) 0%, rgba(200, 169, 110, 0.08) 100%);
    border-color: var(--bg-gold);
}

.pricing-price,
.cash-offer-price,
.summary-price,
.checkout-summary strong {
    font-family: var(--font-title);
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin: 8px 0;
}

.pricing-card .pricing-price {
    margin: 0;
}

.pricing-subprice,
.pricing-delay,
.pricing-tagline,
.summary-note,
.read-more {
    color: var(--muted2);
}

.pricing-card .pricing-subprice,
.pricing-card .pricing-tagline {
    margin: 0;
}

.pricing-card .pricing-tagline {
    min-height: 3.8em;
}

.pricing-delay {
    margin-top: auto;
    width: 100%;
    font-weight: 600;
    margin-bottom: 0;
}

.pricing-card > .btn,
.pricing-card-cta {
    width: 100%;
    margin-top: 6px;
}

.home-pricing-link,
.home-final-meta {
    margin-top: 24px;
    text-align: center;
    color: var(--muted);
}

.capture-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 24px;
    padding: 36px;
}

.capture-card > div {
    display: grid;
    gap: 18px;
    align-content: start;
}

.capture-card h2,
.capture-card p {
    margin: 0;
}

.subscribe-form {
    display: grid;
    gap: 16px;
    align-self: center;
}

.subscribe-form-inline {
    align-items: center;
}

.subscribe-feedback {
    min-height: 20px;
    margin: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

.subscribe-optin {
    margin: 0;
}

.subscribe-form .subscribe-optin label {
    color: var(--muted2);
    font-size: 0.82rem;
}

.subscribe-form .subscribe-optin label strong {
    color: var(--ink2);
}

.guide-access-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    padding: 14px 18px;
    max-width: 920px;
    border-radius: var(--rad);
    background: rgba(200, 169, 110, 0.09);
    border: 1px solid rgba(200, 169, 110, 0.24);
    color: var(--ink2);
}

.guide-access-note strong {
    color: var(--gold);
}

.guide-resource-grid,
.guide-resource-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.guide-resource-card,
.guide-resource-panel {
    height: 100%;
}

.guide-resource-card h2,
.guide-resource-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.5rem;
}

.guide-resource-card p,
.guide-resource-panel p {
    margin: 0;
    color: var(--ink2);
    line-height: 1.7;
}

.guide-resource-prompt {
    padding: 14px 16px;
    border-radius: var(--rad);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border2);
}

.guide-resource-prompt strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.guide-resource-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.guide-resource-list li {
    position: relative;
    padding-left: 18px;
    color: var(--ink2);
    line-height: 1.6;
}

.guide-resource-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.guide-resource-cta {
    align-items: center;
}

.guide-resource-secondary-link {
    margin-top: 12px;
}

.guide-resource-secondary-link a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.guide-resource-actions {
    justify-content: center;
}

.home-final-cta {
    text-align: center;
    position: relative;
}

.home-final-cta .container {
    display: grid;
    gap: 22px;
}

.home-final-cta p,
.home-final-cta .hero-actions {
    margin: 0;
}

.home-final-cta::before {
    content: "";
    position: absolute;
    inset: 10% 15%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.12), transparent 65%);
    pointer-events: none;
}

.method-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}

.method-step-number {
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 3rem;
    line-height: 1;
}

.method-step-body p {
    margin: 14px 0 0;
    line-height: 1.85;
}

.method-step-box {
    margin-top: 22px;
    padding: 20px 22px;
}

.method-step-box strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.ethics-list {
    display: grid;
    gap: 14px;
}

.ethics-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 18px 20px;
}

.ethics-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-lt);
    border: 1px solid var(--bg-gold);
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    padding: 20px 22px;
}

.faq-item summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 500;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 14px;
    line-height: 1.75;
}

.offers-grid-section,
.offers-guarantees {
    background: transparent;
}

.table-shell {
    overflow-x: auto;
    border-radius: var(--rad-lg);
    border: 1px solid var(--border);
    background: var(--surf);
}

.offers-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.offers-table th,
.offers-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    color: var(--ink2);
}

.offers-table th {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.02);
}

.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.filter-pill {
    border: 1px solid var(--border2);
    background: transparent;
    color: var(--muted2);
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font: inherit;
}

.filter-pill.is-active,
.filter-pill:hover {
    color: #111;
    background: var(--gold);
    border-color: transparent;
}

.blog-grid-v2 {
    gap: 20px;
}

.blog-card-v2 {
    overflow: hidden;
    padding: 0;
}

.blog-card-media {
    display: block;
    position: relative;
    min-height: 180px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(200, 169, 110, 0.08));
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.blog-card-glyph {
    min-height: 180px;
    display: grid;
    place-items: center;
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-style: italic;
    color: rgba(200, 169, 110, 0.54);
}

.blog-card-pill {
    position: absolute;
    top: 14px;
    left: 14px;
}

.blog-card-content-v2 {
    padding: 22px;
}

.blog-card-content-v2 h2 {
    margin: 10px 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.blog-card-content,
.widget-content {
    color: var(--ink2);
}

.blog-card-content h2,
.blog-card-content h3,
.blog-card-content h2 a,
.cash-offer-card h2,
.widget-title,
.sidebar-widget h3,
.post-content h2,
.post-content h3 {
    color: var(--ink);
}

.cash-offer-badge {
    color: var(--gold);
    background: var(--gold-lt);
    border-color: var(--bg-gold);
}

.meta-info {
    color: var(--muted);
}

.excerpt {
    color: var(--muted2);
    line-height: 1.75;
}

.single-post {
    color: var(--ink2);
}

.single-post .post-header h1 {
    color: var(--ink);
}

.post-meta {
    color: var(--muted2);
    border-bottom-color: var(--border2);
}

.post-meta .avatar {
    color: var(--gold);
}

.post-meta .author strong,
.post-meta .date {
    color: var(--ink2);
}

.post-content {
    color: var(--ink2);
}

.post-content a,
.article-cta a:not(.btn-cta) {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(200, 169, 110, 0.45);
    text-underline-offset: 0.15em;
}

.post-content a:hover,
.article-cta a:not(.btn-cta):hover {
    color: #f0c885;
    text-decoration-color: rgba(240, 200, 133, 0.65);
}

.post-content strong,
.post-content li strong {
    color: var(--ink);
}

.article-layout .widget-card {
    background: linear-gradient(180deg, #f8f2e8 0%, #f4ede1 100%);
    border-color: rgba(111, 80, 18, 0.12);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.article-layout .sidebar-widget h3 {
    color: #2b2430;
    border-bottom-color: var(--accent);
}

.article-layout .mini-voyant {
    border-bottom-color: rgba(26, 26, 46, 0.08);
}

.article-layout .mini-voyant img {
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(111, 80, 18, 0.12);
    padding: 6px;
}

.article-layout .mini-voyant strong {
    color: #1f2233;
}

.article-layout .mini-voyant span {
    color: #5f616a;
}

.article-layout .mini-voyant:hover strong {
    color: var(--accent-ink);
}

.read-more {
    color: var(--gold);
    font-weight: 500;
}

.checkout {
    background: transparent;
}

.checkout-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.checkout-head,
.summary-card,
.summary-trust,
.checkout-flow-shell {
    background: linear-gradient(180deg, rgba(34, 34, 40, 0.98) 0%, rgba(27, 27, 33, 0.98) 100%);
    border-color: var(--border);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.checkout-head h2,
.checkout-progress-title,
.checkout-step h3,
.summary-trust h4,
.checkout-block h4 {
    color: var(--ink);
    font-family: var(--font-title);
}

.checkout-head p,
.checkout-progress-kicker,
.muted,
.checkout-form label,
.field-hint,
.optional-mark,
.summary-items,
.checkout-assurance p,
.checkout-summary span,
.legal-acceptance-text {
    color: var(--muted2);
}

.field-label {
    color: var(--ink2);
}

.checkout-block .message-guide h4 {
    color: #3c2e22;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
}

.checkout-block .message-guide ul,
.checkout-block .message-guide li,
.checkout-block .message-guide p,
.checkout-block .message-guide .muted {
    color: #5f5144 !important;
}

.checkout-progress-bar {
    background: rgba(255, 255, 255, 0.06);
}

.checkout-progress-fill {
    background: linear-gradient(90deg, var(--gold) 0%, #e0c18e 100%);
}

.order-overlay .checkout-head-compact h2 {
    margin: 0;
}

.order-overlay .checkout-progress-bar {
    height: 3px;
}

.order-overlay .checkout-sticky-footer {
    background: rgba(20, 20, 24, 0.96);
    border-top-color: var(--border);
}

.order-overlay .checkout-sticky-note {
    color: var(--muted2);
}

.checkout-assurance,
.offer-single,
.payment-element,
.checkout-collapse {
    background: var(--surf2);
    border: 1px solid var(--border);
    color: var(--ink2);
}

.offer-pill,
.option-row {
    background: var(--surf2);
    border: 1px solid var(--border);
    color: var(--ink2);
}

.offer-pill:hover,
.option-row:hover,
.offer-pill:has(input:checked),
.option-row:has(input:checked) {
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.08);
}

.checkout-form input,
.checkout-form textarea,
.form-input {
    width: 100%;
    background: var(--surf2);
    border: 1px solid var(--border2);
    border-radius: var(--rad);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.form-input:focus {
    border-color: var(--gold);
}

.checkout-summary {
    border-top-color: var(--border);
}

.checkout-payment-trust {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.legal-acceptance-block {
    background: var(--surf2);
    border-color: var(--border);
}

.checkout-collapse summary {
    color: var(--ink);
}

.legal-acceptance-text a,
.required-mark {
    color: var(--gold);
}

.payment-https,
.checkout-error-inline,
.checkout-loading {
    color: var(--muted2);
}

.checkout-error {
    background: rgba(155, 28, 28, 0.18);
    color: #ffd6d6;
}

.order-overlay,
.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

#order-overlay {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.order-overlay[hidden],
.lead-popup[hidden] {
    display: block;
}

#order-overlay[hidden] {
    display: flex;
}

.order-overlay.is-open,
.lead-popup.is-open {
    opacity: 1;
    pointer-events: auto;
}

.order-overlay-backdrop,
.lead-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 10, 0.78);
}

#order-overlay .order-overlay-backdrop {
    background: rgba(0, 0, 0, 0.72);
}

.order-modal,
.lead-popup-dialog {
    position: relative;
    width: min(1180px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    overflow: auto;
    padding: 28px;
    z-index: 1;
}

#order-overlay .order-modal {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    max-height: 92dvh;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    background: rgba(22, 22, 24, 0.98);
    transform: translateY(40px);
    transition: transform 0.3s cubic-bezier(.32, .72, 0, 1);
    overscroll-behavior: contain;
}

@media (min-width: 769px) {
    #order-overlay .order-modal {
        max-width: 560px;
    }
}

#order-overlay.is-open .order-modal {
    transform: translateY(0);
}

.order-modal-close,
.lead-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.8rem;
    cursor: pointer;
}

#order-overlay .order-modal-close {
    top: 18px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    z-index: 4;
}

#order-overlay .checkout-root,
#order-overlay .checkout-card,
#order-overlay .checkout-grid,
#order-overlay .checkout-main,
#order-overlay .checkout-flow-shell,
#order-overlay .checkout-form {
    min-height: 0;
}

#order-overlay .checkout-root,
#order-overlay .checkout-card,
#order-overlay .checkout-grid,
#order-overlay .checkout-main,
#order-overlay .checkout-flow-shell,
#order-overlay .checkout-form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

#order-overlay .checkout-card {
    height: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

#order-overlay .checkout-grid {
    overflow: hidden;
}

#order-overlay .checkout-aside {
    display: none !important;
}

#order-overlay .checkout-head,
#order-overlay .checkout-flow-shell {
    background: transparent;
    box-shadow: none;
    border: 0;
}

#order-overlay .checkout-head-compact {
    padding: 18px 20px 14px;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
}

#order-overlay .checkout-head-top {
    gap: 8px;
}

#order-overlay .checkout-head-lock {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
}

#order-overlay .checkout-head-compact h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.01em;
}

#order-overlay .checkout-flow-head {
    padding: 0;
    margin: 0;
    border-bottom: 0;
}

#order-overlay .checkout-progress-kicker,
#order-overlay .checkout-progress-title {
    display: none;
}

#order-overlay .checkout-progress-bar {
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
}

#order-overlay .checkout-progress-fill {
    background: var(--gold);
}

#order-overlay .checkout-progress-steps {
    display: flex;
    gap: 0;
    padding: 10px 20px 0;
}

#order-overlay .checkout-progress-step {
    flex: 1;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: #5a5855;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

#order-overlay .checkout-progress-step.is-active {
    color: var(--gold);
    border-color: var(--gold);
}

#order-overlay .checkout-progress-step.is-done {
    color: var(--muted2);
    border-color: var(--border);
}

#order-overlay .checkout-progress-step:disabled {
    opacity: 1;
    cursor: default;
}

#order-overlay .checkout-form {
    gap: 0;
    overflow: hidden;
}

#order-overlay .checkout-step {
    display: none;
    padding: 20px 20px 8px;
}

#order-overlay .checkout-step.is-active {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

#order-overlay .checkout-step-eyebrow {
    margin: 0 0 6px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a5855;
}

#order-overlay .checkout-step h3 {
    margin: 0 0 6px;
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--ink);
}

#order-overlay .checkout-step-sub {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #b2ab9f;
    font-style: italic;
}

#order-overlay .checkout-step-promise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

#order-overlay .checkout-step-promise span {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.16);
    background: rgba(255, 255, 255, 0.02);
    color: #ddd4c7;
    font-size: 11.5px;
    line-height: 1.45;
}

#order-overlay .offer-selector {
    gap: 8px;
}

#order-overlay .voyance-fields > label,
#order-overlay .astro-fields > label {
    color: #d6cec0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

#order-overlay .offer-pill {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 8px;
    background: var(--surf2);
    border: 1px solid var(--border);
    box-shadow: none;
}

#order-overlay .offer-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#order-overlay .offer-pill > span:not(.checkout-offer-badge) {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

#order-overlay .offer-pill strong {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 300;
    color: var(--gold);
}

#order-overlay .offer-pill em {
    grid-column: 1 / 2;
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted2);
}

#order-overlay .offer-pill.is-selected,
#order-overlay .offer-pill:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.08);
    box-shadow: none;
}

.checkout-voyant-context {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 12px 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(199, 164, 106, 0.22);
    background: rgba(199, 164, 106, 0.08);
}

.checkout-voyant-context[hidden] {
    display: none;
}

.checkout-voyant-context-initial {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(199, 164, 106, 0.18);
    color: var(--accent-ink);
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-voyant-context-body {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.checkout-voyant-context-body p,
.checkout-voyant-context-body strong,
.checkout-voyant-context-body em,
.checkout-voyant-context-body small {
    margin: 0;
}

.checkout-voyant-context-body p {
    color: #756350;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-voyant-context-body strong {
    color: var(--primary);
    font-size: 0.98rem;
}

.checkout-voyant-context-body em,
.checkout-voyant-context-body small {
    color: #6b7280;
    font-style: normal;
    line-height: 1.45;
}

#order-overlay .checkout-voyant-context {
    border-color: var(--border);
    background: rgba(201, 169, 110, 0.08);
}

#order-overlay .checkout-voyant-context-initial {
    background: rgba(201, 169, 110, 0.16);
    color: var(--gold);
}

#order-overlay .checkout-voyant-context-body p {
    color: var(--muted2);
}

#order-overlay .checkout-voyant-context-body strong {
    color: var(--ink);
}

#order-overlay .checkout-voyant-context-body em,
#order-overlay .checkout-voyant-context-body small {
    color: var(--muted2);
}

#order-overlay .checkout-offer-badge {
    display: inline-block;
    justify-self: start;
    margin-bottom: 5px;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

#order-overlay .step-field-group {
    margin-bottom: 14px;
}

#order-overlay .field-label {
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d6cec0;
}

#order-overlay .field-hint {
    margin-top: 5px;
    font-size: 11.5px;
    line-height: 1.6;
    color: #b0a89c;
    font-style: italic;
}

#order-overlay .checkout-consent-inline {
    margin-bottom: 14px;
    padding: 12px 13px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: 10px;
}

#order-overlay .checkout-consent-inline input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

#order-overlay .checkout-consent-inline strong,
#order-overlay .checkout-consent-inline em {
    font-size: 11.5px;
    line-height: 1.6;
}

#order-overlay .checkout-consent-inline strong {
    color: #e4dbce;
}

#order-overlay .checkout-consent-inline em {
    color: #a79f93;
    font-style: italic;
}

.checkout-recap {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--surf2);
    border: 1px solid var(--border);
}

.checkout-recap-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--muted2);
}

.checkout-recap-row:last-child {
    margin-bottom: 0;
}

.checkout-recap-row strong {
    color: var(--ink);
    font-weight: 500;
}

.checkout-recap-sep {
    height: 1px;
    margin: 10px 0;
    background: var(--border);
}

.checkout-recap-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
}

.checkout-recap-total .total-amount {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
}

.checkout-recap-note {
    margin: 8px 0 0;
    font-size: 11px;
    color: var(--muted2);
    line-height: 1.5;
}

#order-overlay .checkout-collapse {
    margin-bottom: 14px;
    border-radius: 8px;
}

#order-overlay .checkout-collapse summary {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--ink);
}

#order-overlay .checkout-collapse-body {
    padding: 14px 16px;
}

#order-overlay .field-grid-compact {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#order-overlay .checkout-block {
    padding: 0;
    background: transparent;
    border: 0;
}

#order-overlay .payment-element {
    border-radius: 8px;
}

#order-overlay .legal-acceptance-block {
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

#order-overlay .legal-acceptance-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: #b7afa2;
}

#order-overlay .legal-acceptance-text a {
    color: var(--gold);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

#order-overlay .checkout-sticky-footer {
    position: sticky;
    flex-shrink: 0;
    bottom: 0;
    margin: 0;
    padding: 14px 20px 20px;
    background: rgba(22, 22, 24, 0.98);
    border-top: 1px solid var(--border);
    backdrop-filter: none;
    z-index: 4;
}

#order-overlay .checkout-step-feedback {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px 13px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.28);
    background: rgba(201, 169, 110, 0.10);
    color: #f1e7d6;
    font-size: 12px;
    line-height: 1.55;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#order-overlay .checkout-step-feedback::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.18);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

#order-overlay .checkout-footer-cta {
    width: 100%;
    min-height: 0;
    padding: 15px;
    border-radius: 8px;
    background: var(--gold);
    color: #0e0e10;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

#order-overlay .checkout-footer-cta:hover {
    opacity: 0.92;
    transform: none;
}

#order-overlay .checkout-footer-cta.is-blocked,
#order-overlay .checkout-footer-cta[aria-disabled="true"]:not(:disabled) {
    background: rgba(201, 169, 110, 0.38);
    color: rgba(14, 14, 16, 0.72);
    box-shadow: none;
    cursor: not-allowed;
}

#order-overlay .checkout-footer-cta.is-blocked:hover,
#order-overlay .checkout-footer-cta[aria-disabled="true"]:not(:disabled):hover {
    opacity: 1;
}

.checkout-footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.checkout-footer-meta span {
    font-size: 10px;
    letter-spacing: 0.04em;
    color: var(--muted2);
    text-align: center;
}

.checkout-footer-dot {
    color: var(--muted2);
}

.checkout-footer-payments {
    margin-top: 10px;
}

#order-overlay .checkout-footer-payments .payment-icons-list {
    justify-content: center;
}

#order-overlay .checkout-form input,
#order-overlay .checkout-form textarea,
#order-overlay .checkout-form select {
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

#order-overlay .checkout-form input.is-invalid,
#order-overlay .checkout-form textarea.is-invalid,
#order-overlay .checkout-form select.is-invalid {
    border-color: rgba(226, 75, 74, 0.78);
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.14);
}

#order-overlay .checkout-form input.is-invalid:focus,
#order-overlay .checkout-form textarea.is-invalid:focus,
#order-overlay .checkout-form select.is-invalid:focus {
    border-color: rgba(226, 75, 74, 0.88);
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.18);
}

#order-overlay .checkout-error {
    margin-top: 12px;
    padding: 12px 13px;
    border: 1px solid rgba(226, 75, 74, 0.3);
    border-radius: 10px;
    background: rgba(155, 28, 28, 0.16);
    color: #ffe1e1;
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    #order-overlay .checkout-form input,
    #order-overlay .checkout-form textarea,
    #order-overlay .checkout-form select {
        font-size: 16px;
    }
}

.lead-popup-dialog {
    width: min(520px, calc(100vw - 32px));
    text-align: center;
    padding: 44px;
}

.lead-popup-dialog h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--ink);
    font-style: italic;
    margin: 0 0 16px;
}

.lead-popup-note,
.lead-popup-skip {
    color: var(--muted2);
}

.lead-popup-skip {
    background: transparent;
    border: 0;
    cursor: pointer;
    margin-top: 10px;
}

.sticky-consult-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 32px;
    background: rgba(34, 34, 40, 0.96);
    border-top: 1px solid var(--border2);
    transform: translateY(105%);
    transition: transform 0.35s ease;
}

.sticky-consult-cta.is-visible {
    transform: translateY(0);
}

.sticky-consult-cta p {
    margin: 0;
    color: var(--ink2);
}

.sticky-consult-cta strong {
    color: var(--gold);
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

footer {
    background: rgba(15, 15, 18, 0.96);
    border-top: 1px solid var(--border);
}

.footer-col h3,
.footer-col p,
.footer-col li,
.footer-bottom p {
    color: var(--ink2);
}

.payment-icons-list {
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted2);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.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;
}

body.order-modal-open,
body.review-modal-open,
body.lead-popup-open {
    overflow: hidden;
}

.review-modal {
    width: min(760px, calc(100vw - 32px));
    padding: clamp(16px, 2.5vw, 28px);
}

.review-flow-shell {
    max-width: 100%;
}

.review-form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.review-rating-selector .offer-pill strong {
    white-space: nowrap;
}

.review-modal-textarea {
    min-height: 180px;
    resize: vertical;
}

.review-modal .checkout-error-inline {
    min-height: 1.6em;
    margin: 0;
}

.review-success-step {
    gap: 18px;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.35);
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .home-hero-v2-grid,
    .home-split-grid,
    .capture-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .guide-resource-grid,
    .guide-resource-columns {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .blog-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-band-grid,
    .guarantee-grid,
    .service-benefits-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .faq-grid,
    .faq-grid-compact,
    .process-grid,
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }

    .method-step {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-aside {
        position: static;
    }

    .review-modal .step-controls .btn {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        background: rgba(20, 20, 24, 0.98);
        border-top: 1px solid var(--border);
    }

    .hero-actions,
    .sticky-consult-cta,
    .footer-bottom,
    .capture-card,
    .guide-access-note,
    .blog-filter-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-grid,
    .blog-grid-v2,
    .trust-band-grid,
    .guarantee-grid,
    .service-benefits-grid,
    .testimonial-grid,
    .home-compare-card {
        grid-template-columns: 1fr;
    }

    .home-hero-v2-copy .hero-actions,
    .home-testimonials-v2 .section-head .hero-actions,
    .home-final-cta .container {
        gap: 18px;
    }

    .order-modal,
    .lead-popup-dialog {
        width: calc(100vw - 12px);
        max-height: calc(100vh - 12px);
        margin: 6px;
        padding: 18px;
    }

    .order-modal {
        padding: 14px;
    }

    .review-modal {
        width: calc(100vw - 12px);
        padding: 14px;
    }

    .review-rating-selector .offer-pill {
        grid-template-columns: auto 1fr;
    }

    .review-rating-selector .offer-pill strong {
        justify-self: start;
    }

    .review-rating-selector .offer-pill em {
        grid-column: 1 / -1;
        padding-left: 28px;
    }

    .sticky-consult-cta {
        padding: 14px 18px;
    }

    .sticky-consult-cta .btn {
        width: 100%;
    }
}
