/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #e0e0e0;
    background-color: #111118;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* === Button Reset === */
button.landCfg {
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: inherit;
}

/* === Layout === */
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Top Navbar === */
.topnav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(17, 17, 24, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2a2a3a;
    padding: 0 1.5rem;
}

.topnav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.topnav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.topnav-logo img {
    width: 32px;
    height: 32px;
}

.topnav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    margin: 0 1.5rem;
}

.topnav-links::-webkit-scrollbar { display: none; }

.topnav-links a {
    white-space: nowrap;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #999;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.topnav-links a:hover {
    color: #fff;
    background: #1e1e2e;
}

.topnav-links a.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    font-weight: 600;
}

.topnav-ctas {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.topnav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.topnav-cta--primary {
    background: #ff6b6b;
    color: #fff;
}

.topnav-cta--primary:hover {
    background: #ff5252;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.topnav-cta--secondary {
    background: transparent;
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.topnav-cta--secondary:hover {
    background: rgba(255, 107, 107, 0.1);
}

/* === Hamburger Button (mobile only) === */
.topnav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.topnav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.topnav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.topnav-burger.open span:nth-child(2) {
    opacity: 0;
}

.topnav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === Mobile Menu (hidden by default) === */
.topnav-mobile {
    display: none;
}

/* === Hero (article header) === */
.hero {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, #1a1a28 0%, #111118 100%);
    border-bottom: 1px solid #1e1e2e;
}

.hero .container {
    max-width: 700px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.12);
    color: #ff6b6b;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
    font-style: italic;
}

.hero-buttons {
    display: none;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-cta {
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
}

.hero-cta:first-child {
    background: #ff6b6b !important;
    color: #fff !important;
}

.hero-cta:last-child {
    background: transparent !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
}

/* === Bottom Bar === */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(17, 17, 24, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1rem;
    border-top: 1px solid #2a2a3a;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.bottom-bar.visible {
    transform: translateY(0);
}

.bottom-bar .bottom-bar-cta {
    margin-top: 0 !important;
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
}

.bottom-bar .bottom-bar-cta:first-child {
    background: #ff6b6b !important;
    color: #fff !important;
}

.bottom-bar .bottom-bar-cta:last-child {
    background: transparent !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
}

/* === Sidebar (hidden by default, replaced by topnav) === */
.sidebar {
    display: none;
}

/* === Main === */
main {
    margin-left: 0;
    padding-bottom: 2rem;
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 0.8rem 0;
    background: #15151f;
    border-bottom: 1px solid #1e1e2e;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.breadcrumb a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-sep {
    color: #444;
}

.breadcrumb-current {
    color: #888;
}

/* === Article lead (intro) === */
.review-lead {
    padding: 3rem 0 2rem;
}

.review-lead .container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.review-lead-logo {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 14px;
    background: #1e1e2e;
    padding: 12px;
    border: 1px solid #2a2a3a;
}

.review-lead-text {
    flex: 1;
}

.review-lead-text p {
    font-size: 1.15rem;
    color: #bbb;
    line-height: 1.9;
}

.review-lead-text strong {
    color: #fff;
}

/* === Content Sections === */
.review-block {
    padding: 1.2rem 0;
}

.review-block .container {
    background: #1a1a28;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 2.5rem;
}

.review-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
}

.review-block p {
    color: #bbb;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-block p:last-child {
    margin-bottom: 0;
}

.review-block strong {
    color: #e0e0e0;
}

.review-block ul {
    color: #bbb;
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}

.review-block li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.review-block li strong {
    color: #ff6b6b;
}

/* === Pro/Con Grid === */
.procon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.procon-col h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a3a;
}

.procon-col--pro h3 {
    color: #4ecdc4;
}

.procon-col--con h3 {
    color: #ff6b6b;
}

.procon-item {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    align-items: flex-start;
}

.procon-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 2px;
}

.procon-col--pro .procon-icon {
    background: rgba(78, 205, 196, 0.15);
    color: #4ecdc4;
}

.procon-col--con .procon-icon {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.procon-text {
    font-size: 0.92rem;
    color: #bbb;
    line-height: 1.6;
}

.procon-text strong {
    color: #e0e0e0;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

/* === Pricing Strip === */
.pricing-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 0.5rem;
}

.pricing-item {
    background: #111118;
    border: 1px solid #2a2a3a;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.pricing-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b6b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-bottom: 0.2rem;
}

.pricing-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* === FAQ === */
.review-faq {
    padding: 1.2rem 0;
}

.review-faq .container {
    background: #1a1a28;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 2.5rem;
}

.review-faq h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
}

