.hero-section {
    background: url("/assets/img/landing/1bg.jpg");
    color: white;
    padding: 80px 0;
}

.hero-features .product-title {
    border: 3px solid #15a8ff;
    padding: 14px 28px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(0,0,0,0.25);
}

.hero-features .feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    color: #e6e6e6;
    text-align: left;
    display: inline-block;
}

    .hero-features .feature-list li {
        padding: 6px 0;
        position: relative;
    }

        .hero-features .feature-list li::before {
            content: "\2022";
            color: #fff;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            margin-right: 0.75rem;
        }

/* Awards section */
.awards-section {
    background: rgba(2,85,117,0.9); /* overlay color similar to screenshot */
}

    .awards-section .branch-img {
        width: 48px;
        height: auto;
        filter: drop-shadow(0 1px 0 rgba(0,0,0,0.15));
    }

    .awards-section .award-title {
        font-size: 1rem;
        line-height: 1.1;
        text-align: center;
    }

    .awards-section .award-year {
        font-size: 1.75rem;
        margin-top: 6px;
        font-weight: 600;
    }

    .awards-section .award-source {
        font-size: 0.85rem;
        margin-top: 6px;
        opacity: 0.9;
        letter-spacing: 0.5px;
    }

@media (max-width: 767px) {
    .hero-features .product-title {
        padding: 10px 16px;
    }

    .awards-section .branch-img {
        width: 36px;
    }

    .awards-section .award-year {
        font-size: 1.25rem;
    }
}

/* Video showcase section */
.video-section {
    background: #fff;
}

.video-showcase {
    padding: 60px 0;
}

    .video-showcase .headline {
        font-size: 3rem;
        font-weight: 700;
        color: #222;
    }

    .video-showcase .muted {
        color: #6c757d;
    }

    .video-showcase .learn-btn {
        background: #0aa0ff;
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 4px;
    }

.macbook-wrap {
    position: relative;
    display: block;
    max-width: 720px;
    margin: 0 auto;
}

    .macbook-wrap img.macbook {
        width: 100%;
        height: auto;
        display: block;
    }

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: #14a8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(20,168,255,0.35);
}

    .play-btn:after {
        content: '';
        display: inline-block;
        margin-left: 6px;
        border-style: solid;
        border-width: 18px 0 18px 30px;
        border-color: transparent transparent transparent #fff;
    }

@media (max-width:991px) {
    .video-showcase .headline {
        font-size: 2rem;
    }

    .play-btn {
        width: 90px;
        height: 90px;
        border-radius: 45px;
    }
}



/* Advantages section */
.advantages-section {
    background: #f7f7f7;
}

    .advantages-section .adv-title-main {
        font-size: 2.25rem;
        font-weight: 700;
        color: #2b2b2b;
    }

    .advantages-section .adv-sub {
        color: #6c757d;
        margin-bottom: 2.5rem;
    }

.adv-item {
    padding: 18px 24px;
}

    .adv-item .adv-row {
        display: flex;
        align-items: flex-start;
    }

.adv-icon {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .adv-icon img {
        width: 64px;
        height: auto;
    }

.adv-divider {
    width: 2px;
    height: 60px;
    background: #e6e6e6;
    margin: 0 18px;
}

.adv-content {
    flex: 1 1 auto;
}

    .adv-content .title {
        font-weight: 700;
        color: #2b2b2b;
        margin-bottom: 6px;
    }

    .adv-content .desc {
        color: #6c757d;
    }

@media (max-width:767px) {
    .adv-item .adv-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .adv-divider {
        display: none;
    }

    .adv-icon {
        margin-bottom: 10px;
    }
}

/* Devices / Platforms section */
.devices-section {
    background: #fff;
}

    .devices-section .headline {
        font-size: 3rem;
        font-weight: 700;
        color: #2b2b2b;
    }

    .devices-section .lead-desc {
        color: #6c757d;
        font-size: 1.05rem;
    }

.platform-icons {
    margin-top: 2.5rem;
}

.platform-item {
    text-align: center;
}

    .platform-item img {
        width: 80px;
        height: auto;
        display: block;
        margin: 0 auto 12px;
        filter: grayscale(100%);
        opacity: 0.95;
    }

    .platform-item .label {
        font-weight: 700;
        color: #222;
    }

@media (max-width:767px) {
    .devices-section .headline {
        font-size: 1.75rem;
    }

    .platform-item img {
        width: 64px;
    }
}
