
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f172a;    /* Deep Blue/Black */
    --primary-light: #1e293b;   /* Lighter Navy */
    --accent-gold: #fbbf24;     /* Gold */
    --accent-green: #22c55e;    /* Success Green */
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --font-heading: 'Fredoka', sans-serif; /* Playful but clean */
    --font-body: 'Nunito', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
}

a {
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.fade-in { animation: fadeIn 1s ease-out; }
.slide-up { opacity: 0; transition: all 0.6s ease-out; transform: translateY(40px); }
.slide-up.visible { opacity: 1; transform: translateY(0); }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #334155 100%);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--accent-gold);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.countdown {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-family: monospace;
}

.offer-highlight {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    border: 1px solid var(--primary-light);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-green);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s;
    margin-top: 20px;
    border: 2px solid #f59e0b;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #f59e0b;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background-color: var(--primary-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #334155;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Modules Section */
.modules {
    padding: 60px 0;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.module-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--accent-gold);
    transition: background 0.3s;
}

.module-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.module-number {
    font-size: 2rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
}

.module-info h3 {
    margin-bottom: 5px;
    color: var(--accent-gold);
}

/* Value Proof / Buy Section */
.value-proof {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.offer-box {
    background: var(--primary-light);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.offer-image {
    width: 60px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.small-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: auto;
    opacity: 0.8;
}

.price-comparison {
    margin: 30px 0;
    font-size: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    margin-right: 15px;
    font-size: 1.2rem;
}

.new-price {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 2.5rem;
}

.cta-button.large {
    font-size: 1.5rem;
    width: 100%;
    max-width: 400px;
}

/* Audience Section */
.audience {
    padding: 60px 0;
    background-color: var(--primary-light);
}

.audience-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.audience-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--accent-green);
    font-weight: bold;
}

/* FAQ Section */
.testimonials {
    padding: 60px 0;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.carousel-slide {
    flex: 0 0 300px;
    margin: 0 10px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 3));
    }
}

.faq {
    padding: 60px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.accordion-header:hover {
    color: var(--accent-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-gray);
}

.accordion-content.active {
    padding-bottom: 20px;
}

/* Notification Toast */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background: white;
    color: #1e293b;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.5s ease-out;
    border-left: 4px solid var(--accent-green);
    max-width: 300px;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-img {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-dark);
}

.toast-info {
    font-size: 0.9rem;
}

.toast-name {
    font-weight: bold;
    display: block;
}

.toast-time {
    font-size: 0.8rem;
    color: #64748b;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background-color: #020617;
    border-top: 1px solid #1e293b;
}

footer p {
    color: var(--text-gray);
}

.footer-msg {
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 15px 20px;
    }
    
    .benefit-card {
        margin: 0 10px;
    }
}