.faq-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid #222233;
}

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

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-item p {
    color: #999;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* === Verdict Banner === */
.review-verdict {
    margin: 2rem 0;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(135deg, #1e1e2e, #2a1a2e);
    border-top: 3px solid #ff6b6b;
    border-bottom: 3px solid #ff6b6b;
    text-align: center;
}

.review-verdict .container {
    max-width: 650px;
}

.review-verdict h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.review-verdict p {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-verdict p:last-child {
    margin-bottom: 0;
}

.verdict-score {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

/* === Internal Links === */
.review-block a,
.review-faq a,
.review-verdict a,
.review-lead a {
    color: #ff6b6b;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 107, 0.3);
    font-weight: 600;
    transition: color 0.15s, border-color 0.15s;
}

.review-block a:hover,
.review-faq a:hover,
.review-verdict a:hover,
.review-lead a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* === Offer Grid (homepage) === */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111118;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.offer-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.1);
}

.offer-card-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    border-radius: 10px;
}

.offer-rating {
    display: inline-block;
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.offer-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #fff;
    margin-bottom: 0.2rem;
}

.offer-desc {
    display: block;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* === Quiz Tool === */
.quiz-block .container {
    text-align: center;
}

.quiz-block h2 {
    margin-bottom: 0.5rem;
}

.quiz-block > .container > p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

#quizTool {
    min-height: 160px;
}

.quiz-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    max-width: 500px;
    margin: 0 auto;
}

.quiz-option {
    background: #111118;
    border: 1px solid #2a2a3a;
    color: #ccc;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.quiz-option:hover {
    border-color: #ff6b6b;
    color: #fff;
    background: rgba(255, 107, 107, 0.08);
}

.quiz-result {
    text-align: center;
}

.quiz-result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quiz-result-card {
    display: block;
    max-width: 360px;
    margin: 0 auto 1.2rem;
    background: #111118;
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.quiz-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.15);
}

.quiz-result-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-bottom: 0.3rem;
}

.quiz-result-desc {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.quiz-result-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff6b6b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.quiz-reset {
    background: none;
    border: none;
    color: #666;
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.15s;
}

.quiz-reset:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }
}

/* === Footer === */
footer {
    padding: 3rem 0 5rem;
    text-align: center;
    border-top: 1px solid #1e1e2e;
}

footer p {
    font-size: 0.78rem;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* === Responsive === */
@media (max-width: 768px) {
    .topnav-burger {
        display: flex;
    }

    .topnav-links--desktop {
        display: none;
    }

    .topnav-ctas {
        display: none;
    }

    .topnav-mobile {
        display: none;
        flex-direction: column;
        padding: 0.5rem 1.5rem 1rem;
        gap: 0.15rem;
        border-top: 1px solid #2a2a3a;
        max-height: 70vh;
        overflow-y: auto;
    }

    .topnav-mobile.open {
        display: flex;
    }

    .topnav-mobile a {
        display: block;
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: #ccc;
        text-decoration: none;
        border-radius: 8px;
        transition: color 0.15s, background 0.15s;
    }

    .topnav-mobile a:hover,
    .topnav-mobile a.active {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

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

    .pricing-strip {
        grid-template-columns: 1fr;
    }

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

    .review-block .container,
    .review-faq .container {
        padding: 1.5rem;
    }

    .review-lead .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
    }
}

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

    .topnav-ctas .topnav-cta--secondary {
        display: none;
    }
}

/* === Prelinker Form === */
.ptprelinker-register-form {
    /****** En tête gold / iron / silver ******/
    --ptprelinker-css-bg-primary-register-gold: #1e1e2e !important;
    --ptprelinker-css-ft-primary-register-gold: #ff6b6b !important;

    /****** Bouton ******/
    --ptprelinker-css-bg-success: #ff6b6b !important;
    --ptprelinker-css-border-success: #ff6b6b !important;
    --ptprelinker-css-border-hover-success: #ff5252 !important;
    --ptprelinker-css-hover-success: #ff5252 !important;
    --ptprelinker-css-ft-success: #fff !important;

    /****** Content ******/
    --ptprelinker-css-bg-body: #111118 !important;
    --ptprelinker-css-middle: #e0e0e0;

    /****** Icon ******/
    --ptprelinker-css-bg-icon-register-gold: #2a1a2e !important;
    --ptprelinker-css-color-icon-register-gold: #ff6b6b !important;

    /****** Input ******/
    --ptprelinker-css-bg-input: #1e1e2e !important;
    --ptprelinker-css-ft-placeholder: #888 !important;
}
