/* Reset & Base */
:root {
    --bg-color: #FAFAF9;
    /* Warm, premium off-white */
    --surface-color: #FFFFFF;
    /* White for cards */
    --primary-text: #2C2C2C;
    /* Soft charcoal, not harsh black */
    --secondary-text: #595959;
    --accent-color: #8B9D83;
    /* Sage Green - Calming, natural */
    --accent-hover: #7A8B73;
    --accent-light: #E8EDE6;
    --border-color: #E5E5E5;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);

    --radius-md: 12px;
    --radius-lg: 20px;

    --max-width: 1200px;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--primary-text);
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
}

p {
    color: var(--secondary-text);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 157, 131, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 157, 131, 0.4);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    min-width: 280px;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    /* Increased for better visibility */
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 52px;
        /* Increased for mobile visibility */
    }
}

.logo-accent {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: var(--space-xl);
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-text);
}

.hero-cta-wrapper {
    margin-bottom: 4rem;
}

.guarantee-text {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    opacity: 0.8;
}

/* VSL Placeholder in Hero */
.vsl-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background-color: #EAEAEA;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e6e6e6 100%);
}

.play-button-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.play-button-circle:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 32px;
    color: var(--accent-color);
}

.vsl-cover-text {
    font-weight: 500;
    color: var(--secondary-text);
}

/* VSL Detailed Section */
.vsl-section {
    background-color: var(--surface-color);
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.vsl-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.vsl-screen {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-play:hover {
    background: white;
    color: black;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-color);
}

.benefits .section-title {
    margin-top: -5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(55, 255, 20, 0.15);
    /* Subtle neon border */
    /* border: 1px solid var(--border-color); */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(55, 255, 20, 0.2);
    border-color: var(--neon-green);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: transparent;
    width: auto;
    height: auto;
    display: block;
    color: var(--neon-green);
    filter: drop-shadow(0 0 5px rgba(55, 255, 20, 0.4));
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Authority Section */
.authority {
    background-color: #F7F7F5;
    /* Off-white */
}

.authority-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.authority-image-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 0.5rem;
    /* Inner spacing for frame effect */
}

.authority-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
}

.authority-content {
    max-width: 600px;
}

.authority-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--primary-text);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.authority-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 0.2rem;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.authority-role {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(55, 255, 20, 0.3);
}

.authority-quote {
    font-size: 1.2rem;
    color: #6a7c6a;
    /* Soft grey-green */
    font-style: italic;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.authority-desc {
    color: var(--secondary-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.credentials {
    margin-top: 2rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.badge {
    background: transparent;
    color: var(--secondary-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.neon-badge {
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(55, 255, 20, 0.2);
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: var(--radius-md);
}

.quote {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background-color: var(--accent-light);
    text-align: center;
    padding: 5rem 1rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 2rem;
    margin-top: -1rem;
}

.period {
    font-size: 1rem;
    color: var(--secondary-text);
    font-weight: 400;
    margin-top: 1rem;
    margin-left: 0.5rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    margin: 0 1rem;
    font-size: 0.9rem;
    color: var(--secondary-text);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    color: #999;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .authority-layout {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .authority-image-card {
        margin-right: 2rem;
    }
}

/* WAX Animations */
.wax-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wax-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}


/* Urgency Pill Badge Styles */
.urgency-badge {
    margin-top: -3.5rem;
    /* Desktop: Closer to header */
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    animation: fadeIn 1s ease-out;
}

.urgency-pill {
    background: #FF3EBF;
    /* Main Pink */
    color: #FFFFFF !important;
    padding: 0.7rem 2.2rem;
    /* Balanced padding */
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: flex;
    /* Flex instead of inline-flex for better centering */
    align-items: center;
    justify-content: center;
    position: relative;
    /* Base for absolute icon */
    box-shadow: 0 4px 15px rgba(255, 62, 191, 0.4);
    border: none;
    letter-spacing: 0.05em;
    animation: pillPulse 3s infinite ease-in-out;
    width: fit-content;
    margin: 0 auto;
}

.pill-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.pill-main {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    width: 100%;
}

#current-date {
    display: block;
    width: 100%;
    font-size: 0.75rem;
    opacity: 0.95;
    letter-spacing: 0.1em;
    margin-top: 0.1rem;
}

.badge-icon {
    position: absolute;
    left: 0.8rem;
    /* Anchored to the left so it doesn't push text */
    font-size: 0.9rem;
}

@keyframes pillPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(255, 62, 191, 0.4);
    }

    50% {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 62, 191, 0.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- HERO NEON ADJUSTMENTS --- */

/* Colors */
:root {
    --neon-green: #37FF14;
    /* Electric Lime */
    --neon-pink: #FF00FF;
    /* Magenta */
    --neon-green-glow: rgba(55, 255, 20, 0.6);
    --neon-pink-glow: rgba(255, 0, 255, 0.6);
}

/* Text Highlights */
.glow-text-green {
    color: #4CAF50;
    /* Base color for readability on light bg */
    text-shadow: 0 0 20px rgba(55, 255, 20, 0.3);
    font-weight: 700;
}

.glow-text-pink {
    color: #E91E63;
    /* Base strong pink for readability */
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.25);
    font-weight: 600;
}

/* Neon Arrow */
.neon-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    animation: floatArrow 2s ease-in-out infinite;
}

.neon-arrow-icon {
    width: 48px;
    height: 48px;
    color: var(--neon-green);
    filter: drop-shadow(0 0 8px var(--neon-green));
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--neon-green));
    }
}

