:root {
   /* --bg-main: #dbe6f4;*/
	--bg-main: #f4f6f9;
    --bg-alt: #ffffff;
    --text-main: #1e2430;
    --text-soft: #5f6677;
    --accent: #c8a34a;
    --border-soft: #e2e6ef;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #ffffff, #eef2f8);
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/*
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}*/
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: none;          /* annule le max-width global */
    margin: 0 0 35px 0;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.section {
    padding: 45px 0;
}

.section-alt {
    background-color: #ffffff;
    background-color: var(--bg-alt);
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}
/*
.section p {
    max-width: 900px;
    margin: 0 ;
    color: var(--text-soft);
}
*/

.section .container p {
    max-width: 900px;
    color: var(--text-soft);
}


.feature-list {
    padding-left: 22px;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}

.steps {
    margin-top: 25px;
    padding-left: 22px;
}

.steps li {
    margin-bottom: 12px;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.price {
    font-size: 2.3rem;
    color: var(--accent);
    margin: 15px 0;
}

.price-note {
    color: var(--text-soft);
}



.contact-highlight {
    margin-top: 20px;
    font-size: 1.1rem;
}

footer {
    background: #ffffff;
    border-top: 1px solid var(--border-soft);
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}

.order-form {
    max-width: 700px;
    margin-top: 40px;
}

.order-form label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.order-form input,
.order-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    font-size: 15px;
    font-family: inherit;
}

.order-form .input-wrapper {
    margin-bottom: 18px;
}

.order-form button {
    margin-top: 30px;
}
.form-note {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 15px 0 25px;
}
.form-error {
    margin-top: 15px;
    color: #b00020;
    font-size: 0.95rem;
}

/* ================= Dashboard decoding ================= */

.decode-block {
    margin-top: 50px;
}

.decode-intro {
    max-width: 850px;
    margin-bottom: 25px;
    color: var(--text-soft);
}

.decode-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
}

.decode-table th,
.decode-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
}

.decode-table th {
    background: #f2f4fa;
    font-weight: 600;
    text-align: left;
}

.decode-note {
    font-size: 0.95rem;
    color: var(--text-soft);
    max-width: 900px;
}

.pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pill.green {
    background: #d8f3dc;
    color: #1b5e20;
}

.pill.red {
    background: #fde2e2;
    color: #8b0000;
}

.pill.blue {
    background: #e3f2fd;
    color: #0d47a1;
}
/* ===== Future cloud symbols ===== */

.triangle {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 6px;
}

.triangle.up {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #2e7d32;
}

.triangle.down {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 12px solid #c62828;
}

.square {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #1565c0;
    margin-right: 6px;
}
.dashboard-preview {
    max-width: 100%;
    height: 600px;          /* hauteur visible */
    overflow-y: auto;       /* scroll vertical */
    overflow-x: hidden;     /* pas de scroll horizontal */
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
}
/* ===== Market structure colors ===== */

.color-section {
    margin-top: 35px;
}

.color-section h4 {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.color-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #ffffff;
}

.color-sample {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.color-text {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Bullish colors */
.color-sample.bullish.light {
    background: rgb(205, 247, 177);
}
.color-sample.bullish.medium {
    background: rgb(0, 255, 0);
}
.color-sample.bullish.dark {
    background: rgb(111, 236, 82);
}

/* Neutral */
.color-sample.neutral {
    background: rgb(255, 255, 255);
}

/* Bearish colors */
.color-sample.bearish.light {
    background: rgb(255, 226, 221);
}
.color-sample.bearish.medium {
    background: rgb(255, 160, 122);
}
.color-sample.bearish.dark {
    background: rgb(233, 116, 81);
}

/* Feature list with checkmarks */

.feature-checks {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.feature-checks li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
}

.feature-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}

.insight-quote {
    margin: 40px auto 10px;
    max-width: 800px;
    text-align: center;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}



/* === In summary — style propre et centré */


.summary-text {
    max-width: 600px;
    margin: 0 auto;
}
/*
.summary-block {
    margin-top: 60px;
    text-align: center;
}
*/.summary-block {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-soft);
}
.summary-block h4 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.7;
}

.summary-block p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.05rem;
}
/*
.pricing-section {
    background: #ffffff;
}*/




/* ===== Direction arrows (text-based) ===== */

.arrow {
    font-weight: 700;
    font-size: 1.05em;
    display: inline-block;
    min-width: 1.2em;
    text-align: center;
}

.arrow.up {
    color: #2e7d32; /* green */
}

.arrow.down {
    color: #c62828; /* red */
}

.arrow.flat {
    color: #1565c0; /* blue */
}

/* ============================= */
/* Pivot proximity highlighting */
/* ============================= */

.pivot {
    display: inline-block;
    padding: 2px 6px;
    margin: 0 2px;
    font-weight: 600;
    border-radius: 4px;
    color: #333;
}

