:root {
    --bg-dark: #0a0a0e;
    --bg-card: #14141a;
    --primary-neon: #00ffa3;
    --primary-dim: #00cc82;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --gradient-glow: linear-gradient(135deg, #00ffa3 0%, #00aaff 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 163, 0.3);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

section {
    padding: 50px 0;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

/* Futuristic Background Glow */
.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 255, 163, 0.1);
    color: var(--primary-neon);
    border: 1px solid var(--primary-neon);
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Pricing */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary-neon);
    color: #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    /* Minimal animation as requested */
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.6);
}

.cta-button:active {
    transform: scale(0.98);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 163, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 163, 0);
    }
}

/* Cards & Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 255, 163, 0.3);
    transform: translateY(-5px);
}

/* Pain Points Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 2rem;
}

.cards-grid .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.reassurance {
    text-align: center;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary-neon);
    font-weight: 700;
    margin: 5px 0;
}

/* Benefits Check list */
.check-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.check-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--primary-neon);
}

.center-cta {
    text-align: center;
}

/* Audience */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.audience-column ul {
    list-style: none;
}

.audience-column li {
    margin-bottom: 6px;
    font-size: 1rem;
}

.not-for-whom li {
    opacity: 0.7;
}

/* Roadmap / Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    /* Adjust for mobile defaults, overridden in media query */
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 13px;
    /* Center on line */
    top: 25px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    z-index: 1;
}

.timeline-week {
    font-size: 0.9rem;
    color: var(--primary-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.testimonial-card cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Warning */
.warning-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.border-red {
    border-color: rgba(255, 80, 80, 0.5);
    background: rgba(255, 80, 80, 0.05);
}

.warning-box h3 {
    color: #ff5050;
}

.warning-box ul {
    list-style: none;
    margin: 15px 0;
    text-align: left;
    display: inline-block;
}

/* Guarantee */
.guarantee-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Good for mobile */
    gap: 20px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: 20px;
    border: 2px dashed var(--glass-border);
}

.guarantee-badge {
    width: 100px;
    height: 100px;
    background: var(--gradient-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
}

/* Final Offer */
.final-offer {
    text-align: center;
}

.offer-card {
    max-width: 600px;
    margin: 30px auto 0;
    padding: 30px 20px;
}

.glow-border {
    border: 1px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.1);
}

.offer-title {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-container.large .new-price {
    font-size: 3rem;
    color: var(--primary-neon);
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 15px 0;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 15px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

footer {
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
}

/* Fluid Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10px;
        margin-left: 0;
    }

    .timeline-item {
        padding-left: 35px;
        text-align: left;
        background: none;
    }

    .timeline-item::before {
        left: 3px;
        margin-left: 0;
        top: 2px;
    }

    .timeline-week {
        margin-bottom: 10px;
        display: block;
    }

    .guarantee-content {
        justify-content: center;
        text-align: center;
    }
}