/* ══════════════════════════════════════════════
   Urgency Bar & Countdown
══════════════════════════════════════════════ */
.urgency-bar {
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: .95rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

.countdown {
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 1.05rem;
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════
   Medical Disclaimer Ticker
══════════════════════════════════════════════ */
.medical-disclaimer {
    background-color: #FFF3CD;
    color: #856404;
    padding: 16px 15px;
    font-size: 0.95rem;
    border-top: 1px solid #FFEEBA;
    border-bottom: 1px solid #FFEEBA;
    text-align: center;
    line-height: 1.7;
}

.medical-disclaimer p {
    margin: 0;
    display: inline-block;
}

.medical-disclaimer i {
    font-size: 1.15rem;
    vertical-align: middle;
    margin-left: 6px;
    color: #856404;
}

/* ══════════════════════════════════════════════
   Badge & Pills (Hero)
══════════════════════════════════════════════ */
.badge {
    display: inline-block;
    background: rgba(201, 151, 58, .2);
    border: 1px solid rgba(201, 151, 58, .45);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 700;
}

.pill {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .9);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: .88rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: background var(--transition);
}

.pill:hover {
    background: rgba(255, 255, 255, .2);
}

/* ══════════════════════════════════════════════
   CTA Button
══════════════════════════════════════════════ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--green-dark);
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 24px rgba(201, 151, 58, .45);
    text-align: center;
    animation: pulseGlow 3s infinite;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 151, 58, .55);
    animation: none;
}

.cta-btn:active {
    transform: scale(.97);
}

/* Shine effect on CTA button */
.cta-btn::after {
    content: "";
    filter: blur(12px);
    pointer-events: none;
    background: #ffffff9b;
    width: 20px;
    height: 300%;
    position: absolute;
    top: -100%;
    left: -100%;
    transform: rotate(45deg);
    animation: shineEffect 3s ease-out infinite;
}

.cta-btn.cta-gold {
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    color: var(--white);
    box-shadow: 0 6px 24px rgba(13, 79, 60, .35);
}

.cta-btn.cta-gold:hover {
    box-shadow: 0 12px 36px rgba(13, 79, 60, .45);
}

.cta-arrow { font-size: 1.2rem; }

/* ══════════════════════════════════════════════
   Trust Lines
══════════════════════════════════════════════ */
.trust-line {
    margin-top: 14px;
    font-size: .87rem;
    color: rgba(255, 255, 255, .65);
}

.trust-line-o {
    margin-top: 14px;
    font-size: 30px;
    color: #0d4f3c;
}

/* ══════════════════════════════════════════════
   Hero Book Image Components
══════════════════════════════════════════════ */
.book-3d {
    position: relative;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .5));
}

.book-img {
    width: 380px;
    border-radius: 12px;
    display: block;
}

.book-glow {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(201, 151, 58, .35);
    pointer-events: none;
}

.price-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 151, 58, .35);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    color: rgba(255, 255, 255, .5);
    font-size: .95rem;
    text-decoration: line-through;
}

.new-price {
    color: var(--gold-light);
    font-size: 2rem;
    font-weight: 900;
}

.discount-tag {
    background: rgba(201, 151, 58, .25);
    color: var(--gold-light);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: .82rem;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   Section Shared Helpers
══════════════════════════════════════════════ */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.section-title.light { color: var(--white); }

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ══════════════════════════════════════════════
   Problem Cards
══════════════════════════════════════════════ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.problem-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 216, 216, 0.5);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.problem-card.visible {
    animation: fadeInUp 0.8s forwards;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(127, 29, 29, 0.08);
}

.problem-card__icon  { font-size: 2.5rem; margin-bottom: 14px; }
.problem-card__title { font-size: 1.1rem; font-weight: 800; color: #7F1D1D; margin-bottom: 8px; }
.problem-card__desc  { font-size: .92rem; color: #9A3A3A; }

/* Solution Bridge */
.solution-bridge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 50px 0 24px;
}

.bridge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.bridge-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-dark);
    white-space: nowrap;
    background: var(--green-pale);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(22, 102, 73, .2);
}

.solution-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.solution-text strong { color: var(--green-dark); }

/* ══════════════════════════════════════════════
   Chapter Cards
══════════════════════════════════════════════ */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.chapter-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, background 0.4s;
    opacity: 0;
}

.chapter-card.visible {
    animation: fadeInUp 0.8s forwards;
}

