/* ROI Calculator banner — reusable widget */
.roi-banner {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Modifier for parents that already apply their own horizontal padding/width cap
   (e.g. tariffs.html — main.tariffs-container already max-width: 1200px + padding). */
.roi-banner--flush {
    padding: 0;
}

.roi-banner__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, #0F1724 0%, #000000 60%, #2A1F12 100%);
    border-radius: 16px;
    padding: 32px 40px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 36, 0.15);
}

.roi-banner__card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 36, 0.22);
}

.roi-banner__card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, rgba(255, 107, 0, 0) 65%);
    pointer-events: none;
}

.roi-banner__content {
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
}

.roi-banner__title {
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(24px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 10px;
}

.roi-banner__description {
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
    max-width: 560px;
}

.roi-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    height: 50px;
    border-radius: 25px;
    background: #FF6B00;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.roi-banner__cta:hover {
    background: #E55D00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.25);
}

.roi-banner__visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 220px;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.roi-banner__bar {
    width: 34px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #FF8533 0%, #FF6B00 100%);
    position: relative;
}

.roi-banner__bar--1 { height: 40%; opacity: 0.55; }
.roi-banner__bar--2 { height: 60%; opacity: 0.75; }
.roi-banner__bar--3 { height: 80%; opacity: 0.9; }
.roi-banner__bar--4 { height: 100%; }

@media (max-width: 900px) {
    .roi-banner__visual {
        width: 160px;
        height: 130px;
    }
    .roi-banner__bar {
        width: 26px;
    }
    .roi-banner__card {
        padding: 28px 28px;
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .roi-banner {
        margin: 40px auto;
    }
    .roi-banner__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 20px;
        min-height: 0;
    }
    .roi-banner__card::before {
        top: -60%;
        right: -40%;
    }
    .roi-banner__description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .roi-banner__cta {
        display: flex;
        width: 100%;
        justify-content: center;
        height: 48px;
        font-size: 14px;
    }
    .roi-banner__visual {
        display: none;
    }
}
