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

:root {
    --primary-color: #FF3B5C;
    --secondary-color: #6C63FF;
    --purple-color: #9C27B0;
    --gold-color: #FFD93D;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --border-radius: 16px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

/* Hero Section - Bold Multi-Gradient */
.hero {
    background: linear-gradient(135deg, 
        #FF6B6B 0%, 
        #6C63FF 30%, 
        #FFFFFF 100%
    );
    color: var(--white);
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 59, 92, 0.2) 0%, 
        rgba(108, 99, 255, 0.2) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-appstore {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.btn-appstore:hover {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.6);
}

.btn-playstore {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.3),
        rgba(255, 59, 92, 0.3)
    );
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-playstore:hover {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.4),
        rgba(255, 59, 92, 0.4)
    );
}

.btn span {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}

.hero-image {
    margin-top: 40px;
}

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

/* How It Works Section - Gold Gradient */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 61, 0.2) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 16px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 48px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD93D, #FFA726);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(255, 215, 61, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 61, 0.5);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Features Grid - Purple Gradient */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.2) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

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

.feature {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.2);
}

.feature-icon {
    font-size: 36px;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: transform 0.3s;
}

/* Different gradient for each feature */
.feature:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #6C63FF, #9C63FF);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #FFD93D, #FFA726);
    box-shadow: 0 8px 20px rgba(255, 215, 61, 0.3);
}

.feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #FF3B5C, #FF6B6B);
    box-shadow: 0 8px 20px rgba(255, 59, 92, 0.3);
}

.feature:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

.feature:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.feature:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.05) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 59, 92, 0.05) 100%
    );
    text-align: center;
}

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

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #9C27B0);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-card .price {
    margin-bottom: 24px;
}

.pricing-card .amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary-color);
}

.pricing-card .period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: var(--text-secondary);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.cta-center {
    margin-top: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #9C27B0);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(108, 99, 255, 0.5);
}

/* Social Proof - Red Gradient */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(255, 59, 92, 0.2) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    text-align: center;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer - Dark Gradient */
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: var(--white);
    padding: 60px 0 32px;
}

.disclaimer {
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.15),
        rgba(255, 59, 92, 0.15)
    );
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-copy {
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

.footer-copy p {
    margin: 8px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}
