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

body {
    font-family: 'Inter', sans-serif;
    background: #f3f3f5;
    color: #1d1f23;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #f3f3f5;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.logo-icon {
    background: #8b5cf6;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 800;
}

.logo-text strong {
    color: #8b5cf6;
}

.nav-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
}

.purple {
    color: #8b5cf6;
}

.subheadline {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    padding: 18px 40px;
    color: white;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(139,92,246,0.3);
}

.small-text {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}

.trusted {
    text-align: center;
    padding: 60px 20px;
}

.divider {
    height: 1px;
    background: #d1d5db;
    max-width: 900px;
    margin: 0 auto 25px;
}

.trusted p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b7280;
    font-weight: 600;
}
