* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: white;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #38bdf8;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: #38bdf8;
    border: 2px solid #38bdf8;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56,189,248,0.3);
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(56,189,248,0.1);
    color: #38bdf8;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 span {
    color: #38bdf8;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(30,41,59,0.5);
    border: 1px solid rgba(56,189,248,0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #38bdf8;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.5;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero-header { flex-direction: column; gap: 1rem; }
}
