.reha-bgp,
.reha-bgp * {
    box-sizing: border-box;
}

.reha-bgp {
    --reha-navy: #08285c;
    --reha-navy-dark: #041d49;
    --reha-red: #ed1c24;
    --reha-light-blue: #eef6ff;
    --reha-text: #18325c;
    --reha-muted: #6d7d98;
    --reha-border: #dfe7f1;
    --reha-white: #ffffff;
    --reha-container: 1400px;
    --reha-side-padding: 24px;
    --reha-radius: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    color: var(--reha-text);
    background: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.reha-bgp a {
    color: inherit;
    text-decoration: none;
}

.reha-bgp img,
.reha-bgp svg {
    display: block;
    max-width: 100%;
}

.reha-bgp button,
.reha-bgp input,
.reha-bgp textarea,
.reha-bgp select {
    font: inherit;
}

.reha-bgp button,
.reha-bgp a {
    -webkit-tap-highlight-color: transparent;
}

.reha-bgp__container {
    width: 100%;
    max-width: var(--reha-container);
    margin: 0 auto;
    padding-left: var(--reha-side-padding);
    padding-right: var(--reha-side-padding);
}

.reha-bgp__topbar {
    color: #fff;
    background: var(--reha-navy-dark);
}

.reha-bgp__topbar-inner {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(250px, 1.7fr) minmax(190px, 1fr) minmax(210px, 1fr) auto auto;
    align-items: center;
    gap: 18px;
}

.reha-bgp__top-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.reha-bgp__top-item i {
    flex: 0 0 auto;
    font-size: 18px;
}

.reha-bgp__top-item span {
    min-width: 0;
}

.reha-bgp__top-phone strong,
.reha-bgp__top-phone small {
    display: block;
}

.reha-bgp__top-phone strong {
    font-size: 14px;
    line-height: 1.25;
}

.reha-bgp__top-phone small {
    opacity: .85;
    font-size: 11px;
    font-weight: 400;
}

.reha-bgp__top-register {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    background: var(--reha-red);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.reha-bgp__top-register:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(237, 28, 36, .25);
}

.reha-bgp__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
    font-size: 12px;
}

.reha-bgp__socials a,
.reha-bgp__footer-socials a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.09);
    transition: background .2s ease, transform .2s ease;
}

.reha-bgp__socials a:hover,
.reha-bgp__footer-socials a:hover {
    color: #fff;
    background: var(--reha-red);
    transform: translateY(-2px);
}

.reha-bgp__nav-wrap {
    position: relative;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #e5ebf2;
    box-shadow: 0 6px 18px rgba(8, 40, 92, .04);
}

.reha-bgp__nav-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.reha-bgp__logo {
    flex: 0 0 180px;
    width: 180px;
}

.reha-bgp__logo img {
    width: 100%;
    height: 74px;
    object-fit: contain;
    object-position: left center;
}

.reha-bgp__desktop-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 30px);
}

.reha-bgp__desktop-nav a {
    position: relative;
    color: var(--reha-navy-dark);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease;
}

.reha-bgp__desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px;
    height: 3px;
    border-radius: 999px;
    background: var(--reha-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.reha-bgp__desktop-nav a:hover,
.reha-bgp__desktop-nav a.is-active {
    color: var(--reha-red);
}

.reha-bgp__desktop-nav a:hover::after,
.reha-bgp__desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.reha-bgp__nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reha-bgp__icon-button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--reha-border);
    border-radius: 50%;
    color: var(--reha-navy);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.reha-bgp__icon-button:hover {
    color: var(--reha-red);
    border-color: var(--reha-red);
    transform: translateY(-1px);
}

.reha-bgp__btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.reha-bgp__btn:hover {
    transform: translateY(-2px);
}

.reha-bgp__btn--red {
    color: #fff;
    background: var(--reha-red);
    box-shadow: 0 10px 22px rgba(237, 28, 36, .17);
}

.reha-bgp__btn--red:hover {
    color: #fff;
    box-shadow: 0 14px 26px rgba(237, 28, 36, .26);
}

.reha-bgp__btn--navy {
    color: #fff;
    background: var(--reha-navy);
}

.reha-bgp__btn--navy:hover {
    color: #fff;
    background: var(--reha-navy-dark);
}

.reha-bgp__btn--outline {
    color: var(--reha-navy);
    background: #fff;
    border-color: #aab9ce;
}

.reha-bgp__btn--outline:hover {
    color: var(--reha-red);
    border-color: var(--reha-red);
}

.reha-bgp__btn--light-outline {
    color: #fff;
    background: rgba(255,255,255,.03);
    border-color: rgba(255,255,255,.68);
}

.reha-bgp__btn--light-outline:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.reha-bgp__menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--reha-border);
    border-radius: 10px;
    color: var(--reha-navy);
    background: #fff;
    cursor: pointer;
}

