/* Home/Index landing page */

.home-landing {
    --home-blue-900: #1f2f57;
    --home-blue-800: #2a3b6c;
    --home-blue-700: #294b84;
    --home-sky-50: #f5f8ff;
    --home-orange: #f28c28;

    color: #1b2437;
}

    .home-landing .hero {
        position: relative;
        background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 255, 255, .25), transparent 60%), linear-gradient(180deg, rgba(31, 47, 87, .92) 0%, rgba(41, 75, 132, .86) 55%, rgba(31, 47, 87, .90) 100%), 
            url("/assets/images/home-hero-bg.png");
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

.home-landing .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 28, 48, .55) 0%, rgba(20, 28, 48, .35) 45%, rgba(20, 28, 48, .15) 100%);
    pointer-events: none;
}

.home-landing .hero-content {
    position: relative;
    z-index: 1;
    padding: 0.2125rem 0;
}

@media (min-width: 992px) {
    .home-landing .hero-content {
        padding: 0.3012189rem 0;
    }
}

.home-landing .hero-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1.12;
    margin: 0 0 .75rem;
    text-wrap: balance;
}

.home-landing .hero-title .accent {
    color: #b9c7ff;
}

.home-landing .hero-subtitle {
    color: rgba(255, 255, 255, .9);
    margin: 0 0 1.25rem;
    max-width: 44rem;
}

.home-landing .btn-hero {
    background: var(--home-orange);
    color: #fff;
    border: 0;
    padding: .7rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.home-landing .btn-hero:hover,
.home-landing .btn-hero:focus {
    background: #ff9b3c;
    color: #fff;
}

.home-landing .hero-figure {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.home-landing .hero-figure .figure-card {
    width: min(280px, 85%);
    aspect-ratio: 1 / 1.2;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.home-landing .hero-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    filter: saturate(1.05) contrast(1.02);
}

.home-landing .hero-figure .figure-fallback {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    text-align: center;
    font-size: 0.85rem;
}

.home-landing .benefits-bar {
    background: rgba(255, 255, 255, .92);
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.home-landing .benefit-item {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    padding: .75rem 0;
    color: rgba(24, 32, 56, .92);
    font-weight: 600;
}

.home-landing .benefit-item .check {
    color: #2eac66;
    flex: 0 0 auto;
    margin-top: .05rem;
}

.home-landing .section-title {
    font-weight: 800;
    color: var(--home-blue-900);
    margin: 0;
}

.home-landing .section-title .accent {
    color: var(--home-blue-700);
}

.home-landing .section-subtitle {
    color: rgba(27, 36, 55, .75);
}

/* Services section (cards like the reference image) */
.home-landing .services-section {
    background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 65%);
}

.home-landing .service-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(31, 47, 87, .12);
    box-shadow: 0 12px 26px rgba(14, 22, 45, .10);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-landing .service-card .service-head {
    padding: .85rem 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.home-landing .service-card.service-taxes .service-head {
    background: linear-gradient(180deg, #3f79c2 0%, #2b5f9f 100%);
}

.home-landing .service-card.service-finance .service-head {
    background: linear-gradient(180deg, #1aa5a6 0%, #0e7f83 100%);
}

.home-landing .service-card.service-accounting .service-head {
    background: linear-gradient(180deg, #2a79b8 0%, #1e5f9a 100%);
}

.home-landing .service-card.service-insurance .service-head {
    background: linear-gradient(180deg, #2f5caa 0%, #214184 100%);
}

.home-landing .service-card .service-head .icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .20);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.12));
}

.home-landing .service-card .service-head .title {
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
}

.home-landing .service-card .service-body {
    padding: 1rem;
    flex: 1 1 auto;
    background: linear-gradient(180deg, rgba(245, 248, 255, .65) 0%, #ffffff 55%);
}

.home-landing .service-card ul {
    margin: 0;
    padding-left: 1.05rem;
    color: rgba(27, 36, 55, .82);
}

.home-landing .service-card li {
    margin: .35rem 0;
}

/* Replace default bullets with the same check icon style used in the benefits bar */
.home-landing .service-list {
    list-style: none;
    padding-left: 0;
}

.home-landing .service-list li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin: .45rem 0;
}

.home-landing .service-list li .check {
    color: #2eac66;
    flex: 0 0 auto;
    margin-top: .02rem;
    font-weight: 900;
    line-height: 1;
}

.home-landing .service-card .service-footer {
    padding: 0 1rem 1rem;
    background: #fff;
}

.home-landing .btn-service {
    width: 100%;
    background: linear-gradient(180deg, #ff9b3c 0%, var(--home-orange) 100%);
    border: 0;
    color: #fff;
    border-radius: 10px;
    font-weight: 900;
    padding: .6rem .9rem;
}

.home-landing .btn-service:hover,
.home-landing .btn-service:focus {
    background: linear-gradient(180deg, #ffab58 0%, #ff922d 100%);
    color: #fff;
}

.home-landing .service-note {
    font-size: .85rem;
    color: rgba(27, 36, 55, .62);
    margin-top: .65rem;
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}

.home-landing .cta-band {
    background: linear-gradient(180deg, rgba(245, 248, 255, 1) 0%, rgba(235, 242, 255, 1) 100%);
}

.home-landing .cta-box {
    border-radius: 18px;
    border: 1px solid rgba(31, 47, 87, .10);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(14, 22, 45, .10);
    padding: 2rem 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .home-landing .cta-box {
        padding: 2.35rem 2rem;
    }
}

.home-landing .cta-title {
    font-weight: 900;
    margin: 0;
    color: var(--home-blue-900);
}

.home-landing .cta-text {
    margin: .4rem 0 1.2rem;
    color: rgba(27, 36, 55, .78);
}

.home-landing .cta-actions {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.home-landing .contact-mini {
    margin-top: 1.2rem;
    color: rgba(27, 36, 55, .75);
    font-weight: 600;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .9rem 1.2rem;
    font-size: .95rem;
}

.home-landing .contact-mini a {
    color: inherit;
    text-decoration: none;
}

.home-landing .contact-mini a:hover {
    text-decoration: underline;
}
