.tbk-app {
    --tbk-navy: #062653;
    --tbk-navy-2: #0b376c;
    --tbk-teal: #0b7e72;
    --tbk-teal-dark: #08665e;
    --tbk-amber: #f4b740;
    --tbk-ink: #172235;
    --tbk-muted: #5c697b;
    --tbk-line: #dce4ed;
    --tbk-soft: #f4f8fc;
    --tbk-soft-teal: #eaf7f5;
    --tbk-danger: #a93535;
    --tbk-warning: #8b5a06;
    --tbk-radius: 18px;
    --tbk-shadow: 0 18px 50px rgba(6, 38, 83, 0.09);
    box-sizing: border-box;
    width: 100%;
    max-width: 1120px;
    margin: 32px auto;
    color: var(--tbk-ink);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.55;
}

.tbk-app *,
.tbk-app *::before,
.tbk-app *::after {
    box-sizing: inherit;
}

.tbk-app [hidden],
.tbk-app .tbk-is-hidden {
    display: none !important;
}

.tbk-app h2,
.tbk-app h3,
.tbk-app p {
    margin-top: 0;
}

.tbk-app h2,
.tbk-app h3 {
    color: var(--tbk-navy);
    line-height: 1.2;
}

.tbk-app button,
.tbk-app input,
.tbk-app select {
    font: inherit;
}

.tbk-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(244, 183, 64, 0.2), transparent 32%),
        linear-gradient(135deg, var(--tbk-navy), var(--tbk-navy-2));
    color: #fff;
    box-shadow: var(--tbk-shadow);
}

.tbk-hero h2 {
    max-width: 760px;
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
}

.tbk-hero p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.tbk-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--tbk-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tbk-hero .tbk-kicker {
    color: #8ce2d8;
}

.tbk-privacy-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(6px);
}

.tbk-privacy-note strong {
    color: #fff;
    font-size: 17px;
}

.tbk-privacy-note span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.tbk-progress {
    position: relative;
    margin: 34px 0 22px;
    padding: 0 16px;
}

.tbk-progress__track {
    position: absolute;
    top: 18px;
    right: 8%;
    left: 8%;
    height: 4px;
    overflow: hidden;
    border-radius: 99px;
    background: #e3e9f0;
}

.tbk-progress__track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--tbk-teal);
    transition: width 240ms ease;
}

.tbk-progress__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tbk-progress__steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: var(--tbk-muted);
    text-align: center;
}

.tbk-progress__steps li span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid #dbe3ec;
    border-radius: 50%;
    background: #fff;
    color: var(--tbk-muted);
    font-weight: 800;
    transition: 180ms ease;
}

.tbk-progress__steps li small {
    font-size: 12px;
    font-weight: 700;
}

.tbk-progress__steps li.is-active span,
.tbk-progress__steps li.is-complete span {
    border-color: var(--tbk-teal);
    background: var(--tbk-teal);
    color: #fff;
}

.tbk-progress__steps li.is-active {
    color: var(--tbk-navy);
}

.tbk-form,
.tbk-results {
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid var(--tbk-line);
    border-radius: var(--tbk-radius);
    background: #fff;
    box-shadow: var(--tbk-shadow);
}

.tbk-step {
    animation: tbkFade 180ms ease;
}

@keyframes tbkFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tbk-step__head {
    max-width: 790px;
    margin-bottom: 30px;
}