.reha-bgp__menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.reha-bgp__menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.reha-bgp__menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.reha-bgp__menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.reha-bgp__mobile-menu {
    border-top: 1px solid var(--reha-border);
    background: #fff;
}

.reha-bgp__mobile-menu .reha-bgp__container {
    display: grid;
    padding-top: 14px;
    padding-bottom: 20px;
}

.reha-bgp__mobile-menu a:not(.reha-bgp__btn) {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid #edf1f6;
    color: var(--reha-navy-dark);
    font-size: 14px;
    font-weight: 500;
}

.reha-bgp__mobile-menu a.is-active {
    color: var(--reha-red);
}

.reha-bgp__mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 16px;
}

.reha-bgp__hero-shell {
    position: relative;
    padding: 32px 0 0;
    background:
        radial-gradient(circle at 0 8%, rgba(25, 104, 205, .12) 0 92px, transparent 93px),
        radial-gradient(circle at 100% 88%, rgba(237, 28, 36, .07) 0 120px, transparent 121px),
        #fff;
}

.reha-bgp__hero {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 42px;
    padding: 52px 58px 48px;
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(100deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 48%, rgba(239,247,255,.82) 100%);
}

.reha-bgp__hero::before {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -180px;
    width: 540px;
    height: 310px;
    border-radius: 50%;
    background: var(--reha-navy);
    transform: rotate(-9deg);
    opacity: .96;
}

.reha-bgp__hero::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 120px;
    width: 48px;
    height: 48px;
    border: 4px solid #5ba3ff;
    border-radius: 50%;
    opacity: .8;
}

.reha-bgp__hero-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.reha-bgp__hero-decor--one {
    left: 28px;
    bottom: 30px;
    width: 74px;
    height: 74px;
    background-image: radial-gradient(circle, var(--reha-red) 2px, transparent 2.5px);
    background-size: 16px 16px;
    opacity: .78;
}

.reha-bgp__hero-decor--two {
    right: 22px;
    top: 28px;
    width: 76px;
    height: 76px;
    background-image: radial-gradient(circle, #348cf0 2px, transparent 2.5px);
    background-size: 16px 16px;
    opacity: .7;
}

.reha-bgp__hero-copy,
.reha-bgp__hero-media {
    position: relative;
    z-index: 2;
}

.reha-bgp__sun-mark {
    position: absolute;
    top: -2px;
    left: -42px;
    width: 34px;
    height: 34px;
    border: 4px solid #f7ae00;
    border-radius: 50%;
}

.reha-bgp__sun-mark::before,
.reha-bgp__sun-mark::after,
.reha-bgp__sun-mark span::before,
.reha-bgp__sun-mark span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 14px;
    border-radius: 99px;
    background: #f7ae00;
    transform-origin: center 26px;
}

.reha-bgp__sun-mark::before { transform: translate(-50%,-50%) rotate(0deg) translateY(-25px); }
.reha-bgp__sun-mark::after { transform: translate(-50%,-50%) rotate(90deg) translateY(-25px); }
.reha-bgp__sun-mark span::before { transform: translate(-50%,-50%) rotate(45deg) translateY(-25px); }
.reha-bgp__sun-mark span::after { transform: translate(-50%,-50%) rotate(-45deg) translateY(-25px); }

.reha-bgp__hero-title {
    margin: 0 0 20px;
    color: var(--reha-navy);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(44px, 4vw, 66px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -2.4px;
}

.reha-bgp__hero-title span {
    display: block;
}

.reha-bgp__hero-title .is-red {
    color: var(--reha-red);
}

.reha-bgp__hero-subtitle {
    max-width: 670px;
    margin-bottom: 12px;
    color: var(--reha-navy-dark);
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 600;
    line-height: 1.45;
}

.reha-bgp__hero-description {
    max-width: 655px;
    color: #5f708d;
    font-size: 14px;
    line-height: 1.75;
}

.reha-bgp__hero-description p {
    margin: 0;
}

.reha-bgp__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.reha-bgp__badge {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid #d4deeb;
    border-radius: 9px;
    color: var(--reha-navy);
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(4,29,73,.04);
}

.reha-bgp__badge-icon {
    color: var(--reha-navy);
}

.reha-bgp__hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 24px;
}

.reha-bgp__hero-media {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.reha-bgp__hero-media::before {
    content: "";
    position: absolute;
    left: -28px;
    right: -30px;
    top: 56px;
    bottom: 42px;
    border-radius: 48% 52% 45% 55% / 42% 40% 60% 58%;
    background: linear-gradient(135deg, #dcecff 0%, #eef7ff 62%, #cfe4ff 100%);
    transform: rotate(-3deg);
}

.reha-bgp__hero-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 34px 34px 70px 38px;
    box-shadow: 0 22px 50px rgba(4,29,73,.14);
}

.reha-bgp__bubble {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 46% 54% 52% 48% / 54% 44% 56% 46%;
    box-shadow: 0 12px 26px rgba(4,29,73,.16);
}

.reha-bgp__bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 22px;
    height: 22px;
    background: inherit;
    transform: rotate(45deg);
}

