:root {
    --brand-black: #111111;
    --brand-yellow: #FEE600;
    --brand-white: #FFFFFF;
    --text-color: #222222;
    --bg-color: #FAFAFA;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

/* ===== HEADER ===== */
header {
    background: none;
    padding: 0;
    border-bottom: none;
    margin-bottom: 60px;
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
    background-color: var(--brand-black);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.testimonials-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--brand-black);
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
}

.testimonial-card {
    background: white;
    border: 3px solid var(--brand-black);
    padding: 40px;
    box-shadow: 10px 10px 0px var(--brand-yellow);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 800;
    color: var(--brand-black);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PRICING GRID ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

/* ===== CARDS ===== */
.card {
    background: var(--brand-white);
    border: 3px solid var(--brand-black);
    padding: 50px 40px;
    box-shadow: 12px 12px 0px var(--brand-black);
    display: flex;
    flex-direction: column;
}

.card.highlight {
    background: var(--brand-black);
    color: var(--brand-white);
    box-shadow: 12px 12px 0px var(--brand-yellow);
    transform: scale(1.02);
}

.card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1;
}

.card:not(.highlight) .price {
    color: var(--brand-black);
    border-bottom: 8px solid var(--brand-yellow);
    display: inline-block;
    padding-bottom: 5px;
}

.card.highlight .price {
    color: var(--brand-yellow);
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 30px;
}

li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--brand-yellow);
    border: 2px solid var(--brand-black);
}

.card.highlight li::before {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
}

.card.highlight h2,
.card.highlight strong,
.card.highlight h3,
.card.highlight p {
    color: var(--brand-white);
}

.card.highlight h3 {
    color: var(--brand-yellow);
}

strong {
    font-weight: 800;
}

/* Dividers */
.divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 30px 0;
}

/* Sections inside cards */
.card>div[style*="margin-bottom"] h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 900;
}

.card:not(.highlight) h3 {
    color: var(--brand-black);
}

/* ===== CHRONOGRAMME ===== */
.chronogramme {
    margin-top: auto;
    padding-top: 30px;
    border-top: 3px solid #eee;
}

.card.highlight .chronogramme {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.chronogramme h3 {
    margin-bottom: 20px;
    border-bottom: 3px solid var(--brand-yellow);
    display: inline-block;
    padding-bottom: 5px;
}

/* ===== PAYMENT BENEFITS ===== */
.payment-benefits {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.payment-benefits h3 {
    color: var(--brand-yellow) !important;
}

.value-tip {
    margin-top: 15px;
    background: var(--brand-yellow);
    color: var(--brand-black);
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--brand-black);
}

/* ===== WARNING BOX ===== */
.warning-box {
    margin-top: 30px;
    padding: 20px;
    background: #FFF;
    border: 3px solid var(--brand-yellow);
    color: var(--brand-black);
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== CONDITIONS ===== */
.conditions {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 25px 40px;
    background-color: #f5f5f5;
    border-left: 5px solid var(--brand-black);
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.conditions strong {
    color: var(--brand-black);
}

/* ===== EXTRA SECTIONS (WHY ME + FAQ) ===== */
.extra-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.section-box h2 {
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 4px solid var(--brand-yellow);
    display: inline-block;
    padding-bottom: 8px;
}

/* Why Me */
.why-me p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.why-me ul {
    margin-top: 25px;
}

.why-me li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-black);
    font-weight: 900;
    background: var(--brand-yellow);
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.75rem;
    border: none;
}

/* FAQ */
.faq-item {
    margin-bottom: 25px;
}

.faq-item strong {
    display: block;
    color: var(--brand-black);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 0;
}

/* ===== ROI SECTION ===== */
.roi-section {
    background: var(--brand-black);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-top: 8px solid var(--brand-yellow);
    margin-bottom: 0;
}

.roi-section h2 {
    color: var(--brand-yellow);
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 900;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.roi-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.roi-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    font-weight: 900;
}

.roi-item.bad h3 {
    color: #ff6b6b;
    border-color: #ff6b6b;
}

.roi-item.good h3 {
    color: var(--brand-yellow);
    border-color: var(--brand-yellow);
}

.roi-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    padding: 80px 40px;
    text-align: center;
    border-top: 8px solid var(--brand-black);
}

.contact-cta h2 {
    font-size: 2.2rem;
    color: var(--brand-black);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
}