.tbk-step__head > span,
.tbk-section-card__head > div > span {
    display: block;
    margin-bottom: 5px;
    color: var(--tbk-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.tbk-step__head h3 {
    margin-bottom: 10px;
    font-size: clamp(24px, 3vw, 32px);
}

.tbk-step__head p {
    margin-bottom: 0;
    color: var(--tbk-muted);
}

.tbk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tbk-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.tbk-field--full {
    grid-column: 1 / -1;
}

.tbk-field label,
.tbk-field legend,
.tbk-label {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    color: var(--tbk-navy);
    font-weight: 750;
}

.tbk-field select,
.tbk-field input[type="number"] {
    width: 100%;
    min-height: 50px;
    padding: 11px 42px 11px 14px;
    border: 1px solid #b8c5d3;
    border-radius: 10px;
    outline: none;
    background-color: #fff;
    color: var(--tbk-ink);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.tbk-field input[type="number"] {
    padding-right: 14px;
}

.tbk-field select:focus,
.tbk-field input:focus,
.tbk-app button:focus-visible,
.tbk-app a:focus-visible {
    border-color: var(--tbk-teal);
    outline: 3px solid rgba(11, 126, 114, 0.2);
    outline-offset: 2px;
}

.tbk-field.is-invalid select,
.tbk-field.is-invalid input,
.tbk-field.is-invalid .tbk-options {
    border-color: var(--tbk-danger);
    box-shadow: 0 0 0 3px rgba(169, 53, 53, 0.09);
}

.tbk-field.is-invalid::after {
    display: block;
    margin-top: 7px;
    color: var(--tbk-danger);
    content: "Pasirinkite atsakymą.";
    font-size: 13px;
    font-weight: 700;
}

.tbk-help {
    margin: -2px 0 11px;
    color: var(--tbk-muted);
    font-size: 14px;
}

.tbk-age-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 12px;
}

.tbk-age-item {
    padding: 13px;
    border: 1px solid var(--tbk-line);
    border-radius: 12px;
    background: var(--tbk-soft);
}

.tbk-age-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--tbk-muted);
    font-size: 13px;
    font-weight: 700;
}

.tbk-options {
    display: grid;
    gap: 10px;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 12px;
}

.tbk-options--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tbk-options--days {
    grid-template-columns: repeat(7, minmax(52px, 1fr));
}

.tbk-options label {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--tbk-line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: 150ms ease;
}

.tbk-options label:hover {
    border-color: #9cb1c5;
    background: var(--tbk-soft);
}

.tbk-options label:has(input:checked) {
    border-color: var(--tbk-teal);
    background: var(--tbk-soft-teal);
    color: var(--tbk-teal-dark);
}

.tbk-options input {
    width: 18px;
    height: 18px;
    margin: 0 9px 0 0;
    accent-color: var(--tbk-teal);
}

.tbk-options label span {
    margin: 0;
    font-weight: 650;
}

.tbk-options--days label {
    justify-content: center;
}

.tbk-options--days input {
    margin-right: 6px;
}

.tbk-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--tbk-line);
}

.tbk-actions__spacer {
    flex: 1;
}

.tbk-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.tbk-button:hover {
    transform: translateY(-1px);
}

.tbk-button--primary {
    border-color: var(--tbk-teal);
    background: var(--tbk-teal);
    color: #fff;
}

.tbk-button--primary:hover {
    border-color: var(--tbk-teal-dark);
    background: var(--tbk-teal-dark);
    color: #fff;
}

.tbk-button--secondary {
    border-color: #b8c5d3;
    background: #fff;
    color: var(--tbk-navy);
}

.tbk-button--secondary:hover {
    border-color: var(--tbk-navy);
    background: var(--tbk-soft);
    color: var(--tbk-navy);
}

.tbk-text-button {
    display: inline-flex;
    margin-top: 11px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: var(--tbk-teal-dark);
    cursor: pointer;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tbk-form__error {
    margin-top: 22px;
    padding: 12px 14px;
    border-left: 4px solid var(--tbk-danger);
    border-radius: 8px;
    background: #fff2f2;
    color: #792626;
    font-weight: 700;
}

.tbk-disclaimer {
    margin: 24px 0 0;
    color: var(--tbk-muted);
    font-size: 13px;
}

.tbk-results {
    margin-top: 28px;
    animation: tbkFade 240ms ease;
}

.tbk-results__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.tbk-results__hero h2 {
    margin-bottom: 10px;
    font-size: clamp(27px, 4vw, 39px);
}

.tbk-results__hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--tbk-muted);
}

