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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1412E2 0%, #D800AB 20%, #FF0070 40%, #FF6C44 60%, #FFBA3A 80%, #F9F871 100%);
    min-height: 100vh;
    color: white;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.btn-primary {
    background: white;
    color: #FF0070;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-demo {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

.demo-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.demo-search {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.demo-search:focus {
    border-color: #FF0070;
}

.btn-demo {
    padding: 15px 30px;
    background: linear-gradient(135deg, #1412E2 0%, #D800AB 25%, #FF0070 50%, #FF6C44 75%, #FFBA3A 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 112, 0.4);
}

.demo-hint {
    color: #666;
    font-size: 0.9rem;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

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

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1412E2 0%, #FF0070 50%, #FFBA3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(20, 18, 226, 0.05) 0%, rgba(255, 0, 112, 0.05) 100%);
}

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

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1412E2 0%, #FF0070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list {
    list-style: none;
    font-size: 1.1rem;
}

.benefits-list li {
    padding: 12px 0;
    color: #333;
}

.mock-comparison {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mock-header {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.mock-item {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.mock-item span:first-child {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.mock-prices {
    display: flex;
    gap: 10px;
}

.mock-price {
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.5s ease;
    transform: scale(1);
}

.mock-price.best {
    background: linear-gradient(135deg, rgba(255, 0, 112, 0.2) 0%, rgba(255, 186, 58, 0.2) 100%);
    color: #FF0070;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 0, 112, 0.3);
}

.mock-total {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #FFBA3A 0%, #F9F871 100%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savings {
    font-weight: bold;
    color: #FF0070;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -40px;
    margin-bottom: 60px;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #1412E2 0%, #FF0070 50%, #FFBA3A 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.amount {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FF0070 0%, #FFBA3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: #666;
    align-self: flex-end;
    margin-bottom: 10px;
}

.pricing-description {
    color: #666;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: #333;
    font-size: 1.05rem;
}

.btn-cta {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1412E2 0%, #D800AB 25%, #FF0070 50%, #FF6C44 75%, #FFBA3A 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 112, 0.3);
}

.trial-note {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.money-back {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 186, 58, 0.1) 0%, rgba(249, 248, 113, 0.1) 100%);
    border-radius: 10px;
    color: #333;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand p {
    color: #999;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .demo-input {
        flex-direction: column;
    }

    .btn-demo {
        width: 100%;
    }

    .social-proof {
        gap: 30px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        gap: 15px;
    }

    .navbar {
        padding: 20px;
    }
}
