:root {
    /* Colors */
    --bg-gradient-start: #FFF0F5;
    /* Light Pinkish */
    --bg-gradient-mid: #FFFACD;
    /* Light Yellowish */
    --bg-gradient-end: #E0FFFF;
    /* Light Blueish */

    --text-title: #4B0082;
    /* Dark Purple */
    --text-body: #333333;
    /* Dark Gray */

    --primary-color: #FF1493;
    /* Deep Pink/Magenta */
    --secondary-color: #FFA500;
    /* Orange */

    --accent-green: #32CD32;
    --accent-blue: #1E90FF;
    --accent-yellow: #FFD700;
    --accent-cyan: #00CED1;

    --white: #FFFFFF;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --border-radius-pill: 50px;
    --border-radius-card: 24px;

    /* Typography */
    --font-title: 'Fredoka', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-mid), var(--bg-gradient-end));
    background-attachment: fixed;
    /* Keep gradient fixed while scrolling */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--text-title);
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

/* HERO SECTION */
#hero {
    padding: 80px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: var(--primary-color);
    display: block;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-title);
    margin-bottom: 15px;
}

.hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-body);
}

.trust-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* Optional: if image needs rounding */
    /* animation: float 6s ease-in-out infinite; */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .trust-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* SHOWCASE SECTION */
#showcase {
    padding: 60px 0;
    overflow: hidden;
    /* For floating elements */
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.prayer-card {
    padding: 30px;
    border-radius: 24px;
    font-family: var(--font-title);
    /* Playful font for cards */
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.prayer-card:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 2;
}

/* Card Colors */
.card-purple {
    background-color: #E6E6FA;
    color: #4B0082;
    transform: rotate(-2deg);
}

.card-yellow {
    background-color: #FFFACD;
    color: #8B8000;
    transform: rotate(1deg);
}

.card-orange {
    background-color: #FFE4B5;
    color: #D2691E;
    transform: rotate(-1deg);
}

.card-blue {
    background-color: #E0FFFF;
    color: #008B8B;
    transform: rotate(2deg);
}

.card-green {
    background-color: #F0FFF0;
    color: #006400;
    transform: rotate(-1.5deg);
}

.card-pink {
    background-color: #FFF0F5;
    color: #C71585;
    transform: rotate(1.5deg);
}

/* Add some floating animation to cards */
.prayer-card:nth-child(odd) {
    animation: float 5s ease-in-out infinite;
}

.prayer-card:nth-child(even) {
    animation: float 5s ease-in-out infinite 2.5s;
}

/* BENEFITS SECTION */
#benefits {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-title);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background: #f0f0f0;
    /* Fallback */
}

.icon-pink {
    background: #FFF0F5;
    color: #FF69B4;
}

.icon-blue {
    background: #E0FFFF;
    color: #1E90FF;
}

.icon-green {
    background: #F0FFF0;
    color: #32CD32;
}

.icon-cyan {
    background: #E0FFFF;
    color: #00CED1;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-title);
}

.benefit-card p {
    color: var(--text-body);
    font-size: 1rem;
}

.benefits-highlight {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: var(--shadow-soft);
}

.benefits-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* DELIVERABLES SECTION */
#deliverables {
    padding: 60px 0;
    text-align: center;
}

.deliverables-card {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-body);
}

.checklist {
    display: grid;
    gap: 15px;
}

.checklist li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-body);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.check-pink {
    background: #FF69B4;
}

.check-green {
    background: #32CD32;
}

.check-yellow {
    background: #FFD700;
}

.check-blue {
    background: #1E90FF;
}

.check-orange {
    background: #FFA500;
}

.check-cyan {
    background: #00CED1;
}

.impact-phrase {
    max-width: 700px;
    margin: 0 auto;
}

.impact-phrase p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-title);
    font-style: italic;
}

/* BONUSES SECTION */
#bonuses {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3);
    /* Subtle background difference */
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: #f9f9f9;
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-title);
}

.price-tag {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.free-price {
    color: var(--accent-green);
    font-weight: 700;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 4px;
}

.bonus-card p {
    color: var(--text-body);
    font-size: 0.95rem;
}

.bonus-summary {
    background: #F0FFF0;
    /* Light Green */
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: var(--shadow-soft);
    border: 2px solid #32CD32;
}

.bonus-summary p {
    font-size: 1.2rem;
    color: #006400;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

/* PRICING SECTION */
#pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    /* Align items vertically center */
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease;
}

.basic-plan {
    border: 2px solid #32CD32;
}

.premium-plan {
    border: 3px solid #FFD700;
    transform: scale(1.05);
    /* Slightly larger */
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-title);
}

.price-from {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-to {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-body);
}

.price-to strong {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.savings {
    background: #e0f7fa;
    color: #006064;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-proof-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.pricing-list {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-body);
}

.check-pink {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-green {
    background: #32CD32;
    color: white;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }

    .premium-plan {
        transform: scale(1);
    }
}

/* TESTIMONIALS SECTION */
#testimonials {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-title);
}

.carousel-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

/* PRICING SECTION */
#pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    /* Align items vertically center */
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease;
}

.basic-plan {
    border: 2px solid #32CD32;
}

.premium-plan {
    border: 3px solid #FFD700;
    transform: scale(1.05);
    /* Slightly larger */
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-title);
}

.price-from {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-to {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-body);
}

.price-to strong {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.savings {
    background: #e0f7fa;
    color: #006064;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-proof-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.pricing-list {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-body);
}

.check-pink {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-green {
    background: #32CD32;
    color: white;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }

    .premium-plan {
        transform: scale(1);
    }
}

/* TESTIMONIALS SECTION */
#testimonials {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-title);
}

.carousel-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

/* GUARANTEE SECTION */
#guarantee {
    padding: 60px 0;
    text-align: center;
}

.guarantee-card {
    background: #F0FFF0;
    /* Light Green */
    border: 2px solid #32CD32;
    border-radius: var(--border-radius-card);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.guarantee-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #006400;
}

.guarantee-content p {
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-title);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-body);
}

.faq-question.active+.faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

/* FINAL CTA SECTION */
#final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #FFF0F5, #E6E6FA);
}

#final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-title);
}

#final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-body);
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}