/* Glow Button (Repositioned) */
.glow-btn-green {
    background-color: #2E7D32;
    /* Darker green foundation */
    border: 2px solid var(--neon-green);
    color: white;
    box-shadow: 0 0 15px rgba(55, 255, 20, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-btn-green:hover {
    background-color: #1B5E20;
    box-shadow: 0 0 25px rgba(55, 255, 20, 0.6);
    transform: translateY(-2px) scale(1.02);
}

/* Ensure the VSL container has space for the button below */
.vsl-wrapper-large {
    margin-bottom: 0;
}

/* --- New Sections Styles --- */

/* VSL Highlight Area */
.vsl-wrapper-large {
    margin-top: 3rem;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* What You Receive (Features) */
.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-green-glow);
    box-shadow: 0 0 10px rgba(55, 255, 20, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.3);
    border-color: var(--neon-green);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    /* Base vibrant green */
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(55, 255, 20, 0.4);
    margin-bottom: 1rem;
    display: block;
}

.section-title-montserrat {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(to bottom, #fff, var(--bg-color));
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 0, 255, 0.15);
    /* Neon pink border */
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(255, 0, 255, 0.05);
    /* Soft pink inner glow */
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.15), inset 0 0 30px rgba(255, 0, 255, 0.05);
}

.bonus-img-container {
    width: 100%;
    height: 200px;
    /* Slightly taller for better fit */
    background: transparent;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}



.value-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.value-free {
    color: var(--neon-pink);
    /* Bright highlight color */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.bonus-total-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.bonus-total-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(55, 255, 20, 0.4);
    background: #fff;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.15);
}

/* Pricing Plans */
.pricing-section {
    background-color: #fff;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

/* Base button pulse animation */
@keyframes btnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-large {
    animation: btnPulse 2s infinite;
}

.btn-basic {
    background-color: var(--neon-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
    border: none;
}

.btn-basic:hover {
    background-color: #D500F9;
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
}

.plan-card.premium {
    background: white;
    border: 2px solid var(--neon-green);
    box-shadow: 0 10px 40px rgba(55, 255, 20, 0.15);
    transform: scale(1.02);
    z-index: 2;
}

.plan-card.premium:hover {
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(55, 255, 20, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
}

.plan-old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text);
    line-height: 1;
}

.plan-price.premium-price {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(55, 255, 20, 0.3);
}

.plan-price.basic-price {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.payment-type {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
}

.economy-text {
    font-weight: 600;
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.economy-text.basic-economy {
    color: var(--neon-pink);
}

.economy-highlight {
    text-shadow: 0 0 10px rgba(55, 255, 20, 0.2);
    font-size: 0.9rem;
}

.social-proof-small {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--secondary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-proof-small i {
    color: var(--neon-green);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Tighten Basic Plan spacing */
.plan-card:not(.premium) .plan-features {
    flex-grow: 0;
    margin-bottom: 1rem;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--secondary-text);
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(55, 255, 20, 0.3);
}

.bonus-item {
    margin-top: 0.5rem;
    color: var(--primary-text) !important;
}

.bonus-item i {
    color: var(--neon-green);
    margin-right: 0.3rem;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--bg-color);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid transparent;
    /* Prepare for border transition */
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item.active-item {
    background: #FAFDFA;
    /* Subtle green tint */
    border-color: rgba(55, 255, 20, 0.3);
    box-shadow: inset 0 0 20px rgba(55, 255, 20, 0.05);
}

/* Neon Sweep Effect */
.accordion-item.active-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    animation: neonSweep 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes neonSweep {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-text);
    transition: background 0.2s;
    position: relative;
    z-index: 2;
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.01);
}

/* Idle Pulse Animation for Icon */
@keyframes iconIdlePulse {

    0%,
    100% {
        filter: drop-shadow(0 0 2px var(--neon-green));
        opacity: 0.8;
    }

    50% {
        filter: drop-shadow(0 0 8px var(--neon-green));
        opacity: 1;
    }
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    transition: transform 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    /* Windup before rotate */
    animation: iconIdlePulse 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
    animation: none;
    /* Stop idle pulse when active */
    filter: drop-shadow(0 0 5px var(--neon-green));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy rotate */
}

/* Content Reveal Animation */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    /* Slight overshoot/bounce */
    background: transparent;
    width: 100%;
}

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--secondary-text);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
    transition: all 0.4s ease-out;
}

