/* ==========================================================================
   CSS VARIABLES & THEME
   ========================================================================== */
   :root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent-yellow: #f59e0b;
    --accent-yellow-light: #fef3c7;
    --accent-yellow-hover: #d97706;
    --accent-green: #10b981;
    --accent-green-dark: #047857;
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.4);
    --border-radius: 16px;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.highlight { color: var(--accent-yellow); font-weight: 800; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.badge {
    display: inline-block;
    background: var(--accent-yellow-light);
    color: var(--accent-yellow-hover);
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: bounceSlow 3s infinite ease-in-out;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
    animation: shine 3s infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.primary-cta {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.secondary-cta {
    background: var(--gradient-secondary);
    color: #fff;
}

.cta-subtext {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0.9;
    margin-top: 4px;
}

.pulse {
    animation: pulseGlow 2s infinite;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.logo {
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, #fef3c7 0%, transparent 40%),
                radial-gradient(circle at bottom left, #d1fae5 0%, transparent 40%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.5rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 3rem;
    color: var(--accent-green-dark);
    font-weight: 800;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.hero-image img {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15));
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-yellow);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

/* ==========================================================================
   WHAT YOU'LL LEARN SECTION
   ========================================================================== */
.learn-section {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.learn-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.learn-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefit-list .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-box {
    background: var(--accent-yellow-light);
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--text-primary);
}

/* ==========================================================================
   BONUSES SECTION
   ========================================================================== */
.bonuses-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: #fff;
}

.bonuses-section .section-title {
    color: #fff;
}

.bonuses-section .section-subtitle {
    color: #cbd5e1;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.bonus-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #cbd5e1;
    font-size: 1rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   AFTER PURCHASE SECTION
   ========================================================================== */
.after-purchase-section {
    padding: 6rem 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.after-purchase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ap-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.ap-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ap-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-surface);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-green);
}

.ap-icon {
    font-size: 1.5rem;
}

.ap-feature p {
    font-weight: 600;
    margin: 0;
}

.guarantee-box {
    background: var(--accent-yellow-light);
    border: 2px dashed var(--accent-yellow);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2.5rem;
}

.guarantee-box h3 {
    color: var(--accent-yellow-hover);
    margin-bottom: 0.5rem;
}

.after-purchase-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ap-img-main {
    width: 80%;
    z-index: 2;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.ap-img-secondary {
    position: absolute;
    width: 60%;
    bottom: -10%;
    right: -10%;
    z-index: 3;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transform: rotate(5deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer p {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container,
    .learn-container,
    .after-purchase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .learn-image, .hero-image, .after-purchase-images {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .ap-img-secondary {
        right: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.125rem;
        width: 100%;
    }
}
