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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.floating-btn {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    background: #f59e0b;
    animation: none;
    transform: scale(1.05);
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
}

.cta-btn {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f59e0b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    background: #fbbf24;
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #eab308;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.main-cta-btn {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.main-cta-btn:hover {
    background: #f59e0b;
}

.main-cta-btn i {
    transition: transform 0.3s ease;
}

.main-cta-btn:hover i {
    transform: translateX(4px);
}

.download-btn {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #f9fafb;
}

/* Countdown */
.countdown {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    display: inline-block;
    margin-bottom: 24px;
}

.countdown-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-unit {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 32px;
    text-align: center;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 24px;
    color: #6b7280;
    font-size: 14px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature i {
    color: #10b981;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.free-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #fbbf24;
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats {
    background: #111827;
    color: white;
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    color: #d1d5db;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 512px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 64px;
    height: 64px;
    background: #fbbf24;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(6deg);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.step p {
    color: #6b7280;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #fef3c7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #eab308;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #6b7280;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.user-info {
    display: flex;
    gap: 12px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.user-info p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 2px;
}

.user-info span {
    color: #9ca3af;
    font-size: 12px;
}

.verified i {
    color: #10b981;
    font-size: 20px;
}

.rating {
    margin-bottom: 16px;
}

.rating i {
    color: #fbbf24;
    margin-right: 2px;
}

.testimonial-card p {
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.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: #111827;
    transition: background-color 0.3s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.6;
}

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

.final-cta h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(0,0,0,0.8);
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    background: #374151;
    transform: translateY(-2px);
}

.urgency {
    margin-top: 24px;
    color: rgba(0,0,0,0.7);
    font-size: 14px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 16px;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links li {
    color: #9ca3af;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links li:hover {
    color: #fbbf24;
}

.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .floating-cta {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}