.bb-banner {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #b8f0c4 0%, #7de8a0 30%, #4dd88a 60%, #2eb872 100%);
    display: flex;
    align-items: center;
    gap: 48px;
    font-family: system-ui, -apple-system, sans-serif;
     width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 10px;
}
.giacom-plan-hero, .topbanner .bb-banner {
  margin-bottom: -70px;
}
.bb-banner-title {
    flex: 0 0 auto;
    max-width: 210px;
}

.bb-banner-title p {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 1px 2px rgba(0, 80, 30, .15);
}

.bb-banner-card {
    flex: 1;
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, .92);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 60, 20, .08);
    max-width: 560px;
}

.bb-banner-cell {
    padding: 10px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bb-banner-label {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1a6b3a;
    letter-spacing: .5px;
    font-style: italic;
}

.bb-banner-price {
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.bb-banner-currency {
    font-size: 18px;
    font-weight: 600;
    color: #1b2e23;
}

.bb-banner-amount {
    font-size: 64px;
    font-weight: 800;
    color: #1b2e23;
    line-height: 1;
    letter-spacing: -2px;
}

.bb-banner-amount--small {
    font-size: 56px;
}

.bb-banner-sub {
    margin: 6px 0 0;
    font-size: 17px;
    color: #3d6b4f;
    font-weight: 500;
}

.bb-banner-sub--small {
    font-size: 16px;
    margin-bottom: 8px;
}

.bb-banner-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #c5e8d0, transparent);
    align-self: stretch;
    margin: 12px 0;
}

/* Large tablet / small desktop */
@media (max-width: 1024px) {
    .bb-banner {
        gap: 32px;
    }

    .bb-banner-title p {
        font-size: 42px;
    }

    .bb-banner-amount {
        font-size: 54px;
    }

    .bb-banner-amount--small {
        font-size: 46px;
    }

    .bb-banner-cell {
        padding: 24px 28px;
    }

    .bb-banner-label {
        font-size: 18px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .bb-banner {
        flex-direction: column;
        padding: 32px 28px;
        gap: 24px;
        text-align: center;
    }

    .bb-banner-title {
        max-width: 100%;
    }

    .bb-banner-title p {
        font-size: 36px;
    }

    .bb-banner-card {
        width: 100%;
        max-width: 100%;
    }

    .bb-banner-cell {
        padding: 20px 16px;
    }

    .bb-banner-amount {
        font-size: 46px;
    }

    .bb-banner-amount--small {
        font-size: 40px;
    }
}

/* Smaller devices (up to 600px) */
@media (max-width: 600px) {
    .bb-banner {
        width: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .bb-banner {
        padding: 24px 20px;
        gap: 20px;
        border-radius: 12px;
        width: auto;
    }

    .bb-banner-title p {
        font-size: 28px;
    }

    .bb-banner-card {
        flex-direction: column;
        gap: 0;
    }

    .bb-banner-divider {
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, #c5e8d0, transparent);
        margin: 0 16px;
        align-self: auto;
    }

    .bb-banner-cell {
        padding: 18px 20px;
    }

    .bb-banner-label {
        font-size: 16px;
    }

    .bb-banner-amount {
        font-size: 42px;
    }

    .bb-banner-amount--small {
        font-size: 36px;
    }

    .bb-banner-sub {
        font-size: 13px;
    }
}