
    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
        --navy: #1F3864;
        --navy-dark: #15264A;
        --navy-light: #2C4A7C;
        --gold: #B8913F;
        --gold-light: #D4A858;
        --gold-pale: #F4E8D0;
        --cream: #FFFBF0;
        --white: #FFFFFF;
        --text: #2a2a2a;
        --text-light: #595959;
        --red: #C00000;
        --green: #2D7D3E;
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: 'Cairo', sans-serif;
        color: var(--text);
        background: var(--cream);
        line-height: 1.7;
        overflow-x: hidden;
    }

    .en { font-family: 'Inter', sans-serif; direction: ltr; display: inline-block; }

    /* ============ COUNTDOWN BAR ============ */
    .countdown-bar {
        background: linear-gradient(135deg, #8B0000 0%, #C00000 100%);
        color: white;
        padding: 14px 20px;
        text-align: center;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .countdown-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        font-weight: 600;
    }

    .countdown-text {
        font-size: 15px;
        color: var(--gold-pale);
    }

    .countdown-timer {
        display: flex;
        gap: 6px;
        font-family: 'Inter', monospace;
        font-weight: 800;
    }

    .timer-unit {
        background: var(--gold);
        color: white;
        padding: 4px 10px;
        border-radius: 6px;
        min-width: 38px;
        text-align: center;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(184, 145, 63, 0.4);
    }

    .timer-sep { color: var(--gold); font-weight: 800; padding: 0 2px; }

    /* ============ HERO ============ */
    .hero {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        color: white;
        padding: 80px 20px 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(184, 145, 63, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(184, 145, 63, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
    .narrow { max-width: 900px; margin: 0 auto; }

    .hero-badge {
        display: inline-block;
        background: rgba(184, 145, 63, 0.2);
        border: 1.5px solid var(--gold);
        color: var(--gold-light);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 24px;
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 52px);
        font-weight: 900;
        line-height: 1.25;
        margin-bottom: 24px;
        color: white;
    }

    .hero h1 .highlight {
        color: var(--gold-light);
        position: relative;
        white-space: normal;
    }

    .hero-sub {
        font-size: clamp(16px, 2vw, 21px);
        color: var(--gold-pale);
        max-width: 800px;
        margin: 0 auto 40px;
        font-weight: 600;
        line-height: 1.7;
    }

    .price-box {
        display: inline-block;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(184, 145, 63, 0.4);
        backdrop-filter: blur(8px);
        padding: 30px 40px;
        border-radius: 20px;
        margin: 20px 0 35px;
    }

    .price-old {
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        color: rgba(255,255,255,0.6);
        text-decoration: line-through;
        text-decoration-thickness: 3px;
        text-decoration-color: var(--red);
        margin-bottom: 8px;
        font-weight: 600;
    }

    .price-new {
        font-family: 'Inter', sans-serif;
        font-size: clamp(48px, 8vw, 80px);
        font-weight: 900;
        color: var(--gold-light);
        line-height: 1;
        margin-bottom: 8px;
    }

    .price-new .currency { font-size: 0.5em; color: var(--gold-pale); }

    .price-save {
        background: var(--gold);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 15px;
        font-weight: 700;
        display: inline-block;
        margin-top: 8px;
    }

    .cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: white;
        padding: 22px 60px;
        font-size: 22px;
        font-weight: 800;
        border-radius: 14px;
        text-decoration: none;
        box-shadow: 0 12px 30px rgba(184, 145, 63, 0.5);
        transition: all 0.3s;
        font-family: 'Cairo', sans-serif;
        border: none;
        cursor: pointer;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(184, 145, 63, 0.6);
    }

    .cta-btn .arrow { margin-right: 8px; font-size: 0.9em; }

    /* ============ URGENCY BOX ============ */
    .urgency-box {
        display: block;
        margin: 14px auto 0;
        padding: 10px 16px;
        width: fit-content;
        max-width: calc(100% - 16px);
        text-align: center;
        box-sizing: border-box;
        background: linear-gradient(135deg, #8B0000 0%, #C00000 100%);
        color: #fff;
        font-weight: 800;
        font-size: clamp(13px, 2.2vw, 15px);
        border-radius: 12px;
        border: 2px solid #ff6b6b;
        box-shadow: 0 6px 20px rgba(192,0,0,0.45), 0 0 0 4px rgba(255,107,107,0.15);
        animation: urgency-shake 1.6s ease-in-out infinite;
        line-height: 1.6;
    }
    @media (max-width: 480px) {
        .urgency-box { font-size: 12.5px; padding: 9px 12px; margin-top: 12px; }
    }
    @keyframes urgency-shake {
        0%, 100% { transform: translateX(0) rotate(0deg); }
        15% { transform: translateX(-4px) rotate(-0.6deg); }
        30% { transform: translateX(4px) rotate(0.6deg); }
        45% { transform: translateX(-3px) rotate(-0.4deg); }
        60% { transform: translateX(3px) rotate(0.4deg); }
        75% { transform: translateX(-2px) rotate(-0.2deg); }
    }


    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 8px;
        justify-content: center;
        align-items: stretch;
        margin: 18px auto 0;
        max-width: 440px;
        color: var(--gold-pale);
        font-size: 11px;
        font-weight: 700;
    }

    .hero-trust span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 6px 8px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(184, 145, 63, 0.35);
        border-radius: 8px;
        white-space: nowrap;
        line-height: 1.15;
    }
    .hero-trust .check {
        color: var(--gold-light);
        font-size: 13px;
        font-weight: 900;
    }

    @media (min-width: 700px) {
        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 22px;
            max-width: none;
            font-size: 14px;
        }
        .hero-trust span { background: transparent; border: none; padding: 0; }
    }

    /* ============ SECTIONS ============ */
    .section {
        padding: 80px 20px;
    }

    .section-light { background: var(--cream); }
    .section-white { background: white; }
    .section-pale { background: linear-gradient(180deg, var(--cream) 0%, var(--gold-pale) 100%); }
    .section-navy { background: var(--navy); color: white; }

    .section-label {
        text-align: center;
        font-size: 13px;
        font-weight: 800;
        color: var(--gold);
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .section-title {
        text-align: center;
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .section-navy .section-title { color: white; }

    .section-subtitle {
        text-align: center;
        font-size: 18px;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 60px;
        line-height: 1.8;
    }

    .section-navy .section-subtitle { color: var(--gold-pale); }

    /* ============ CRISIS SECTION ============ */
    .crisis-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 50px;
    }

    .crisis-card {
        background: white;
        padding: 32px 28px;
        border-radius: 16px;
        border-right: 5px solid var(--red);
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    .crisis-card-icon { font-size: 36px; margin-bottom: 16px; }

    .crisis-card h3 {
        color: var(--navy);
        font-size: 19px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .crisis-card p {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.8;
    }

    .crisis-realization {
        text-align: center;
        background: var(--navy);
        color: white;
        padding: 40px 30px;
        border-radius: 20px;
        max-width: 800px;
        margin: 40px auto 0;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.7;
        position: relative;
    }

    .crisis-realization .quote-mark {
        position: absolute;
        top: 10px;
        right: 30px;
        font-size: 70px;
        color: var(--gold);
        opacity: 0.4;
        font-family: 'Inter', serif;
        line-height: 1;
    }

    .crisis-realization strong { color: var(--gold-light); }

    /* ============ PROMISE SECTION ============ */
    .promise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .promise-card {
        background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
        padding: 36px 28px;
        border-radius: 16px;
        border-right: 5px solid var(--gold);
        text-align: center;
    }

    .promise-card-icon {
        font-size: 48px;
        margin-bottom: 16px;
        display: block;
    }

    .promise-card h3 {
        color: var(--navy);
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .promise-card p {
        color: var(--text);
        font-size: 15px;
        line-height: 1.8;
    }

    /* ============ PRODUCTS SHOWCASE ============ */
    .product-group {
        margin-bottom: 50px;
    }

    .group-title {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--gold-pale);
    }

    .group-title .num {
        background: var(--gold);
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-weight: 800;
        flex-shrink: 0;
    }

    .group-title h3 {
        color: var(--navy);
        font-size: 24px;
        font-weight: 800;
    }

    .group-title .price-tag {
        margin-right: auto;
        background: var(--navy);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
    }

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

    .product-card {
        background: white;
        border: 1.5px solid var(--gold-pale);
        border-radius: 14px;
        padding: 24px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(31, 56, 100, 0.1);
        border-color: var(--gold);
    }

    .product-card .icon {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 14px;
        box-shadow: 0 4px 12px rgba(184, 145, 63, 0.3);
    }

    .product-card h4 {
        color: var(--navy);
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .product-card .price {
        font-family: 'Inter', sans-serif;
        color: var(--gold);
        font-weight: 800;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .product-card .price s { color: #aaa; }

    .product-card p {
        color: var(--text-light);
        font-size: 14px;
        line-height: 1.7;
    }

    /* ============ VALUE STACK ============ */
    .stack-table {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(31, 56, 100, 0.1);
        max-width: 800px;
        margin: 0 auto;
    }

    .stack-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .stack-table th {
        background: var(--navy);
        color: white;
        padding: 16px 20px;
        text-align: right;
        font-size: 16px;
        font-weight: 700;
    }

    .stack-table th:last-child { text-align: left; }

    .stack-table td {
        padding: 14px 20px;
        border-bottom: 1px solid var(--gold-pale);
        font-size: 15px;
    }

    .stack-table td:last-child {
        text-align: left;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        color: var(--navy);
    }

    .stack-table tr:nth-child(even) { background: var(--cream); }

    .stack-table .total-original {
        background: var(--gold-pale) !important;
    }

    .stack-table .total-original td {
        font-weight: 800;
        font-size: 17px;
        color: var(--text);
        padding: 18px 20px;
    }

    .stack-table .total-original td:last-child {
        text-decoration: line-through;
        text-decoration-color: var(--red);
        text-decoration-thickness: 2px;
    }

    .stack-table .total-bundle {
        background: var(--gold) !important;
        color: white !important;
    }

    .stack-table .total-bundle td {
        color: white !important;
        font-weight: 900;
        font-size: 22px;
        padding: 22px 20px;
        border: none;
    }

    .stack-table .savings-row td {
        background: var(--navy);
        color: white !important;
        text-align: center !important;
        padding: 16px 20px;
        font-weight: 700;
        font-size: 18px;
    }

    /* ============ WHY DIFFERENT ============ */
    .compare-table-wrap {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(31, 56, 100, 0.1);
        max-width: 1000px;
        margin: 0 auto;
        overflow-x: auto;
    }

    .compare-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .compare-table th {
        background: var(--navy);
        color: white;
        padding: 16px 12px;
        text-align: center;
        font-size: 14px;
        font-weight: 800;
    }

    .compare-table th:first-child { text-align: right; padding-right: 20px; }

    .compare-table th.us {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        font-size: 15px;
    }

    .compare-table td {
        padding: 14px 12px;
        border-bottom: 1px solid var(--gold-pale);
        text-align: center;
        font-size: 14px;
        color: var(--text);
    }

    .compare-table td:first-child {
        text-align: right;
        padding-right: 20px;
        font-weight: 700;
        color: var(--navy);
    }

    .compare-table .check { color: var(--green); font-size: 20px; font-weight: 800; }
    .compare-table .cross { color: var(--red); font-size: 20px; font-weight: 800; }
    .compare-table .partial { color: #c98a00; font-size: 18px; font-weight: 800; }

    .compare-table td.us-col {
        background: var(--gold-pale);
        font-weight: 700;
    }

    /* ============ TESTIMONIALS ============ */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .testimonial {
        background: white;
        padding: 32px 28px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        border-top: 4px solid var(--gold);
        position: relative;
    }

    .testimonial .quote-icon {
        position: absolute;
        top: 16px;
        left: 24px;
        font-size: 50px;
        color: var(--gold);
        opacity: 0.2;
        line-height: 1;
        font-family: 'Inter', serif;
    }

    .testimonial-text {
        color: var(--text);
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 20px;
        font-style: italic;
    }

    .testimonial-result {
        background: var(--gold-pale);
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 16px;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        color: var(--navy);
        font-size: 15px;
        text-align: center;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-top: 16px;
        border-top: 1px solid var(--gold-pale);
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 18px;
        flex-shrink: 0;
    }

    .testimonial-name { font-weight: 800; color: var(--navy); font-size: 16px; }
    .testimonial-role { font-size: 13px; color: var(--text-light); }

    .testimonial-disclaimer {
        text-align: center;
        font-size: 13px;
        color: var(--text-light);
        margin-top: 40px;
        font-style: italic;
    }

    /* ============ HOW IT WORKS ============ */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .step-card {
        background: white;
        padding: 36px 28px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        position: relative;
    }

    .step-number {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: white;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-weight: 900;
        box-shadow: 0 6px 18px rgba(184, 145, 63, 0.4);
    }

    .step-card h3 {
        color: var(--navy);
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .step-card p {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.8;
    }

    /* ============ FAQ ============ */
    .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 14px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        overflow: hidden;
        border: 1.5px solid transparent;
        transition: border-color 0.3s;
    }

    .faq-item.active { border-color: var(--gold); }

    .faq-question {
        padding: 22px 26px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        color: var(--navy);
        font-size: 16px;
        background: white;
        transition: background 0.3s;
    }

    .faq-question:hover { background: var(--cream); }

    .faq-toggle {
        background: var(--gold-pale);
        color: var(--navy);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 900;
        flex-shrink: 0;
        margin-right: 12px;
        transition: all 0.3s;
    }

    .faq-item.active .faq-toggle {
        background: var(--gold);
        color: white;
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 26px;
        color: var(--text-light);
        line-height: 1.9;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 26px 22px;
    }

    /* ============ FINAL CTA ============ */
    .final-cta {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        color: white;
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .final-cta::before {
        content: '◆ ◆ ◆';
        display: block;
        color: var(--gold);
        letter-spacing: 10px;
        font-size: 20px;
        margin-bottom: 24px;
    }

    .final-cta h2 {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 900;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .final-cta .highlight { color: var(--gold-light); }

    .final-cta p {
        font-size: 18px;
        color: var(--gold-pale);
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.8;
    }

    .guarantee-box {
        background: rgba(184, 145, 63, 0.15);
        border: 1.5px solid var(--gold);
        padding: 28px 30px;
        border-radius: 16px;
        max-width: 600px;
        margin: 30px auto;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: right;
    }

    .guarantee-shield {
        background: var(--gold);
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        flex-shrink: 0;
    }

    .guarantee-content h4 {
        color: var(--gold-light);
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .guarantee-content p {
        color: white;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }

    /* ============ FOOTER ============ */
    footer {
        background: var(--navy-dark);
        color: var(--gold-pale);
        padding: 50px 20px 30px;
        text-align: center;
    }

    .footer-ornament {
        color: var(--gold);
        letter-spacing: 10px;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .footer-brand {
        font-size: 22px;
        font-weight: 800;
        color: white;
        margin-bottom: 10px;
    }

    .footer-links {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 30px 0 20px;
    }

    .footer-links a {
        color: var(--gold-pale);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--gold-light); }

    .footer-copyright {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        border-top: 1px solid rgba(184, 145, 63, 0.2);
        padding-top: 20px;
        margin-top: 20px;
    }

    /* ============ HERO PRODUCT SLIDER ============ */
    .hero-slider-section {
        margin: 35px auto 30px;
        max-width: 1100px;
        position: relative;
        padding: 0 60px;
    }

    .hero-slider-label {
        text-align: center;
        color: var(--gold);
        font-weight: 800;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 16px;
        font-family: 'Inter', sans-serif;
    }

    .hero-slider-label::before, .hero-slider-label::after {
        content: '◆';
        margin: 0 12px;
        color: var(--gold-light);
    }

    .hero-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero-slider::-webkit-scrollbar { display: none; }

    .hero-slider-track {
        display: flex;
        gap: 18px;
        padding: 0 5px;
    }

    .hero-slide {
        flex: 0 0 200px;
        scroll-snap-align: center;
        cursor: pointer;
        transition: transform 0.4s ease;
        position: relative;
    }

    .hero-slide:hover {
        transform: translateY(-10px);
    }

    .hero-slide .book-cover {
        width: 100%;
        aspect-ratio: 3/4;
        padding: 14px 12px;
    }


    .product-image-shell {
        position: relative;
        width: 100%;
        aspect-ratio: 3/4;
        border-radius: 6px;
        overflow: hidden;
        background: color-mix(in srgb, var(--navy) 88%, black);
        box-shadow: 0 12px 24px rgba(0,0,0,0.28), 0 4px 8px rgba(0,0,0,0.18);
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        background: color-mix(in srgb, var(--navy) 88%, black);
    }

    .fallback-book {
        position: absolute;
        inset: 0;
    }

    .product-image-shell:not(.is-fallback) .fallback-book {
        display: none;
    }

    .showcase-book-button,
    .carousel-book-button {
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        font: inherit;
        color: inherit;
        text-align: inherit;
    }

    .showcase-book-button {
        display: block;
    }

    .hero-slide-label {
        text-align: center;
        margin-top: 14px;
        font-weight: 800;
        color: var(--navy);
        font-size: 13px;
        line-height: 1.4;
        min-height: 36px;
    }

    .hero-slide-zoom {
        position: absolute;
        top: 10px;
        left: 10px;
        background: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--navy);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .hero-slide:hover .hero-slide-zoom {
        opacity: 1;
    }

    .hero-arrow {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        border: 3px solid white;
        color: white;
        font-size: 32px;
        font-weight: 900;
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(184,145,63,0.3);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        line-height: 1;
        padding: 0 0 4px 0;
        animation: heroArrowPulse 2s ease-in-out infinite;
    }

    @keyframes heroArrowPulse {
        0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(184,145,63,0.5); }
        50% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 10px rgba(184,145,63,0); }
    }

    .hero-arrow:hover {
        background: var(--gold);
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(184, 145, 63, 0.4);
    }

    .hero-arrow-prev { right: 10px; }
    .hero-arrow-next { left: 10px; }

    .hero-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold-pale);
        transition: all 0.3s;
        cursor: pointer;
        border: none;
        padding: 0;
    }

    .hero-slider-dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px;
    }

    @media (max-width: 700px) {
        .hero-slider-section { padding: 0 50px; }
        .hero-slide { flex: 0 0 160px; }
        .hero-arrow { width: 48px; height: 48px; font-size: 28px; }
        .hero-arrow-prev { right: 4px; }
        .hero-arrow-next { left: 4px; }
    }

    /* ============ LIGHTBOX MODAL ============ */
    .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(10, 23, 48, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s;
        z-index: 9999;
        padding: 30px 20px;
        backdrop-filter: blur(8px);
    }

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

    .lightbox-content {
        max-width: 1040px;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 460px) minmax(0, 420px);
        gap: 40px;
        align-items: center;
        transform: scale(0.85);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    }

    .lightbox.active .lightbox-content {
        transform: scale(1);
        opacity: 1;
    }

    .lightbox-media-column {
        width: 100%;
    }

    .lightbox-main-image {
        position: relative;
        width: 100%;
        max-width: 420px;
        aspect-ratio: 3/4;
        margin: 0 auto;
        border-radius: 8px;
        overflow: hidden;
        background: var(--navy-dark);
        box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    }

    .lightbox-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .image-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.6);
        border: 1px solid rgba(255,255,255,0.3);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        font-weight: 700;
        display: none;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
        z-index: 2;
    }

    .image-nav.is-visible {
        display: flex;
    }

    .image-nav:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

    .image-nav-prev { right: 10px; }
    .image-nav-next { left: 10px; }

    .lightbox-thumbnails {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 16px;
        flex-wrap: wrap;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .lightbox-thumbnails .thumb {
        width: 60px;
        height: 80px;
        border-radius: 4px;
        overflow: hidden;
        border: 2px solid transparent;
        cursor: pointer;
        padding: 0;
        background: var(--navy-dark);
        transition: all 0.2s;
    }

    .lightbox-thumbnails .thumb.active {
        border-color: var(--gold);
        transform: scale(1.05);
    }

    .lightbox-thumbnails .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .lightbox-info {
        color: white;
        padding: 0 10px;
        text-align: right;
    }

    .lightbox-info .lightbox-eyebrow {
        color: var(--gold-light);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-family: 'Inter', sans-serif;
    }

    .lightbox-info h3 {
        font-size: 26px;
        font-weight: 900;
        margin-bottom: 10px;
        color: white;
    }

    .lightbox-info p {
        color: rgba(255,255,255,0.85);
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .lightbox-info .lightbox-price {
        display: inline-block;
        background: var(--gold);
        color: white;
        padding: 8px 22px;
        border-radius: 30px;
        font-weight: 800;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
    }

    .lightbox-image-counter {
        display: none;
        color: rgba(255,255,255,0.7);
        font-size: 13px;
        margin-top: 10px;
        font-family: 'Inter', sans-serif;
    }

    .lightbox-image-counter.is-visible {
        display: block;
    }

    .lightbox-close {
        position: absolute;
        top: 25px;
        left: 25px;
        background: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 22px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
        color: var(--navy);
        font-weight: 700;
        transition: transform 0.2s;
    }

    .lightbox-close:hover {
        transform: rotate(90deg) scale(1.1);
        background: var(--gold);
        color: white;
    }

    .lightbox-counter {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255,255,255,0.7);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        background: rgba(0,0,0,0.4);
        padding: 6px 16px;
        border-radius: 20px;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.15);
        border: 2px solid rgba(255,255,255,0.3);
        color: white;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 26px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .lightbox-nav:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

    .lightbox-nav-prev { right: 30px; }
    .lightbox-nav-next { left: 30px; }

    @media (max-width: 860px) {
        .lightbox-content {
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 460px;
            text-align: center;
        }

        .lightbox-info {
            text-align: center;
        }
    }

    @media (max-width: 860px) {
        .lightbox { padding: 16px 12px; align-items: flex-start; overflow-y: auto; }
        .lightbox-content { max-height: none; }
        .lightbox-main-image { max-width: 320px; aspect-ratio: 3/4; }
        .lightbox-nav { background: var(--gold); border-color: var(--gold); box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
    }

    @media (max-width: 600px) {
        .lightbox { padding: 12px 8px 24px; }
        .lightbox-content { gap: 16px; padding-top: 60px; }
        .lightbox-main-image { max-width: 240px; }
        .lightbox-nav {
            width: 40px; height: 40px; font-size: 22px;
            background: var(--gold); border-color: var(--gold);
            color: white; box-shadow: 0 4px 14px rgba(0,0,0,0.5);
            top: auto; bottom: 14px; transform: none;
        }
        .lightbox-nav-prev { right: 16px; left: auto; }
        .lightbox-nav-next { left: 16px; right: auto; }
        .lightbox-close { top: 12px; left: 12px; width: 40px; height: 40px; font-size: 18px; }
        .lightbox-info { padding: 0 4px; }
        .lightbox-info h3 { font-size: 20px; }
        .lightbox-info p { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
        .lightbox-info .lightbox-eyebrow { font-size: 11px; letter-spacing: 1.5px; }
        .lightbox-info .lightbox-price { font-size: 14px; padding: 6px 18px; }
        .lightbox-thumbnails .thumb { width: 48px; height: 64px; }
        .lightbox-counter { display: none; }
    }

    /* ============ VISUAL PRODUCT SHOWCASE ============ */
    .visual-showcase {
        background: linear-gradient(180deg, #2D2A6E 0%, #1F1B4D 100%);
        padding: 80px 20px 100px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .visual-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, rgba(184, 145, 63, 0.2) 0%, transparent 60%);
        pointer-events: none;
    }

    .showcase-badge {
        display: inline-block;
        background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
        color: white;
        padding: 14px 36px;
        border-radius: 30px;
        font-weight: 800;
        font-size: 16px;
        margin-bottom: 28px;
        box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
        position: relative;
        z-index: 2;
    }

    .showcase-title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 900;
        color: white;
        margin-bottom: 60px;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .books-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
        max-width: 1100px;
        margin: 0 auto 60px;
        position: relative;
        z-index: 2;
        perspective: 1200px;
    }

    @media (max-width: 900px) {
        .books-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    }

    @media (max-width: 600px) {
        .books-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    }

    .book-cover {
        aspect-ratio: 3/4;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 14px 12px;
        color: white;
        text-align: right;
        font-weight: 800;
        box-shadow: 0 12px 24px rgba(0,0,0,0.4), 0 4px 8px rgba(0,0,0,0.2);
        position: relative;
        transition: transform 0.4s ease;
        overflow: hidden;
    }

    .book-cover::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 6px;
        width: 2px;
        background: rgba(255,255,255,0.2);
    }

    .book-cover:hover {
        transform: translateY(-12px) rotate(-2deg);
    }

    .showcase-book-button:hover .product-image-shell {
        transform: translateY(-12px) rotate(-2deg);
    }

    .book-cover .book-eyebrow {
        font-size: 9px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Inter', sans-serif;
        margin-bottom: 4px;
    }

    .book-cover .book-title {
        font-size: clamp(11px, 1.5vw, 17px);
        line-height: 1.2;
        text-shadow: 0 1px 3px rgba(0,0,0,0.4);
        font-weight: 900;
    }

    .book-cover .book-icon {
        font-size: clamp(28px, 4vw, 42px);
        text-align: center;
        margin: 8px 0;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }

    .book-cover .book-brand {
        font-size: 8px;
        opacity: 0.85;
        text-align: right;
        border-top: 1px solid rgba(255,255,255,0.25);
        padding-top: 6px;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* Unique color per book */
    .book-1 { background: linear-gradient(135deg, #1F3864, #2C4A7C); }
    .book-2 { background: linear-gradient(135deg, #2D7D3E, #4CAF50); }
    .book-3 { background: linear-gradient(135deg, #6A1B9A, #9C27B0); }
    .book-4 { background: linear-gradient(135deg, #B71C1C, #E53935); }
    .book-5 { background: linear-gradient(135deg, #00695C, #00897B); }
    .book-6 { background: linear-gradient(135deg, #01579B, #0288D1); }
    .book-7 { background: linear-gradient(135deg, #E65100, #F57C00); }
    .book-8 { background: linear-gradient(135deg, #AD1457, #EC407A); }
    .book-9 { background: linear-gradient(135deg, #F9A825, #FBC02D); color: #1F3864; }
    .book-9 .book-brand, .book-9 .book-eyebrow { color: #1F3864; }
    .book-9 .book-brand { border-top-color: rgba(31, 56, 100, 0.2); }
    .book-10 { background: linear-gradient(135deg, #4E342E, #795548); }
    .book-11 { background: linear-gradient(135deg, #37474F, #607D8B); }
    .book-12 { background: linear-gradient(135deg, #B8913F, #D4A858); }

    .showcase-pitch {
        font-size: clamp(17px, 2.5vw, 22px);
        line-height: 1.9;
        max-width: 800px;
        margin: 0 auto 40px;
        color: rgba(255,255,255,0.9);
        position: relative;
        z-index: 2;
    }

    .showcase-pitch strong {
        color: white;
        font-weight: 900;
    }

    .showcase-pitch .save-highlight {
        color: #FFD700;
        font-weight: 900;
        font-family: 'Inter', sans-serif;
    }

    .showcase-cta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #0a0a0a;
        color: white;
        padding: 24px 56px;
        font-size: 20px;
        font-weight: 800;
        border-radius: 60px;
        text-decoration: none;
        box-shadow: 0 14px 35px rgba(0,0,0,0.4);
        transition: transform 0.3s, box-shadow 0.3s;
        margin-bottom: 30px;
        font-family: 'Cairo', sans-serif;
        position: relative;
        z-index: 2;
    }

    .showcase-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    }

    .showcase-cta .rocket {
        font-size: 24px;
        animation: rocket-pulse 2s ease-in-out infinite;
    }

    @keyframes rocket-pulse {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    .arrow-down {
        display: block;
        margin: 30px auto 0;
        width: 60px;
        height: 60px;
        position: relative;
        z-index: 2;
    }

    .arrow-down svg {
        width: 100%;
        height: 100%;
    }

    .showcase-banner {
        background: linear-gradient(90deg, #C00000 0%, #E63946 100%);
        color: white;
        padding: 18px 24px;
        font-size: 17px;
        font-weight: 800;
        margin: 30px -20px -100px;
        box-shadow: 0 -8px 20px rgba(192, 0, 0, 0.3);
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .showcase-banner .alert {
        font-size: 24px;
        animation: alert-blink 1.2s ease-in-out infinite;
    }

    @keyframes alert-blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .showcase-banner .yellow { color: #FFE600; }

    /* ============ CONTINUOUS CAROUSEL ============ */
    .carousel-section {
        background: var(--cream);
        padding: 60px 0;
        overflow: hidden;
        position: relative;
    }

    .carousel-title {
        text-align: center;
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 40px;
    }

    .carousel-title span { color: var(--gold); }

    .carousel-wrapper {
        position: relative;
        overflow: hidden;
    }

    .carousel-wrapper::before, .carousel-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
    }

    .carousel-wrapper::before {
        right: 0;
        background: linear-gradient(270deg, var(--cream) 0%, transparent 100%);
    }

    .carousel-wrapper::after {
        left: 0;
        background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
    }

    .carousel-wrapper { direction: ltr; }

    .carousel-track {
        display: flex;
        flex-direction: row;
        gap: 20px;
        animation: carousel-scroll 50s linear infinite;
        width: max-content;
        will-change: transform;
    }

    .carousel-track:hover { animation-play-state: paused; }

    @keyframes carousel-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .carousel-book {
        width: 150px;
        flex-shrink: 0;
    }

    .carousel-book-button {
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .carousel-section { padding: 28px 0 24px; }
        .carousel-title { font-size: 20px; line-height: 1.3; margin-bottom: 14px; padding: 0 12px; font-weight: 800; }
        .carousel-track { gap: 12px; animation-duration: 40s; }
        .carousel-book { width: 95px; }
        .carousel-wrapper::before, .carousel-wrapper::after { width: 40px; }
    }

    /* ============ SCROLLABLE ITEMS BOX ============ */
    .items-box {
        background: white;
        border-radius: 20px;
        box-shadow: 0 16px 50px rgba(31, 56, 100, 0.12);
        max-width: 700px;
        margin: 0 auto;
        overflow: hidden;
        border: 1px solid var(--gold-pale);
    }

    .items-guarantee-bar {
        text-align: center;
        background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
        padding: 14px;
        color: var(--green);
        font-weight: 800;
        font-size: 15px;
        border-bottom: 1px solid #A5D6A7;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .items-guarantee-bar .check {
        background: var(--green);
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 900;
    }

    .items-payment {
        display: flex;
        gap: 6px;
        justify-content: center;
        padding: 18px;
        background: var(--cream);
        flex-wrap: nowrap;
        border-bottom: 1px solid var(--border);
    }

    .payment-icon-box {
        background: white;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 8px 14px;
        font-family: 'Inter', sans-serif;
        font-weight: 900;
        font-size: 13px;
        color: var(--navy);
        min-width: 60px;
        text-align: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    .items-box-header {
        background: linear-gradient(135deg, #f8f5ec 0%, #ede4cd 100%);
        padding: 24px 28px;
        text-align: center;
        border-bottom: 2px dashed var(--border);
    }

    .items-box-header .count {
        font-size: 26px;
        font-weight: 900;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .items-box-header .worth {
        color: var(--text-light);
        font-size: 15px;
    }

    .items-box-header .worth strong {
        color: var(--text);
        text-decoration: line-through;
        text-decoration-color: var(--red);
        font-family: 'Inter', sans-serif;
    }

    .items-scroll {
        max-height: 480px;
        overflow-y: auto;
        padding: 0;
    }

    .items-scroll::-webkit-scrollbar { width: 8px; }
    .items-scroll::-webkit-scrollbar-track { background: var(--cream); }
    .items-scroll::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 4px;
    }

    .items-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--gold-light);
    }

    .item-row {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        transition: background 0.2s;
    }

    .item-row:hover { background: var(--cream); }
    .item-row:last-child { border-bottom: none; }

    .item-thumb {
        width: 56px;
        height: 72px;
        border-radius: 5px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        position: relative;
    }

    .item-thumb::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 4px;
        width: 1.5px;
        background: rgba(255,255,255,0.25);
    }

    .item-info {
        flex: 1;
        min-width: 0;
    }

    .item-info h4 {
        color: var(--navy);
        font-size: 15px;
        font-weight: 800;
        margin-bottom: 4px;
        line-height: 1.4;
    }

    .item-info p {
        color: var(--text-light);
        font-size: 12px;
        line-height: 1.5;
    }

    .item-price {
        font-family: 'Inter', sans-serif;
        color: var(--text-light);
        text-decoration: line-through;
        text-decoration-color: var(--red);
        text-decoration-thickness: 2px;
        font-weight: 800;
        font-size: 17px;
        white-space: nowrap;
    }

    .items-total {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        padding: 28px;
        text-align: center;
        color: white;
    }

    .items-total .label {
        font-size: 15px;
        margin-bottom: 10px;
        color: var(--gold-pale);
    }

    .items-total .label strong { color: white; }

    .items-total .amount {
        font-family: 'Inter', sans-serif;
        font-size: 42px;
        font-weight: 900;
        color: var(--gold-light);
        line-height: 1;
        margin-bottom: 8px;
    }

    .items-total .amount .currency { font-size: 0.6em; color: var(--gold-pale); }

    .items-total .save-tag {
        display: inline-block;
        background: var(--gold);
        color: white;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 700;
        margin-top: 6px;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 768px) {
        .countdown-bar { padding: 6px 10px; }
        .countdown-content { gap: 8px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
        .countdown-text { font-size: 11px; }
        .countdown-timer { gap: 3px; }
        .timer-unit { padding: 2px 6px; font-size: 12px; min-width: 26px; border-radius: 4px; }
        .timer-sep { font-size: 12px; padding: 0 1px; }
        .hero { padding: 50px 16px 70px; }
        .price-box { padding: 24px 24px; }
        .cta-btn { padding: 18px 36px; font-size: 18px; }
        .section { padding: 36px 16px; }
        .section-label { font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
        .section-title { font-size: 20px; line-height: 1.3; margin-bottom: 10px; }
        .section-subtitle { font-size: 13px; line-height: 1.6; margin: 0 auto 24px; max-width: 100%; }
        .guarantee-box { flex-direction: column; text-align: center; padding: 24px; }
        .guarantee-shield { width: 60px; height: 60px; font-size: 26px; }
        .compare-table-wrap { overflow-x: hidden; border-radius: 14px; }
        .compare-table { min-width: 0; width: 100%; table-layout: fixed; }
        .compare-table th, .compare-table td { padding: 8px 4px; font-size: 10.5px; word-break: break-word; line-height: 1.3; }
        .compare-table th:first-child, .compare-table td:first-child { padding-right: 6px; font-size: 10.5px; }
        .compare-table .check, .compare-table .cross, .compare-table .partial { font-size: 14px; }
        .testimonials-grid { gap: 12px; grid-template-columns: 1fr; }
        .testimonial { padding: 16px 16px; border-radius: 12px; border-top-width: 3px; }
        .testimonial .quote-icon { font-size: 32px; top: 8px; left: 14px; }
        .testimonial-text { font-size: 12.5px; line-height: 1.7; margin-bottom: 12px; }
        .testimonial-result { font-size: 12px; padding: 8px 12px; margin-bottom: 10px; border-radius: 8px; }
        .testimonial-author { gap: 10px; padding-top: 10px; }
        .testimonial-avatar { width: 38px; height: 38px; font-size: 14px; }
        .testimonial-name { font-size: 13.5px; }
        .testimonial-role { font-size: 11px; }
        .testimonial-disclaimer { font-size: 11px; margin-top: 20px; }
        .steps-grid { gap: 12px; grid-template-columns: 1fr; }
        .step-card { padding: 16px 16px; border-radius: 12px; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; text-align: right; }
        .step-number { width: 40px; height: 40px; font-size: 18px; margin: 0; grid-row: 1 / span 2; align-self: center; }
        .step-card h3 { font-size: 14px; margin-bottom: 4px; line-height: 1.35; }
        .step-card p { font-size: 12.5px; line-height: 1.6; }
        .stack-table th, .stack-table td { padding: 10px 14px; font-size: 14px; }
        .crisis-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 30px; }
        .crisis-card { padding: 16px 18px; border-radius: 12px; border-right-width: 4px; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; }
        .crisis-card-icon { font-size: 26px; margin-bottom: 0; grid-row: 1 / span 2; align-self: center; }
        .crisis-card h3 { font-size: 15px; margin-bottom: 4px; line-height: 1.4; }
        .crisis-card p { font-size: 13px; line-height: 1.6; }
        .crisis-realization { padding: 24px 20px; font-size: 16px; margin-top: 24px; }
        .crisis-realization .quote-mark { font-size: 48px; top: 4px; right: 16px; }
        .promise-grid { grid-template-columns: 1fr; gap: 12px; }
        .promise-card { padding: 16px 18px; border-radius: 12px; border-right-width: 4px; text-align: right; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; }
        .promise-card-icon { font-size: 28px; margin-bottom: 0; grid-row: 1 / span 2; align-self: center; }
        .promise-card h3 { font-size: 15px; margin-bottom: 4px; line-height: 1.4; }
        .promise-card p { font-size: 13px; line-height: 1.6; }
        .hero { padding: 36px 14px 50px; }
        .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 16px; }
        .hero h1 { font-size: 22px; line-height: 1.3; margin-bottom: 14px; }
        .hero-sub { font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
        .hero-slider-section { margin: 18px auto 18px; padding: 0 8px; }
        .hero-slider-label { font-size: 11px; margin-bottom: 8px; letter-spacing: 1px; }
        .hero-arrow, .hero-arrow-prev, .hero-arrow-next { display: none !important; }
        .hero-slider { padding: 10px 0 14px; }
        .hero-slider-track { gap: 12px; padding: 0 4px; }
        .hero-slide { flex: 0 0 130px; }
        .hero-slide-label { font-size: 11px; }
        .price-old { font-size: 16px; }
        .price-new { font-size: 44px; }
        .price-save { font-size: 12px; padding: 4px 12px; }
        .hero-trust { gap: 14px; font-size: 12px; margin-top: 20px; }
        /* FAQ */
        .faq-list { padding: 0 4px; }
        .faq-item { margin-bottom: 10px; border-radius: 10px; }
        .faq-question { padding: 14px 16px; font-size: 13.5px; line-height: 1.5; gap: 10px; }
        .faq-toggle { width: 26px; height: 26px; font-size: 14px; flex-shrink: 0; }
        .faq-answer { font-size: 13px; line-height: 1.7; padding: 0 16px; }
        .faq-item.active .faq-answer { padding: 0 16px 14px; }
        /* GUARANTEE */
        .guarantee-box { padding: 18px 16px; gap: 14px; border-radius: 14px; }
        .guarantee-shield { width: 54px; height: 54px; font-size: 24px; }
        .guarantee-content h3 { font-size: 16px; margin-bottom: 6px; }
        .guarantee-content p { font-size: 13px; line-height: 1.6; }
        /* ITEMS BOX */
        .items-box { border-radius: 14px; max-width: 100%; }
        .items-box-header { padding: 14px 14px; font-size: 13px; }
        .items-guarantee-bar { padding: 10px 12px; font-size: 12.5px; gap: 6px; }
        .items-scroll { padding: 6px 0; max-height: 320px; }
        .item-row { padding: 10px 14px; gap: 10px; }
        .item-thumb { width: 36px; height: 36px; font-size: 18px; flex-shrink: 0; }
        .item-info h4 { font-size: 12.5px; line-height: 1.35; margin-bottom: 2px; }
        .item-info p { font-size: 11px; line-height: 1.4; }
        .item-price { font-size: 12.5px; white-space: nowrap; }
        .items-total { padding: 14px 16px; font-size: 13px; }
        .items-payment { padding: 12px 14px; gap: 8px; flex-wrap: wrap; justify-content: center; }
        .payment-icon-box { padding: 4px 8px; font-size: 11px; }
        /* STACK TABLE */
        .stack-table { border-radius: 14px; max-width: 100%; }
        .stack-table th, .stack-table td { padding: 8px 10px; font-size: 12px; }
        .stack-table .total-original td { padding: 12px 10px; font-size: 13px; }
        .stack-table .total-bundle td { padding: 14px 10px; font-size: 16px; }
        .stack-table .savings-row td { font-size: 13px; padding: 10px; }
        /* FINAL CTA / generic */
        .cta-btn { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
        /* FINAL CTA */
        .final-cta { padding: 36px 16px; }
        .final-cta::before { font-size: 14px; letter-spacing: 6px; margin-bottom: 14px; }
        .final-cta h2 { font-size: 22px; line-height: 1.3; margin-bottom: 12px; }
        .final-cta p { font-size: 13px; line-height: 1.6; margin-bottom: 20px; max-width: 100%; }
        .final-cta .price-box { padding: 18px 22px; margin: 12px 0 20px; border-radius: 14px; }
        /* FOOTER */
        .footer-brand { font-size: 14px; }
        .footer-links { gap: 10px; font-size: 12px; flex-wrap: wrap; justify-content: center; }
        .footer-copyright { font-size: 11px; }
        .footer-ornament { display: none; }
        /* SHOWCASE */
        .visual-showcase { padding: 22px 14px; border-radius: 14px; }
        .showcase-banner { font-size: 11px; padding: 5px 12px; }
        .showcase-badge { font-size: 11px; padding: 5px 12px; }
        .showcase-title { font-size: 18px; line-height: 1.3; }
        .showcase-pitch { font-size: 13px; line-height: 1.6; }
        .showcase-cta { font-size: 14px; padding: 12px 22px; }
    }


    /* ============ CONTENTS ACCORDION ============ */
    .ca-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 80px 16px; position: relative; overflow: hidden; direction: rtl; font-family: 'Cairo', sans-serif; }
    .ca-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(184, 145, 63, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(184, 145, 63, 0.1) 0%, transparent 40%); pointer-events: none; }
    .ca-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
    .ca-badge { display: inline-block; background: rgba(184, 145, 63, 0.2); color: var(--gold-light); padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(184, 145, 63, 0.4); }
    .ca-title { color: white; font-size: clamp(24px, 4vw, 38px); font-weight: 900; line-height: 1.3; text-align: center; margin: 0 auto 16px; max-width: 800px; }
    .ca-gold { color: var(--gold-light); }
    .ca-subtitle { color: rgba(255, 255, 255, 0.8); font-size: 17px; text-align: center; margin: 0 auto 30px; max-width: 640px; line-height: 1.7; }
    .ca-stats { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 30px auto 50px; max-width: 900px; }
    .ca-stat { text-align: center; background: rgba(255, 255, 255, 0.06); padding: 16px 24px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); min-width: 130px; }
    .ca-num { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 900; color: var(--gold-light); display: block; line-height: 1; }
    .ca-label { color: rgba(255, 255, 255, 0.8); font-size: 13px; margin-top: 6px; font-weight: 600; display: block; }
    .ca-accordion { max-width: 900px; margin: 0 auto; background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3); }
    .ca-item { border-bottom: 1px solid #E0D7C0; transition: background 0.2s; }
    .ca-item:last-child { border-bottom: none; }
    .ca-header { display: flex; align-items: center; gap: 18px; padding: 22px 28px; cursor: pointer; user-select: none; transition: background 0.2s; background: none; border: none; width: 100%; text-align: right; font-family: inherit; }
    .ca-header:hover { background: var(--gold-pale); }
    .ca-item.ca-active .ca-header { background: var(--gold-pale); }
    .ca-icon { font-size: 32px; flex-shrink: 0; width: 50px; text-align: center; }
    .ca-info { flex: 1; min-width: 0; }
    .ca-info h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 4px; line-height: 1.4; }
    .ca-info p { color: #6b6b6b; font-size: 14px; margin: 0; line-height: 1.5; }
    .ca-meta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .ca-count { background: var(--navy); color: white; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 800; font-family: 'Inter', sans-serif; white-space: nowrap; }
    .ca-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; transition: transform 0.3s; flex-shrink: 0; }
    .ca-item.ca-active .ca-arrow { transform: rotate(180deg); background: var(--gold); color: white; }
    .ca-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1); background: #FAF7F0; }
    .ca-item.ca-active .ca-body { max-height: 3000px; }
    .ca-body-inner { padding: 24px 28px 28px; }
    .ca-category { margin-top: 18px; }
    .ca-category:first-child { margin-top: 0; }
    .ca-category-title { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
    .ca-category-title::before { content: '◆'; margin-left: 8px; }
    .ca-files { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
    .ca-files li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14.5px; color: #2c2c2c; line-height: 1.55; }
    .ca-files li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
    .ca-files li.ca-bonus::before { content: '🎁'; }
    .ca-files li strong { color: var(--navy); font-weight: 700; margin-left: 4px; }
    .ca-summary { margin-top: 20px; padding: 14px 18px; background: white; border-radius: 10px; border-right: 4px solid var(--gold); font-size: 14px; color: #4a4a4a; line-height: 1.6; }
    .ca-summary strong { color: var(--navy); font-weight: 800; }
    .ca-footer-cta { text-align: center; margin-top: 50px; }
    .ca-footer-cta p { color: rgba(255, 255, 255, 0.85); font-size: 17px; margin-bottom: 20px; }
    .ca-price-highlight { color: var(--gold-light); font-weight: 800; font-size: 22px; }
    .ca-price-old { text-decoration: line-through; opacity: 0.7; }
    .ca-cta-btn { display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: white; padding: 18px 40px; border-radius: 50px; font-weight: 800; font-size: 18px; text-decoration: none; box-shadow: 0 12px 30px rgba(184, 145, 63, 0.4); transition: transform 0.2s, box-shadow 0.2s; }
    .ca-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(184, 145, 63, 0.5); }
    @media (max-width: 768px) {
        .ca-section { padding: 28px 12px 32px; }
        .ca-badge { font-size: 11px; padding: 5px 12px; }
        .ca-title { font-size: 20px; line-height: 1.3; margin: 10px 0 10px; font-weight: 800; }
        .ca-subtitle { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
        .ca-stats { gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
        .ca-stat { min-width: 0; flex: 1 1 calc(33% - 6px); padding: 8px 6px; border-radius: 10px; }
        .ca-num { font-size: 16px; line-height: 1.1; }
        .ca-label { font-size: 10px; line-height: 1.2; }
        .ca-header { padding: 12px 12px; gap: 10px; }
        .ca-icon { font-size: 22px; width: 30px; }
        .ca-info h3 { font-size: 13.5px; line-height: 1.35; }
        .ca-info p { font-size: 11.5px; line-height: 1.45; }
        .ca-count { font-size: 10px; padding: 3px 8px; }
        .ca-arrow { width: 24px; height: 24px; font-size: 12px; }
        .ca-body-inner { padding: 14px 12px 16px; }
        .ca-category-title { font-size: 13px; }
        .ca-files { grid-template-columns: 1fr; gap: 4px; }
        .ca-files li { font-size: 12.5px; line-height: 1.5; }
        .ca-summary { font-size: 12.5px; padding: 10px 12px; }
        .ca-footer-cta { padding: 20px 14px; margin-top: 24px; }
        .ca-cta-btn { padding: 14px 24px; font-size: 14px; }
        .ca-price-highlight { font-size: 14px; }
    }


    /* ============ HERO-LIGHTBOX-TWEAKS-V1 ============ */
    /* Hide product names under hero slides + tighten spacing */
    .hero-slider-section { margin: 18px auto 8px; }
    .hero-slider { padding: 12px 0 12px; }
    .hero-slide-label { display: none !important; }
    .hero-slide { transition: transform 0.35s ease, box-shadow 0.35s ease; }
    .hero-slide:hover { transform: translateY(-6px) scale(1.03); }
    .hero-slide:hover .product-image-shell { box-shadow: 0 18px 36px rgba(0,0,0,0.45), 0 6px 12px rgba(0,0,0,0.25); }
    .hero-slide-zoom { opacity: 0.85; pointer-events: none; }
    .hero-slide:hover .hero-slide-zoom { opacity: 1; transform: scale(1.08); }

    /* Responsive hero slider sizes */
    .hero-slide { flex: 0 0 clamp(150px, 18vw, 220px); }
    @media (max-width: 900px) {
        .hero-slider-section { padding: 0 48px; }
        .hero-slide { flex: 0 0 170px; }
    }
    @media (max-width: 600px) {
        .hero-slider-section { padding: 0 32px; margin: 12px auto 4px; }
        .hero-slide { flex: 0 0 140px; }
        .hero-slider-track { gap: 12px; }
    }
    @media (max-width: 380px) {
        .hero-slide { flex: 0 0 120px; }
    }

    /* Smoother lightbox open + clearly visible close button */
    .lightbox { padding: clamp(16px, 4vw, 40px); }
    .lightbox-content { transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease; }
    .lightbox-close {
        position: fixed;
        top: clamp(14px, 3vw, 28px);
        left: clamp(14px, 3vw, 28px);
        width: 52px; height: 52px;
        background: var(--gold);
        color: white;
        font-size: 26px;
        font-weight: 800;
        border: 3px solid white;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 4px rgba(184,145,63,0.25);
        z-index: 10001;
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }
    .lightbox-close::before { content: '\2715'; line-height: 1; }
    .lightbox-close:hover {
        transform: rotate(90deg) scale(1.08);
        background: var(--gold-light);
        box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 0 6px rgba(212,168,88,0.35);
    }

    @media (max-width: 600px) {
        .lightbox-close { width: 44px; height: 44px; font-size: 22px; border-width: 2px; }
        .lightbox-main-image { max-width: 86vw; }
        .lightbox-info h3 { font-size: 20px; }
        .lightbox-info p { font-size: 14px; }
    }


    /* ============ PHASE 13A: HERO DISCLAIMER + QUALIFICATION SECTION ============ */
    .hero-disclaimer { font-family: 'Cairo', sans-serif; }
    @media (max-width: 768px) {
        .hero-disclaimer { font-size: 11px !important; margin-top: 6px !important; padding: 0 12px; }
    }
    .qualify-section { padding-top: 60px; padding-bottom: 60px; }
    .qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
    .qualify-card { background: white; border-radius: 16px; padding: 28px 26px; box-shadow: 0 6px 24px rgba(31, 56, 100, 0.07); border-top: 4px solid transparent; }
    .qualify-card-yes { border-top-color: var(--green); }
    .qualify-card-no { border-top-color: var(--red); }
    .qualify-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1.5px solid var(--gold-pale); }
    .qualify-icon-circle { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: white; flex-shrink: 0; }
    .qualify-icon-yes { background: var(--green); }
    .qualify-icon-no { background: var(--red); }
    .qualify-card-head h3 { color: var(--navy); font-size: 19px; font-weight: 800; margin: 0; }
    .qualify-list { list-style: none; padding: 0; margin: 0; }
    .qualify-list li { position: relative; padding: 9px 22px 9px 0; color: var(--text); font-size: 14.5px; line-height: 1.7; border-bottom: 1px dashed rgba(184, 145, 63, 0.18); }
    .qualify-list li:last-child { border-bottom: none; }
    .qualify-list li::before { content: ''; position: absolute; right: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; }
    .qualify-card-yes .qualify-list li::before { background: var(--green); }
    .qualify-card-no .qualify-list li::before { background: var(--red); }
    .qualify-honesty { max-width: 850px; margin: 35px auto 0; background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%); border-right: 4px solid var(--gold); border-radius: 14px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
    .qualify-honesty-icon { font-size: 32px; flex-shrink: 0; line-height: 1; margin-top: 4px; }
    .qualify-honesty p { color: var(--text); font-size: 15px; line-height: 1.85; margin: 0; }
    .qualify-honesty strong { color: var(--navy); }
    @media (max-width: 768px) {
        .qualify-section { padding-top: 36px; padding-bottom: 36px; }
        .qualify-grid { grid-template-columns: 1fr; gap: 14px; }
        .qualify-card { padding: 18px 16px; border-radius: 12px; }
        .qualify-card-head { gap: 10px; margin-bottom: 12px; padding-bottom: 10px; }
        .qualify-icon-circle { width: 32px; height: 32px; font-size: 15px; }
        .qualify-card-head h3 { font-size: 15px; }
        .qualify-list li { font-size: 13px; padding: 7px 18px 7px 0; line-height: 1.6; }
        .qualify-list li::before { width: 6px; height: 6px; top: 14px; }
        .qualify-honesty { padding: 14px 14px; gap: 10px; margin-top: 22px; flex-direction: column; text-align: right; align-items: flex-end; }
        .qualify-honesty-icon { font-size: 24px; margin-top: 0; }
        .qualify-honesty p { font-size: 12.5px; line-height: 1.7; }
    }
    /* ============ PHASE 13B: OBJECTION HANDLING SECTION ============ */
    .objections-section { padding-top: 60px; padding-bottom: 60px; background: var(--cream); }
    .objections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
    .objection-card { background: white; border-radius: 14px; padding: 24px 22px; box-shadow: 0 4px 18px rgba(31, 56, 100, 0.06); border-right: 4px solid var(--gold); transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .objection-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(31, 56, 100, 0.1); }
    .objection-q { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px dashed rgba(184, 145, 63, 0.25); }
    .objection-icon { font-size: 26px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
    .objection-q h3 { color: var(--navy); font-size: 16px; font-weight: 800; line-height: 1.45; margin: 0; }
    .objection-a { color: var(--text); font-size: 14.5px; line-height: 1.85; margin: 0; }
    .objection-a strong { color: var(--navy); font-weight: 800; }
    @media (max-width: 768px) {
        .objections-section { padding-top: 36px; padding-bottom: 36px; }
        .objections-grid { grid-template-columns: 1fr; gap: 12px; }
        .objection-card { padding: 16px 14px; border-radius: 12px; border-right-width: 3px; }
        .objection-q { gap: 10px; margin-bottom: 10px; padding-bottom: 10px; }
        .objection-icon { font-size: 22px; }
        .objection-q h3 { font-size: 14px; line-height: 1.4; }
        .objection-a { font-size: 13px; line-height: 1.75; }
    }
    /* ============ PHASE 13B: FINAL OFFER POLISH ============ */
    .final-cta-microcopy { margin-top: 16px; color: var(--gold-pale); font-size: 14px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
    .final-cta-microcopy strong { color: white; }
    @media (max-width: 768px) {
        .final-cta-microcopy { font-size: 12.5px; margin-top: 12px; }
    }

    /* ============ MOHASEB.COM SYSTEM ============ */
    .mc.section-navy{background:radial-gradient(900px 500px at 85% -10%,rgba(184,145,63,.22),transparent 60%),linear-gradient(165deg,#0C1730 0%,var(--navy) 55%,var(--navy-dark) 100%);position:relative;overflow:hidden}
.mc .section-title{color:#fff}
.mc .section-subtitle{color:#c5cfe0}
.mc .section-label{color:var(--gold-light)}
.mc-band{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin:0 0 40px}
.mc-stat{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.14);border-radius:14px;padding:14px 22px;text-align:center;min-width:160px;backdrop-filter:blur(4px)}
.mc-stat .v{font-family:'Cairo',sans-serif;font-weight:900;font-size:21px;color:var(--gold-light);line-height:1.2}
.mc-stat .l{font-size:12.5px;color:#c5cfe0;font-weight:600;margin-top:4px}
.mc-show{display:grid;grid-template-columns:1.3fr .7fr;gap:28px;align-items:start;margin-bottom:30px}
.mc-app{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 40px 90px rgba(0,0,0,.45);border:1px solid rgba(184,145,63,.35);font-size:13px;color:var(--text)}
.mc-bar{background:linear-gradient(90deg,#e9edf3,#f4f6fa);padding:9px 12px;display:flex;align-items:center;gap:8px;border-bottom:1px solid #e2e6ee}
.mc-dots{display:flex;gap:6px}.mc-dots span{width:11px;height:11px;border-radius:50%}
.mc-dots span:nth-child(1){background:#ff6058}.mc-dots span:nth-child(2){background:#ffbd2e}.mc-dots span:nth-child(3){background:#28c941}
.mc-url{flex:1;background:#fff;border:1px solid #dde2ec;border-radius:7px;font-family:'Inter',sans-serif;font-size:11px;color:#8a93a6;padding:5px 12px;text-align:center}
.mc-top{background:var(--navy);color:#fff;display:flex;align-items:center;gap:12px;padding:11px 14px}
.mc-logo{font-family:'Cairo',sans-serif;font-weight:900;font-size:14px;white-space:nowrap}.mc-logo .d{color:var(--gold-light)}
.mc-search{flex:1;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:8px;color:#cdd6e6;font-size:11.5px;padding:7px 12px;min-width:0}
.mc-v{font-family:'Inter',sans-serif;font-size:11px;color:var(--gold-light);background:rgba(184,145,63,.2);padding:4px 9px;border-radius:20px}
.mc-bd{display:grid;grid-template-columns:150px 1fr;min-height:286px}
.mc-side{background:#FAF2E0;border-left:1px solid #ece2cd;padding:14px 10px}
.mc-side .h{font-size:10px;color:var(--text-light);font-weight:800;letter-spacing:.5px;margin:4px 6px 8px}
.mc-it{display:flex;align-items:center;justify-content:space-between;gap:6px;padding:8px 10px;border-radius:9px;font-weight:700;color:var(--navy);font-size:12px;margin-bottom:4px}
.mc-it.on{background:var(--navy);color:#fff}.mc-it.on .c{background:var(--gold);color:#19130a}
.mc-it .c{background:#e7dcc2;color:var(--navy);font-family:'Inter',sans-serif;font-weight:800;font-size:10px;min-width:20px;text-align:center;border-radius:20px;padding:1px 0}
.mc-it.s{font-size:11.5px;color:var(--text-light);font-weight:700}
.mc-main{padding:15px}
.mc-tia-h{font-family:'Cairo',sans-serif;font-weight:800;color:var(--navy);font-size:14px;margin-bottom:3px}
.mc-tia-d{font-size:11px;color:var(--text-light);margin-bottom:12px}
.mc-row{display:flex;gap:8px;margin-bottom:8px}
.mc-f{flex:1;background:var(--cream);border:1px solid #ece2cd;border-radius:8px;padding:7px 10px}
.mc-f .lb{font-size:9.5px;color:var(--text-light);font-weight:700;margin-bottom:2px}
.mc-f .vv{font-family:'Inter',sans-serif;font-weight:800;color:var(--navy);font-size:13px}
.mc-btn{background:linear-gradient(135deg,var(--gold-light),var(--gold));color:#19130a;text-align:center;font-family:'Cairo',sans-serif;font-weight:800;font-size:12.5px;padding:9px;border-radius:9px;margin:4px 0 12px}
.mc-res{background:var(--navy);border-radius:11px;padding:13px 14px;color:#fff}
.mc-res .rt{font-size:10px;color:var(--gold-light);font-weight:800;letter-spacing:.5px;margin-bottom:8px}
.mc-res .rr{display:flex;justify-content:space-between;align-items:center;padding:5px 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:12px}
.mc-res .rr:last-child{border:0}
.mc-res .rr b{font-family:'Inter',sans-serif;font-weight:800;color:#fff}
.mc-res .rr .g{color:var(--gold-light)}
.mc-note{margin-top:9px;background:rgba(45,125,62,.18);border:1px solid rgba(45,125,62,.45);color:#7fe0a0;border-radius:8px;padding:7px 10px;font-size:10.5px;font-weight:800;text-align:center}
.mc-feats{display:flex;flex-direction:column;gap:13px}
.mc-feat{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.13);border-radius:15px;padding:16px 18px;display:flex;gap:13px;align-items:flex-start;backdrop-filter:blur(4px)}
.mc-feat-ic{flex-shrink:0;width:42px;height:42px;border-radius:11px;background:linear-gradient(135deg,var(--navy-light),var(--navy));color:var(--gold-light);display:flex;align-items:center;justify-content:center;font-size:20px;border:1px solid rgba(212,168,88,.3)}
.mc-feat h4{font-size:15px;color:#fff;margin-bottom:3px}
.mc-feat p{font-size:12.5px;color:#b9c3d6;font-weight:500;line-height:1.6}
.mc-maplabel{text-align:center;font-size:13px;font-weight:800;color:var(--gold-light);letter-spacing:2px;text-transform:uppercase;margin:46px 0 22px}
.mc-map{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:30px}
.mc-mapc{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:20px 16px;transition:transform .3s,border-color .3s,background .3s}
.mc-mapc:hover{transform:translateY(-5px);border-color:rgba(212,168,88,.5);background:rgba(255,255,255,.06)}
.mc-mh{display:flex;align-items:center;gap:8px;margin-bottom:12px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.12)}
.mc-mh .i{font-size:20px}.mc-mh .n{font-family:'Cairo',sans-serif;font-weight:900;font-size:24px;color:var(--gold-light);line-height:1}
.mc-mh .t{font-family:'Cairo',sans-serif;font-weight:800;font-size:13.5px;color:#fff}
.mc-mapc ul{list-style:none;display:flex;flex-direction:column;gap:6px;margin:0;padding:0}
.mc-mapc li{font-size:12px;color:#c5cfe0;font-weight:600;display:flex;gap:6px;align-items:flex-start}
.mc-mapc li::before{content:'+';color:var(--gold);font-weight:900}
.mc-ai{display:flex;align-items:center;gap:16px;justify-content:center;flex-wrap:wrap;background:linear-gradient(135deg,rgba(184,145,63,.16),rgba(184,145,63,.04));border:1px dashed rgba(212,168,88,.55);border-radius:16px;padding:18px 24px;margin-bottom:34px}
.mc-ai .ic{font-size:30px}
.mc-ai .tx{font-weight:700;color:#eaf0fa;font-size:14.5px;max-width:62ch}
.mc-ai .tx b{color:var(--gold-light)}
.mc-cta{text-align:center}
.mc-cta .note{margin-top:14px;color:#9fb0cc;font-size:13.5px;font-weight:600}
@media(max-width:1024px){.mc-show{grid-template-columns:1fr}.mc-map{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.mc-map{grid-template-columns:1fr}.mc-bd{grid-template-columns:120px 1fr}.mc-stat{min-width:0;flex:1}}

    /* ===== MC SECTION MOBILE RESPONSIVE ===== */
    @media(max-width:640px){
        .mc.section{padding:60px 14px}
        .mc-band{gap:10px;margin-bottom:28px}
        .mc-stat{padding:11px 14px;min-width:0;flex:1 1 100%}
        .mc-stat .v{font-size:17px}
        .mc-show{gap:20px;margin-bottom:24px}
        .mc-app{font-size:12px}
        .mc-bar{padding:7px 9px;gap:6px}
        .mc-url{font-size:9.5px;padding:4px 8px}
        .mc-top{flex-wrap:wrap;gap:8px;padding:10px}
        .mc-logo{font-size:12.5px;white-space:normal}
        .mc-search{order:3;flex:1 1 100%;font-size:10.5px;padding:6px 10px}
        .mc-v{font-size:10px;padding:3px 7px}
        .mc-bd{grid-template-columns:1fr;min-height:0}
        .mc-side{border-left:0;border-bottom:1px solid #ece2cd;padding:10px;display:grid;grid-template-columns:repeat(2,1fr);gap:4px 8px}
        .mc-side .h{grid-column:1/-1;margin:6px 4px 4px}
        .mc-it{padding:6px 9px;font-size:11px;margin-bottom:0}
        .mc-main{padding:13px}
        .mc-tia-h{font-size:13px}
        .mc-tia-d{font-size:10.5px;margin-bottom:10px}
        .mc-row{flex-direction:column;gap:6px}
        .mc-f{padding:7px 10px}
        .mc-res{padding:11px 12px}
        .mc-res .rr{font-size:11.5px}
        .mc-note{font-size:10px}
        .mc-feats{gap:10px}
        .mc-feat{padding:13px 14px;gap:11px}
        .mc-feat-ic{width:38px;height:38px;font-size:18px}
        .mc-feat h4{font-size:14px}
        .mc-feat p{font-size:12px}
        .mc-maplabel{margin:32px 0 18px;font-size:12px;letter-spacing:1.5px}
        .mc-map{gap:12px;margin-bottom:24px}
        .mc-mapc{padding:16px 14px}
        .mc-mh .n{font-size:22px}
        .mc-mh .t{font-size:12.5px}
        .mc-mapc li{font-size:11.5px}
        .mc-ai{flex-direction:column;text-align:center;gap:10px;padding:18px 16px}
        .mc-ai .ic{font-size:26px}
        .mc-ai .tx{font-size:13px}
        .mc-cta .cta-btn{padding:18px 28px;font-size:17px;width:100%;max-width:360px}
        .mc-cta .note{font-size:12px;margin-top:11px}
    }

    /* ============ NEW BADGE RIBBON ============ */
    .product-image-shell[data-product-image="13"]::after,
    .product-image-shell[data-product-image="14"]::after {
        content: 'مضاف حديثًا';
        position: absolute;
        top: 14px;
        right: -42px;
        transform: rotate(45deg);
        background: linear-gradient(135deg, #8B0000 0%, #C00000 100%);
        color: #fff;
        font-family: 'Cairo', sans-serif;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 0.3px;
        padding: 5px 44px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.35);
        border-top: 1px solid rgba(255,255,255,0.35);
        border-bottom: 1px solid rgba(0,0,0,0.25);
        z-index: 5;
        pointer-events: none;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }



@font-face {
font-family: 'WistiaPlayerInterNumbersSemiBold';
font-feature-settings: 'tnum' 1;
src: url(data:application/x-font-woff;charset=utf-8;base64,d09GMk9UVE8AAAaMAAwAAAAACgAAAAZBAAMD1wAAAAAAAAAAAAAAAAAAAAAAAAAADYpwGhQbIBwqBmAAgTIBNgIkAzAEBgWDGgcgGykJEZWkARP8KHCbm2tEznyIN98tPTUk9Ig3oiVV3pbDIzXa+f/fZgXpALFTZhBoMVFC9cp036dXvRKVmVnsxe+D+1NDQI5lG7ikZWEINIElTeBIdnxlhauQ5GQtoLHA/wN0riVdSx5xgbxF3KTbgnjVQ4B9P7YqCx7FpEZK+6ilx0AoopUh4aExJEKmkU+0ncdr4iFfKhdSFD9y91LCRaxNbVqvi0dND3rxI7ndUDR7EiwT3bhiua9krFA0oepCy2hCjwmjnjDjKjNTDz2ZuHtN8820Wfw/l8u4w4yV/f8/6uscs5rmiN00LcP4hAofyZUSyS3WinX0RGFFtnGrjj36x6dlNa57+PLTlrUisH2n9orfgd+R34XfDd0NsWDXwfwhvKHpbs3UBni37dBlPvO4KYn/PgylilcgSdw6sjsSSxsRGfIJgqhi14bKZCHcQvjUh/+3HMotTYrGLVYCxyMFjEnYC98yTAp6atAKVxaZ9eu2NMji8WTj4w/Y34elD60PPwb5bEywLqAX/amwmUo6TBCy14N/TL44jb3sE5JdUIPXXI0RBSoGt3BUObn4agKGIxxQhlyQacbstK4fS2mZoBtFNQ1bd+4zND2vQu6anl7gWFOj8MV2DVMtU44xMhpwElrrjA7zO5IqWojd/v1Vso6cqp91zC2YrGhDOy07Iqyza2q9smDIwUYek0AWbCt/8x78QmrzayQ6xtpmqfCYsLfgU9HdeP3UqutZTTNd/9Q8k08XzXzIxSdvLPda8YaeeZnkxUwql0nDKyUYdaWZjGAy7UDLHpVqBVHTxSV0wBy21El9u/491ik2J3YkdiP2LPZL41RBeeNUWtp97Bbn0Ee1g9wr9qqV/X+4R9nlPX03743dylnaXZyNp8v58yLOsFYCbUnCVQzjN+5QhlmKccO7aMkueWJggROd4qnw2x5LydUcg/NRamE3XMlkGovpRWPKWEavP74P2O1RANM/3gIIPJj7TX+lqU2geQuaBx4B/7cWAOx0ucTiEHYJU9y5DBuUMYNIHeHZz9tn+Fw2G5EBTqUlHRfRi4eB5wNlJsRsv5k4b6HyFkhIC6BO4LzPbWhW7rbCcxubeKHOc6UaBKZBMMd4j8XuRUynOCCa4EMfF9grkI1NcTaSAVtk1nrIOwFfeEBlQw4f4phb6zHzBOm0ZZ0dBcaZRVdYIo5xYiyOMEWONwQHmjKGE//VuRBgul1QrpyxmMvF4vGj0xfuuQrNt4tVTsRhEnjY9AuKa1FVLSEneQWzFd5WbO7hasX08ONUOVQgwQuVqACFXkSoIoUgK1hJEkAgbkG5CjqBS5wrRFuY2IfVwhRnLsVyZTZpatveGR4yEbYqbE6J80nM4aa+LD7Oqmr8PdSJFUQVynmgN4lerGQV1+uLdYzdOFWHPW/iK2gIQayhizQ0NMwyvBEBlrDczRfmU40CTtAHqLQGnjQG8MYkxm1MwJuTqjHwVCu9iRJ1C8ojWGHxUYowH0c5X57zpXquvlw0wzHHGMTfufxiJ1psFJTzq6nGeDvHF4LgmHHWCUViZBaInRn+cswnBi460RBPRYg9TRUQ0CZUC5LAT0qLLu50FpdTeBhjGf7/h4dg9hE0uqsBx/saOcYRDIfnOhfzGFBHyizcJK3p2edUjWrC0rn1aGjXtfVUCHMAKKhlxV8eTEIcV2jCOdKiqahv/MisrfRQVnxPJoOU62mR6pu2ZllIzo8zOZqQB7kWJXW2/c0aihata5PcIVJKfFRgHAETmEQVTCELptGMGcyigTnMJ1voUVN6uCZS9pV2hrwl7FYMvBwtUSd7L7E5qP9t7BIPRF7EcmA9ct2nIPHrxgWajtDltbXuBLuaY6qRZGa5ZlX5anfR0lYXaHUzVSFjZa8rfdhZ8rKXFZg21LVL5LFjI5TlDIbwnFGHE2dypHs6Q50N015dpOgLONEUlOqoiQgIaeCsjMq9gITDKwRMieQgKUy9UQY1BTFYZU2KpE2SkILMIjW8IdFwIKmMaK8oClJVssAEtFnz5dQ1s+w6EZoNGtPGQfzx+aoE8ikiP8GCYOWtgB+HBdWDaxACAZInVq14dZI85RRDvZGIghyONw59KV/BBEQ02P1ER8hmNGiURT2hQP8WfAY=);
}



        .purchase-notif {
          position: fixed;
          bottom: 20px;
          left: 20px;
          z-index: 9999;
          display: flex;
          align-items: center;
          gap: 12px;
          background: #ffffff;
          border: 1px solid rgba(0,0,0,0.06);
          border-radius: 14px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
          padding: 12px 14px;
          padding-left: 36px;
          max-width: 320px;
          font-family: 'Cairo', system-ui, sans-serif;
          direction: rtl;
          opacity: 0;
          transform: translateY(20px) translateX(-10px);
          transition: opacity 320ms ease, transform 320ms ease;
          pointer-events: none;
        }
        .purchase-notif.visible {
          opacity: 1;
          transform: translateY(0) translateX(0);
          pointer-events: auto;
        }
        .purchase-notif__icon {
          flex-shrink: 0;
          width: 38px;
          height: 38px;
          border-radius: 50%;
          background: linear-gradient(135deg, #10b981, #059669);
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 18px;
          font-weight: 700;
        }
        .purchase-notif__body {
          flex: 1;
          min-width: 0;
        }
        .purchase-notif__title {
          font-size: 13px;
          font-weight: 700;
          color: #111827;
          line-height: 1.3;
        }
        .purchase-notif__desc {
          font-size: 12px;
          color: #4b5563;
          margin-top: 2px;
          line-height: 1.4;
        }
        .purchase-notif__time {
          font-size: 11px;
          color: #9ca3af;
          margin-top: 3px;
        }
        .purchase-notif__close {
          position: absolute;
          top: 6px;
          left: 8px;
          background: transparent;
          border: 0;
          color: #9ca3af;
          font-size: 16px;
          line-height: 1;
          cursor: pointer;
          padding: 4px;
          border-radius: 4px;
        }
        .purchase-notif__close:hover { color: #374151; background: rgba(0,0,0,0.05); }
        @media (max-width: 480px) {
          .purchase-notif { max-width: calc(100vw - 32px); left: 16px; bottom: 16px; }
        }
      
/* ===== Mobile spacing / wrap fixes ===== */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .hero { padding: 36px 18px 52px !important; }
  .hero .container, .container { max-width: 100% !important; padding-left: 0; padding-right: 0; box-sizing: border-box; }
  .hero h1 {
    font-size: 20px !important;
    line-height: 1.45 !important;
    padding-inline: 2px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero h1 .highlight { white-space: normal !important; }
  .hero-sub {
    font-size: 14px !important;
    line-height: 1.65 !important;
    padding-inline: 2px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-badge { white-space: normal !important; max-width: 100%; }
  .countdown-bar { padding: 10px 14px !important; }
  .countdown-text { font-size: 12.5px !important; line-height: 1.45; padding-inline: 4px; }
  .section, .final-cta, .faq, .compare, .testimonials { padding-left: 16px !important; padding-right: 16px !important; }
  .cta-btn, .ca-cta-btn, .showcase-cta { max-width: 100%; box-sizing: border-box; white-space: normal; line-height: 1.35; }
}
