* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<img src="/assets/img/__generated-4aadab1a-a02b-4d0d-af23-915070fc7a9d.svg" alt="Embedded SVG" />');
}

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

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.navbar-brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4f46e5 !important;
    text-decoration: none;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.btn-hero-primary {
    background: white;
    color: #4f46e5;
    border: none;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #f8fafc;
    color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.app-download-section {
    background: #f8fafc;
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem 0;
}

.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 400;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
}

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

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