/* =====================================
INDEX PAGE ONLY UI POLISH
(no text changed)
===================================== */

/* HERO */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 0 0 95px;
    overflow: visible;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .92) 0%,
            rgba(255, 255, 255, .84) 38%,
            rgba(255, 255, 255, .58) 58%,
            rgba(255, 255, 255, .18) 78%),
        url('/assets/images/hero-skyline.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero .inner {
    max-width: 1320px;
    width: 100%;
    margin: auto;
    padding: 80px 24px;
}

.hero h1 {
    font-size: 76px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
    max-width: 760px;
    margin: 0 0 24px;
}

.hero p {
    font-size: 22px;
    line-height: 1.8;
    color: #475569;
    max-width: 700px;
    margin: 0 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons a {
    transition: transform .25s ease, box-shadow .25s ease;
}

.hero-buttons a:hover {
    transform: translateY(-3px);
}

/* TRUST PILLS */
.hero-trust {
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    width: min(1180px, calc(100% - 40px));
    z-index: 5;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(16, 198, 154, .12);
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
    transition: .25s ease;
}

.trust-pill:hover {
    transform: translateY(-2px);
}

.trust-pill span {
    color: #10c69a;
    font-weight: 900;
    font-size: 16px;
}

/* spacing after hero */
.hero+.section {
    padding-top: 100px;
}

/* cards on homepage */
.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    font-weight: 700;
}

/* MOBILE */
@media(max-width:900px) {

    .hero {
        min-height: auto;
        padding-bottom: 78px;
        background-position: 72% center;
    }

    .hero .inner {
        padding: 58px 16px;
    }

    .hero h1 {
        font-size: 48px;
        max-width: 100%;
    }

    .hero p {
        font-size: 18px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        bottom: -28px;
        gap: 10px;
        width: calc(100% - 24px);
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .hero-trust::-webkit-scrollbar {
        display: none;
    }

    .trust-pill {
        flex: 0 0 auto;
        font-size: 13px;
        padding: 10px 14px;
        white-space: nowrap;
    }

    .hero+.section {
        padding-top: 92px;
    }

}

.menu a.active {
    color: #10c69a;
    font-weight: 600;
    position: relative;
}

.menu a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #10c69a;
    border-radius: 2px;
}