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

:root {
    --pink-primary: #e91e63;
    --pink-light: #f8bbd9;
    --pink-dark: #ad1457;
    --black-primary: #1a1a1a;
    --black-light: #2a2a2a;
    --white-primary: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #888888;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black-primary);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-pink {
    color: var(--pink-primary) !important;
}

/* Buttons */
.btn-pink {
    background: linear-gradient(45deg, var(--pink-primary), var(--pink-dark));
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.btn-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-pink:hover::before {
    left: 100%;
}

.cta-button {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white-primary) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, var(--pink-light), transparent);
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.hero-features {
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* eBook Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.ebook-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
}

.ebook-cover-image {
    width: 300px;
    height: auto;
    max-width: 100%;
    box-shadow: var(--shadow-heavy);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ebook-cover-image:hover {
    transform: scale(1.02);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0 5rem 0;
    background: var(--white-primary);
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--pink-primary), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--black-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: var(--black-primary);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e91e63" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.content-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    height: 100%;
    position: relative;
    z-index: 2;
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--pink-primary), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.content-card h4 {
    font-size: 1.3rem;
    color: var(--black-primary);
    margin-bottom: 1.5rem;
}

.content-list {
    list-style: none;
    text-align: left;
}

.content-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-medium);
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-primary);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white-primary);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: left;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

/* Profile section */
.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    background: var(--pink-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-avatar .profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info strong {
    display: block;
    color: var(--black-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.profile-info span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.verified-badge {
    margin-top: 0.25rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

.verified-badge i {
    margin-right: 0.25rem;
}

.stars {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 1rem;
}

.review-date {
    color: var(--gray-medium);
    font-size: 0.8rem;
    font-style: italic;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--black-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-details {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.testimonial-details small {
    color: var(--gray-medium);
    line-height: 1.4;
}

/* Success Stats */
.success-stats {
    background: var(--pink-primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.stat-item {
    color: white;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Bonus Section */
.bonus-section {
    padding: 5rem 0;
    background: var(--black-primary);
    position: relative;
}

.bonus-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    height: 100%;
    position: relative;
    border: 3px solid var(--pink-primary);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--pink-primary), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.bonus-card h4 {
    font-size: 1.3rem;
    color: var(--black-primary);
    margin-bottom: 1rem;
}

.bonus-value {
    color: var(--pink-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bonus-card p:last-child {
    color: var(--gray-medium);
    line-height: 1.6;
}

.bonus-total {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.bonus-total-text {
    font-size: 1.3rem;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white-primary) 0%, var(--gray-light) 100%);
}

/* Urgency Alert */
.urgency-alert {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    animation: urgencyPulse 2s infinite;
}

.urgency-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: alertShine 2s infinite;
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.alert-icon {
    font-size: 2rem;
    animation: alertBounce 1.5s infinite;
}

.alert-text strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.alert-text span {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes alertShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes alertBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.pricing-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--pink-primary);
}

.pricing-header {
    background: linear-gradient(45deg, var(--pink-primary), var(--pink-dark));
    color: white;
    text-align: center;
    padding: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-content {
    padding: 3rem 2rem;
}

.price-comparison {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.5rem;
    color: var(--gray-medium);
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: var(--pink-primary);
    font-weight: 700;
    margin-right: 0.25rem;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    color: var(--pink-primary);
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    color: var(--pink-primary);
    font-weight: 700;
    margin-top: 0.5rem;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    transform: rotate(15deg);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--gray-light);
    border-radius: 10px;
}

.pricing-features .feature-item i {
    color: var(--pink-primary);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.payment-info {
    text-align: center;
    margin-top: 1.5rem;
}

.payment-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.payment-info i {
    color: var(--pink-primary);
    margin-right: 0.5rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: var(--white-primary);
}

.guarantee-badge {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--pink-primary), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    position: relative;
}

.guarantee-badge i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    font-size: 0.9rem;
}

.guarantee-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: var(--black-primary);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer-section {
    padding: 2rem 0;
    background: var(--black-light);
    color: var(--gray-medium);
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--pink-primary);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ebook-cover {
        width: 250px;
        height: 350px;
    }
    
    .guarantee-badge {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .guarantee-badge i {
        font-size: 2.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .ebook-cover-image {
        width: 200px;
    }
    
    .benefit-card,
    .content-card,
    .testimonial-card,
    .bonus-card {
        margin-bottom: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency,
    .cents {
        font-size: 1.5rem;
    }
    
    .discount-badge {
        top: -15px;
        right: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .benefit-icon,
    .content-icon,
    .bonus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-content,
    .bonus-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}
