/* ============================================================
   Stepy Digital — Disclaimer / Demo Banner
   Banner sticky yang menjelaskan bahwa halaman ini adalah
   ilustrasi template, bukan situs komersial "Stepy Travel".
   ============================================================ */

.stepy-disclaimer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: linear-gradient(90deg, #113D48 0%, #1CA8CB 100%);
    color: #fff;
    box-shadow: 0 -4px 24px rgba(10, 31, 36, .22);
    font-family: 'Manrope', sans-serif;
    transform: translateY(120%); /* tersembunyi sampai JS menampilkannya */
    transition: transform .45s ease;
}

.stepy-disclaimer.is-visible {
    transform: translateY(0);
}

.stepy-disclaimer__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stepy-disclaimer__icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    opacity: .95;
}

.stepy-disclaimer__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .1px;
}

.stepy-disclaimer__text strong {
    font-weight: 700;
}

.stepy-disclaimer__brand {
    white-space: nowrap;
}

.stepy-disclaimer__close {
    margin-left: auto;
    background: rgba(255, 255, 255, .16);
    border: 0;
    color: #fff;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s ease;
}

.stepy-disclaimer__close:hover {
    background: rgba(255, 255, 255, .32);
}

@media (max-width: 768px) {
    .stepy-disclaimer__inner { padding: 11px 16px; gap: 11px; }
    .stepy-disclaimer__text { font-size: 12.5px; }
}

@media (max-width: 576px) {
    .stepy-disclaimer__icon { display: none; }
    .stepy-disclaimer__text { font-size: 11.5px; line-height: 1.45; }
}