.reha-bgp__bubble i {
    position: relative;
    z-index: 2;
}

.reha-bgp__bubble--brain {
    left: 2%;
    top: 4%;
    width: 82px;
    height: 68px;
    background: var(--reha-navy);
    font-size: 30px;
}

.reha-bgp__bubble--idea {
    right: 3%;
    top: 7%;
    width: 88px;
    height: 72px;
    background: var(--reha-red);
    font-size: 32px;
}

.reha-bgp__bubble--puzzle {
    left: -2%;
    top: 35%;
    width: 68px;
    height: 58px;
    color: var(--reha-navy);
    background: #fff;
    border: 2px solid #3c8ee7;
    font-size: 25px;
}

.reha-bgp__bubble--puzzle::after {
    border-right: 2px solid #3c8ee7;
    border-bottom: 2px solid #3c8ee7;
}

.reha-bgp__benefits {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: -18px;
    border: 1px solid #e1e8f1;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(4,29,73,.09);
}

.reha-bgp__benefit {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 58px minmax(0,1fr);
    align-items: center;
    gap: 13px;
    padding: 22px 20px;
}

.reha-bgp__benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24%;
    bottom: 24%;
    right: 0;
    width: 1px;
    background: #dce4ef;
}

.reha-bgp__benefit-icon,
.reha-bgp__program-icon,
.reha-bgp__support-icon,
.reha-bgp__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--reha-navy);
    background: #fff;
    border: 1px solid #bdd0e8;
    border-radius: 50%;
}

.reha-bgp__benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
}

.reha-bgp__benefit-title {
    margin: 0 0 4px;
    color: var(--reha-red);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.reha-bgp__benefit p {
    margin: 0;
    color: var(--reha-text);
    font-size: 11px;
    line-height: 1.55;
}

.reha-bgp__section {
    padding: 58px 0 0;
}

.reha-bgp__heading-row {
    display: grid;
    grid-template-columns: minmax(24px,1fr) auto auto auto minmax(24px,1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.reha-bgp__heading-line {
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(237,28,36,.35) 0 3px, transparent 3px 6px);
}

.reha-bgp__heading-dots {
    color: var(--reha-red);
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 1;
}

.reha-bgp__section-title {
    margin: 0;
    color: var(--reha-navy);
    font-size: clamp(25px, 2.1vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.reha-bgp__program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reha-bgp__program-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px minmax(0,1fr);
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid #e3e9f1;
    border-radius: var(--reha-radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(4,29,73,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.reha-bgp__program-card:hover {
    transform: translateY(-5px);
    border-color: #c8d7e9;
    box-shadow: 0 18px 36px rgba(4,29,73,.11);
}

.reha-bgp__program-icon {
    width: 68px;
    height: 68px;
    font-size: 28px;
}

.reha-bgp__program-content {
    min-width: 0;
}

.reha-bgp__card-title {
    margin: 0 0 6px;
    color: var(--reha-navy);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.reha-bgp__program-card p {
    margin: 0 0 10px;
    color: #60718c;
    font-size: 13px;
    line-height: 1.55;
}

.reha-bgp__text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--reha-red);
    font-size: 13px;
    font-weight: 600;
}

.reha-bgp__text-link:hover {
    color: var(--reha-navy);
}

.reha-bgp__support-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.reha-bgp__support-item {
    position: relative;
    min-width: 0;
    padding: 6px 18px 0;
    text-align: center;
}

.reha-bgp__support-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 8px;
    border-right: 2px dotted #9cbde3;
}

.reha-bgp__support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    font-size: 26px;
}

.reha-bgp__support-title {
    margin: 0 0 7px;
    color: var(--reha-red);
    font-size: 14px;
    font-weight: 700;
}

.reha-bgp__support-item p {
    margin: 0;
    color: #62718b;
    font-size: 12px;
    line-height: 1.6;
}

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

.reha-bgp__timeline-card,
.reha-bgp__info-card {
    min-width: 0;
    border-radius: var(--reha-radius);
}

.reha-bgp__timeline-card {
    padding: 24px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(4,29,73,.06);
}

.reha-bgp__step {
    display: grid;
    grid-template-columns: 112px minmax(0,1fr);
    align-items: center;
    gap: 18px;
    min-height: 82px;
}

.reha-bgp__step + .reha-bgp__step {
    margin-top: 8px;
}

.reha-bgp__step-rail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reha-bgp__step-rail::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 62px;
    height: 38px;
    border-left: 2px dotted #c2cee0;
}

.reha-bgp__step:last-child .reha-bgp__step-rail::after {
    display: none;
}

.reha-bgp__step-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    font-size: 22px;
}

.reha-bgp__step-number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #fff;
    background: var(--reha-red);
    font-size: 14px;
    font-weight: 700;
}