.tbk-result-badge {
    flex: 0 0 auto;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--tbk-soft-teal);
    color: var(--tbk-teal-dark);
    font-size: 13px;
    font-weight: 850;
}

.tbk-result-badge.is-high {
    background: #fff0f0;
    color: var(--tbk-danger);
}

.tbk-result-badge.is-review {
    background: #fff6df;
    color: var(--tbk-warning);
}

.tbk-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.tbk-result-card {
    padding: 18px;
    border: 1px solid var(--tbk-line);
    border-radius: 13px;
    background: var(--tbk-soft);
}

.tbk-result-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--tbk-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tbk-result-card strong {
    color: var(--tbk-navy);
    font-size: 17px;
}

.tbk-alert-list:empty {
    display: none;
}

.tbk-alert {
    margin: 12px 0;
    padding: 14px 16px;
    border-left: 4px solid #5c7896;
    border-radius: 9px;
    background: #eef4fa;
    color: #23405f;
}

.tbk-alert strong {
    display: block;
    margin-bottom: 2px;
}

.tbk-alert--danger {
    border-left-color: var(--tbk-danger);
    background: #fff0f0;
    color: #792626;
}

.tbk-alert--warning {
    border-left-color: #d28b0a;
    background: #fff7e6;
    color: #714b08;
}

.tbk-alert--info {
    border-left-color: var(--tbk-teal);
    background: var(--tbk-soft-teal);
    color: #07564e;
}

.tbk-section-card {
    margin-top: 22px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--tbk-line);
    border-radius: 15px;
    background: #fff;
}

.tbk-section-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.tbk-section-card__head h3 {
    margin-bottom: 0;
    font-size: 23px;
}

.tbk-plan-preview {
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(11, 126, 114, 0.07), transparent 35%),
        #fff;
}

.tbk-template {
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #cfd9e4;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(6, 38, 83, 0.08);
}

.tbk-template__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    background: var(--tbk-navy);
    color: #fff;
}

.tbk-template__head small {
    display: block;
    margin-bottom: 3px;
    color: #8ce2d8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tbk-template__head strong {
    display: block;
    color: #fff;
    font-size: 17px;
}

.tbk-template__head > span {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.tbk-template__rows {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tbk-template;
}

.tbk-template__rows li {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(180px, 0.75fr) minmax(0, 1.25fr);
    gap: 10px;
    align-items: center;
    min-height: 68px;
    margin: 0;
    padding: 13px 20px;
    border-bottom: 1px solid var(--tbk-line);
    counter-increment: tbk-template;
}

.tbk-template__rows li::before {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--tbk-soft-teal);
    color: var(--tbk-teal-dark);
    content: counter(tbk-template);
    font-size: 12px;
    font-weight: 850;
}

.tbk-template__rows li > strong {
    color: var(--tbk-navy);
    font-size: 13px;
}

.tbk-template__rows li > span {
    color: var(--tbk-muted);
    font-size: 12px;
}

.tbk-template__rows li.is-locked {
    background:
        repeating-linear-gradient(
            -45deg,
            #f7f9fc,
            #f7f9fc 8px,
            #f1f5f9 8px,
            #f1f5f9 16px
        );
}

.tbk-template__rows li.is-locked::after {
    position: absolute;
    right: 18px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: #fff2d6;
    color: #7d5709;
    content: "🔒";
    font-size: 12px;
}

.tbk-template__rows li.is-locked > strong,
.tbk-template__rows li.is-locked > span {
    padding-right: 34px;
}

.tbk-template__lock {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 20px;
    border-top: 1px solid #e3c884;
    background: #fff8e8;
}

.tbk-template__lock strong {
    color: #6d4b07;
    font-size: 13px;
}

.tbk-template__lock span {
    color: #805f1c;
    font-size: 12px;
}

