/* #region common */
.home .ht-page {
    padding: 0;
}

.home-page {
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
}

.home-page .container {
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .home-page .container {
        padding: 0 12px;
    }
}
/* #endregion */

/* #region hero */
.hero {
    background: url(/sites/images/home/bg-hero.webp) no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 490px;
    margin: auto;
}

h1.hero-title {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FFF;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    padding-bottom: 20px;
    text-align: center;
    margin: 0;
}

.hero-subtitle {
    letter-spacing: -0.32px;
    color: #FFF;
    text-align: center;
}

@media (max-width: 979px) {
    .hero {
        min-height: 300px;
    }

    h1.hero-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    h1.hero-title {
        font-size: 24px;
        padding-bottom: 12px;
    }
}
/* #endregion */

/* #region apps-section */
.apps-section {
    padding: 40px 0 60px;
}

.apps-section-title {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000;
    margin: 0 0 32px;
    letter-spacing: -0.4px;
    text-align: center;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.app-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 20px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.app-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.app-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.app-card-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.app-card-label {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #000;
    text-align: center;
    white-space: nowrap;
    line-height: normal;
}

@media (max-width: 979px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .apps-section {
        padding: 40px 0;
    }

    .apps-section-title {
        font-size: 20px;
        margin: 0 0 24px;
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .app-card {
        padding: 28px 12px;
    }

    .app-card-label {
        font-size: 16px;
        white-space: normal;
    }
}
/* #endregion */

/* #region intro */
.intro {
    background: url(/sites/images/home/bg-social.webp) no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

.intro-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.intro-video {
    cursor: pointer;
    width: 67%;
    max-width: 793px;
    cursor: pointer;
    position: relative;
}

.intro-video-thumbnail {
    width: 100%;
    height: auto;
}

.intro-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 53px;
    height: 53px;
    transition: all 0.2s ease;
}

.intro-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    width: 33%;
    max-width: 387px;
}

a.intro-social-item {
    background-color: #FFF;
    border-radius: 16px;
    overflow: hidden;
    padding: 52px 24px 65px;
    text-align: center;
    text-decoration: unset;
}

.intro-social-label {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding-top: 20px;
    color: #000;
}

@media (max-width: 979px) {
    .intro {
        padding: 40px 0;
    }

    .intro-wrap {
        flex-direction: column;
        gap: 32px;
    }

    .intro-video {
        width: 100%;
    }

    .intro-social {
        width: 100%;
        flex-direction: row;
        max-width: unset;
    }

    .intro-social-item {
        flex: 1;
        padding: 32px 12px 40px;
    }
}

@media (max-width: 767px) {
    .intro-social {
        flex-direction: column;
    }

    .intro-social-item {
        padding: 24px 12px 32px;
    }

    .intro-social-label {
        font-size: 16px;
    }
}
/* #endregion */