/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Nunito:wght@400;600;700;800&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, hsl(47, 100%, 85%) 0%, hsl(25, 95%, 90%) 25%, hsl(10, 85%, 90%) 50%, hsl(195, 90%, 85%) 75%, hsl(140, 70%, 85%) 100%);
    min-height: 100vh;
}

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

/* Typography */
.font-fredoka {
    font-family: 'Fredoka One', cursive;
}

.rainbow-text {
    background: linear-gradient(45deg, 
        hsl(0, 85%, 65%), 
        hsl(25, 95%, 65%), 
        hsl(47, 100%, 70%), 
        hsl(140, 70%, 55%), 
        hsl(195, 90%, 60%), 
        hsl(270, 70%, 65%)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ea580c, #db2777);
}

.btn-gradient-large {
    background: linear-gradient(to right, #fbbf24, #f97316, #ec4899);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-instagram {
    background: linear-gradient(to right, #ec4899, #9333ea);
    color: white;
    padding: 12px 24px;
}

.btn-green {
    background: #10b981;
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.btn-green:hover {
    background: #059669;
}

.btn-red {
    background: #ef4444;
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.btn-red:hover {
    background: #dc2626;
}

.btn-premium {
    background: #d97706;
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.btn-premium:hover {
    background: #b45309;
}

.btn-white {
    background: white;
    color: #059669;
    font-weight: 700;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-gradient {
    background: linear-gradient(to right, #fbbf24, #f97316);
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: white;
    color: #9333ea;
    border: 2px solid #9333ea;
    font-weight: 700;
    padding: 12px 24px;
}

.btn-yellow {
    background: #fbbf24;
    color: #7c2d12;
    font-weight: 700;
    padding: 12px 24px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, #3b82f6, #ec4899) 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    font-size: 32px;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    background: linear-gradient(45deg, #3b82f6, #ec4899, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    padding: 64px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.5;
}

.digital-notice {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid #93c5fd;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 32px;
    text-align: center;
}

.digital-notice-header {
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.digital-notice-text {
    color: #374151;
    font-size: 14px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.badge-orange {
    background: linear-gradient(to right, #f97316, #ec4899);
}

.badge-blue {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    animation: float 2s ease-in-out infinite;
}

.floating-icon.star {
    top: -16px;
    right: -16px;
    animation-delay: 0s;
}

.floating-icon.heart {
    bottom: -16px;
    left: -16px;
    animation-delay: 1s;
}

/* Benefits Section */
.benefits {
    padding: 64px 0;
    background: linear-gradient(135deg, #fef3c7, #fed7d7, #e0e7ff, #d1fae5);
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    text-align: center;
    color: #7c3aed;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 48px;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.benefit-card:nth-child(1) { border-top-color: #3b82f6; }
.benefit-card:nth-child(2) { border-top-color: #10b981; }
.benefit-card:nth-child(3) { border-top-color: #8b5cf6; }
.benefit-card:nth-child(4) { border-top-color: #ec4899; }

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.benefit-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0e7ff, #fce7f3, #fef3c7, #d1fae5);
}

.pricing-notice {
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-notice-header {
    font-weight: 700;
    color: #b45309;
    font-size: 18px;
    margin-bottom: 12px;
}

.pricing-notice-text {
    color: #374151;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.plan-card-premium {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border: 4px solid #d97706;
    transform: scale(1.05);
    animation: glow 2s ease-in-out infinite alternate;
}

.plan-premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d97706;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.plan-badge-basic { background: #10b981; }
.plan-badge-intermediate { background: #ef4444; }
.plan-badge-premium { 
    background: #d97706; 
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.plan-image {
    margin-bottom: 24px;
}

.plan-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-price {
    text-align: center;
    margin-bottom: 24px;
}

.plan-old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 18px;
    display: block;
}

.plan-current-price {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    color: #10b981;
    margin-top: 8px;
}

.plan-current-price-premium {
    color: #d97706;
    font-size: 40px;
}

.plan-title {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
    color: #1f2937;
}

.plan-features {
    margin-bottom: 32px;
}

.plan-feature {
    margin-bottom: 12px;
    color: #374151;
}

.plan-subfeatures {
    margin-left: 16px;
    margin-top: 8px;
    font-size: 14px;
}

.plan-subfeatures div {
    margin-bottom: 4px;
}

.plan-feature-box {
    background: rgba(217, 119, 6, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.plan-feature-header {
    font-weight: 700;
    color: #b45309;
    margin-bottom: 8px;
}

.plan-bonus {
    background: rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    margin-top: 16px;
}

.premium-bonus {
    background: rgba(217, 119, 6, 0.2);
}

.plan-bonus-header {
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}

.premium-bonus .plan-bonus-header {
    color: #b45309;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #ddd6fe, #fce7f3, #fef3c7);
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-icon {
    font-size: 24px;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    margin-top: 12px;
}

.faq-cta {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    color: white;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-title {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    margin-bottom: 16px;
}

.faq-cta-text {
    font-size: 18px;
    margin-bottom: 24px;
}

.faq-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f97316, #ec4899, #fbbf24);
    text-align: center;
    color: white;
}

.cta-title {
    font-family: 'Fredoka One', cursive;
    font-size: 40px;
    margin-bottom: 32px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0;
}

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

.footer-title {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.footer-subtitle {
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-text {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-notice {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 12px;
    margin-top: 16px;
}

.footer-notice p {
    color: #93c5fd;
    font-size: 14px;
}

.footer-instagram {
    color: #ec4899;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-instagram:hover {
    color: #db2777;
}

.footer-subtext {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.5s ease;
    transform: translateX(-400px);
}

.notification.show {
    transform: translateX(0);
}

.notification.hidden {
    transform: translateX(-400px);
}

.notification-content {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
}

.notification-plan {
    color: #6b7280;
    font-size: 12px;
    margin-top: 2px;
}

.notification-time {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 4px;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 18px;
    padding: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        align-items: stretch;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plan-card-premium {
        transform: none;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .notification {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}