.contact-cta p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.btn-contact {
    display: inline-block;
    background: var(--brand-black);
    color: var(--brand-yellow);
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border: 4px solid var(--brand-black);
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-contact:hover {
    background: transparent;
    color: var(--brand-black);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background: var(--brand-black);
    color: #CCCCCC;
    padding: 50px 40px;
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    filter: invert(1) brightness(100%);
}

footer p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .pricing-grid,
    .extra-sections-grid,
    .roi-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .testimonials-section,
    .conditions {
        padding: 0 20px;
    }

    .card {
        padding: 30px 25px;
    }

    .card.highlight {
        transform: scale(1);
    }
}


/* Awareness Hook Section */
.awareness-hook {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 4px solid var(--brand-black);
    position: relative;
}

/* Yellow accent behind */
.awareness-hook::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: var(--brand-yellow);
    z-index: -1;
}

.awareness-hook h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--brand-black);
    text-transform: uppercase;
    font-weight: 900;
}

.awareness-hook p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
}

.awareness-hook strong {
    background: var(--brand-yellow);
    padding: 0 5px;
    color: var(--brand-black);
}



/* ROI Visual Chart Redesign */
.roi-section {
    padding: 80px 20px;
    background: var(--brand-black);
    color: white;
    border-top: 10px solid var(--brand-yellow);
}

.roi-chart-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
}

.roi-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.roi-column.expense {
    border-color: #ff4757;
}

.roi-column.investment {
    background: rgba(254, 230, 0, 0.05);
    border-color: var(--brand-yellow);
    transform: scale(1.05);
    /* Make it pop */
    box-shadow: 0 0 30px rgba(254, 230, 0, 0.1);
}

.roi-header h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 5px;
}

.roi-column.expense h3 {
    color: #ff4757;
}

.roi-column.investment h3 {
    color: var(--brand-yellow);
}

.roi-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Visual Bars */
.roi-visual-bar {
    width: 60px;
    height: 150px;
    margin: 30px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: height 1s ease-out;
}

/* Red bar small and low */
.roi-column.expense .bar-fill {
    height: 30%;
    background: #ff4757;
}

/* Yellow bar full and high */
.roi-column.investment .bar-fill {
    height: 100%;
    background: var(--brand-yellow);
    box-shadow: 0 0 15px var(--brand-yellow);
}

.bar-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.roi-column.investment .bar-icon {
    top: auto;
    bottom: 10px;
    /* Icon inside for investment */
    color: black;
    z-index: 2;
}

.roi-content ul {
    text-align: left;
    margin: 0;
}

.roi-content li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 20px;
    color: #ddd;
}

.roi-column.expense li::before {
    content: "x";
    color: #ff4757;
    border-color: #ff4757;
    background: none;
    border: none;
    font-size: 1.2rem;
    line-height: 10px;
}

.roi-column.investment li::before {
    content: "✓";
    background: var(--brand-yellow);
    color: black;
    border: none;
}

/* VS Badge */
.roi-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand-black);
    border: 3px solid white;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 44px;
    border-radius: 50%;
    font-weight: 900;
    font-style: italic;
    z-index: 10;
}

@media (max-width: 768px) {
    .roi-chart-container {
        flex-direction: column;
        gap: 60px;
    }

    .roi-column.investment {
        transform: scale(1);
    }

    .roi-vs {
        top: 48%;
    }
}



/* HORMOZI STYLE SECTION */
.hormozi-style {
    background: var(--brand-black);
    color: white;
    padding: 80px 20px;
    border-top: 15px solid var(--brand-yellow);
    border-bottom: 15px solid var(--brand-yellow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Texture Effect */
.hormozi-style::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #222 0%, #000 100%);
    z-index: 0;
}

.hormozi-header,
.hormozi-grid,
.hormozi-footer {
    position: relative;
    z-index: 1;
}

.hormozi-header h2 {
    font-size: 3rem;
    color: var(--brand-yellow);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 4px 4px 0px #000;
}

.subtitle-hormozi {
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: 700;
}

/* GRID LAYOUT */
.hormozi-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center align items vertically */
    gap: 0;
    /* Gap handled by margin/transform */
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* CARD COMMON STYLES */
.hormozi-card {
    background: #1a1a1a;
    border: 4px solid #333;
    padding: 40px 30px;
    flex: 1;
    max-width: 450px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hormozi-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin: 20px 0;
    letter-spacing: 1px;
}

.card-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #555;
    color: white;
    padding: 10px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    border: 3px solid #000;
    white-space: nowrap;
}