.tbk-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    color: var(--tbk-muted);
    font-size: 12px;
}

.tbk-calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tbk-calendar-legend i {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.tbk-calendar-legend i.is-primary {
    background: #e8eef5;
}

.tbk-calendar-legend i.is-contact {
    background: #b9e7df;
}

.tbk-calendar {
    overflow-x: auto;
    padding-bottom: 4px;
}

.tbk-calendar__inner {
    min-width: 670px;
}

.tbk-calendar__days,
.tbk-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.tbk-calendar__days {
    margin-bottom: 6px;
}

.tbk-calendar__dayname {
    padding: 5px;
    color: var(--tbk-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.tbk-calendar__cell {
    min-height: 92px;
    padding: 9px;
    border: 1px solid var(--tbk-line);
    border-radius: 9px;
    background: #eef3f8;
}

.tbk-calendar__cell.is-contact {
    border-color: #83c9be;
    background: #dff5f1;
}

.tbk-calendar__cell.is-transition {
    box-shadow: inset 0 0 0 2px var(--tbk-amber);
}

.tbk-calendar__date {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: var(--tbk-muted);
    font-size: 11px;
    font-weight: 750;
}

.tbk-calendar__label {
    display: block;
    margin-top: 14px;
    color: var(--tbk-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.tbk-calendar__cell.is-contact .tbk-calendar__label {
    color: var(--tbk-teal-dark);
}

.tbk-calendar-note {
    margin: 0;
    padding: 17px;
    border-radius: 10px;
    background: var(--tbk-soft);
    color: var(--tbk-muted);
}

.tbk-results__columns {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 22px;
}

.tbk-result-list {
    margin: 0;
    padding-left: 21px;
}

.tbk-result-list li {
    margin-bottom: 11px;
    padding-left: 4px;
}

.tbk-result-list li:last-child {
    margin-bottom: 0;
}

.tbk-email-plan {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: start;
    margin-top: 22px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid #b9ddd7;
    border-radius: 16px;
    background:
        radial-gradient(circle at 8% 10%, rgba(11, 126, 114, 0.08), transparent 38%),
        #f4fbfa;
}

.tbk-email-plan__copy h3 {
    margin-bottom: 10px;
    font-size: 25px;
}

.tbk-email-plan__copy p {
    margin-bottom: 0;
    color: var(--tbk-muted);
}

.tbk-email-form {
    padding: 20px;
    border: 1px solid var(--tbk-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(6, 38, 83, 0.07);
}

.tbk-email-form__fields {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 12px;
    margin-bottom: 14px;
}

.tbk-email-form__fields label > span {
    display: block;
    margin-bottom: 6px;
    color: var(--tbk-navy);
    font-size: 13px;
    font-weight: 800;
}

.tbk-email-form__fields label small {
    color: var(--tbk-muted);
    font-weight: 500;
}

.tbk-email-form input[type="text"],
.tbk-email-form input[type="email"],
.tbk-email-form input[type="tel"] {
    width: 100%;
    min-height: 47px;
    padding: 10px 12px;
    border: 1px solid #b8c5d3;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: var(--tbk-ink);
}

.tbk-email-form input[type="text"]:focus,
.tbk-email-form input[type="email"]:focus,
.tbk-email-form input[type="tel"]:focus {
    border-color: var(--tbk-teal);
    outline: 3px solid rgba(11, 126, 114, 0.18);
    outline-offset: 1px;
}

.tbk-email-form.is-invalid input:invalid {
    border-color: var(--tbk-danger);
    box-shadow: 0 0 0 3px rgba(169, 53, 53, 0.08);
}

.tbk-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 11px 0 0;
    color: var(--tbk-muted);
    cursor: pointer;
    font-size: 12px;
    line-height: 1.45;
}

.tbk-consent input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--tbk-teal);
}

.tbk-email-form.is-invalid .tbk-consent input:invalid {
    outline: 2px solid rgba(169, 53, 53, 0.45);
    outline-offset: 2px;
}

.tbk-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.tbk-email-form__submit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 17px;
}

.tbk-email-form__submit .tbk-button[disabled] {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.tbk-email-status {
    color: var(--tbk-muted);
    font-size: 13px;
    font-weight: 700;
}

.tbk-email-status.is-success {
    color: var(--tbk-teal-dark);
}

.tbk-email-status.is-error {
    color: var(--tbk-danger);
}

.tbk-next-step {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 25px;
    align-items: center;
    margin-top: 22px;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: var(--tbk-navy);
    color: #fff;
}

.tbk-next-step h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 25px;
}

.tbk-next-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.tbk-next-step .tbk-kicker {
    color: #8ce2d8;
}

.tbk-next-step__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tbk-button--light {
    background: #fff;
    color: var(--tbk-navy);
}

.tbk-button--light:hover {
    background: #f2f6fa;
    color: var(--tbk-navy);
}

.tbk-button--accent {
    background: var(--tbk-amber);
    color: #3b2a05;
}

.tbk-button--accent:hover {
    background: #ffca5c;
    color: #3b2a05;
}

.tbk-results__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.tbk-noscript {
    margin-top: 16px;
    padding: 15px;
    border-left: 4px solid var(--tbk-warning);
    background: #fff6df;
}

@media (max-width: 800px) {
    .tbk-hero,
    .tbk-next-step,
    .tbk-results__columns,
    .tbk-email-plan {
        grid-template-columns: 1fr;
    }

    .tbk-grid {
        grid-template-columns: 1fr;
    }

    .tbk-field--full {
        grid-column: auto;
    }

    .tbk-age-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tbk-result-grid {
        grid-template-columns: 1fr;
    }

    .tbk-progress__steps li small {
        display: none;
    }

    .tbk-section-card__head,
    .tbk-results__hero {
        flex-direction: column;
    }

    .tbk-calendar-legend {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .tbk-app {
        margin: 18px auto;
        font-size: 15px;
    }

    .tbk-hero,
    .tbk-form,
    .tbk-results {
        padding: 22px 17px;
        border-radius: 15px;
    }

    .tbk-progress {
        padding: 0 4px;
    }

    .tbk-progress__track {
        right: 10%;
        left: 10%;
    }

    .tbk-age-list,
    .tbk-options--two {
        grid-template-columns: 1fr;
    }

    .tbk-options--days {
        grid-template-columns: repeat(4, 1fr);
    }

    .tbk-actions {
        flex-wrap: wrap;
    }

    .tbk-actions__spacer {
        display: none;
    }

    .tbk-actions .tbk-button {
        flex: 1 1 135px;
    }

    .tbk-next-step__actions .tbk-button {
        width: 100%;
    }

    .tbk-email-form__fields {
        grid-template-columns: 1fr;
    }

    .tbk-email-form__submit {
        align-items: stretch;
        flex-direction: column;
    }

    .tbk-email-form__submit .tbk-button {
        width: 100%;
    }

    .tbk-template__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tbk-template__rows li {
        grid-template-columns: 28px 1fr;
        padding: 13px;
    }

    .tbk-template__rows li > span {
        grid-column: 2;
    }
}

@media print {
    .tbk-app {
        max-width: none;
        margin: 0;
        color: #000;
    }

    .tbk-hero,
    .tbk-progress,
    .tbk-form,
    .tbk-next-step,
    .tbk-email-plan,
    .tbk-results__actions,
    .tbk-results > .tbk-disclaimer {
        display: none !important;
    }

    .tbk-results {
        display: block !important;
        margin: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .tbk-section-card,
    .tbk-result-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .tbk-calendar {
        overflow: visible;
    }

    .tbk-calendar__inner {
        min-width: 0;
    }

    .tbk-calendar__cell {
        min-height: 64px;
    }
}
