:root {
    --bg-color: #050505;
    /* Deepest Black */
    --card-bg: #111111;
    /* Soft Black for cards */
    --text-color: #a3a3a3;
    /* Neutral Gray for body */
    --heading-color: #ffffff;
    /* Pure White for headings */
    --primary-color: #d4af37;
    /* Metallic Gold - Elegant */
    --accent-color: #1e3a8a;
    /* Navy Blue (can be used sparingly) */
    --cta-color: #00e640;
    /* Fluorescent Green */
    --cta-hover: #00c236;
    --border-color: #262626;
    /* Dark Gray Border */
    --font-heading: 'Cinzel', serif;
    /* Classic */
    --font-body: 'Outfit', sans-serif;
    /* Modern */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
}

* {
    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.7;
    overflow-x: hidden;
    font-weight: 300;
    /* Lighter weight for dark mode */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 {
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.gradient-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--primary-color);
    font-style: italic;
    font-family: 'Great Vibes', cursive;
    font-size: 1.2em;
    font-weight: 400;
    text-transform: none;
    display: block;
    margin-top: 10px;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: var(--bg-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    /* Low opacity gold */
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-featured-image-container {
    margin: 40px auto;
    max-width: 500px;
    border-radius: 4px;
    padding: 10px;
    background: #111;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.hero-featured-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: #000;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 64, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 230, 64, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 64, 0);
    }
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hero Preview (Carousel) */
.hero-preview-box {
    margin-top: 80px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.hero-preview-box .preview-header {
    margin-bottom: 40px;
}

.hero-preview-box .preview-header h2 {
    font-size: 2rem;
    color: var(--heading-color);
}

.hero-preview-box .preview-header p {
    color: #666;
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    margin-top: -10px;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    width: max-content;
    animation: scroll 60s linear infinite;
}

/* Sermon Sheets - Dark Mode Paper */
.sheet-card {
    background: #1a1a1a;
    width: 280px;
    flex: 0 0 280px;
    height: 400px;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.sheet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border-color: #444;
}

/* Top Border Accent */
.sheet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.sheet-content h4 {
    font-family: var(--font-heading);
    color: #ddd;
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.sermon-text {
    font-family: 'Noto Serif', serif;
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.6;
}

.sermon-ref {
    font-weight: 700;
    color: var(--primary-color);
}

.sermon-points>li {
    margin-top: 10px;
    font-weight: 600;
    color: #ccc;
}

.preview-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Testimonials (Mini) */
.hero-mini-testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.mini-test-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    max-width: 400px;
}

.mini-test-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.8;
}

.mini-test-text p {
    font-size: 0.85rem;
    font-style: italic;
    color: #999;
    margin: 0;
}

.mini-test-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 4px;
    text-transform: uppercase;
}

/* Pain Section */
.pain {
    padding: 100px 0;
    background: #080808;
    /* Slightly lighter than black */
}

.pain-grid {
    display: flex;
    justify-content: center;
}

.pain-text {
    max-width: 800px;
    text-align: center;
}

.pain-text h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

.pain-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 40px;
    display: inline-block;
}

.pain-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.pain-list .cross {
    color: #ef4444;
    font-size: 1rem;
    opacity: 0.8;
}

.pain-conclusion {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 30px;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.section-header h2 {
    font-size: 2.2rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #888;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: transparent;
    text-align: center;
    padding: 20px;
    border: none;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #111;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    color: #777;
}

/* Content Breakdown */
.content-breakdown {
    padding: 100px 0;
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.content-breakdown h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.content-box {
    background: #111;
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.check-list li:last-child {
    border-bottom: none;
}

.list-item-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    border: 1px solid #333;
    border-radius: 4px;
}

.check-list span {
    font-weight: 500;
    font-size: 1.1rem;
    color: #ddd;
}

.note {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-style: italic;
}

/* Bonuses */
.bonuses {
    padding: 100px 0;
    background: var(--bg-color);
}

.bonuses h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.bonus-card {
    background: #111;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.bonus-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #333;
}

.bonus-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.bonus-thumb {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 4px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #444;
    font-size: 0.8rem;
}

.bonus-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-family: var(--font-body);
    color: #fff;
}

.bonus-card p {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

.bonus-note {
    text-align: center;
    color: var(--primary-color);
    margin-top: 40px;
    font-weight: 600;
}

/* 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;
    max-width: 900px;
    margin: 0 auto;
}

.audience-col {
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #0a0a0a;
}

.audience-col h3 {
    margin-bottom: 25px;
    text-align: center;
}

.audience-col ul {
    list-style: none;
}

.audience-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
}

.audience-col.for-who li i {
    color: var(--cta-color);
}

.audience-col.not-for-who li i {
    color: #ef4444;
}

/* Pricing - Dark Elegance with Neon Style */
.pricing {
    padding: 100px 0;
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.price-comparison-container {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.crossed-prices {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #333;
    /* Dark gray for crossed out */
    font-size: 1.2rem;
    font-weight: 700;
}

.crossed-prices span {
    text-decoration: line-through;
}

.visual-ref-style {
    background: #111;
    /* Slightly lighter than bg */
    border: 1px solid #222;
    border-radius: 16px;
    padding: 50px 30px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    position: relative;
}

.offer-header {
    margin-bottom: 30px;
}

.offer-header span {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 10px;
    color: #39FF14;
    /* Neon Green from image */
}

.price-display .currency {
    font-size: 1.8rem;
    margin-top: 10px;
    font-weight: 700;
    color: #39FF14;
}

.price-display .amount {
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: -4px;
    margin: 0 5px;
    color: #39FF14;
}

.price-display .cents {
    font-size: 2.2rem;
    margin-top: 15px;
    font-weight: 700;
    color: #39FF14;
}

.payment-type {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.benefits-simple {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-simple li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}

.check-icon-bg {
    background: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon {
    width: 14px;
    height: 14px;
    color: #000;
    stroke-width: 4px;
}

/* Button override for this section */
.big-green-btn {
    background-color: #39FF14 !important;
    /* Neon Green */
    color: #000 !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    width: 100%;
    display: block;
    padding: 22px !important;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3) !important;
    border: none !important;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.big-green-btn:hover {
    background-color: #32d612 !important;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5) !important;
    transform: scale(1.02) !important;
}

.payment-icons {
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    background: var(--bg-color);
}

.guarantee-box {
    display: flex;
    align-items: center;
    background: #111;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.guarantee-content h3 {
    color: #fff;
}

.guarantee-content p {
    color: #999;
}

.seal-icon {
    color: var(--primary-color);
    opacity: 0.8;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #080808;
    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 {
    background: #111;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #aaa;
    line-height: 1.6;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 300px;
}

/* Testimonials Section (Main) */
.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: #111;
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
    border: 1px solid var(--border-color);
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid #333;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonial-card .author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}


/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    background: #000;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #444;
}

.footer h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* Final Mobile Tweaks */
@media (max-width: 768px) {
    .audience-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .sheet-card {
        width: 240px;
        flex: 0 0 240px;
        height: 340px;
    }

    .pricing-card .cta-button {
        width: 90%;
        padding: 15px;
    }
}

/* Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}