.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0a0f1e 0%, #0f1b3d 30%, #162350 60%, #1a2d5e 100%);
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(37, 99, 235, .15), transparent 70%);
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 40px;
    align-items: center
}

@media(min-width:768px) {
    .hero-inner {
        grid-template-columns: 1fr 380px
    }
}

@media(min-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr 420px
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px
}

.text-accent {
    color: var(--accent)
}

.hero-desc {
    color: rgba(255, 255, 255, .75);
    font-size: clamp(.95rem, 2vw, 1.1rem);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 28px
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.hero-stat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(8px)
}

.hero-stat-val {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: #fff
}

.hero-stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 2px
}

.hero-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(12px)
}

.hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85)
}

.section-process {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0e1630 100%)
}

.process-card {
    background: rgba(56, 189, 248, .08);
    border: 1px solid rgba(56, 189, 248, .15);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left
}

.process-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 12px 0 8px
}

.process-card p {
    font-size: .9rem;
    color: var(--text2);
    line-height: 1.6
}

.process-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.section-why {
    padding: 80px 0;
    background: linear-gradient(180deg, #0e1630 0%, var(--bg) 100%)
}

.why-card {
    background: rgba(56, 189, 248, .06);
    border: 1px solid rgba(56, 189, 248, .12);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
    transition: var(--transition)
}

.why-card:hover {
    border-color: rgba(56, 189, 248, .3);
    transform: translateY(-3px)
}

.why-icon {
    font-size: 1.8rem;
    margin-bottom: 10px
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px
}

.why-card p {
    font-size: .875rem;
    color: var(--text2);
    line-height: 1.6
}

.section-cta {
    padding: 0 0 80px
}

.cta-box {
    background: linear-gradient(135deg, #1e3a8a, #2563eb, #f59e0b);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

@media(max-width:640px) {
    .cta-box {
        padding: 32px;
        flex-direction: column;
        text-align: center
    }
    .cta-btns {
        justify-content: center
    }
}