.cmp-plan-drawer {
    font-family: 'Fieldwork', Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px 24px;
}

.cmp-plan-drawer-group__header {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.cmp-plan-drawer__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: #005b9f;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 0;
    text-align: left;
    width: 100%;
}

.cmp-plan-drawer__trigger::before {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url("../../../../../content/dam/bsca/en/shared/icons/32px/32px_Circle-Question_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.cmp-plan-drawer__trigger:hover {
    color: #003f6e;
}

.cmp-plan-drawer__author-note {
    margin-top: 8px;
    color: #4b5563;
    font-size: 13px;
}

.cmp-plan-drawer__modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.cmp-plan-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.35);
}

.cmp-plan-drawer__panel {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: min(420px, calc(100vw - 24px));
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
    transform: translateX(12px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    outline: none;
}

.cmp-plan-drawer__modal.is-open .cmp-plan-drawer__panel {
    transform: translateX(0);
    opacity: 1;
}

.cmp-plan-drawer__close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.cmp-plan-drawer__body {
    padding: 38px 20px 12px;
    overflow-y: auto;
}

.cmp-plan-drawer__eyebrow {
    margin: 0;
    font-size: 16px;
    color: #171717;
}

.cmp-plan-drawer__title {
    margin: 8px 0 10px;
    font-size: 38px;
    line-height: 1.05;
    color: #111827;
}

.cmp-plan-drawer__intro {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.4;
}

.cmp-plan-drawer__selector-label {
    margin: 18px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #111827;
    font-weight: 700;
}

.cmp-plan-drawer__tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.cmp-plan-drawer__tier-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #F7F7F7;
    background: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    min-height: 46px;
    padding: 9px 12px;
    font-size: 16px;
    color: #111827;
}

.cmp-plan-drawer__tier-btn:hover {
    background: #f7feff !important;
}

.cmp-plan-drawer__tier-btn.is-active {
    border: 4px solid #B3F8FF;
    background: #f6fcff;
}

.cmp-plan-drawer__tier-btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.cmp-plan-drawer__tier-btn-label {
    font-size: 14px;
}

.cmp-plan-drawer__tier-btn.is-active .cmp-plan-drawer__tier-btn-label {
    font-weight: 600;
}

.cmp-plan-drawer__status,
.cmp-plan-drawer__error {
    font-size: 15px;
    color: #374151;
}

.cmp-plan-drawer__error {
    color: #991b1b;
}

.cmp-plan-drawer__detail-card {
    border-radius: 12px;
    background: #f5f4f2;
    padding: 14px;
    color: #111827;
}

.cmp-plan-drawer__detail-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmp-plan-drawer__detail-title-icon {
    width: 22px;
    height: 22px;
}

.cmp-plan-drawer__detail-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.05;
}

.cmp-plan-drawer__metrics {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.cmp-plan-drawer__metric-item {
    text-align: center;
}

.cmp-plan-drawer__metric-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: inline-block;
}

.cmp-plan-drawer__metric-label {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.cmp-plan-drawer__description {
    margin: 14px 0;
    font-size: 15px;
    line-height: 1.4;
}

.cmp-plan-drawer__section-title {
    margin: 14px 0 8px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.cmp-plan-drawer__list {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.cmp-plan-drawer__list li {
    margin-bottom: 6px;
}

.cmp-plan-drawer__footer {
    padding: 10px 0 14px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.cmp-plan-drawer__footer-close {
    background: transparent;
    border: 0;
    color: #005b9f;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 768px) {
    .cmp-plan-drawer__panel {
        top: 12px;
        right: 10px;
        left: 10px;
        width: auto;
        border-radius: 16px;
    }

    .cmp-plan-drawer__title {
        font-size: 32px;
    }

    .cmp-plan-drawer__detail-title {
        font-size: 24px;
    }
}