.chapter-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.chapter-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: .8rem;
    font-weight: 900;
    color: rgba(22, 102, 73, .25);
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
}

.chapter-card__icon  { font-size: 2.2rem; margin-bottom: 12px; }
.chapter-card__title { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.chapter-card__desc  { font-size: .9rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   Review Cards & Marquee
══════════════════════════════════════════════ */
.readers-count {
    text-align: center;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.marquee-container {
    overflow: hidden;
    padding: 20px 0;
    margin-top: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--green-dark), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--green-dark), transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    width: 350px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, background 0.4s;
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    background: rgba(255, 255, 255, 0.08);
}

.review-card.review-featured {
    background: rgba(201, 151, 58, .12);
    border-color: rgba(201, 151, 58, .35);
}

.featured-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.review-stars {
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    color: rgba(255, 255, 255, .88);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer strong {
    display: block;
    color: var(--white);
    font-size: .92rem;
}

.reviewer span {
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

img.reviewer-avatar {
    padding: 0;
    object-fit: cover;
    border: 2px solid var(--gold-light);
    background: none;
}

/* ══════════════════════════════════════════════
   Add Review Form
══════════════════════════════════════════════ */
.add-review-wrapper {
    max-width: 600px;
    margin: 60px auto 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(12px);
}

.add-review-title {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.add-review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.add-review-form .form-group {
    display: flex;
    gap: 16px;
}

.add-review-form input,
.add-review-form select,
.add-review-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.add-review-form input::placeholder,
.add-review-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.add-review-form textarea { resize: vertical; }

.add-review-form input:focus,
.add-review-form select:focus,
.add-review-form textarea:focus {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.12);
}

.add-review-form select option {
    background: var(--green-dark);
    color: var(--white);
}

.submit-review-btn {
    background: var(--gold-light);
    color: var(--green-dark);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(201, 151, 58, 0.3);
}

.submit-review-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 151, 58, 0.4);
}

.review-success-msg {
    color: #4ade80;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
    background: rgba(74, 222, 128, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

/* ══════════════════════════════════════════════
   Offer & Payment Widget
══════════════════════════════════════════════ */
.offer-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
}

.offer-wrap.visible {
    animation: fadeInUp 0.8s forwards;
}

.offer-details {
    padding: 48px 40px;
    background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-label {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-list li {
    font-size: .97rem;
    color: rgba(255, 255, 255, .88);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.price-old  { font-size: 1.2rem; color: rgba(255, 255, 255, .45); text-decoration: line-through; }
.price-now  { font-size: 2.5rem; font-weight: 900; color: var(--gold-light); }
.price-note { font-size: .85rem; color: rgba(255, 255, 255, .55); }
.price-strikethrough { text-decoration: line-through; }

.payment-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-self: center;
    padding: 40px 20px;
}

.payment-heading {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.payment-subtext {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.payment-cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

/* ══════════════════════════════════════════════
   FAQ Items
══════════════════════════════════════════════ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(13, 79, 60, 0.05);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   About Section Content
══════════════════════════════════════════════ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(22, 102, 73, 0.1);
    box-shadow: var(--shadow);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════
   Guarantee Card
══════════════════════════════════════════════ */
.guarantee-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s;
}

.guarantee-card.visible {
    opacity: 1;
    transform: none;
}

.guarantee-icon { font-size: 3.5rem; margin-bottom: 16px; }

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.guarantee-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════
   Footer
══════════════════════════════════════════════ */
.footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, .6);
    text-align: center;
    padding: 32px 20px;
    font-size: .88rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-sub {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-3px);
}

.footer-links {
    margin-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
}

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

/* ══════════════════════════════════════════════
   Core Metrics Notification Box
══════════════════════════════════════════════ */
.nx-metric-box {
    position: fixed;
    bottom: 24px;
    left: -400px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(22, 102, 73, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
    opacity: 0;
    max-width: 340px;
    font-family: var(--font);
    direction: rtl;
    pointer-events: none;
}

.nx-metric-box.show {
    transform: translateX(424px);
    opacity: 1;
}

.nx-icon-wrap {
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.nx-content { display: flex; flex-direction: column; gap: 3px; }

.nx-title {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.4;
}

.nx-title span.nx-name { color: var(--green-dark); }

.nx-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--green-light);
    font-weight: 700;
    background: var(--green-pale);
    padding: 2px 8px;
    border-radius: 20px;
    width: fit-content;
    white-space: nowrap;
}
