:root {
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --text-color: #ededed;
    --heading-color: #ffffff;
    --primary-color: #fca311;
    /* Amber/Gold for branding */
    --accent-color: #14213d;
    --cta-color: #22c55e;
    /* Green for buttons as requested */
    --cta-hover: #16a34a;
    --border-color: #333;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.gradient-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    background: var(--bg-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: #111;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* Hero Image */
.hero-book {
    margin: 40px auto;
    width: 100%;
    max-width: 600px;
    /* Larger max-width for the image */
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    border-radius: 12px;
    padding: 10px;
    background: #111;
    /* Glass effect border */
    border: 1px solid var(--border-color);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: none;
    transition: none;
}

.hero-img:hover {
    transform: none;
}

.hero-featured-image-container {
    margin: 30px auto;
    max-width: 600px;
    /* Limit width to avoid it being huge */
    position: relative;
    border-radius: 12px;
    padding: 8px;
    background: #111;
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.hero-featured-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: none;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: none;
    box-shadow: none;
}

.pulse {
    animation: none;
    box-shadow: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hero Mini Testimonials */
.hero-mini-testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.mini-test-card {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 380px;
    text-align: left;
    backdrop-filter: none;
    transition: none;
}

.mini-test-card:hover {
    transform: none;
    border-color: var(--border-color);
}

.mini-test-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    flex-shrink: 0;
}

.mini-test-text p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.3;
    margin-bottom: 5px;
    font-style: italic;
}

.mini-test-text span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-mini-testimonials {
        flex-direction: column;
        align-items: center;
    }
}

/* Pain Section */
.pain {
    padding: 60px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pain-grid {
    display: flex;
    justify-content: center;
}

.pain-text {
    max-width: 800px;
    width: 100%;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pain-text h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.pain-list {
    list-style: none;
    margin-bottom: 30px;
}

.pain-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pain-list .cross {
    font-size: 1.2rem;
}

.pain-conclusion {
    text-align: center;
    padding: 20px;
    background: #111;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: none;
}

.feature-card:hover {
    transform: none;
    border-color: var(--border-color);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #111;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

/* Content Breakdown */
.content-breakdown {
    padding: 80px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.content-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.check-list i {
    color: var(--cta-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.note {
    margin-top: 25px;
    font-style: italic;
    color: #ccc;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background: var(--bg-color);
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--border-color);
}

.bonus-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 4px;
}

.bonus-card h3 {
    margin-top: 15px;
    color: #fff;
}

.bonus-note {
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Audience */
.audience {
    padding: 80px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.audience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.audience-col {
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.for-who {
    background: #0a110a;
    border: 1px solid #1a2f1a;
}

.not-for-who {
    background: #1a0a0a;
    border: 1px solid #2f1a1a;
}

.audience-col ul {
    list-style: none;
}

.audience-col h3 {
    margin-bottom: 20px;
}

.audience-col li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.for-who i {
    color: var(--cta-color);
}

.not-for-who i {
    color: #ef4444;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
    border: 1px solid var(--border-color);
}

.testimonial-card .author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Pricing */
/* Pricing */
.pricing {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 0 0 50px 0;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: var(--primary-color);
    color: #000;
    padding: 35px 20px 25px;
    position: relative;
    border-bottom: 4px solid #000;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.pricing-image {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    border-bottom: 3px solid var(--primary-color);
}

.offer-badge {
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: none;
    letter-spacing: 1px;
    border: 1px solid #333;
}

.price-box {
    padding: 40px 20px 20px;
    background: #ffffff;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #000;
    line-height: 1;
    text-shadow: none;
}

.current-price .currency {
    font-size: 2rem;
    margin-top: 8px;
    font-weight: 700;
    color: inherit;
}

.current-price .amount {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.benefits-list {
    list-style: none;
    padding: 30px 40px;
    text-align: left;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.benefits-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.4;
}

.benefits-list li strong {
    color: #000;
    font-weight: 700;
}

/* Specific fix for Lucide icons which might be SVGs */
.benefits-list i,
.benefits-list svg {
    color: #22c55e;
    /* Green checkmark for visibility on white */
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 3;
    /* Thicker checkmark */
}

.payment-icons {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.payment-icons span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Make CTA inside pricing bigger */
.pricing-card .cta-button {
    width: 85%;
    max-width: 350px;
    padding: 20px 10px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    background: var(--bg-color);
}

.guarantee-box {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.seal-icon {
    color: var(--cta-color);
    font-size: 4rem;
    flex-shrink: 0;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--card-bg);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: #000;
}

.footer h3 {
    color: var(--primary-color);
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .audience-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Top Bar */
.top-bar {
    background-color: #dc2626;
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sales Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #161616;
    border: 1px solid #333;
    border-left: 4px solid var(--cta-color);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.notification-popup.active {
    transform: translateY(0);
}

.notification-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--cta-color);
}

.notification-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.3;
}

.notification-content strong {
    color: #fff;
    font-weight: 700;
}

.notification-content span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* Testimonial Photos */
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sneak Peek */
.sneak-peek {
    padding: 80px 0;
    background: #111;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.preview-card {
    background: #fff;
    color: #333;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
}

.preview-card:nth-child(even) {
    transform: rotate(1deg);
}

.preview-card:hover {
    transform: rotate(0) scale(1.02);
    z-index: 10;
}

.preview-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-header i {
    color: var(--cta-color);
}

.preview-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.preview-content {
    padding: 25px;
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    background: #fffdf5;
    /* Slight paper tint */
}

.preview-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    font-family: var(--font-body);
}

.preview-text {
    font-style: italic;
    color: #444;
    font-size: 1rem;
}

.preview-list {
    list-style: none;
}

.preview-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

.preview-list i {
    color: var(--cta-color);
    width: 16px;
    height: 16px;
}

/* Thumbnails */
.bonus-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.bonus-card div {
    flex: 1;
}

.bonus-thumb {
    width: 80px;
    height: 80px;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
}

.bonus-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #333;
    flex-shrink: 0;
}

.check-list li {
    align-items: center;
}

/* Bonus Highlight Image */
.bonus-highlight-image {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.bonus-highlight-image img {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 4px solid #fff;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.bonus-highlight-image img:hover {
    transform: rotate(0) scale(1.02);
}