/* CSS Reset and Variables */
:root {
    --primary-color: #2ecc71;
    /* Green from reference */
    --primary-dark: #27ae60;
    --secondary-color: #212529;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --danger: #ef4444;
    /* Red for emphasis */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--primary-color);
}

.text-red {
    color: var(--danger);
}

.text-muted {
    color: #64748b;
}

.font-bold {
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}

.section-padding {
    padding: 4rem 0;
}

.bg-dark {
    background-color: var(--secondary-color);
}

.text-white {
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    width: 100%;
    max-width: 400px;
}

.btn-block {
    display: block;
    width: 100%;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 2rem;
    /* Initial padding */
    padding-bottom: 4rem;
}

/* Static Logo Flow */
.logo-container-static {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-container-static img {
    max-width: 250px;
    /* Adjust logo size */
    width: 100%;
    background: transparent;
    /* Ensure transparent background if possible */
}

/* Headline Styling */
.headline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Mobile first font size */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.subheadline {
    font-size: 1rem;
    color: #64748b;
    max-width: 800px;
    margin: 1.5rem auto;
}

.hero-image-container {
    max-width: 900px;
    margin: 0 auto;
}

.safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #dcfce7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-item img {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
    background: #f8fafc;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content img {
    display: inline-block;
    height: 300px;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* What You Get Box */
.mockup-box {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.box-header {
    padding: 2rem;
    text-align: center;
}

.item-tag {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.box-title {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 1rem 0;
}

.divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 0;
    width: 60%;
    margin: 1rem auto;
}

.check-list-left {
    padding: 2rem;
    text-align: left;
}

.check-list-left li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check {
    color: var(--primary-color);
    font-weight: bold;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem 2rem;
    /* Larger vertical gap */
    margin-top: 5rem;
}

.bonus-item {
    background: var(--white);
    border-radius: 16px;
    padding: 5rem 1.5rem 2rem;
    /* Top padding for image */
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-img-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
}

.bonus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
}

.bonus-badge {
    background: var(--danger);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Single Pricing */
.pricing-single-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(46, 204, 113, 0.25);
    position: relative;
    overflow: hidden;
}

.best-value-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center perfectly on border */
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
    /* Rounded bottom */
    width: 100%;
    /* Strip style */
    top: 0;
    transform: none;
    left: 0;
    border-radius: 0;
}

.pricing-header {
    margin-top: 2rem;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.promo-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-img {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.pricing-img img {
    height: 180px;
}

.pricing-list {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.check-green {
    color: var(--primary-color);
    font-weight: bold;
}

.price-box {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.1rem;
    color: #94a3b8;
}

.strike {
    text-decoration: line-through;
    color: var(--danger);
}

.final-price {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1;
}

.save-badge {
    background: #dcfce7;
    color: #166534;
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.urgency-text {
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 700;
    margin-top: 1rem;
}

.payment-icons {
    margin-top: 1rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* Guarantee Flex */
.guarantee-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

/* FAQ Details */
.faq-details {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

.faq-details summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    /* Hide default marker */
    display: flex;
    justify-content: space-between;
}

.faq-details summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary-color);
}

.faq-details[open] summary::after {
    content: '-';
}

/* Responsive Scaling */
@media (min-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .guarantee-flex {
        flex-direction: row;
        text-align: left;
    }
}