* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: 'Inter', sans-serif;
}

body {
    background: #eadce7;
    overflow-x: hidden;
}

/* LANDING PAGE BACKGROUND FIXED */
.landing-page {
    min-height: 100vh;
    background-image: linear-gradient(rgba(247, 234, 243, 0.82), rgba(242, 232, 241, 0.82)), url("../images/landing-background.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-stage {
    width: 100%;
    max-width: 1500px;
    min-height: 100vh;
    position: relative;
    padding-top: 48px;
    padding-bottom: 70px;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 560px;
    max-width: 78vw;
    height: auto;
    display: block;
}

.subtitle {
    text-align: center;
    margin-top: 18px;
    font-size: 28px;
    font-weight: 400;
    color: #6c6674;
}

/* APP ICON STRIP */
.apps-strip {
    width: 1200px;
    max-width: 92vw;
    margin: 105px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

/* Base app link */
.app-link {
    display: block;
    position: relative;
    text-decoration: none;
    transition: transform 0.22s ease;
    z-index: 1;
}

    .app-link img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 12px 18px rgba(60, 42, 70, 0.18));
    }

    /* Bounce animation */
    .app-link:hover {
        animation: bounce 0.7s ease;
        z-index: 10;
    }

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-16px);
    }

    40% {
        transform: translateY(0);
    }

    55% {
        transform: translateY(-9px);
    }

    70% {
        transform: translateY(0);
    }

    85% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ICON SIZES (FIXED FROM 1000px) */
.app-hr {
    width: 300px;
    margin-right: -10px;
    z-index: 1;
}

.app-support {
    width: 300px;
    margin-left: -20px;
    z-index: 2;
}

.app-workflow {
    width: 300px;
    margin-left: -18px;
    z-index: 3;
}

.app-agent {
    width: 300px;
    margin-left: -18px;
    z-index: 4;
}

.app-webapp {
    width: 300px;
    margin-left: -18px;
    z-index: 5;
}

.app-admin {
    width: 300px;
    margin-left: -18px;
    z-index: 6;
}

.app-sms {
    width: 300px;
    margin-left: -18px;
    z-index: 7;
}

/* CALL TO ACTION BUTTON */
.cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 72px;
}

.get-started-btn {
    width: 390px;
    height: 72px;
    max-width: 84vw;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to bottom, #f14f5a 0%, #cd202f 100%);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.35), 0 10px 20px rgba(170, 38, 58, 0.23);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .get-started-btn:hover {
        transform: translateY(-2px);
        box-shadow: inset 0 2px 0 rgba(255,255,255,0.35), 0 14px 24px rgba(170, 38, 58, 0.28);
    }

/* TABLET */
@media (max-width: 1200px) {

    .apps-strip {
        width: 1000px;
        margin-top: 85px;
    }

    .app-hr {
        width: 160px;
    }

    .app-support,
    .app-workflow,
    .app-agent {
        width: 180px;
    }

    .app-webapp,
    .app-admin,
    .app-sms {
        width: 190px;
    }

    .subtitle {
        font-size: 24px;
    }
}

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

    .hero-stage {
        padding-top: 30px;
    }

    .main-logo {
        width: 420px;
        max-width: 86vw;
    }

    .subtitle {
        font-size: 22px;
        padding: 0 20px;
    }

    .apps-strip {
        width: 100%;
        max-width: 96vw;
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        gap: 18px;
        justify-items: center;
        align-items: center;
    }

    .app-link {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 170px !important;
    }

    .cta-wrap {
        margin-top: 42px;
    }

    .get-started-btn {
        width: 280px;
        height: 60px;
        font-size: 22px;
    }
}

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

    .apps-strip {
        grid-template-columns: 1fr;
    }

    .app-link {
        width: 185px !important;
    }

    .subtitle {
        font-size: 20px;
    }

    .get-started-btn {
        width: 240px;
        height: 56px;
        font-size: 20px;
    }
}