.big-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.sub-number {
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 600;
}

.hormozi-list {
    text-align: left;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 4px;
}

.hormozi-list li {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ddd;
}

.hormozi-list li::before {
    display: none;
    /* Remove default bullets */
}

.hormozi-list li:last-child {
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

/* PAIN CARD SPECIFICS */
.hormozi-card.pain {
    border-color: #ff4757;
    transform: rotate(-2deg) scale(0.95);
    z-index: 1;
    opacity: 0.9;
}

.hormozi-card.pain:hover {
    transform: rotate(0) scale(1);
    opacity: 1;
    z-index: 10;
}

.hormozi-card.pain .card-badge {
    background: #ff4757;
    color: white;
}

.hormozi-card.pain h3 {
    color: #ff6b81;
}

.hormozi-card.pain .big-number {
    color: #ff4757;
}

.hormozi-card.pain strong {
    color: #ff6b81;
}

/* GAIN CARD SPECIFICS */
.hormozi-card.gain {
    border-color: var(--brand-yellow);
    transform: rotate(2deg) scale(1.1);
    /* Bigger */
    z-index: 5;
    background: black;
    box-shadow: 0 0 50px rgba(254, 230, 0, 0.15);
}

.hormozi-card.gain:hover {
    transform: rotate(0) scale(1.15);
    z-index: 10;
}

.hormozi-card.gain .card-badge {
    background: var(--brand-yellow);
    color: black;
}

.hormozi-card.gain h3 {
    color: var(--brand-yellow);
}

.hormozi-card.gain .big-number {
    color: var(--brand-yellow);
    text-shadow: 0 0 20px rgba(254, 230, 0, 0.3);
}

.hormozi-card.gain strong {
    color: white;
}

/* VS ELEMENT */
.hormozi-vs {
    background: white;
    color: black;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid black;
    z-index: 20;
    margin: 0 -30px;
    /* Overlap cards */
    position: relative;
    box-shadow: 0 0 0 5px var(--brand-yellow);
}

/* FOOTER */
.hormozi-footer {
    margin-top: 60px;
    font-size: 1.5rem;
    color: #fff;
}

.hormozi-footer strong {
    color: var(--brand-yellow);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 10px;
}

@media (max-width: 850px) {
    .hormozi-grid {
        flex-direction: column;
        gap: 50px;
    }

    .hormozi-vs {
        margin: -25px 0;
        transform: rotate(90deg);
    }

    .hormozi-card.pain,
    .hormozi-card.gain {
        transform: rotate(0) scale(1);
        max-width: 100%;
        width: 100%;
    }

    .hormozi-header h2 {
        font-size: 2rem;
    }
}





@media print {

    /* RESET & SETUP */
    @page {
        size: A4;
        margin: 0;
        /* Let body handle margins for full control */
    }

    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        margin: 0;
        padding: 10mm;
        width: 1024px;
        /* Force Desktop Width */
        zoom: 0.7;
        /* Scale down to fit A4 (~210mm) */
    }



    .container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    /* PRESERVE VISUALS (WYSIWYG) */
    .hormozi-style,
    .roi-section,
    .card.highlight,
    .contact-cta,
    header,
    footer,
    .awareness-hook {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        /* Ensure background images/colors print */
    }

    /* LAYOUT STABILITY */
    .pricing-grid,
    .hormozi-grid,
    .extra-sections-grid {
        display: flex !important;
        flex-direction: row !important;
        /* Force side-by-side */
        gap: 20px;
    }

    .hormozi-card,
    .card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    /* Fix Transforms for Print Sizing */
    /* We keep the rotation but ensure scaling doesn't overflow */
    .hormozi-card.pain,
    .hormozi-card.gain {
        /* Slightly reduce scale effect for print safety, but keep rotation */
        transform: rotate(var(--rotation, 0deg)) scale(0.9);
    }

    .hormozi-card.pain {
        --rotation: -2deg;
    }

    .hormozi-card.gain {
        --rotation: 2deg;
    }

    /* Ensure text contrast remains perfect */
    * {
        text-shadow: none !important;
        /* Text shadow often prints poorly */
    }

    /* Re-enable text shadow only where crucial for legibility on dark backgrounds */
    .hormozi-header h2,
    .big-number {
        text-shadow: 2px 2px 0 #000 !important;
    }
}