.brand-hero {
    position: relative;

    min-height: 720px;

    overflow: hidden;
}

.brand-hero-bg {
    position: absolute;
    inset: 0;
}

.brand-hero-bg video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.brand-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.98) 0%,
            rgba(255,255,255,.86) 40%,
            rgba(255,255,255,.25) 75%,
            rgba(255,255,255,.05) 100%
        );
}

.brand-hero-inner {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    z-index: 2;
}

.brand-hero-copy {
    max-width: 680px;
}

.hero-label {
    display: inline-flex;

    padding: 8px 16px;

    border: 1px solid #cfe5ea;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    color: var(--primary-dark);
}

.brand-hero h1 {
    margin:
        28px 0
        20px;

    font-size:
        clamp(
            46px,
            6vw,
            86px
        );

    line-height: 1.2;

    letter-spacing: .03em;
}

.brand-hero h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    line-height: 2;
}


/* services */

.service-section {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading span,
.small-label {
    color: var(--primary);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .12em;
}

.section-heading h2 {
    margin: 8px 0 0;

    font-size:
        clamp(
            30px,
            4vw,
            48px
        );
}

.service-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 24px;
}

.service-card {
    min-height: 420px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    overflow: hidden;

    background: white;

    box-shadow: var(--shadow);
}

.service-card-main {
    display: grid;

    grid-template-columns:
        1.1fr 1fr;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.service-content {
    padding: 38px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.service-status {
    width: fit-content;

    padding: 6px 12px;

    border-radius: 999px;

    background: #eafafa;

    color: var(--primary-dark);

    font-size: 12px;
    font-weight: 800;
}

.service-status.coming {
    background: #f2f2f2;
    color: #888;
}

.service-content h3 {
    margin: 18px 0 12px;

    font-size: 28px;
}

.service-content p {
    color: var(--sub-text);
}

.service-link {
    margin-top: 24px;

    color: var(--primary-dark);

    font-weight: 700;
}

.service-card-coming {
    background:
        linear-gradient(
            145deg,
            #fbfcfd,
            #f1f5f7
        );
}


/* concept */

.concept-section {
    padding:
        0 0 120px;
}

.concept-box {
    padding: 70px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            #effafa,
            #faf7fb
        );

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}

.concept-box h2 {
    margin: 12px 0 0;

    font-size:
        clamp(
            30px,
            4vw,
            50px
        );

    line-height: 1.45;
}

.concept-box p {
    font-size: 17px;
    line-height: 2;
}


/* smartphone */

@media (max-width: 768px) {

    .brand-hero {
        min-height: 650px;
    }

    .brand-hero-inner {
        min-height: 650px;

        align-items: flex-end;

        padding-bottom: 50px;
    }

    .brand-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.20) 0%,
                rgba(255,255,255,.60) 45%,
                rgba(255,255,255,.98) 78%
            );
    }

    .brand-hero-copy {
        max-width: 100%;
    }

    .brand-hero h1 {
        font-size: 47px;
    }

    .hero-description {
        font-size: 15px;
    }

    .service-section {
        padding: 70px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .service-card-main {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 28px;
    }

    .concept-box {
        padding: 36px 24px;

        grid-template-columns: 1fr;

        gap: 25px;
    }

}