﻿/* ---------- SECTIONS / BANDS ---------- */
.section {
    padding: 56px 0;
    position: relative;
    border-top: 1px solid var(--border)
}

    .section::before, .section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,rgba(255,255,255,.14),rgba(255,255,255,.08));
    }

    .section::before {
        top: 0
    }

    .section::after {
        bottom: 0
    }

.band {
    background: var(--band)
}

.container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1200px
}

.panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,.25)
}

.section-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: #f3f6ff
}

.section-lead {
    color: var(--muted);
    margin-bottom: 22px
}

/* ---------- SLIDER ---------- */
.carousel .slider-img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--border);
    transition: transform .35s, box-shadow .35s
}

    .carousel .slider-img:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow)
    }

.carousel-control-prev, .carousel-control-next {
    filter: invert(1) grayscale(1) opacity(.8)
}

/* ---------- FEATURE STRIP ---------- */
.feature-card {
    padding: 8px;
}

    .feature-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 8px;
    }

@media (min-width: 1400px) {
    .feature-card img {
        height: 160px;
    }
}

.feature-card img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.feature-title {
    font-weight: 600;
    margin-top: 10px
}

/* ---------- CONTENT IMAGE PANEL ---------- */
.media-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px
}

    .media-panel img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        border: 1px solid var(--border)
    }

/* ---------- DOWNLOADS (compact) ---------- */
.downloads-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.download-card {
    flex: 1 1 320px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 14px 16px;
    color: #fff;
    background: linear-gradient(135deg,#0d2a6b 0%,#0f3d9a 60%,#0a58ca 100%);
    box-shadow: 0 10px 26px rgba(6,40,120,.25);
    transition: transform .2s, box-shadow .2s;
}

    .download-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(6,40,120,.35)
    }

    .download-card .left {
        display: flex;
        gap: 12px;
        align-items: center
    }

.badge-os {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25)
}

    .badge-os svg {
        width: 22px;
        height: 22px
    }

.download-card.mac {
    background: linear-gradient(135deg,#2a1466 0%,#5b1da3 60%,#a8146b 100%)
}

.dl-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0
}

.dl-sub {
    font-size: .85rem;
    opacity: .8;
    margin: 0
}

.dl-btn {
    background: #ffffff;
    color: #0b1731;
    border: none;
    padding: .45rem .85rem;
    border-radius: 999px;
    font-weight: 700
}

    .dl-btn:hover {
        filter: brightness(.95)
    }

/* ---------- PRODUCTS ---------- */
.product-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    transition: transform .2s
}

    .product-card:hover {
        transform: translateY(-2px)
    }

    .product-card img {
        border-radius: 10px;
        width: 100%;
        height: 160px;
        object-fit: cover;
        border: 1px solid var(--border)
    }
