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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 18px;
    padding: 16px 32px;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.large {
    font-size: 20px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
}

.cta-button.large:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff9800 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #7E6CCF;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    font-feature-settings: 'liga' off;
}

.logo .opening-bracket {
    color: #FF66B2;
    font-weight: 900;
}

.logo .main-text {
    color: #FFFFFF;
    font-weight: 800;
}

.logo .hyphen {
    color: #FFD700;
    font-weight: 900;
}

.logo .suffix {
    color: #FFFFFF;
    font-weight: 800;
}

.logo .closing-bracket {
    color: #C78CFF;
    font-weight: 900;
}

.authority-proof {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}

.nav-menu a:hover {
    color: #667eea;
}

.ebook-nav-link {
    background: linear-gradient(45deg, #25D366, #20BD5A) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    animation: pulseButton 3s infinite !important;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3) !important;
}

.ebook-nav-link:hover {
    color: white !important;
    transform: scale(1.05) !important;
}

.header-cta {
    font-size: 14px;
    padding: 10px 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 40px;
}

.social-proof {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.proof-item i {
    color: #ffeaa7;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.service-card.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.service-card.premium .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.service-card.premium h3 {
    color: white;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 15px;
}

.service-card.premium .service-price {
    color: #ffeaa7;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.service-card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.service-benefits {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-benefits li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
}

.service-card.premium .service-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.service-cta.primary {
    background: #25D366;
}

.service-cta.primary:hover {
    background: #20BD5A;
}

.service-cta.premium {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.service-cta.premium:hover {
    background: white;
    color: #667eea;
}

/* Authority Section */
.authority {
    padding: 100px 0;
    background: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #667eea;
    font-weight: bold;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #333;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

.clients-logos {
    text-align: center;
}

.clients-logos h3 {
    margin-bottom: 30px;
    color: #666;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.logos-grid img {
    max-width: 120px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    display: block;
}

.logos-grid img:hover {
    opacity: 1;
}

/* Guarantees Section */
.guarantees {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.guarantees .section-title {
    color: white;
}

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

.guarantee-item {
    text-align: center;
    padding: 20px;
}

.guarantee-item i {
    font-size: 48px;
    color: #ffeaa7;
    margin-bottom: 20px;
}

.guarantee-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.guarantee-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

.pricing-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-cta:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.pricing-cta.primary {
    background: #25D366;
}

.pricing-cta.primary:hover {
    background: #20BD5A;
}

.pricing-extras {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-extras h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.extras-grid {
    display: grid;
    gap: 15px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.extra-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #333;
}

.service-price {
    font-weight: 700;
    color: #667eea;
    font-size: 18px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.footer-cta:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .header-cta {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .logo {
        font-size: 24px;
        padding: 6px 12px;
    }
    
    .authority-proof {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    .header-cta {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .logo {
        font-size: 22px;
        padding: 5px 10px;
    }
    
    .authority-proof {
        font-size: 10px;
        padding: 2px 6px;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        white-space: normal;
        font-size: 14px;
    }
    
    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta p {
        font-size: 18px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Urgency Alert */
.urgency-alert {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.urgency-alert i {
    margin-right: 8px;
}

.cta-subtitle {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Success Story Section */
.success-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.story-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.story-client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.success-story h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 0;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto 40px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #ffeaa7;
}

.story-cta {
    text-align: center;
}

/* Objections Section */
.objections {
    padding: 80px 0;
    background: #f8f9fa;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.objection-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.objection-item:hover {
    transform: translateY(-5px);
}

.objection-question {
    background: #ff6b6b;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.objection-question i {
    font-size: 24px;
    opacity: 0.8;
}

.objection-question h3 {
    margin: 0;
    font-size: 18px;
}

.objection-answer {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.objection-answer i {
    color: #25D366;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.objections-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Urgency Timer */
.urgency-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.urgency-timer h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.time-unit label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.urgency-text {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Guarantees Detailed Section */
.guarantees-detailed {
    padding: 80px 0;
    background: white;
}

.guarantees-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.guarantee-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.guarantee-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.bonus-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.bonus-section h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

.bonus-list {
    margin-bottom: 20px;
}

.bonus-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.bonus-item i {
    color: #e74c3c;
    font-size: 20px;
}

.bonus-total {
    font-size: 20px;
    color: #e74c3c;
    margin: 0;
}

/* Scarcity Alert */
.scarcity-alert {
    background: #e74c3c;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    animation: shake 2s infinite;
}

.final-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cta-button.pulse {
    animation: pulseButton 2s infinite;
}

.urgency-footer {
    margin-top: 25px;
}

.urgency-footer p {
    margin: 5px 0;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #667eea;
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #5a6fd8;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq-answer {
    padding: 25px;
    display: none;
    border-top: 1px solid #eee;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes shake {
    0%, 50%, 100% { transform: translateX(0); }
    10%, 30% { transform: translateX(-5px); }
    20%, 40% { transform: translateX(5px); }
}

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

/* E-book Specific Styles */
.ebook-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ebook-hero::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="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.3;
}

.ebook-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ebook-info h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.ebook-badge {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.free-badge {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    animation: pulseButton 2s infinite;
}

.value-badge {
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: line-through;
}

.ebook-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.ebook-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-item i {
    color: #25D366;
    font-size: 16px;
}

.download-cta {
    text-align: center;
}

.ebook-download {
    background: linear-gradient(45deg, #25D366, #20BD5A);
    font-size: 18px;
    padding: 18px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulseButton 3s infinite;
}

.download-note {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.ebook-cover {
    position: relative;
    text-align: center;
}

.ebook-cover img {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.ebook-cover:hover img {
    transform: rotateY(-10deg) rotateX(0deg) scale(1.05);
}

.cover-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseButton 4s infinite;
}

.ebook-preview {
    padding: 80px 0;
    background: #f8fafc;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.chapter-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chapter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, transparent 50%);
    z-index: 1;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.chapter-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
    z-index: 2;
}

.chapter-content {
    position: relative;
    z-index: 2;
}

.chapter-content h3 {
    color: #1e293b;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.chapter-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.chapter-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-tag {
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.author-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.author-image {
    position: relative;
    text-align: center;
}

.author-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.author-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.author-info h3 {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #cbd5e1;
    margin-top: 5px;
}

.author-quote {
    font-style: italic;
    font-size: 18px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    text-align: center;
}

.urgency-timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    animation: pulseButton 2s infinite;
}

.urgency-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.download-counter {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 48px;
    font-weight: bold;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.counter-number.red {
    color: #ffd700;
    animation: pulseButton 1.5s infinite;
}

.counter-label {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
}

.urgent-download {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1e293b;
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
    animation: pulseButton 2s infinite;
    font-weight: bold;
}

.urgency-note {
    margin-top: 15px;
    font-size: 16px;
}

.ebook-testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #64748b;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.testimonial-author h4 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #64748b;
}

/* E-book Promotion Section */
.ebook-promotion {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 40px 0;
}

.ebook-promo-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-badge {
    margin-bottom: 20px;
    text-align: left;
}

.promo-badge .free-badge {
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    animation: pulseButton 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.ebook-promo-info h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.ebook-promo-info h3 {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.promo-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
}

.promo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #475569;
    font-weight: 500;
    padding: 8px 0;
}

.promo-feature i {
    color: #25D366;
    font-size: 18px;
    min-width: 20px;
}

.promo-cta {
    text-align: left;
    margin-top: 30px;
}

.ebook-promo-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.ebook-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.promo-note {
    margin-top: 15px;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.ebook-promo-cover {
    position: relative;
    text-align: center;
}

.ebook-promo-cover img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.ebook-promo-cover:hover img {
    transform: rotateY(-5deg) rotateX(0deg) scale(1.05);
}

.promo-value-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ff4444;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
    transform: rotate(15deg);
    animation: pulseButton 3s infinite;
}

.value-original {
    text-decoration: line-through;
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.value-free {
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Design for E-book */
@media (max-width: 768px) {
    .ebook-promotion {
        padding: 60px 0;
    }
    
    .ebook-promo-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }
    
    .ebook-promo-info h2 {
        font-size: 32px;
    }
    
    .ebook-promo-info h3 {
        font-size: 24px;
    }
    
    .promo-subtitle {
        max-width: 100%;
        font-size: 16px;
    }
    
    .promo-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promo-feature {
        justify-content: center;
        text-align: center;
    }
    
    .promo-cta {
        text-align: center;
    }
    
    .ebook-promo-btn {
        font-size: 18px;
        padding: 16px 30px;
    }
    
    .ebook-promo-cover img {
        max-width: 250px;
        transform: none;
    }
    
    .ebook-promo-cover:hover img {
        transform: scale(1.05);
    }
    
    .ebook-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ebook-info h1 {
        font-size: 36px;
    }
    
    .ebook-features {
        grid-template-columns: 1fr;
    }
    
    .chapters-grid {
        grid-template-columns: 1fr;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-counter {
        flex-direction: column;
        gap: 30px;
    }
    
    .urgency-content h2 {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.visible {
    opacity: 1;
    transform: translateY(0);
}