/* Encircled pivot = price very close */
.pivot.highlight {
    border: 1.5px solid #6b8fbf;   /* soft blue-grey */
    border-radius: 999px;
    padding: 2px 8px;
    background-color: rgba(107, 143, 191, 0.08);
}

.pivot.resistance.highlight {
    border-color: #d28b8b;
    background-color: rgba(210, 139, 139, 0.08);
}

.pivot.support.highlight {
    border-color: #8bbf9b;
    background-color: rgba(139, 191, 155, 0.08);
}

/* ============================= */
/* Levels & proximity indicators */
/* ============================= */

.level {
    display: inline-block;
    padding: 2px 6px;
    margin: 0 2px;
    font-weight: 600;
}

/* Proximity = black circle */
.level.near {
    border: 1.5px solid #000;
    border-radius: 999px;
    padding: 2px 8px;
}

/* VWAP proximity (same logic) */
.vwap.near {
    border: 1.5px solid #000;
    border-radius: 999px;
    padding: 2px 8px;
}

/* ============================= */
/* Universal proximity indicator */
/* ============================= */

.circled {
    border: 1.5px solid #000;
    border-radius: 999px;
    padding: 2px 8px;
}

/* ========================================= */
/* LINE 2 – Text-only levels & proximity     */
/* ========================================= */

/* Generic text level (no background) */
.level-text {
    display: inline-block;
    font-weight: 700;
    padding: 2px 4px;
    line-height: 1.2;
}

/* Pivot (always black) */
.level-text.pivot {
    color: #000;
}

/* Resistances (green text) */
.level-text.resistance {
    color: #2e7d32;
}

/* Supports (red text) */
.level-text.support {
    color: #c62828;
}

/* VWAP distance above VWAP */
.level-text.vwap-up {
    color: #2e7d32;
}

/* VWAP distance below VWAP */
.level-text.vwap-down {
    color: #c62828;
}

/* ========================================= */
/* Proximity highlighting (circle, neutral)  */
/* ========================================= */

.circled {
    border: 1.5px solid #000;
    border-radius: 999px;
    padding: 2px 8px;
}

/* ========================================= */
/* ATR letters (always black, no background) */
/* ========================================= */

.level-text.atr {
    color: #000;
    font-weight: 700;
}
/* ========================================= */
/* LINE 1 – Market structure (text colors)   */
/* ========================================= */

/* Generic structure letter (NO background) */
.struct {
    display: inline-block;
    font-weight: 700;
    padding: 0 2px;
    line-height: 1.2;
}

/* Bullish structure → green text */
.struct.bullish {
    color: #2e7d32; /* dark green */
}

/* Bearish structure → red text */
.struct.bearish {
    color: #c62828; /* dark red */
}

/* Neutral / inside → blue text */
.struct.neutral {
    color: #1565c0; /* deep blue */
}

/* RSI numeric emphasis */
.struct.rsi {
    font-weight: 700;
}
/* ===== Enhanced decode tables ===== */

.decode-table tbody tr:nth-child(odd) {
    background-color: #f9fafc; /* very light grey-blue */
}

.decode-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.decode-table tbody tr:hover {
    background-color: #eef2f8; /* subtle hover */
}

.decode-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
    white-space: normal;
}

.decode-table td {
    transition: background-color 0.15s ease;
}

/* =============================== */
/* USER GUIDE — PRINT MODE ONLY    */
/* =============================== */