.reha-bgp__step-title {
    margin: 0 0 4px;
    color: var(--reha-navy);
    font-size: 16px;
    font-weight: 600;
}

.reha-bgp__step p {
    margin: 0;
    color: #60718c;
    font-size: 12px;
    line-height: 1.55;
}

.reha-bgp__info-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: linear-gradient(135deg, #eef6ff 0%, #dfeeff 100%);
}

.reha-bgp__info-watermark {
    position: absolute;
    right: -12px;
    bottom: -18px;
    color: rgba(8,40,92,.09);
    font-size: 170px;
}

.reha-bgp__info-copy {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: #47617f;
    font-size: 14px;
    line-height: 1.75;
}

.reha-bgp__info-copy p {
    margin: 0;
}

.reha-bgp__info-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--reha-navy);
    font-size: 17px;
    font-weight: 700;
}

.reha-bgp__info-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reha-bgp__info-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #47617f;
    font-size: 13px;
}

.reha-bgp__info-card li i {
    margin-top: 5px;
    color: var(--reha-red);
}

.reha-bgp__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.reha-bgp__testimonial-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 82px minmax(0,1fr);
    align-items: start;
    gap: 18px;
    padding: 22px;
    border: 1px solid #e1e8f1;
    border-radius: var(--reha-radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(4,29,73,.06);
}

.reha-bgp__testimonial-card img {
    width: 82px;
    height: 82px;
    border: 4px solid #eef3f8;
    border-radius: 50%;
    object-fit: cover;
}

.reha-bgp__testimonial-content {
    min-width: 0;
}

.reha-bgp__testimonial-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.reha-bgp__testimonial-head h3 {
    margin: 0;
    color: var(--reha-navy);
    font-size: 15px;
    font-weight: 700;
}

.reha-bgp__stars {
    display: inline-flex;
    gap: 3px;
    color: var(--reha-red);
    font-size: 12px;
}

.reha-bgp__testimonial-card p {
    margin: 0;
    color: #60718c;
    font-size: 12px;
    line-height: 1.65;
}

.reha-bgp__faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
}

.reha-bgp__faq-item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e1e8f1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(4,29,73,.04);
}

.reha-bgp__faq-question {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 18px;
    border: 0;
    color: var(--reha-navy);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.reha-bgp__faq-question-text {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.reha-bgp__faq-question-text i {
    flex: 0 0 auto;
    font-size: 18px;
}

.reha-bgp__faq-plus {
    position: relative;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border: 1px solid #b9c8da;
    border-radius: 50%;
}

.reha-bgp__faq-plus::before,
.reha-bgp__faq-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    border-radius: 99px;
    background: var(--reha-navy);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.reha-bgp__faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.reha-bgp__faq-question[aria-expanded="true"] .reha-bgp__faq-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.reha-bgp__faq-answer {
    padding: 0 18px 18px 46px;
    color: #60718c;
    font-size: 13px;
    line-height: 1.7;
}

.reha-bgp__faq-answer p {
    margin: 0;
}

.reha-bgp__cta-section {
    padding: 44px 0 34px;
}

.reha-bgp__cta {
    position: relative;
    min-height: 130px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    padding: 30px 42px;
    border-radius: 18px;
    color: #fff;
    background: var(--reha-navy-dark);
}

.reha-bgp__cta::before,
.reha-bgp__cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.reha-bgp__cta::before {
    left: -36px;
    bottom: -48px;
    width: 108px;
    height: 108px;
    background: var(--reha-red);
}

.reha-bgp__cta::after {
    right: 28px;
    top: 16px;
    width: 32px;
    height: 32px;
    border: 4px solid #fff;
    opacity: .9;
}

.reha-bgp__cta-decor {
    position: absolute;
    left: 47%;
    top: 25px;
    width: 85px;
    height: 72px;
    background-image: radial-gradient(circle, #55a1ff 2px, transparent 2.5px);
    background-size: 14px 14px;
    opacity: .75;
}

.reha-bgp__cta h2 {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 2.3vw, 35px);
    font-weight: 700;
    line-height: 1.3;
}

.reha-bgp__cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-right: 52px;
}

.reha-bgp__footer {
    padding: 48px 0 18px;
    color: rgba(255,255,255,.86);
    background: var(--reha-navy-dark);
}

.reha-bgp__footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .72fr 1fr 1.25fr 1fr;
    gap: 34px;
}

