@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.feature-card {
    transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.45);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(15, 23, 42, 1));
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    font-weight: 700;
    border: 1px solid rgba(96, 165, 250, 0.25);
}

.process-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(7, 11, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-item span {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    font-weight: 700;
}

.process-item h3 {
    font-weight: 700;
    color: #f8fafc;
}

.process-item p {
    margin-top: 4px;
    color: #94a3b8;
}

.chart-bars {
    position: relative;
    overflow: hidden;
}

.chart-bars::before {
    content: "";
    position: absolute;
    inset: 24px;
    background:
        linear-gradient(to top, rgba(37, 99, 235, 0.8) 62%, transparent 62%) 0 100% / 12% 100% no-repeat,
        linear-gradient(to top, rgba(96, 165, 250, 0.8) 45%, transparent 45%) 18% 100% / 12% 100% no-repeat,
        linear-gradient(to top, rgba(37, 99, 235, 0.8) 78%, transparent 78%) 36% 100% / 12% 100% no-repeat,
        linear-gradient(to top, rgba(96, 165, 250, 0.8) 55%, transparent 55%) 54% 100% / 12% 100% no-repeat,
        linear-gradient(to top, rgba(37, 99, 235, 0.8) 88%, transparent 88%) 72% 100% / 12% 100% no-repeat,
        linear-gradient(to top, rgba(96, 165, 250, 0.8) 70%, transparent 70%) 90% 100% / 12% 100% no-repeat;
    border-radius: 14px;
}

.chart-bars::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.faq-question span {
    transition: transform 200ms ease;
}

.faq-item.is-open .faq-question span {
    transform: rotate(45deg);
}

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