.accordion-header.active+.accordion-content .accordion-body {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.1s;
    /* Wait for opening to start */
}

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Testimonials Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    /* Ensure full face is visible without crop */
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
    /* Optional border frame */
}

.stars {
    color: #FFD700;
    /* Gold/Yellow */
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.role {
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h3 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
    color: var(--primary-text);
}

.testimonial-card .quote {
    color: var(--primary-text);
    font-style: normal;
}

/* Guarantee Badge */
/* Guarantee Section Styles */
.guarantee-shield-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    /* Subtle circular backplate */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guarantee-shield-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(55, 255, 20, 0.4));
    animation: shieldBreathingGlow 2.4s infinite ease-in-out;
}

@keyframes shieldBreathingGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(55, 255, 20, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(55, 255, 20, 0.7));
        transform: scale(1.02);
    }
}

/* Neon Pulse Button */
.btn-neon-pulse {
    background: linear-gradient(135deg, #37FF14, #2E7D32);
    /* Bright neon to deep green gradient */
    color: white;
    box-shadow: 0 0 15px rgba(55, 255, 20, 0.5);
    border: none;
    position: relative;
    overflow: hidden;
    animation: btnPulseDeep 2s infinite ease-in-out;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes btnPulseDeep {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(55, 255, 20, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(55, 255, 20, 0.8);
    }
}

.btn-neon-pulse::before {
    /* Shine Sweep Element */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s;
    z-index: 2;
}

.btn-neon-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(55, 255, 20, 0.8);
    background: linear-gradient(135deg, #4AFF25, #388E3C);
}

.btn-neon-pulse:hover::before {
    left: 200%;
    /* Trigger sweep */
    transition: left 0.7s;
}

.btn-neon-pulse:active {
    transform: scale(0.98);
    box-shadow: 0 0 10px rgba(55, 255, 20, 0.4);
}


/* Responsive Tweaks */
/* Responsive Tweaks */
@media (max-width: 768px) {

    /* Section & Spacing Optimization */
    .section {
        padding: 3.5rem 0;
        /* Slightly more compact */
    }

    .hero {
        padding-top: 4.5rem;
        /* Adjusted to eliminate excess top space */
    }

    /* Urgency Badge (Data) - Optimized for Mobile */
    .urgency-badge {
        margin-top: -1.2rem;
        margin-bottom: 1rem;
        padding: 0 10px;
        display: flex;
        justify-content: center;
    }

    .urgency-pill {
        padding: 0.6rem 2rem;
        background: #FF3EBF;
        /* Ensuring consistent solid pink */
        color: #FFFFFF !important;
        box-shadow: 0 4px 12px rgba(255, 62, 191, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        max-width: 290px;
        /* Safe mobile width */
        animation: pillPulseMobile 4s infinite ease-in-out;
    }

    .pill-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
        line-height: 1.1;
    }

    .pill-main {
        font-size: 0.68rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.02em;
    }

    #current-date {
        font-size: 0.62rem;
        margin-top: 0.3rem;
        opacity: 0.95;
    }

    .badge-icon {
        position: absolute;
        left: 0.8rem;
        font-size: 0.85rem;
    }

    /* Hero Text Adjustments */
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        /* Reduced from 2rem */
        padding: 0 0.5rem;
    }

    /* VSL Optimization */
    .vsl-wrapper-large {
        margin-top: 0.8rem;
        /* Reduced from 1rem */
    }

    /* Button Optimization (Touch Friendly) */
    .btn-large {
        width: 100%;
        max-width: 310px;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    /* Reduce heavy shadows on all buttons for mobile performance */
    .btn-neon-pulse {
        animation: btnPulseMobile 2.5s infinite ease-in-out;
        box-shadow: 0 4px 15px rgba(55, 255, 20, 0.3);
    }

    .btn-neon-pulse-pink {
        animation: btnPulsePinkMobile 2.5s infinite ease-in-out;
        box-shadow: 0 4px 15px rgba(255, 62, 191, 0.3);
    }

    /* Pricing Plans Mobile Fixes */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding-top: 1.5rem;
    }

    .plan-card {
        width: 100%;
        max-width: 340px;
        padding: 2.5rem 1.5rem 2rem;
        border-radius: 20px;
    }

    .plan-card.premium {
        transform: none !important;
        order: -1;
        /* Premium first on mobile */
        margin-bottom: 1rem;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    /* Popular Badge Fix */
    .popular-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* General Performance & UI */
    .wax-anim {
        transform: translateY(10px);
        /* Subtle reveal displacement */
        transition-duration: 0.6s;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

/* Optimized Mobile Animations */
@keyframes btnPulseMobile {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(55, 255, 20, 0.4);
    }

    50% {
        box-shadow: 0 0 15px rgba(55, 255, 20, 0.6);
    }
}

@keyframes btnPulsePinkMobile {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 62, 191, 0.4);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 62, 191, 0.6);
    }
}

