/* Banner */
.premium-banner {
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') no-repeat right center/cover;
    overflow: hidden;
}

/* Gradient Overlay */
.premium-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(120, 190, 185, 0.95) 0%,
            rgba(120, 190, 185, 0.85) 35%,
            rgba(120, 190, 185, 0.4) 60%,
            rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 180, 120, 0.35) 100%);
}

/* Container inherited from style.css */
.premium-banner__content {
    /* width: var(--container-max-width); */
    max-width: 95%;
    margin: auto;
    position: relative;
}

/* Content */
.premium-banner__content {
    max-width: 770px;
    text-align: left;
    margin-left: 0px;
}

.container.premium-banner__container {
    width: 100%;
}

/* Title inherited h1 from style.css but specific sizing here if needed */
.premium-banner__title {
    font-size: 70px;
    color: var(--color-navy);
    margin-bottom: 20px;
}

/* Description inherits p from style.css */
.premium-banner__desc {
    color: var(--color-white);
    margin-bottom: 30px;
}

/* Bottom Section */
.premium-banner__bottom {
    margin-top: 60px;
}

.premium-banner__line {
    width: 200px;
    height: 3px;
    background: var(--color-primary);
    margin-bottom: 25px;
}

/* Steps */
.premium-banner__steps {
    display: flex;
    gap: 60px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: var(--color-text-light);
}

.step .num {
    font-size: 40px;
    font-weight: 600;
}

.step p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

.step.active {
    color: var(--color-primary);
}

/* Topbar */
.premium-topbar {
    width: 100%;
    background: var(--color-navy-light);
    padding: 25px 0 15px;
    color: #cfd6e4;
}

.premium-topbar__container.flex-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-topbar__text {
    font-size: 14px;
    line-height: 1.6;
    color: #aeb7cc;
    max-width: 260px;
}

.premium-topbar__logos {
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0.7;
}

.premium-topbar__logos img {
    max-height: 35px;
    transition: var(--transition-normal);
}

.premium-topbar__logos img:hover {
    opacity: 1;
}

.premium-topbar__border {
    width: var(--container-max-width);
    max-width: 95%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
}

/* ORANGE SECTION (About) */
.premium-about {
    padding: 0px;
}

.premium-about__top {
    background: var(--color-primary);
    padding: 70px 0 180px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-white);
}

.top-flex h2 {
    color: var(--color-white);
    font-size: 34px;
    margin: 0;
}

.top-flex p {
    color: var(--color-white);
    max-width: 520px;
    font-size: 15px;
    margin: 0;
    text-align: left;
}

/* CARDS Overlap */
.premium-about__cards {
    display: flex;
    gap: 30px;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.card {
    width: 33.33%;
    background: var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-head {
    background: #f4f4f4;
    text-align: center;
    padding: 22px 15px;
}

.card-head span {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
}

.card-head h3 {
    font-size: 18px;
    margin: 5px 0 0;
    color: var(--color-navy);
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-navy);
}

/* GREY SECTION (About Bottom) */
.premium-about__bottom {
    /* background: #e9eaee; */
    padding: 120px 0 40px;
    margin-top: -60px;
}

.premium-about__bottom p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
}

.premium-about__bottom a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Line */
.line {
    height: 1px;
    background: var(--color-border);
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-banner__title {
        font-size: 40px;
    }

    .premium-banner__steps {
        flex-direction: column;
        gap: 20px;
    }

    .premium-about__cards {
        flex-direction: column;
        margin-top: -80px;
    }

    .card {
        width: 100%;
    }
}