.reha-bgp__footer h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.reha-bgp__footer-brand img {
    width: 170px;
    height: 72px;
    margin-bottom: 12px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.reha-bgp__footer-brand p {
    max-width: 310px;
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.75;
}

.reha-bgp__footer-socials {
    display: flex;
    gap: 8px;
}

.reha-bgp__footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reha-bgp__footer li,
.reha-bgp__footer li a {
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.55;
}

.reha-bgp__footer li a:hover {
    color: #fff;
}

.reha-bgp__footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 9px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.55;
}

.reha-bgp__footer-contact i {
    width: 15px;
    margin-top: 3px;
    flex: 0 0 15px;
    color: #fff;
}

.reha-bgp__map-card {
    position: relative;
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    color: var(--reha-red);
    background:
        linear-gradient(35deg, transparent 43%, rgba(8,40,92,.12) 44% 46%, transparent 47%),
        linear-gradient(-22deg, transparent 47%, rgba(8,40,92,.1) 48% 50%, transparent 51%),
        repeating-linear-gradient(0deg, #f5f8fc 0 22px, #eef3f8 23px 25px);
    font-size: 12px;
    font-weight: 700;
}

.reha-bgp__map-pin {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    color: #fff;
    background: var(--reha-red);
}

.reha-bgp__footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.63);
    font-size: 10px;
}