@keyframes shieldBreathingMobile {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(55, 255, 20, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(55, 255, 20, 0.5));
        transform: scale(1.02);
    }
}

@keyframes pillPulseMobile {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 62, 191, 0.15);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 18px rgba(255, 62, 191, 0.25);
    }
}

/* Neon Pink Pulse Button (Replica of Green Pulse) */
.btn-neon-pulse-pink {
    background: linear-gradient(135deg, #FF3EBF, #C2185B);
    /* Bright neon pink to deep pink */
    color: white;
    box-shadow: 0 0 15px rgba(255, 62, 191, 0.5);
    border: none;
    position: relative;
    overflow: hidden;
    animation: btnPulseDeepPink 2s infinite ease-in-out;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes btnPulseDeepPink {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 62, 191, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 62, 191, 0.8);
    }
}

.btn-neon-pulse-pink::before {
    /* Shine Sweep Element */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s;
    z-index: 2;
}

.btn-neon-pulse-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 62, 191, 0.8);
    background: linear-gradient(135deg, #FF60CB, #E91E63);
}

.btn-neon-pulse-pink:hover::before {
    left: 200%;
    /* Trigger sweep */
    transition: left 0.7s;
}

.btn-neon-pulse-pink:active {
    transform: scale(0.98);
    box-shadow: 0 0 10px rgba(255, 62, 191, 0.4);
}

/* Loading Overlay Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.loader-overlay.active {
    display: flex;
    opacity: 1;
}

.loader-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.loader-overlay.active .loader-content {
    transform: scale(1);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6200ea;
    /* Premium Purple */
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.loader-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.loader-progress-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6200ea, #39FF14);
    transition: width 0.1s linear;
}

.loader-status-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.status-icon {
    font-size: 2rem;
    color: #e0e0e0;
    transition: all 0.5s ease;
    transform: scale(0.8);
    opacity: 0.3;
}

.status-icon.active {
    color: #39FF14;
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(55, 255, 20, 0.4));
}

.loader-trust-box {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid #eee;
}

.loader-trust-box p {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.loader-trust-box span {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive tweaks for loader */
@media (max-width: 480px) {
    .loader-title {
        font-size: 1.2rem;
    }
}

/* Upsell Modal Styles */
.upsell-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.upsell-overlay.active {
    display: flex;
    opacity: 1;
}

.upsell-content {
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.upsell-overlay.active .upsell-content {
    transform: scale(1);
}

.upsell-header {
    background: #6200ea;
    /* Premium Purple */
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.upsell-alert {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.upsell-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.upsell-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.upsell-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
}

.upsell-price-section {
    margin-bottom: 2rem;
}

.upsell-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.upsell-current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-text);
    margin: 0.5rem 0;
}

.upsell-savings {
    background: rgba(57, 255, 20, 0.1);
    color: #2e7d32;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
}

.upsell-benefits {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 2.5rem;
}

.upsell-benefits li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #444;
}

.upsell-benefits i {
    color: #6200ea;
}

.upsell-value-box {
    background: #fdfdfd;
    border: 1px dashed #ddd;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.upsell-value-box p {
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upsell-actions .btn {
    width: 100%;
}

.upsell-skip {
    background: transparent;
    border: none;
    color: #999;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}

.upsell-skip:hover {
    color: #666;
}

@media (max-width: 480px) {
    .upsell-header {
        padding: 1.2rem 1rem;
    }

    .upsell-alert {
        font-size: 1.4rem;
    }

    .upsell-body {
        padding: 1.5rem 1.2rem;
    }

    .upsell-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .upsell-current-price {
        font-size: 2.6rem;
    }

    .upsell-benefits {
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
    }

    .upsell-benefits li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .upsell-value-box {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .upsell-value-box p {
        font-size: 0.8rem;
    }

    .upsell-actions {
        gap: 0.8rem;
    }

    .upsell-confirm {
        font-size: 0.9rem !important;
        padding: 0.8rem !important;
    }
}