body {
    font-family: 'Figtree', sans-serif;
    background: #faf9ff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at top right,
        rgba(82,115,179,.15),
        transparent 40%);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
}

.hero-highlight {
    color: #5273B3;
}

.hero-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
}

.badge-custom {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.btn-primary-custom {
    background: #5273B3;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    transition: .25s;
    box-shadow: 0 8px 20px rgba(82,115,179,.2);
}

.btn-primary-custom:hover {
    background: #385A98;
    transform: translateY(-3px);
    color: white;
}

.btn-secondary-custom {
    background: #fff;
    border: 1px solid #CBD5E1;
    color: #334155;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    transition: .25s;
}

.btn-secondary-custom:hover {
    background: #f8fafc;
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.dashboard-image {
    border-radius: 16px;
    width: 100%;
}

.feature-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .25s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(82,115,179,.12);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #dbeafe;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 28px;
    color: #5273B3;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1e293b;
}

.feature-text {
    color: #64748b;
    line-height: 1.8;
}

.cta-section {
    background: #385A98;
    color: white;
    padding: 100px 0;
}

.footer-custom {
    background: #f8fafc;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

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

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