.reha-bgp__footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.reha-bgp__footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 1280px) {
    .reha-bgp__topbar-inner {
        grid-template-columns: minmax(220px,1.45fr) minmax(170px,.9fr) minmax(195px,1fr) auto;
    }

    .reha-bgp__socials {
        display: none;
    }

    .reha-bgp__nav-inner {
        gap: 20px;
    }

    .reha-bgp__logo {
        flex-basis: 155px;
        width: 155px;
    }

    .reha-bgp__desktop-nav {
        gap: 16px;
    }

    .reha-bgp__desktop-nav a {
        font-size: 12px;
    }

    .reha-bgp__nav-actions .reha-bgp__btn {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reha-bgp__hero {
        grid-template-columns: minmax(0,1fr) minmax(390px,.95fr);
        gap: 28px;
    }

    .reha-bgp__benefit {
        grid-template-columns: 48px minmax(0,1fr);
        gap: 10px;
        padding: 20px 14px;
    }

    .reha-bgp__benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .reha-bgp__footer-grid {
        grid-template-columns: 1.25fr .8fr 1fr 1.2fr;
    }

    .reha-bgp__footer-grid > :last-child {
        grid-column: span 2;
    }
}

@media (max-width: 1100px) {
    .reha-bgp__topbar-inner {
        grid-template-columns: 1fr 1fr auto;
    }

    .reha-bgp__top-address {
        display: none;
    }

    .reha-bgp__desktop-nav,
    .reha-bgp__nav-actions .reha-bgp__login,
    .reha-bgp__nav-actions .reha-bgp__info,
    .reha-bgp__nav-actions .reha-bgp__icon-button {
        display: none;
    }

    .reha-bgp__menu-toggle {
        display: inline-flex;
    }

    .reha-bgp__nav-inner {
        min-height: 84px;
        justify-content: space-between;
    }

    .reha-bgp__hero {
        min-height: 0;
        grid-template-columns: minmax(0,1fr) minmax(350px,.9fr);
    }

    .reha-bgp__hero-title {
        font-size: clamp(42px, 5vw, 56px);
    }

    .reha-bgp__benefits {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .reha-bgp__benefit:nth-child(3)::after,
    .reha-bgp__benefit:last-child::after {
        display: none;
    }

    .reha-bgp__benefit:nth-child(n+4) {
        border-top: 1px solid #e5eaf1;
    }

    .reha-bgp__program-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .reha-bgp__support-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
        row-gap: 28px;
    }

    .reha-bgp__support-item:nth-child(3)::after,
    .reha-bgp__support-item:nth-child(6)::after {
        display: none;
    }

    .reha-bgp__testimonial-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .reha-bgp__testimonial-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 820px) {
    .reha-bgp__topbar-inner {
        min-height: 52px;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .reha-bgp__topbar-inner > .reha-bgp__top-item:first-of-type,
    .reha-bgp__top-phone small {
        display: none;
    }

    .reha-bgp__top-register {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .reha-bgp__hero-shell {
        padding-top: 20px;
    }

    .reha-bgp__hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reha-bgp__hero-copy {
        text-align: center;
    }

    .reha-bgp__sun-mark {
        display: none;
    }

    .reha-bgp__hero-subtitle,
    .reha-bgp__hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .reha-bgp__badges,
    .reha-bgp__hero-buttons {
        justify-content: center;
    }

    .reha-bgp__hero-media {
        min-height: 390px;
    }

    .reha-bgp__hero-media img {
        max-width: 560px;
        max-height: 390px;
    }

    .reha-bgp__benefits {
        margin-top: 18px;
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .reha-bgp__benefit:nth-child(2)::after,
    .reha-bgp__benefit:nth-child(4)::after {
        display: none;
    }

    .reha-bgp__benefit:nth-child(3)::after {
        display: block;
    }

    .reha-bgp__benefit:nth-child(n+3) {
        border-top: 1px solid #e5eaf1;
    }

    .reha-bgp__process-grid {
        grid-template-columns: 1fr;
    }

    .reha-bgp__faq-grid {
        grid-template-columns: 1fr;
    }

    .reha-bgp__cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reha-bgp__cta h2 {
        margin: 0 auto;
    }

    .reha-bgp__cta-actions {
        justify-content: center;
        padding-right: 0;
    }

    .reha-bgp__footer-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .reha-bgp__footer-grid > :last-child {
        grid-column: auto;
    }

    .reha-bgp__footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .reha-bgp {
        font-size: 14px;
    }

    .reha-bgp__topbar-inner {
        grid-template-columns: minmax(0,1fr) auto;
    }

    .reha-bgp__topbar-inner > a.reha-bgp__top-item {
        overflow: hidden;
    }

    .reha-bgp__topbar-inner > a.reha-bgp__top-item span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .reha-bgp__top-phone {
        display: none;
    }

    .reha-bgp__nav-inner {
        min-height: 72px;
    }

    .reha-bgp__logo {
        flex-basis: 142px;
        width: 142px;
    }

    .reha-bgp__logo img {
        height: 58px;
    }

    .reha-bgp__hero {
        border-radius: 20px;
    }

    .reha-bgp__hero-title {
        font-size: clamp(35px, 10.7vw, 47px);
        letter-spacing: -1.3px;
        line-height: .98;
    }

    .reha-bgp__hero-subtitle {
        font-size: 15px;
    }

    .reha-bgp__hero-description {
        font-size: 13px;
    }

    .reha-bgp__badge {
        font-size: 11px;
    }

    .reha-bgp__hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .reha-bgp__hero-buttons .reha-bgp__btn {
        width: 100%;
    }

    .reha-bgp__hero-media {
        min-height: 270px;
    }

    .reha-bgp__hero-media::before {
        top: 28px;
        bottom: 18px;
    }

    .reha-bgp__hero-media img {
        max-height: 275px;
        border-radius: 22px 22px 44px 24px;
    }

    .reha-bgp__bubble--brain {
        width: 58px;
        height: 50px;
        font-size: 22px;
    }

    .reha-bgp__bubble--idea {
        width: 62px;
        height: 52px;
        font-size: 24px;
    }

    .reha-bgp__bubble--puzzle {
        width: 54px;
        height: 46px;
        font-size: 20px;
    }

    .reha-bgp__benefits {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .reha-bgp__benefit,
    .reha-bgp__benefit:nth-child(n+3) {
        border-top: 1px solid #e5eaf1;
    }

    .reha-bgp__benefit:first-child {
        border-top: 0;
    }

    .reha-bgp__benefit::after {
        display: none !important;
    }

    .reha-bgp__benefit {
        padding: 17px;
    }

    .reha-bgp__section {
        padding-top: 44px;
    }

    .reha-bgp__heading-row {
        grid-template-columns: minmax(10px,1fr) auto minmax(10px,1fr);
        gap: 8px;
        margin-bottom: 22px;
    }

    .reha-bgp__heading-dots {
        display: none;
    }

    .reha-bgp__section-title {
        font-size: 24px;
    }

    .reha-bgp__program-grid,
    .reha-bgp__support-grid,
    .reha-bgp__testimonial-grid {
        grid-template-columns: 1fr;
    }

    .reha-bgp__program-card {
        grid-template-columns: 58px minmax(0,1fr);
        gap: 14px;
        padding: 19px;
    }

    .reha-bgp__program-icon {
        width: 56px;
        height: 56px;
        font-size: 23px;
    }

    .reha-bgp__support-grid {
        gap: 22px;
    }

    .reha-bgp__support-item {
        display: grid;
        grid-template-columns: 58px minmax(0,1fr);
        column-gap: 14px;
        align-items: center;
        padding: 0;
        text-align: left;
    }

    .reha-bgp__support-item::after {
        display: none !important;
    }

    .reha-bgp__support-icon {
        grid-row: span 2;
        width: 56px;
        height: 56px;
        margin: 0;
        font-size: 23px;
    }

    .reha-bgp__support-title {
        margin: 0;
    }

    .reha-bgp__support-item p {
        margin-top: 2px;
    }

    .reha-bgp__timeline-card,
    .reha-bgp__info-card {
        padding: 20px;
    }

    .reha-bgp__step {
        grid-template-columns: 82px minmax(0,1fr);
        gap: 13px;
    }

    .reha-bgp__step-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 19px;
    }

    .reha-bgp__step-number {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 12px;
    }

    .reha-bgp__step-rail::after {
        left: 24px;
        top: 54px;
    }

    .reha-bgp__testimonial-card,
    .reha-bgp__testimonial-card:last-child {
        grid-column: auto;
        grid-template-columns: 64px minmax(0,1fr);
        gap: 14px;
        padding: 18px;
    }

    .reha-bgp__testimonial-card img {
        width: 64px;
        height: 64px;
    }

    .reha-bgp__faq-question {
        min-height: 56px;
        padding: 13px 14px;
    }

    .reha-bgp__faq-question-text {
        font-size: 12px;
    }

    .reha-bgp__faq-answer {
        padding: 0 14px 16px 42px;
        font-size: 12px;
    }

    .reha-bgp__cta-section {
        padding-top: 34px;
    }

    .reha-bgp__cta {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .reha-bgp__cta h2 {
        font-size: 24px;
    }

    .reha-bgp__cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .reha-bgp__cta-actions .reha-bgp__btn {
        width: 100%;
    }

    .reha-bgp__footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reha-bgp__footer-brand,
    .reha-bgp__footer-grid > :last-child {
        grid-column: auto;
    }

    .reha-bgp__footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .reha-bgp__footer-bottom div {
        justify-content: flex-start;
        gap: 10px 16px;
    }
}


/* Content-only build: site header and footer are intentionally not rendered. */
.reha-bgp--content-only .reha-bgp__main {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================================
   v1.2.0 - Mobil iyileştirmeler ve kontrollü ikon ölçüleri
   ========================================================= */
.reha-bgp__badge-icon,
.reha-bgp__benefit-icon,
.reha-bgp__program-icon,
.reha-bgp__support-icon,
.reha-bgp__step-icon,
.reha-bgp__inline-icon,
.reha-bgp__bubble-icon,
.reha-bgp__check-icon,
.reha-bgp__info-watermark {
    flex: 0 0 auto;
    line-height: 1;
}

.reha-bgp__badge-icon > i,
.reha-bgp__benefit-icon > i,
.reha-bgp__program-icon > i,
.reha-bgp__support-icon > i,
.reha-bgp__step-icon > i,
.reha-bgp__inline-icon > i,
.reha-bgp__bubble-icon > i,
.reha-bgp__check-icon > i,
.reha-bgp__info-watermark > i,
.reha-bgp__badge-icon > svg,
.reha-bgp__benefit-icon > svg,
.reha-bgp__program-icon > svg,
.reha-bgp__support-icon > svg,
.reha-bgp__step-icon > svg,
.reha-bgp__inline-icon > svg,
.reha-bgp__bubble-icon > svg,
.reha-bgp__check-icon > svg,
.reha-bgp__info-watermark > svg {
    display: block !important;
    width: 1em !important;
    height: 1em !important;
    min-width: 1em !important;
    max-width: 1em !important;
    max-height: 1em !important;
    font-size: inherit !important;
    line-height: 1 !important;
    fill: currentColor;
}

.reha-bgp__badge-icon {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

.reha-bgp__inline-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.reha-bgp__bubble-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-size: inherit;
}

.reha-bgp__check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-top: 4px;
    color: var(--reha-red);
    font-size: 14px;
}

.reha-bgp__info-watermark {
    display: inline-flex;
    width: 1em;
    height: 1em;
}

.reha-bgp__hero-copy,
.reha-bgp__hero-media,
.reha-bgp__benefit > div,
.reha-bgp__program-content,
.reha-bgp__step > div:last-child,
.reha-bgp__cta h2 {
    min-width: 0;
}

.reha-bgp__hero-title,
.reha-bgp__hero-subtitle,
.reha-bgp__hero-description,
.reha-bgp__card-title,
.reha-bgp__benefit-title,
.reha-bgp__support-title,
.reha-bgp__step-title,
.reha-bgp__cta h2 {
    overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
    .reha-bgp__container {
        --reha-side-padding: 20px;
    }

    .reha-bgp__hero {
        padding: 42px 36px 34px;
    }

    .reha-bgp__program-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .reha-bgp__support-icon {
        width: 56px;
        height: 56px;
        font-size: 23px;
    }
}

@media (max-width: 820px) {
    .reha-bgp__container {
        --reha-side-padding: 18px;
    }

    .reha-bgp__hero {
        padding: 36px 28px 26px;
        gap: 24px;
    }

    .reha-bgp__hero-title {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(38px, 7vw, 52px);
    }

    .reha-bgp__hero-media {
        min-height: 340px;
    }

    .reha-bgp__hero-media img {
        width: min(100%, 560px);
        max-height: 360px;
    }

    .reha-bgp__benefit-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .reha-bgp__benefit {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .reha-bgp__program-card {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 15px;
        padding: 21px;
    }

    .reha-bgp__program-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .reha-bgp__support-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .reha-bgp__step-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 18px;
    }

    .reha-bgp__step {
        grid-template-columns: 94px minmax(0, 1fr);
    }

    .reha-bgp__cta {
        padding: 30px 26px;
    }
}

@media (max-width: 600px) {
    .reha-bgp {
        --reha-side-padding: 14px;
        font-size: 14px;
    }

    .reha-bgp__hero-shell {
        padding-top: 12px;
    }

    .reha-bgp__hero {
        padding: 28px 18px 20px;
        border-radius: 16px;
    }

    .reha-bgp__hero::before,
    .reha-bgp__hero::after,
    .reha-bgp__hero-decor,
    .reha-bgp__bubble {
        display: none;
    }

    .reha-bgp__hero-title {
        margin-bottom: 16px;
        font-size: clamp(30px, 10vw, 40px);
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .reha-bgp__hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .reha-bgp__hero-description {
        font-size: 12.5px;
        line-height: 1.7;
    }

    .reha-bgp__badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .reha-bgp__badge {
        width: 100%;
        min-height: 36px;
        justify-content: center;
        padding: 7px 8px;
        font-size: 10.5px;
        text-align: center;
    }

    .reha-bgp__hero-buttons {
        margin-top: 18px;
        gap: 10px;
    }

    .reha-bgp__btn {
        min-height: 44px;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 12px;
    }

    .reha-bgp__hero-media {
        min-height: 230px;
    }

    .reha-bgp__hero-media::before {
        left: -4px;
        right: -4px;
        top: 22px;
        bottom: 8px;
    }

    .reha-bgp__hero-media img {
        width: 100%;
        max-width: 430px;
        max-height: 260px;
        border-radius: 16px 16px 30px 18px;
    }

    .reha-bgp__benefits {
        margin-top: 14px;
        border-radius: 14px;
    }

    .reha-bgp__benefit {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .reha-bgp__benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .reha-bgp__benefit-title {
        font-size: 12px;
    }

    .reha-bgp__benefit p {
        font-size: 10.5px;
    }

    .reha-bgp__section {
        padding-top: 38px;
    }

    .reha-bgp__section-title {
        font-size: 22px;
        line-height: 1.25;
    }

    .reha-bgp__program-grid,
    .reha-bgp__support-grid {
        gap: 12px;
    }

    .reha-bgp__program-card {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        padding: 16px;
        border-radius: 12px;
    }

    .reha-bgp__program-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .reha-bgp__card-title {
        font-size: 14px;
    }

    .reha-bgp__program-card p,
    .reha-bgp__text-link {
        font-size: 11.5px;
    }

    .reha-bgp__support-item {
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 12px;
        padding: 13px 14px;
        border: 1px solid #e3e9f1;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 6px 18px rgba(4, 29, 73, .04);
    }

    .reha-bgp__support-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .reha-bgp__support-title {
        font-size: 13px;
    }

    .reha-bgp__support-item p {
        font-size: 11px;
    }

    .reha-bgp__timeline-card,
    .reha-bgp__info-card {
        padding: 17px;
        border-radius: 12px;
    }

    .reha-bgp__step {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 11px;
        min-height: 72px;
    }

    .reha-bgp__step-rail {
        gap: 6px;
    }

    .reha-bgp__step-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 15px;
    }

    .reha-bgp__step-number {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 10px;
    }

    .reha-bgp__step-rail::after {
        left: 19px;
        top: 43px;
    }

    .reha-bgp__step-title {
        font-size: 13.5px;
    }

    .reha-bgp__step p,
    .reha-bgp__info-copy,
    .reha-bgp__info-card li {
        font-size: 11px;
    }

    .reha-bgp__info-card h3 {
        font-size: 15px;
    }

    .reha-bgp__info-watermark {
        right: -8px;
        bottom: -10px;
        font-size: 105px;
    }

    .reha-bgp__cta-section {
        padding-top: 30px;
        padding-bottom: 22px;
    }

    .reha-bgp__cta {
        min-height: 0;
        gap: 18px;
        padding: 24px 17px;
        border-radius: 13px;
    }

    .reha-bgp__cta h2 {
        font-size: 21px;
        line-height: 1.35;
    }
}

@media (max-width: 380px) {
    .reha-bgp {
        --reha-side-padding: 10px;
    }

    .reha-bgp__hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .reha-bgp__badges {
        grid-template-columns: 1fr;
    }

    .reha-bgp__hero-title {
        font-size: 29px;
    }

    .reha-bgp__program-card,
    .reha-bgp__support-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .reha-bgp__program-icon,
    .reha-bgp__support-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
