 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

 .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
}

.hero-content {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: left;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #fff;
    color: #2575fc;
}

.btn.primary:hover {
    background: #e0e0e0;
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.trust {
    font-size: 0.9rem;
    opacity: 0.8;
}

 .hero-preview {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-preview .preview-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-preview .preview-img:hover {
    transform: scale(1.05);
}

 .features {
    padding: 80px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features-sub {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

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

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2575fc;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
}

 .cta {
    padding: 60px 20px;
    text-align: center;
    background: #2575fc;
    color: #fff;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 20px;
}

 .footer {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }
}
