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

:root {
    --primary: #EA4C89;
    --secondary: #FFFFFF;
    --accent: #EA4C89;
    --background: #000000;
    --white: #111111;
    --gradient: linear-gradient(135deg, #EA4C89 0%, #FF6FA3 100%);
    --shadow: 0 4px 20px rgba(234, 76, 137, 0.3);
    --shadow-soft: 0 2px 10px rgba(234, 76, 137, 0.2);
    --border-radius: 16px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--secondary);
    line-height: 1.6;
    background: var(--background);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Urgency Bar */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient);
    color: #FFFFFF;
    text-align: center;
    padding: 4px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.urgency-bar p {
    margin: 0;
    line-height: 1;
}

/* Pulse Animation for CTA Buttons */
@keyframes subtle-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(234, 76, 137, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(234, 76, 137, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(234, 76, 137, 0.3);
    }
}

/* Hero Section */
.hero {
    padding: 45px 0 30px 0;
    background: var(--background);
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.hero h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: subtle-pulse 1.5s ease-in-out infinite;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234, 76, 137, 0.3);
}

.microcopy {
    font-size: 0.85rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-mockup {
    margin: 2rem 0;
    text-align: center;
}

.hero-mockup img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

/* For Whom Section */
.for-whom {
    padding: 15px 0;
    background: var(--background);
}

.for-whom h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.for-whom-grid {
    display: grid;
    gap: 1rem;
}

.for-whom-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.for-whom-item .icon {
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--primary);
}

.for-whom-item p {
    margin: 0;
    font-weight: 500;
}

/* What You Learn Section */
.what-you-learn {
    padding: 20px 0;
    background: var(--background);
}

.what-you-learn h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-track {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-item {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    min-height: 200px;
}

.carousel-item.active {
    display: block;
}

.item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon svg {
    width: 100%;
    height: 100%;
}

.carousel-item p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--secondary);
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary);
}

/* Bonus Section */
.bonus {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.9);
}

.bonus-card {
    background: linear-gradient(135deg, var(--accent) 0%, #FFD700 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.bonus-card h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bonus-text {
    text-align: left;
}

.bonus-text p {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.bonus-note {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

.bonus-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}

/* Authority Section */
.authority {
    padding: 30px 0;
    background: var(--background);
}

.authority h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.authority-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.authority-item {
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.authority-item p {
    margin: 0;
    font-weight: 500;
    color: var(--secondary);
}

.call-box {
    background: var(--gradient);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.call-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 30px 0;
    background: var(--background);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.testimonial-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.avatar-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-content p {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-name {
    display: block;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
}

/* Product Package Section */
.product-package {
    padding: 40px 0;
    background: var(--background);
}

.product-package h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.product-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(234, 76, 137, 0.15);
}

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-content p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Desktop Optimizations */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    /* Hero Section Desktop */
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 3rem;
    }
    
    .hero-mockup {
        margin: 3rem 0;
    }
    
    .cta-primary {
        font-size: 1.4rem;
        padding: 20px 50px;
        margin-bottom: 2rem;
    }
    
    /* Product Grid Desktop */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .product-package {
        padding: 80px 0;
    }
    
    .product-package h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .product-content {
        padding: 40px;
    }
    
    .product-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .product-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    /* For Whom Section Desktop */
    .for-whom {
        padding: 80px 0;
    }
    
    .for-whom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .for-whom h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    /* Offer Section Desktop */
    .offer {
        padding: 80px 0;
    }
    
    .offer-card-new {
        max-width: 500px;
        padding: 60px 50px;
    }
    
    .offer-card-new h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .new-price-new {
        font-size: 3.5rem;
    }
    
    .cta-offer {
        font-size: 1.4rem;
        padding: 20px 50px;
    }
    
    /* Testimonials Desktop */
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .testimonials h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    /* Authority Section Desktop */
    .authority {
        padding: 80px 0;
    }
    
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .authority h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    /* What You Learn Desktop */
    .what-you-learn {
        padding: 80px 0;
    }
    
    .what-you-learn h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    /* Two Paths Desktop */
    .two-paths {
        padding: 80px 0;
    }
    
    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .two-paths h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .path-item {
        padding: 40px;
    }
    
    /* FAQ Desktop */
    .faq {
        padding: 80px 0;
    }
    
    .faq h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
        padding: 25px;
    }
}

.bonus-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-weight: 500;
}

.bonus-intro strong {
    color: var(--accent);
    font-weight: 700;
}


/* Offer Section */
.offer {
    padding: 40px 0;
    background: var(--background);
}

.offer-card-new {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(234, 76, 137, 0.3);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-card-new h2 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.pricing-new {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price-new {
    font-size: 1rem;
    color: #FF0000;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    text-align: center;
}

.new-price-new {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.price-text {
    color: #FF1493;
}

.price-currency {
    color: #FF1493;
}

.price-value {
    color: #FFFFFF;
}

.cta-offer {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: var(--white);
    padding: 18px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-align: center;
    animation: subtle-pulse 1.5s ease-in-out infinite;
}

.cta-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.limited-availability {
    color: #E53E3E;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Two Paths Section */
.two-paths {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.two-paths h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333333;
}

.paths-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.path-item {
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
}

.path-1 {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff4444;
}

.path-2 {
    background: rgba(234, 76, 137, 0.1);
    border-left: 4px solid var(--primary);
}

.path-item p {
    margin: 0;
    font-weight: 500;
    color: #333333;
}

.cta-secondary {
    display: block;
    background: var(--secondary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.3s ease;
    animation: subtle-pulse 1.5s ease-in-out infinite;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--background);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(234, 76, 137, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--secondary);
}

/* Footer */
.footer {
    padding: 40px 0 20px 0;
    background: var(--secondary);
    color: var(--white);
}

.footer-warning {
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(234, 76, 137, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.footer-warning p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-support {
    margin-bottom: 2rem;
}

.footer-support ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-support li {
    background: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Purchase Notification Popup */
.purchase-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.purchase-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.popup-content {
    background: linear-gradient(135deg, var(--primary) 0%, #D63384 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(234, 76, 137, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-content::before {
    content: "✓";
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.popup-name {
    font-weight: 700;
    color: #FFD700;
}



    
    .authority-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .paths-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bonus-content {
        flex-direction: row;
    }
    
    .cta-large {
        width: auto;
        display: inline-block;
    }
    
    .cta-secondary {
        width: auto;
        display: inline-block;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .for-whom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authority-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offer-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .purchase-popup {
        max-width: 300px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .learn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
