.sb-panel {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 18px;
}

.sb-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: #007EFF;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}

.sb-feedback { position: relative; }

.sb-feedback__open {
    padding: 5px 12px;
    border: 1px solid #007EFF;
    border-radius: 999px;
    background: #fff;
    color: #007EFF;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.sb-feedback__open:hover { background: #E8F3FF; }

.sb-feedback__form {
    position: absolute;
    z-index: 40;
    top: calc(100% + 8px);
    left: 0;
    width: min(360px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .16);
}

.sb-feedback__form[hidden] { display: none; }

.sb-feedback__label {
    display: block;
    margin-bottom: 4px;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

.sb-feedback__input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 10px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    box-sizing: border-box;
}

.sb-feedback__actions { display: flex; gap: 8px; }

.sb-feedback__send,
.sb-feedback__cancel {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.sb-feedback__send { border: 0; background: #007EFF; color: #fff; }
.sb-feedback__send:hover:not(:disabled) { background: #0062CC; }
.sb-feedback__send:disabled { opacity: .6; cursor: default; }
.sb-feedback__cancel { border: 1px solid #CBD5E1; background: #fff; color: #334155; }

.sb-feedback__note { margin: 10px 0 0; font-size: 12px; }
.sb-feedback__note--ok { color: #15803d; }
.sb-feedback__note--bad { color: #b91c1c; }
.sb-feedback__note--info { color: #475569; }

.sb-hidden { display: none; }

.sa-page { max-width: 1180px; margin: 0 auto; padding: 24px clamp(12px, 3vw, 24px) 48px; box-sizing: border-box; }
.sa-page__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sa-page__title { margin: 0; font-size: clamp(22px, 4vw, 28px); }
.sa-page__sub { margin: 8px 0 22px; color: #475569; font-size: 14px; line-height: 1.55; max-width: 760px; }

.sa-beta {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: #007EFF;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.sa-empty {
    padding: 18px 20px;
    margin-bottom: 22px;
    border: 1px dashed #CBD5E1;
    border-radius: 12px;
    background: #F8FAFC;
}

.sa-empty p { margin: 6px 0 0; color: #475569; font-size: 14px; }

.sa-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    margin-top: clamp(20px, 3vw, 32px);
}

.sa-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px 20px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    overflow: hidden;
}

.sa-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, #007EFF 0%, #38BDF8 100%);
}

.sa-card:hover { border-color: #BFDBFE; box-shadow: 0 10px 26px rgba(15, 23, 42, .08); transform: translateY(-2px); }

.sa-card--locked { background: #F8FAFC; }
.sa-card--locked::before { background: #E2E8F0; }
.sa-card--locked:hover { transform: none; box-shadow: 0 1px 2px rgba(15, 23, 42, .04); border-color: #E2E8F0; }

.sa-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.sa-card__title { margin: 0; font-size: 18px; line-height: 1.35; min-width: 0; }
.sa-card__link { color: #0f172a; text-decoration: none; }
.sa-card__link:hover { color: #007EFF; }
.sa-card__text { margin: 10px 0 14px; color: #475569; font-size: 14px; line-height: 1.55; }
.sa-card__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}
.sa-card__hint { color: #64748b; font-size: 12px; }
.sa-card__until { color: #64748b; font-size: 12px; }

.sa-badge { flex: 0 0 auto; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.sa-badge--ok { background: #DCFCE7; color: #15803d; }
.sa-badge--warn { background: #FEF3C7; color: #b45309; }
.sa-badge--off { background: #F1F5F9; color: #64748b; }

.sa-features { margin: 0 0 4px; padding: 0; list-style: none; }
.sa-features__item { position: relative; padding-left: 22px; margin-bottom: 6px; font-size: 13px; line-height: 1.5; color: #334155; }
.sa-features__item::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.sa-features__item--off { color: #94a3b8; }
.sa-features__item--off::before { content: '×'; color: #cbd5e1; }

.sa-foot-note {
    margin: clamp(20px, 3vw, 32px) 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #F1F7FF;
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

.sa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease;
}

.sa-btn:hover { border-color: #94a3b8; background: #F8FAFC; }
.sa-btn--primary { border-color: #007EFF; background: #007EFF; color: #fff; }
.sa-btn--primary:hover { border-color: #0062CC; background: #0062CC; }

.sa-denied { max-width: 560px; padding: 26px; border: 1px solid #E2E8F0; border-radius: 12px; background: #fff; }
.sa-denied__title { margin: 0 0 10px; font-size: 20px; }
.sa-denied__text { margin: 0 0 18px; color: #475569; font-size: 14px; line-height: 1.55; }
.sa-denied__actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 640px) {
    .sa-grid { grid-template-columns: 1fr; }
    .sb-panel { gap: 8px; }
    .sb-feedback__form { width: calc(100vw - 32px); left: auto; right: 0; }
}

@media (max-width: 380px) {
    .sa-page { padding: 16px 12px 36px; }
    .sa-page__title { font-size: 22px; }
}

.sl-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px clamp(12px, 3vw, 24px) 56px;
    box-sizing: border-box;
}

.sl-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 13px;
}

.sl-crumbs a { color: #64748b; text-decoration: none; }
.sl-crumbs a:hover { color: #007EFF; text-decoration: underline; }

.sl-hero {
    padding: clamp(18px, 4vw, 34px);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.sl-hero--flat { background: #fff; }

.sl-hero__text { max-width: 820px; }

.sl-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: #007EFF;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.sl-hero__title {
    margin: 14px 0 12px;
    font-size: clamp(22px, 4.2vw, 36px);
    line-height: 1.2;
    color: #0f172a;
}

.sl-hero__lead {
    margin: 0 0 20px;
    color: #334155;
    font-size: clamp(14px, 2.2vw, 17px);
    line-height: 1.6;
}

.sl-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.sl-hero__note { margin: 14px 0 0; color: #64748b; font-size: 13px; line-height: 1.5; }

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease;
}

.sl-btn:hover { border-color: #94a3b8; background: #F8FAFC; }

.sl-btn--primary { border-color: #007EFF; background: #007EFF; color: #fff; }
.sl-btn--primary:hover { border-color: #0062CC; background: #0062CC; }

.sl-section {
    margin-top: clamp(24px, 4vw, 40px);
    padding: clamp(16px, 3vw, 26px);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    background: #fff;
}

.sl-section--flat { border-style: dashed; background: #F8FAFC; }

.sl-section__title {
    margin: 0 0 16px;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.3;
    color: #0f172a;
}

.sl-pains, .sl-abilities { margin: 0; padding: 0; list-style: none; }

.sl-pains__item, .sl-abilities__item {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
}

.sl-pains__item::before {
    content: '—';
    position: absolute;
    left: 4px;
    color: #f97316;
    font-weight: 700;
}

.sl-abilities__item::before {
    content: '✓';
    position: absolute;
    left: 2px;
    color: #16a34a;
    font-weight: 700;
}

.sl-steps { margin: 0; padding: 0; list-style: none; counter-reset: sl-step; }

.sl-steps__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
}

.sl-steps__num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E8F3FF;
    color: #0062CC;
    font-size: 14px;
    font-weight: 700;
}

.sl-result {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-left: 3px solid #007EFF;
    border-radius: 0 10px 10px 0;
    background: #F1F7FF;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.6;
}

.sl-audience { margin: 0; color: #334155; font-size: 15px; line-height: 1.6; }

.sl-faq { display: grid; gap: 10px; }

.sl-faq__item {
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #FCFDFF;
}

.sl-faq__q {
    cursor: pointer;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.sl-faq__a { margin: 10px 0 0; color: #475569; font-size: 14px; line-height: 1.6; }

.sl-cta {
    margin-top: clamp(24px, 4vw, 40px);
    padding: clamp(20px, 4vw, 32px);
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
}

.sl-cta__title { margin: 0 0 10px; font-size: clamp(18px, 3vw, 24px); line-height: 1.3; }
.sl-cta__text { margin: 0 0 18px; color: #cbd5e1; font-size: 15px; line-height: 1.6; max-width: 720px; }
.sl-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.sl-cta .sl-btn { border-color: #334155; background: #1e293b; color: #fff; }
.sl-cta .sl-btn:hover { border-color: #475569; background: #334155; }
.sl-cta .sl-btn--primary { border-color: #007EFF; background: #007EFF; }
.sl-cta .sl-btn--primary:hover { border-color: #0062CC; background: #0062CC; }

.sl-other { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 12px; }

.sl-other__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FCFDFF;
    text-decoration: none;
}

.sl-other__card:hover { border-color: #93C5FD; background: #F5FAFF; }
.sl-other__title { color: #0f172a; font-size: 15px; font-weight: 600; }
.sl-other__text { color: #64748b; font-size: 13px; line-height: 1.5; }

.sl-catalog { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; }

.sl-catalog__card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FCFDFF;
}

.sl-catalog__title { margin: 0 0 8px; font-size: 17px; line-height: 1.35; }
.sl-catalog__title a { color: #0f172a; text-decoration: none; }
.sl-catalog__title a:hover { color: #007EFF; }
.sl-catalog__text { margin: 0 0 12px; color: #475569; font-size: 14px; line-height: 1.55; }
.sl-catalog__list { margin: 0 0 14px; padding-left: 18px; color: #475569; font-size: 13px; line-height: 1.55; }
.sl-catalog__list li { margin-bottom: 5px; }
.sl-catalog__more { margin-top: auto; color: #007EFF; font-size: 14px; font-weight: 600; text-decoration: none; }
.sl-catalog__more:hover { text-decoration: underline; }

@media (max-width: 420px) {
    .sl-hero__actions .sl-btn,
    .sl-cta__actions .sl-btn { width: 100%; }
    .sl-pains__item, .sl-abilities__item, .sl-steps__item { font-size: 14px; }
}

.sv-crumbs {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 24px);
    box-sizing: border-box;
}

.sv-crumbs--wide { max-width: 1480px; }

.main .pf-scope,
.main .ta-scope {
    padding-left: clamp(12px, 3vw, 24px);
    padding-right: clamp(12px, 3vw, 24px);
}

.main #delivery-calculator-app {
    padding-left: clamp(12px, 3vw, 24px);
    padding-right: clamp(12px, 3vw, 24px);
    box-sizing: border-box;
}

.dg-shell-top {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 20px);
    box-sizing: border-box;
}

.dg-shell-top__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.dg-shell-top__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 8px;
}

.breadcrumbs .dg-crumbs__link {
    color: var(--color-text-muted, #8896A6);
    font-size: 13px;
    text-decoration: none;
}

.breadcrumbs .dg-crumbs__link:hover { color: var(--color-primary, #007EFF); }

.breadcrumbs .dg-crumbs__sep {
    margin: 0 6px;
    color: var(--color-border, #E2E8F0);
    font-size: 12px;
}

.breadcrumbs .dg-crumbs__current {
    color: var(--color-text, #0B1220);
    font-size: 13px;
    font-weight: 600;
}