@media print {

    /* ========================= */
    /* 1. Masquer le marketing   */
    /* ========================= */

    header,
    footer,
    .hero,
    .btn-primary,
    .pricing,
    .dashboard-preview,
    .contact-highlight {
        display: none !important;
    }

    /* ========================= */
    /* 2. Ne garder que le guide */
    /* ========================= */

    section:not(.user-guide) {
        display: none !important;
    }

    section.user-guide {
        display: block !important;
    }

    /* ========================= */
    /* 3. Lisibilité générale    */
    /* ========================= */

    body {
        background: #ffffff;
        color: #000000;
    }

    .section {
        padding: 40px 0;
        page-break-inside: avoid;
    }

    h2, h3, h4 {
        page-break-after: avoid;
    }

    /* ========================= */
    /* 4. TABLEAUX — FIX MAJEUR  */
    /* ========================= */

    .decode-table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid #ccc;
        font-size: 12px;
    }

    .decode-table th {
        background: #f2f4fa !important;
        color: #000;
        font-weight: 600;
        border: 1px solid #ccc;
    }

    .decode-table td {
        border: 1px solid #ccc;
        vertical-align: top;
    }

    /* Alternance des lignes */
    .decode-table tbody tr:nth-child(even) {
        background: #f9fafc;
    }

    /* ========================= */
    /* 5. Couleurs pédagogiques */
    /* ========================= */

    .struct.bullish,
    .pill.green {
        color: #1b5e20 !important;
    }

    .struct.bearish,
    .pill.red {
        color: #8b0000 !important;
    }

    .struct.neutral,
    .pill.blue {
        color: #0d47a1 !important;
    }

    /* Cercles (pivots / VWAP proches) */
    .circled {
        border: 1.5px solid #000 !important;
        border-radius: 999px;
        padding: 2px 6px;
    }

    /* ========================= */
    /* 6. Pagination propre     */
    /* ========================= */

    .decode-block {
        page-break-inside: avoid;
    }
	
	 /* ========================= */
    /* MARKET STRUCTURE INTENSITY */
    /* ========================= */

    .color-section {
        margin-top: 30px;
        page-break-inside: avoid;
    }

    .color-grid {
        display: block !important;
    }

    .color-card {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: #ffffff !important;
        page-break-inside: avoid;
    }

    /* ========================= */
    /* COLOR SAMPLES — FORCED    */
    /* ========================= */

    .color-sample {
        width: 18px;
        height: 18px;
        border-radius: 4px;
        border: 1px solid #444;
        flex-shrink: 0;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    /* Bullish */
    .color-sample.bullish.light {
        background: #c8e6c9 !important;
    }

    .color-sample.bullish.medium {
        background: #66bb6a !important;
    }

    .color-sample.bullish.dark {
        background: #1b5e20 !important;
    }

    /* Bearish */
    .color-sample.bearish.light {
        background: #ffcdd2 !important;
    }

    .color-sample.bearish.medium {
        background: #e57373 !important;
    }

    .color-sample.bearish.dark {
        background: #8b0000 !important;
    }

    /* Neutral */
    .color-sample.neutral {
        background: #cfd8dc !important;
    }

    /* ========================= */
    /* TEXT READABILITY          */
    /* ========================= */

    .color-text {
        font-size: 12px;
        line-height: 1.4;
        color: #000;
    }
	
	  button {
        display: none !important;
    }
	
	.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border-soft);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f2f4fa;
}

  .print-guide,
    .print-icon {
        display: none !important;
    }

	
}
.guide-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.print-guide {
    cursor: pointer;
    font-size: 1.25rem;      /* agrandit l’icône */
    opacity: 0.6;            /* plus lisible */
    transition: opacity 0.2s ease;
    user-select: none;
}

.print-guide:hover {
    opacity: 1;
}

.print-text {
    font-size: 0.85rem;
    margin-left: 6px;
    color: var(--text-soft);
}


.print-icon {
    font-size: 1.8rem;   /* ← augmente ici */
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.print-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* =============================== */
/* ===== PRICING ENHANCEMENT ===== */
/* =============================== */

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--text-soft);
}

.price-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.price-features li {
    margin-bottom: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.price-small {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-top: 15px;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

/* Featured (12 months) */
.price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
}

.price-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.price-card:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
}








/* === Pour donner une meilleure apparence aux items */




html {
    scroll-behavior: smooth;
}
.price-card ul {
    margin-top: 20px;
}

.price-card li {
    font-size: 0.95rem;
}
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-popular {
    font-size: 0.7rem;
    background: var(--accent);
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.price-highlight {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-soft);
}
/* ORDER PAGE */

.order-container {
    max-width: 550px;
    margin: auto;
}

.order-plan-box {
    background: #f5f7fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.full-width {
    width: 100%;
}

.form-error {
    color: #c0392b;
    margin-top: 15px;
    font-weight: 500;
}

/* SUCCESS PAGE */

.success-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.success-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 15px;
}

.success-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.hash-input {
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 32px 12px 12px; /* moins large à droite */
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-wrapper.valid input {
    border-color: #27ae60;
}

.input-wrapper.invalid input {
    border-color: #e74c3c;
}

.input-wrapper::after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
}

.input-wrapper.valid::after {
    content: "✔";
    color: #27ae60;
}

.input-wrapper.invalid::after {
    content: "✖";
    color: #e74c3c;
}

@keyframes softPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.input-wrapper.valid input {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.08);
    animation: softPop 0.25s ease;
}

.btn-primary {
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.decode-table {
    table-layout: fixed;
}

.decode-table th,
.decode-table td {
    overflow-wrap: break-word;
}


.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.install-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

.install-card:hover {
    transform: translateY(-4px);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.install-card h3 {
    margin-bottom: 15px;
}

.install-video {
    width: 100%;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
}

.license-note {
    margin-top: 40px;
    text-align: center;
    color: var(--text-soft);
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
}
.install-video {
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #000;
}

.disabled-btn {
    background: #d6dbe5;
    color: #6b7280;
    cursor: not-allowed;
    box-shadow: none;
}

.disabled-btn:hover {
    transform: none;
    box-shadow: none;
}
.coming-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-soft);
}