﻿.home-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 96px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 5%, rgba(247, 201, 72, .35), transparent 36%),
        radial-gradient(circle at 5% 90%, rgba(56, 189, 248, .14), transparent 38%),
        linear-gradient(135deg, #050f23 0%, #0a1f3f 55%, #15346a 100%);
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-hero::before {
    top: 12%;
    left: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(56, 189, 248, .22), transparent 60%);
}

.home-hero::after {
    right: -200px;
    bottom: -200px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(247, 201, 72, .25), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-heading {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1;
    text-wrap: balance;
}

.hero-heading .highlight {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero .lead {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.18rem;
    line-height: 1.65;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 28px 0 38px;
    color: rgba(255, 255, 255, .85);
}

.hero-checks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.hero-checks i {
    color: var(--accent);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-cta .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
}

.hero-cta .btn-text i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-search {
    position: relative;
    margin-top: 40px;
    padding: 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .96);
    color: var(--primary);
    box-shadow: 0 32px 70px rgba(0, 0, 0, .35);
}

.hero-search label {
    color: var(--primary);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .02em;
}

.hero-meta {
    margin-top: 36px;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero-meta strong {
    color: #fff;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 480px;
}

.hero-card {
    position: absolute;
    z-index: 1;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .98);
    color: var(--primary);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.hero-card.hero-card-main {
    top: 0;
    right: 0;
    width: min(360px, 88%);
    z-index: 2;
}

.hero-card.hero-card-success {
    bottom: 24px;
    left: -10px;
    width: min(310px, 78%);
    padding: 20px;
}

.hero-card .progress-shell {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf2f7;
}

.hero-card .progress-shell span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--success) 100%);
    width: 95%;
}

.hero-card .stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card .stat-row i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(34, 197, 94, .16);
    color: var(--success);
    font-size: 1.1rem;
}

.hero-card .stat-row strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}

.hero-card .stat-row small {
    color: var(--muted);
}

.metric-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.metric-band .metric strong {
    display: block;
    color: var(--accent);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
}

.metric-band .metric span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .76);
    font-size: .9rem;
}

.feature-card {
    height: 100%;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(11, 36, 71, .08);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 201, 72, .35);
    box-shadow: var(--shadow);
}

.feature-card .icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(25, 55, 109, .12), rgba(247, 201, 72, .25));
    color: var(--primary);
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.feature-card p {
    margin-bottom: 0;
}

.feature-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .8rem;
}

.split-panel {
    padding: 48px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(11, 36, 71, .07);
    box-shadow: var(--shadow);
    height: 100%;
}

.split-panel-dark {
    padding: 48px;
    border-radius: var(--radius-xl);
    color: #fff;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(247, 201, 72, .35), transparent 35%),
        linear-gradient(135deg, #061327 0%, #0b2447 55%, #19376d 100%);
}

.split-panel-dark h2,
.split-panel-dark h3,
.split-panel-dark strong {
    color: #fff;
}

.split-panel-dark p {
    color: rgba(255, 255, 255, .8);
}

.about-feature {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.about-feature li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
}

.about-feature li i {
    color: var(--accent-dark);
    margin-top: 4px;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(11, 36, 71, .08);
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.process-card .step-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--accent);
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 16px 30px rgba(11, 36, 71, .25);
}

.process-card h3 {
    font-size: 1.12rem;
}

.profession-card {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(11, 36, 71, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.profession-card:hover {
    color: var(--primary);
    transform: translateY(-4px);
    border-color: rgba(247, 201, 72, .35);
    box-shadow: var(--shadow);
}

.profession-card i {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(247, 201, 72, .22);
    font-size: 1.1rem;
}

.profession-card strong {
    flex: 1;
    font-size: 1.02rem;
}

.profession-card .arrow {
    color: var(--primary-2);
}

.application-shell {
    position: relative;
    padding: 44px;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
}

.application-shell::before {
    content: "";
    position: absolute;
    inset: -16px -16px auto auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(247, 201, 72, .18);
    z-index: 0;
}

.application-shell > * {
    position: relative;
    z-index: 1;
}

.application-side {
    height: 100%;
    padding: 44px;
    border-radius: var(--radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(247, 201, 72, .35), transparent 38%),
        linear-gradient(135deg, #061327 0%, #0b2447 55%, #19376d 100%);
    box-shadow: var(--shadow);
}

.application-side p {
    color: rgba(255, 255, 255, .8);
}

.application-side h2,
.application-side h3,
.application-side strong {
    color: #fff;
}

.application-side .feature-pill {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.application-side .feature-pill i {
    color: var(--accent);
}

.faq-shell .accordion-item {
    border: 1px solid rgba(11, 36, 71, .08);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.faq-shell .accordion-button {
    color: var(--primary);
    font-weight: 800;
    padding: 22px 24px;
    background: #fff;
}

.faq-shell .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(247, 201, 72, .14);
    box-shadow: none;
}

.faq-shell .accordion-button:focus {
    box-shadow: 0 0 0 .15rem rgba(247, 201, 72, .25);
    border-color: transparent;
}

.faq-shell .accordion-body {
    color: var(--muted);
    padding: 8px 24px 24px;
}

@media (max-width: 991.98px) {
    .hero-visual {
        min-height: 360px;
    }

    .hero-card.hero-card-main {
        position: relative;
        width: 100%;
        margin-top: 32px;
    }

    .hero-card.hero-card-success {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .metric-band {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding: 100px 0 80px;
    }

    .application-shell,
    .application-side {
        padding: 28px;
    }
}
