/* ==========================================================================
   Wien Räumfix — main stylesheet (rf-)
   Sofia Sans Condensed + Urbanist · slate ink & signal lime
   ========================================================================== */

:root {
    /* ink & text */
    --ink: #12161B;
    --ink-2: #1B222A;
    --ink-3: #2A343F;
    --body: #48525E;
    --muted: #7C8894;

    /* surfaces */
    --paper: #FFFFFF;
    --mist: #F3F5F1;
    --mist-2: #E8ECE4;
    --line: #DFE4DA;
    --line-2: #C4CDB8;

    /* signal */
    --lime: #C6F24E;
    --lime-d: #A8D62F;
    --lime-soft: #EFF9CF;
    --moss: #46650F;

    /* geometry */
    --r: 14px;
    --r-s: 8px;
    --r-p: 999px;
    --wrap: 1260px;
    --pad: 96px;
    --bar: 74px;

    /* type */
    --ff-d: 'Sofia Sans Condensed', 'Arial Narrow', 'Helvetica Neue', sans-serif;
    --ff-b: 'Urbanist', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    padding: 0;
    background: var(--paper);
    color: var(--body);
    font-family: var(--ff-b);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 400;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    font-family: var(--ff-d);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.005em;
}

h2 { font-size: clamp(2rem, 3.4vw, 2.85rem); font-weight: 800; }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration: none; }

ul, ol { list-style: none; margin: 0; padding: 0; }

img { max-width: 100%; height: auto; display: block; }

b, strong { font-weight: 700; color: var(--ink-2); }

table { border-collapse: collapse; width: 100%; }

button, input, select, textarea { font: inherit; color: inherit; }

/* --------------------------------------------------------------- layout */
.rf-wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

.rf-sec { padding: var(--pad) 0; }

.rf-sec--dark {
    background: var(--ink);
    color: #C9D2DA;
}
.rf-sec--dark h2, .rf-sec--dark h3, .rf-sec--dark h4 { color: #fff; }

.rf-head { max-width: 760px; margin-bottom: 54px; }
.rf-head p { color: var(--body); font-size: 1.05rem; margin-top: 16px; }
.rf-head--light p { color: #A7B2BC; }

.rf-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: end;
}
.rf-head--split p { margin-top: 0; padding-bottom: 6px; }

.rf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    font-family: var(--ff-b);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--moss);
}
.rf-eyebrow::before {
    content: "";
    width: 16px;
    height: 4px;
    background: var(--lime);
    border-radius: 2px;
}
.rf-sec--dark .rf-eyebrow, .rf-eyebrow--light { color: var(--lime); }

/* --------------------------------------------------------------- buttons */
.rf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border: 1.5px solid transparent;
    border-radius: var(--r-p);
    font-family: var(--ff-b);
    font-size: .97rem;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.rf-btn span { color: inherit; }
.rf-btn img { flex: none; }

.rf-btn--primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.rf-btn--primary:hover { background: var(--lime-d); border-color: var(--lime-d); transform: translateY(-2px); }

.rf-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.rf-btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.rf-btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.rf-btn--dark:hover { background: var(--ink-3); border-color: var(--ink-3); transform: translateY(-2px); }

.rf-btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.rf-btn--light:hover { background: var(--mist-2); border-color: var(--mist-2); transform: translateY(-2px); }

/* --------------------------------------------------------------- topbar */
.rf-top {
    background: var(--ink);
    color: #AFBAC4;
    font-size: .82rem;
    overflow-x: clip;
}
.rf-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 38px;
}
.rf-top__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #AFBAC4;
    white-space: nowrap;
}
.rf-top__item--tel { color: #fff; font-weight: 600; }
.rf-top__item--tel:hover { color: var(--lime); }

/* --------------------------------------------------------------- header */
.rf-bar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    overflow-x: clip;
}
.rf-bar__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: var(--bar);
}
.rf-bar--stuck { box-shadow: 0 6px 24px rgba(18, 22, 27, .07); }

.rf-bar__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.rf-bar__mark {
    position: relative;
    width: 44px;
    height: 44px;
    flex: none;
    background: var(--ink);
    border-radius: 12px;
}
.rf-bar__mark img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rf-bar__brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.rf-bar__brand-txt strong {
    font-family: var(--ff-d);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.01em;
}
.rf-bar__brand-txt strong span { color: var(--moss); }
.rf-bar__brand-txt small {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.rf-bar__menu { display: flex; align-items: center; gap: 26px; }
.rf-bar__link {
    position: relative;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-3);
    padding: 6px 0;
}
.rf-bar__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--lime-d);
    transition: width .2s ease;
}
.rf-bar__link:hover::after { width: 100%; }

.rf-bar__tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid var(--line-2);
    border-radius: var(--r-p);
    font-weight: 700;
    font-size: .95rem;
    white-space: nowrap;
}
.rf-bar__tel:hover { border-color: var(--ink); }

.rf-bar__burger {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--ink);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}
.rf-bar__burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--lime);
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
}
.rf-bar__burger--on span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rf-bar__burger--on span:nth-child(2) { opacity: 0; }
.rf-bar__burger--on span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------- drawer */
.rf-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    width: min(340px, 88vw);
    height: 100%;
    padding: 22px;
    background: var(--ink);
    color: #fff;
    transform: translateX(105%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.rf-drawer--open { transform: translateX(0); }
.rf-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-family: var(--ff-d);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}
.rf-drawer__x {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    background: rgba(255, 255, 255, .08);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.rf-drawer__nav { display: flex; flex-direction: column; padding: 12px 0; }
.rf-drawer__nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #E4E9EE;
    font-family: var(--ff-d);
    font-size: 1.3rem;
    font-weight: 600;
}
.rf-drawer__nav a:hover { color: var(--lime); }
.rf-drawer__foot { margin-top: auto; padding-top: 20px; display: grid; gap: 10px; }
.rf-drawer__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px;
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: var(--r-p);
    color: #fff;
    font-weight: 700;
}
.rf-drawer__cta {
    display: block;
    padding: 14px;
    background: var(--lime);
    border-radius: var(--r-p);
    color: var(--ink);
    font-weight: 700;
    text-align: center;
}

.rf-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(10, 13, 16, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.rf-backdrop--on { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------- hero */
.rf-hero {
    position: relative;
    padding: 62px 0 54px;
    background:
        linear-gradient(180deg, var(--mist) 0%, var(--mist) 62%, var(--paper) 62%),
        var(--paper);
}
.rf-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 38% 0;
    background-image: repeating-linear-gradient(90deg, rgba(18, 22, 27, .05) 0 1px, transparent 1px 84px);
    pointer-events: none;
}
.rf-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.rf-hero__col { min-width: 0; }

.rf-flag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px 8px 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-p);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--ink-3);
}
.rf-flag i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-d);
    box-shadow: 0 0 0 4px rgba(198, 242, 78, .3);
}

.rf-hero__h1 {
    margin: 22px 0 20px;
    font-size: clamp(2.7rem, 5.2vw, 4.5rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.015em;
}
.rf-hero__h1 span { display: block; color: var(--ink-3); font-weight: 600; }

.rf-hero__lead {
    max-width: 560px;
    font-size: 1.09rem;
    color: var(--body);
}

.rf-hero__act { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }

.rf-hero__jump {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.rf-hero__jump-lbl {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}
.rf-hero__jump a {
    padding: 7px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-p);
    font-size: .86rem;
    font-weight: 600;
    color: var(--ink-3);
}
.rf-hero__jump a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.rf-hero__col--media { display: flex; flex-direction: column; gap: 0; }
.rf-hero__media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    border-radius: var(--r);
    overflow: hidden;
}
.rf-hero__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.rf-ticket {
    position: relative;
    z-index: 2;
    width: calc(100% - 34px);
    margin: -46px 0 0 auto;
    padding: 20px 22px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 4px solid var(--lime);
    border-radius: var(--r-s);
    box-shadow: 0 18px 40px rgba(18, 22, 27, .1);
}
.rf-ticket__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line-2);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.rf-ticket__score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .04em;
    color: var(--ink-2);
    text-transform: none;
    font-size: .82rem;
}
.rf-ticket__rows { margin: 4px 0 0; }
.rf-ticket__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}
.rf-ticket__row dt { font-size: .95rem; font-weight: 600; color: var(--ink-2); }
.rf-ticket__row dd {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: .86rem;
    color: var(--muted);
    white-space: nowrap;
}
.rf-ticket__row dd b { font-size: 1.02rem; color: var(--ink); }
.rf-ticket__foot {
    position: relative;
    margin: 14px 0 0;
    padding-left: 25px;
    font-size: .88rem;
    line-height: 1.5;
    color: var(--body);
}
.rf-ticket__foot img { position: absolute; left: 0; top: 4px; }

.rf-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 62px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}
.rf-rail__item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 22px 24px;
    background: var(--paper);
    min-width: 0;
}
.rf-rail__item img { margin-bottom: 8px; }
.rf-rail__item strong {
    font-family: var(--ff-d);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0;
}
.rf-rail__item span { font-size: .88rem; color: var(--muted); line-height: 1.45; }

/* --------------------------------------------------------------- volumen */
.rf-vol { background: var(--paper); }
.rf-vol__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
    margin-bottom: 64px;
}
.rf-vol__intro-txt h2 { margin-bottom: 20px; }
.rf-vol__intro-fig {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r);
    overflow: hidden;
}
.rf-vol__intro-fig > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.rf-vol__scale {
    padding: 40px 42px 34px;
    background: var(--mist);
    border-radius: var(--r);
}
.rf-vol__scale-h { margin-bottom: 26px; font-size: 1.5rem; }
.rf-vol__list { display: flex; flex-direction: column; gap: 4px; }
.rf-vol__row {
    display: grid;
    grid-template-columns: minmax(0, 250px) minmax(0, 1fr) 92px minmax(0, 230px);
    align-items: center;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-2);
}
.rf-vol__row:last-child { border-bottom: none; }
.rf-vol__name { font-weight: 600; color: var(--ink-2); font-size: .98rem; min-width: 0; }
.rf-vol__bar {
    height: 12px;
    background: var(--mist-2);
    border-radius: 3px;
    overflow: hidden;
    min-width: 0;
}
.rf-vol__fill { display: block; height: 100%; background: var(--lime); border-radius: 3px; }
.rf-vol__fill--w08 { width: 12%; }
.rf-vol__fill--w15 { width: 21%; }
.rf-vol__fill--w20 { width: 29%; }
.rf-vol__fill--w30 { width: 42%; }
.rf-vol__fill--w45 { width: 60%; }
.rf-vol__fill--w100 { width: 100%; }
.rf-vol__num { font-weight: 700; color: var(--ink); font-size: 1.02rem; white-space: nowrap; }
.rf-vol__hint { font-size: .88rem; color: var(--muted); min-width: 0; }
.rf-vol__note {
    position: relative;
    margin: 26px 0 0;
    padding: 22px 0 0 29px;
    border-top: 1px dashed var(--line-2);
    font-size: .93rem;
    color: var(--body);
}
.rf-vol__note img { position: absolute; left: 0; top: 25px; }

/* --------------------------------------------------------------- register / leistungen */
.rf-lst { background: var(--mist); }
.rf-reg { margin-bottom: 34px; }
.rf-reg:last-child { margin-bottom: 0; }
.rf-reg__tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px 11px;
    background: var(--ink);
    border-radius: var(--r-s) var(--r-s) 0 0;
    font-family: var(--ff-d);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}
.rf-reg__tab b {
    padding: 2px 9px;
    background: var(--lime);
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .8rem;
    font-weight: 800;
    color: var(--ink);
}
.rf-reg__body {
    padding: 32px 36px 36px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0 var(--r) var(--r) var(--r);
}
.rf-reg__lead {
    max-width: 780px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    color: var(--body);
}
.rf-reg__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
    gap: 28px 32px;
}
.rf-item { min-width: 0; }
.rf-item__ico {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    background: var(--ink);
    border-radius: 10px;
}
.rf-item__ico img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rf-item h3 { margin-bottom: 8px; font-size: 1.24rem; }
.rf-item p { font-size: .93rem; line-height: 1.62; color: var(--body); }

/* --------------------------------------------------------------- objekte */
.rf-obj { background: var(--paper); }
.rf-obj__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}
.rf-obj__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.rf-obj__card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(18, 22, 27, .1); }
.rf-obj__media { position: relative; aspect-ratio: 4 / 3; }
.rf-obj__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-obj__txt { position: relative; padding: 20px 22px 22px; }
.rf-obj__no {
    position: absolute;
    top: -17px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--lime);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 800;
    color: var(--ink);
}
.rf-obj__txt h3 { margin-bottom: 7px; font-size: 1.3rem; }
.rf-obj__txt p { font-size: .9rem; line-height: 1.56; color: var(--body); margin-bottom: 12px; }
.rf-obj__meta {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--moss);
}

/* --------------------------------------------------------------- sonderfälle */
.rf-son { background: var(--mist); }
.rf-son__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.rf-son__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}
.rf-son__media { position: relative; aspect-ratio: 21 / 9; }
.rf-son__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-son__body { padding: 30px 32px 32px; }
.rf-son__body h3 { margin-bottom: 14px; font-size: 1.75rem; }
.rf-son__body p { font-size: .96rem; color: var(--body); }
.rf-son__list { display: grid; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.rf-son__list li {
    position: relative;
    padding-left: 27px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-3);
}
.rf-son__list img { position: absolute; left: 0; top: 4px; }

/* --------------------------------------------------------------- ablauf */
.rf-flow { background: var(--paper); }
.rf-flow__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.rf-flow__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 34px;
}
.rf-flow__step { position: relative; padding-left: 58px; min-width: 0; }
.rf-flow__no {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    font-family: var(--ff-b);
    font-size: .88rem;
    font-weight: 800;
    color: var(--ink);
}
.rf-flow__step h3 { margin-bottom: 8px; font-size: 1.3rem; }
.rf-flow__step p { font-size: .93rem; line-height: 1.6; color: var(--body); }
.rf-flow__fig { margin: 0; }
.rf-flow__fig img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 62% center;
    border-radius: var(--r);
}
.rf-flow__fig figcaption {
    margin-top: 12px;
    font-size: .86rem;
    color: var(--muted);
    padding-left: 14px;
    border-left: 3px solid var(--lime);
}

/* --------------------------------------------------------------- entsorgung */
.rf-ent { background: linear-gradient(180deg, var(--ink) 0%, #0D1115 100%); }
.rf-ent__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}
.rf-ent__flow { display: grid; gap: 2px; }
.rf-ent__stage {
    position: relative;
    padding: 20px 0 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.rf-ent__flow .rf-ent__stage:last-child { border-bottom: none; }
.rf-ent__ico {
    position: absolute;
    left: 0;
    top: 18px;
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(198, 242, 78, .12);
    border: 1px solid rgba(198, 242, 78, .3);
    border-radius: 10px;
}
.rf-ent__ico img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rf-ent__stage h3 { margin-bottom: 6px; font-size: 1.28rem; }
.rf-ent__stage p { font-size: .93rem; line-height: 1.62; color: #A7B2BC; }
.rf-ent__side { display: grid; gap: 24px; }
.rf-ent__fig { margin: 0; }
.rf-ent__fig img { border-radius: var(--r); }
.rf-ent__note {
    padding: 26px 28px;
    background: rgba(255, 255, 255, .05);
    border-left: 4px solid var(--lime);
    border-radius: var(--r-s);
}
.rf-ent__note h3 { margin-bottom: 10px; font-size: 1.3rem; }
.rf-ent__note p { font-size: .94rem; color: #A7B2BC; }

/* --------------------------------------------------------------- mitnahme */
.rf-mit { background: var(--paper); }
.rf-mit__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.rf-mit__col {
    padding: 32px 34px 34px;
    border-radius: var(--r);
    min-width: 0;
}
.rf-mit__col--yes { background: var(--lime-soft); border: 1px solid #DCEDAE; }
.rf-mit__col--extra { background: var(--mist); border: 1px solid var(--line); }
.rf-mit__col h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(18, 22, 27, .1);
    font-size: 1.45rem;
}
.rf-mit__col ul { display: grid; gap: 12px; }
.rf-mit__col li {
    position: relative;
    padding-left: 22px;
    font-size: .96rem;
    line-height: 1.55;
    color: var(--ink-3);
}
.rf-mit__col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--lime-d);
}
.rf-mit__col--extra li::before { background: var(--line-2); }
.rf-mit__strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 38px;
    align-items: center;
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}
.rf-mit__fig { margin: 0; position: relative; aspect-ratio: 3 / 2; border-radius: var(--r); overflow: hidden; }
.rf-mit__fig > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-mit__strip-txt { min-width: 0; }
.rf-mit__strip-txt h3 { margin-bottom: 12px; font-size: 1.5rem; }
.rf-mit__strip-txt p { font-size: .95rem; color: var(--body); }
.rf-mit__hint {
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px dashed var(--line-2);
    font-size: .9rem;
    color: var(--body);
}

/* --------------------------------------------------------------- preise */
.rf-preis { background: var(--mist); }
.rf-preis__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}
.rf-preis__table-wrap {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow-x: auto;
}
.rf-preis__table { min-width: 520px; }
.rf-preis__table thead th {
    padding: 16px 22px;
    background: var(--ink);
    color: #fff;
    font-family: var(--ff-b);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: left;
}
.rf-preis__table thead th:last-child { text-align: right; }
.rf-preis__table tbody td {
    padding: 15px 22px;
    border-bottom: 1px solid var(--line);
    font-size: .94rem;
    color: var(--body);
    vertical-align: middle;
}
.rf-preis__table tbody td:first-child { font-weight: 600; color: var(--ink-2); }
.rf-preis__table tbody td:last-child { text-align: right; white-space: nowrap; }
.rf-preis__table tbody td b { font-size: 1.06rem; color: var(--ink); }
.rf-preis__table tbody tr:last-child td { border-bottom: none; }
.rf-preis__table tbody tr:hover td { background: var(--mist); }

.rf-preis__side { display: grid; gap: 20px; }
.rf-preis__box {
    padding: 26px 28px 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
}
.rf-preis__box--extra { background: var(--ink); border-color: var(--ink); }
.rf-preis__box--extra h3 { color: #fff; }
.rf-preis__box h3 { margin-bottom: 14px; font-size: 1.35rem; }
.rf-preis__box p { font-size: .92rem; color: var(--body); margin-bottom: 16px; }
.rf-preis__rate { display: grid; gap: 2px; }
.rf-preis__rate li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: .93rem;
    color: var(--body);
}
.rf-preis__rate li:last-child { border-bottom: none; }
.rf-preis__rate b { font-weight: 700; color: var(--ink); white-space: nowrap; }
.rf-preis__box--extra .rf-preis__rate li { border-color: rgba(255, 255, 255, .12); color: #A7B2BC; }
.rf-preis__box--extra .rf-preis__rate b { color: var(--lime); }
.rf-preis__small { margin: 16px 0 0; font-size: .84rem; color: var(--muted); line-height: 1.5; }

/* --------------------------------------------------------------- kostenfaktoren */
.rf-kost { background: var(--paper); }
.rf-kost__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}
.rf-kost__card {
    position: relative;
    padding: 30px 28px 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    min-width: 0;
}
.rf-kost__card--up { border-top: 3px solid var(--ink-3); }
.rf-kost__card--down { border-top: 3px solid var(--lime-d); background: var(--mist); }
.rf-kost__badge {
    position: absolute;
    top: -16px;
    left: 26px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}
.rf-kost__card--down .rf-kost__badge { background: var(--lime); color: var(--ink); }
.rf-kost__card h3 { margin-bottom: 10px; font-size: 1.32rem; }
.rf-kost__card p { font-size: .93rem; line-height: 1.62; color: var(--body); }
.rf-kost__aside {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 34px;
    align-items: center;
    margin-top: 40px;
}
.rf-kost__fig { margin: 0; position: relative; aspect-ratio: 3 / 2; border-radius: var(--r); overflow: hidden; }
.rf-kost__fig > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-kost__foot {
    margin: 0;
    padding: 26px 30px;
    background: var(--mist);
    border-left: 4px solid var(--lime);
    border-radius: var(--r-s);
    font-size: .97rem;
    color: var(--ink-3);
}

/* --------------------------------------------------------------- rechner */
.rf-calc { background: var(--ink-2); }
.rf-calc__inner {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 52px;
    align-items: start;
}
.rf-calc__intro h2 { margin-bottom: 18px; }
.rf-calc__intro p { color: #A7B2BC; }
.rf-calc__hints { display: grid; gap: 11px; margin-top: 24px; }
.rf-calc__hints li {
    position: relative;
    padding-left: 27px;
    font-size: .93rem;
    color: #C9D2DA;
}
.rf-calc__hints img { position: absolute; left: 0; top: 4px; }
.rf-calc__panel {
    padding: 30px 32px 32px;
    background: var(--paper);
    border-radius: var(--r);
    color: var(--body);
}
.rf-calc__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.rf-calc__field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.rf-calc__field span {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.rf-calc__input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    background: var(--mist);
    border: 1.5px solid var(--line);
    border-radius: var(--r-s);
    font-size: .93rem;
    font-weight: 600;
    color: var(--ink-2);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B222A' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px;
    padding-right: 40px;
    text-overflow: ellipsis;
    cursor: pointer;
}
.rf-calc__input:focus { outline: none; border-color: var(--lime-d); }
.rf-calc__out {
    margin-top: 26px;
    padding: 20px 22px;
    background: var(--mist);
    border-radius: var(--r-s);
}
.rf-calc__line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    font-size: .93rem;
    border-bottom: 1px solid var(--line);
}
.rf-calc__line strong { font-weight: 700; color: var(--ink-2); white-space: nowrap; }
.rf-calc__line--total {
    margin-top: 6px;
    padding-top: 15px;
    border-bottom: none;
    border-top: 2px solid var(--ink);
    font-weight: 700;
    color: var(--ink);
}
.rf-calc__line--total strong { font-size: 1.4rem; }
.rf-calc__res {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}
.rf-calc__res p { font-size: .86rem; color: var(--body); line-height: 1.5; margin: 0; }
.rf-calc__res .rf-btn { flex: none; }

/* --------------------------------------------------------------- planung */
.rf-plan { background: var(--mist); }
.rf-plan__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 52px;
    align-items: start;
}
.rf-plan__txt h2 { margin-bottom: 18px; }
.rf-plan__txt .rf-btn { margin-top: 24px; }
.rf-plan__check {
    padding: 32px 34px 34px;
    background: var(--ink);
    border-radius: var(--r);
    color: #C9D2DA;
}
.rf-plan__check h3 {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.45rem;
}
.rf-plan__check ul { display: grid; gap: 14px; }
.rf-plan__check li {
    position: relative;
    padding-left: 29px;
    font-size: .94rem;
    line-height: 1.55;
}
.rf-plan__check img { position: absolute; left: 0; top: 4px; }

/* --------------------------------------------------------------- fehler */
.rf-err { background: var(--paper); }
.rf-err__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 46px;
}
.rf-err__item {
    display: flex;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}
.rf-err__no {
    flex: none;
    font-family: var(--ff-b);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lime-d);
    padding-top: 3px;
}
.rf-err__item h3 { margin-bottom: 8px; font-size: 1.26rem; }
.rf-err__item p { font-size: .93rem; line-height: 1.62; color: var(--body); }

/* --------------------------------------------------------------- szenarien */
.rf-scn { background: var(--mist); }
.rf-scn__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.rf-scn__card {
    position: relative;
    padding: 32px 34px 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    min-width: 0;
}
.rf-scn__ico {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    background: var(--ink);
    border-radius: 12px;
}
.rf-scn__ico img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rf-scn__card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.rf-scn__card p { font-size: .95rem; color: var(--body); }

/* --------------------------------------------------------------- vorteile */
.rf-adv { background: var(--paper); }
.rf-adv__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.rf-adv__card { padding: 32px 30px 34px; background: var(--paper); min-width: 0; }
.rf-adv__ico {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    background: var(--ink);
    border-radius: 11px;
}
.rf-adv__ico img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rf-adv__card h3 { margin-bottom: 9px; font-size: 1.3rem; }
.rf-adv__card p { font-size: .93rem; line-height: 1.6; color: var(--body); }

/* --------------------------------------------------------------- vorher/nachher */
.rf-va { background: var(--mist); }
.rf-va__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.rf-va__case { min-width: 0; }
.rf-va__pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 18px;
}
.rf-va__shot { position: relative; margin: 0; aspect-ratio: 3 / 2; border-radius: var(--r-s); overflow: hidden; }
.rf-va__shot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-va__shot figcaption {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 4px 10px;
    background: rgba(18, 22, 27, .84);
    border-radius: var(--r-p);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}
.rf-va__shot:last-child figcaption { background: var(--lime); color: var(--ink); }
.rf-va__case h3 { margin-bottom: 8px; font-size: 1.28rem; }
.rf-va__case p { font-size: .92rem; line-height: 1.58; color: var(--body); }

/* --------------------------------------------------------------- referenzen */
.rf-ref { background: var(--paper); }
.rf-ref__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.rf-ref__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}
.rf-ref__media { position: relative; aspect-ratio: 3 / 2; }
.rf-ref__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-ref__body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }
.rf-ref__body h3 { margin-bottom: 10px; font-size: 1.35rem; }
.rf-ref__place {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    font-size: .84rem;
    font-weight: 600;
    color: var(--muted);
}
.rf-ref__body p { font-size: .92rem; line-height: 1.6; color: var(--body); }
.rf-ref__facts { display: grid; gap: 2px; margin-top: auto; padding-top: 18px; }
.rf-ref__facts li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid var(--line);
    font-size: .88rem;
    color: var(--muted);
}
.rf-ref__facts b { color: var(--ink); font-weight: 700; text-align: right; }

/* --------------------------------------------------------------- garantie */
.rf-gar { background: var(--mist); }
.rf-gar__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}
.rf-gar__txt h2 { margin-bottom: 18px; }
.rf-gar__list { display: grid; gap: 4px; margin-top: 30px; }
.rf-gar__item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--line-2);
}
.rf-gar__ico {
    position: relative;
    flex: none;
    width: 40px;
    height: 40px;
    background: var(--ink);
    border-radius: 10px;
}
.rf-gar__ico img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rf-gar__item h3 { margin-bottom: 6px; font-size: 1.24rem; }
.rf-gar__item p { font-size: .92rem; line-height: 1.58; color: var(--body); }
.rf-gar__fig { margin: 0; position: sticky; top: 110px; }
.rf-gar__fig img { border-radius: var(--r); }
.rf-gar__fig figcaption {
    margin-top: 12px;
    padding-left: 14px;
    border-left: 3px solid var(--lime);
    font-size: .86rem;
    color: var(--muted);
}

/* --------------------------------------------------------------- geo */
.rf-geo { background: var(--paper); }
.rf-geo__wrap { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 44px; }
.rf-geo__block {
    padding: 30px 32px 32px;
    background: var(--mist);
    border-radius: var(--r);
    min-width: 0;
}
.rf-geo__block h3 { margin-bottom: 20px; font-size: 1.4rem; }
.rf-geo__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.rf-geo__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-p);
    font-size: .89rem;
    font-weight: 600;
    color: var(--ink-3);
}
.rf-geo__chip {
    flex-direction: row;
    align-items: baseline;
    padding: 9px 16px;
    line-height: 1.25;
}
.rf-geo__chip i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime-d);
    flex: none;
    align-self: center;
}
.rf-geo__chip small {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}
.rf-geo__chips--alt .rf-geo__chip i { background: var(--ink-3); }
.rf-geo__more { margin: 18px 0 0; font-size: .9rem; color: var(--muted); line-height: 1.6; }
.rf-geo__note {
    position: relative;
    margin: 30px 0 0;
    padding: 24px 28px 24px 60px;
    background: var(--ink);
    border-radius: var(--r);
    color: #C9D2DA;
    font-size: .95rem;
}
.rf-geo__note img { position: absolute; left: 28px; top: 27px; }

/* --------------------------------------------------------------- team */
.rf-team { background: var(--mist); }
.rf-team__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.rf-team__card {
    padding: 22px 24px 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    min-width: 0;
}
.rf-team__ph {
    position: relative;
    aspect-ratio: 1 / 1;
    margin-bottom: 18px;
    border-radius: var(--r-s);
    overflow: hidden;
}
.rf-team__ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-team__card h3 { margin-bottom: 3px; font-size: 1.3rem; }
.rf-team__role {
    display: block;
    margin-bottom: 12px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--moss);
}
.rf-team__card p { font-size: .9rem; line-height: 1.58; color: var(--body); }

/* --------------------------------------------------------------- about */
.rf-about { background: var(--paper); }
.rf-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 52px;
    align-items: center;
}
.rf-about__fig { margin: 0; position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; }
.rf-about__fig > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-about__txt h2 { margin-bottom: 20px; }
.rf-about__txt p { color: var(--body); }

/* --------------------------------------------------------------- reviews */
.rf-rev { background: var(--mist); }
.rf-rev__score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding-bottom: 6px;
    font-size: .93rem;
    color: var(--body);
}
.rf-rev__stars { color: var(--lime-d); font-size: 1.25rem; letter-spacing: .12em; }
.rf-rev__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.rf-rev__card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 30px 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    min-width: 0;
}
.rf-rev__quote { position: absolute; top: 22px; right: 24px; opacity: .13; }
.rf-rev__st { display: block; margin-bottom: 14px; color: var(--lime-d); letter-spacing: .1em; }
.rf-rev__body { font-size: .95rem; line-height: 1.65; color: var(--ink-3); }
.rf-rev__meta {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.rf-rev__ava {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: none;
    background: var(--ink);
    border-radius: 50%;
    font-family: var(--ff-d);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lime);
}
.rf-rev__meta h3 { font-size: 1.08rem; margin-bottom: 1px; }
.rf-rev__meta span { font-size: .82rem; color: var(--muted); }
.rf-rev__more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 2px solid var(--lime);
    padding-bottom: 3px;
}

/* --------------------------------------------------------------- blog */
.rf-blog { background: var(--paper); }
.rf-blog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.rf-blog__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.rf-blog__card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(18, 22, 27, .1); }
.rf-blog__media { position: relative; aspect-ratio: 3 / 2; }
.rf-blog__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-blog__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.rf-blog__tag {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 11px;
    background: var(--lime-soft);
    border-radius: var(--r-p);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--moss);
}
.rf-blog__body h3 { margin-bottom: 10px; font-size: 1.3rem; }
.rf-blog__body p { font-size: .91rem; line-height: 1.58; color: var(--body); }
.rf-blog__read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 16px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
}
.rf-blog__more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 2px solid var(--lime);
    padding-bottom: 3px;
}

/* --------------------------------------------------------------- faq */
.rf-faq { background: var(--mist); }
.rf-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 52px;
    align-items: start;
}
.rf-faq__aside { position: sticky; top: 110px; }
.rf-faq__aside h2 { margin-bottom: 16px; }
.rf-faq__aside p { color: var(--body); margin-bottom: 24px; }
.rf-faq__list { display: grid; gap: 10px; }
.rf-faq__item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-s);
    overflow: hidden;
}
.rf-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 22px;
    cursor: pointer;
    list-style: none;
    font-family: var(--ff-d);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--ink);
}
.rf-faq__item summary::-webkit-details-marker { display: none; }
.rf-faq__item summary img { flex: none; transition: transform .22s ease; }
.rf-faq__item[open] summary img { transform: rotate(180deg); }
.rf-faq__item[open] { border-color: var(--line-2); }
.rf-faq__item div { padding: 0 22px 22px; }
.rf-faq__item p { font-size: .94rem; line-height: 1.68; color: var(--body); }

/* --------------------------------------------------------------- kontakt */
.rf-kt {
    position: relative;
    padding: var(--pad) 0;
    background: var(--ink);
    color: #C9D2DA;
    overflow: hidden;
}
.rf-kt__bg { position: absolute; inset: 0; opacity: .14; }
.rf-kt__bg > img { width: 100%; height: 100%; object-fit: cover; }
.rf-kt__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 52px;
    align-items: start;
}
.rf-kt__txt h2 { margin-bottom: 18px; color: #fff; }
.rf-kt__txt p { color: #A7B2BC; }
.rf-kt__list { display: grid; gap: 14px; margin-top: 28px; }
.rf-kt__list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: #C9D2DA; }
.rf-kt__list img { flex: none; }
.rf-kt__list a { color: #fff; font-weight: 700; }
.rf-kt__list a:hover { color: var(--lime); }

.rf-kt__mail-hint {
    position: relative;
    margin: 26px 0 0;
    padding: 18px 20px 18px 50px;
    background: rgba(255, 255, 255, .06);
    border-left: 3px solid var(--lime);
    border-radius: var(--r-s);
    font-size: .91rem;
    line-height: 1.6;
    color: #A7B2BC;
}
.rf-kt__mail-hint img { position: absolute; left: 20px; top: 21px; }

.rf-kt__form-wrap { min-width: 0; }
.rf-kt__form {
    padding: 32px 34px 34px;
    background: var(--paper);
    border-radius: var(--r);
}
.rf-kt__form h3 { margin-bottom: 22px; font-size: 1.55rem; }
.rf-kt__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.rf-kt__field { margin-bottom: 14px; min-width: 0; }
.rf-kt__input, .rf-kt__textarea {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    background: var(--mist);
    border: 1.5px solid var(--line);
    border-radius: var(--r-s);
    font-size: .95rem;
    color: var(--ink-2);
}
.rf-kt__textarea { resize: vertical; min-height: 118px; }
.rf-kt__input::placeholder, .rf-kt__textarea::placeholder { color: var(--muted); }
.rf-kt__input:focus, .rf-kt__textarea:focus { outline: none; border-color: var(--lime-d); background: var(--paper); }
.rf-kt__error { margin-top: 6px; font-size: .82rem; color: #C0392B; }
.rf-kt__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 26px;
    background: var(--ink);
    border: none;
    border-radius: var(--r-p);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}
.rf-kt__submit:hover { background: var(--ink-3); transform: translateY(-2px); }
.rf-kt__success {
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--lime-soft);
    border-radius: var(--r-s);
    font-weight: 600;
    color: var(--moss);
}
.rf-kt__hint { margin: 16px 0 0; font-size: .84rem; line-height: 1.55; color: var(--muted); }
.rf-kt__hint a { color: var(--moss); text-decoration: underline; }

/* --------------------------------------------------------------- seo text */
.rf-seo { background: var(--paper); padding-bottom: 110px; }
.rf-seo__inner { max-width: 900px; }
.rf-seo__inner h2 { margin-bottom: 26px; }
.rf-seo__inner h3 { margin: 34px 0 12px; font-size: 1.42rem; }
.rf-seo__inner p { font-size: 1rem; line-height: 1.78; color: var(--body); }
.rf-seo__box {
    margin-top: 40px;
    padding: 32px 34px;
    background: var(--ink);
    border-radius: var(--r);
    color: #C9D2DA;
}
.rf-seo__box h4 { margin-bottom: 12px; color: #fff; font-size: 1.5rem; }
.rf-seo__box p { color: #C9D2DA; }
.rf-seo__box a { color: var(--lime); font-weight: 700; }

/* --------------------------------------------------------------- footer */
.rf-foot {
    padding: 74px 0 34px;
    background: var(--ink-2);
    color: #A7B2BC;
    font-size: .93rem;
}
.rf-foot__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 38px;
    margin-bottom: 58px;
    background: var(--lime);
    border-radius: var(--r);
    color: var(--ink);
}
.rf-foot__cta h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); color: var(--ink); }
.rf-foot__cta p { margin: 8px 0 0; color: rgba(18, 22, 27, .72); font-weight: 500; }
.rf-foot__cta-act { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }
.rf-foot__cta-act .rf-btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.rf-foot__cta-act .rf-btn--primary:hover { background: var(--ink-3); border-color: var(--ink-3); }

.rf-foot__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.rf-foot__col { min-width: 0; }
.rf-foot__col--brand { padding-right: 24px; }
.rf-foot__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rf-foot__mark {
    position: relative;
    width: 40px;
    height: 40px;
    flex: none;
    background: rgba(198, 242, 78, .12);
    border: 1px solid rgba(198, 242, 78, .3);
    border-radius: 11px;
}
.rf-foot__mark img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rf-foot__brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.rf-foot__brand-name { font-family: var(--ff-d); font-size: 1.42rem; font-weight: 800; color: #fff; }
.rf-foot__brand-sub { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--lime); font-weight: 600; }
.rf-foot__about { font-size: .9rem; line-height: 1.68; color: #929EAA; }
.rf-foot__col-title {
    margin-bottom: 16px;
    font-family: var(--ff-b);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
}
.rf-foot__links { display: grid; gap: 10px; }
.rf-foot__links a { color: #A7B2BC; font-size: .92rem; }
.rf-foot__links a:hover { color: var(--lime); }
.rf-foot__contact { display: grid; gap: 13px; }
.rf-foot__ci { display: flex; align-items: flex-start; gap: 11px; font-size: .92rem; line-height: 1.5; }
.rf-foot__ci img { flex: none; margin-top: 3px; }
.rf-foot__ci a { color: #fff; font-weight: 600; }
.rf-foot__ci a:hover { color: var(--lime); }

.rf-foot__regions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.rf-foot__regions-lbl { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.rf-foot__regions-row { display: flex; flex-wrap: wrap; gap: 8px; }
.rf-foot__region {
    padding: 6px 13px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--r-p);
    font-size: .85rem;
    color: #C9D2DA;
}
.rf-foot__region:hover { background: var(--lime); color: var(--ink); }

.rf-foot__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
}
.rf-foot__copy { margin: 0; font-size: .87rem; color: #8A96A2; }
.rf-foot__legal { display: flex; gap: 22px; }
.rf-foot__legal a { font-size: .87rem; color: #8A96A2; }
.rf-foot__legal a:hover { color: var(--lime); }

/* --------------------------------------------------------------- fab */
.rf-fab { position: fixed; right: 22px; bottom: 22px; z-index: 9999; }
.rf-fab__btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 65px;
    height: 65px;
    background: var(--ink);
    border: 2px solid var(--lime);
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(18, 22, 27, .3);
    animation: rf-pulse 2.4s infinite;
}
@keyframes rf-pulse {
    0% { box-shadow: 0 10px 26px rgba(18, 22, 27, .3), 0 0 0 0 rgba(198, 242, 78, .5); }
    70% { box-shadow: 0 10px 26px rgba(18, 22, 27, .3), 0 0 0 16px rgba(198, 242, 78, 0); }
    100% { box-shadow: 0 10px 26px rgba(18, 22, 27, .3), 0 0 0 0 rgba(198, 242, 78, 0); }
}

/* --------------------------------------------------------------- numerals & dark-surface fixes */
.rf-ticket__row dd b, .rf-rail__item strong, .rf-vol__num, .rf-preis__table tbody td b,
.rf-preis__rate b, .rf-calc__line strong, .rf-ref__facts b, .rf-obj__meta, .rf-err__no,
.rf-flow__no, .rf-obj__no, .rf-reg__tab b, .rf-kost__badge {
    font-family: var(--ff-b);
    font-feature-settings: "tnum" 1;
}

/* bold inside generated copy must stay readable on every dark surface —
   the global `b, strong { color: var(--ink-2) }` would sink it into the background */
.rf-sec--dark b, .rf-sec--dark strong,
.rf-kt__txt b, .rf-kt__txt strong,
.rf-kt__mail-hint b, .rf-kt__mail-hint strong,
.rf-geo__note b, .rf-geo__note strong,
.rf-plan__check b, .rf-plan__check strong,
.rf-seo__box b, .rf-seo__box strong,
.rf-ent__note b, .rf-ent__note strong,
.rf-foot b, .rf-foot strong { color: #fff; }

/* the estimator panel is a light surface inside a dark section — bold must stay dark there */
.rf-calc__panel b, .rf-calc__panel strong { color: var(--ink-2); }
.rf-calc__line--total strong { color: var(--ink); }
.rf-foot__cta b, .rf-foot__cta strong { color: var(--ink); }

.rf-sec--dark a:not(.rf-btn),
.rf-geo__note a:not(.rf-btn),
.rf-plan__check a:not(.rf-btn) { color: var(--lime); }

/* --------------------------------------------------------------- reveal */
.rf-up { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rf-up--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rf-up { opacity: 1; transform: none; transition: none; }
    .rf-fab__btn { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    :root { --pad: 78px; }
    .rf-wrap { padding: 0 24px; }
    .rf-bar__inner { gap: 20px; }
    .rf-bar__menu { gap: 18px; }
    .rf-bar__link { font-size: .9rem; }
    .rf-obj__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .rf-team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rf-kost__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rf-adv__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rf-vol__row { grid-template-columns: minmax(0, 210px) minmax(0, 1fr) 84px minmax(0, 190px); gap: 14px; }
    .rf-hero__grid { gap: 40px; }
    .rf-hero__h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
}

@media (max-width: 1024px) {
    :root { --pad: 66px; }
    .rf-bar__menu, .rf-bar__tel { display: none; }
    .rf-bar__burger { display: block; }
    .rf-bar__inner { min-height: 66px; }

    .rf-hero { padding: 40px 0 46px; background: var(--mist); }
    .rf-hero::before { inset: 0; }
    .rf-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .rf-hero__lead { max-width: none; }
    .rf-ticket { width: 100%; margin: -34px 0 0; }
    .rf-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }

    .rf-head--split { grid-template-columns: minmax(0, 1fr); gap: 16px; align-items: start; }
    .rf-head--split p { padding-bottom: 0; }

    .rf-vol__intro { grid-template-columns: minmax(0, 1fr); gap: 30px; margin-bottom: 46px; }
    .rf-vol__intro-fig { aspect-ratio: 16 / 9; }
    .rf-vol__scale { padding: 30px 26px 26px; }
    .rf-vol__row { grid-template-columns: minmax(0, 1fr) 82px; gap: 8px 14px; }
    .rf-vol__bar { grid-column: 1 / -1; order: 3; }
    .rf-vol__hint { grid-column: 1 / -1; order: 4; }

    .rf-flow__wrap { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .rf-ent__wrap { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .rf-son__grid { grid-template-columns: minmax(0, 1fr); }
    .rf-preis__wrap { grid-template-columns: minmax(0, 1fr); }
    .rf-calc__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .rf-plan__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .rf-gar__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .rf-gar__fig { position: static; }
    .rf-geo__wrap { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .rf-about__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .rf-faq__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .rf-faq__aside { position: static; }
    .rf-kt__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .rf-rev__cards, .rf-blog__grid, .rf-ref__grid, .rf-va__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rf-scn__grid { grid-template-columns: minmax(0, 1fr); }
    .rf-err__list { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .rf-mit__strip { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .rf-kost__aside { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .rf-foot__col--brand { padding-right: 0; grid-column: 1 / -1; }
    .rf-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
    .rf-foot__cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    :root { --pad: 54px; }
    body { font-size: 16px; }
    .rf-wrap { padding: 0 18px; }

    .rf-top__item--a, .rf-top__item--b { display: none; }
    .rf-top__inner { justify-content: center; }

    .rf-hero__h1 { font-size: clamp(2.15rem, 8vw, 2.9rem); }
    .rf-hero__act { gap: 10px; }
    .rf-hero__act .rf-btn { flex: 1 1 100%; }
    .rf-hero__jump { gap: 7px; padding-top: 18px; }
    .rf-hero__jump-lbl { flex: 1 0 100%; margin: 0 0 3px; }
    .rf-hero__jump a { flex: 1 1 auto; text-align: center; padding: 9px 10px; }

    .rf-obj__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .rf-reg__body { padding: 24px 22px 26px; }
    .rf-reg__tab { font-size: 1.1rem; padding: 10px 18px 9px; }
    .rf-reg__items { grid-template-columns: minmax(0, 1fr); gap: 22px; }
    .rf-son__body { padding: 24px 22px 26px; }
    .rf-flow__steps { grid-template-columns: minmax(0, 1fr); gap: 22px; }
    .rf-flow__fig img { aspect-ratio: 3 / 2; object-position: center; }
    .rf-mit__cols { grid-template-columns: minmax(0, 1fr); gap: 18px; }
    .rf-mit__col { padding: 24px 22px 26px; }
    .rf-kost__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .rf-calc__form { grid-template-columns: minmax(0, 1fr); }
    .rf-calc__panel { padding: 24px 20px 26px; }
    .rf-calc__res { flex-direction: column; align-items: stretch; gap: 14px; }
    .rf-calc__res .rf-btn { width: 100%; }
    .rf-plan__check { padding: 26px 22px 28px; }
    .rf-scn__card { padding: 26px 22px 28px; }
    .rf-adv__grid { grid-template-columns: minmax(0, 1fr); }
    .rf-va__grid, .rf-ref__grid, .rf-rev__cards, .rf-blog__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
    .rf-team__grid { gap: 16px; }
    .rf-geo__block { padding: 24px 20px 26px; }
    /* pills turn into a compact coverage table — 12 ragged rows are unreadable on a phone */
    .rf-geo__chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        border-radius: var(--r-s);
        overflow: hidden;
    }
    .rf-geo__chip {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        column-gap: 7px;
        row-gap: 1px;
        padding: 10px 11px;
        background: var(--paper);
        border: none;
        border-radius: 0;
        font-size: .87rem;
    }
    .rf-geo__chip small { grid-column: 2; font-size: .69rem; line-height: 1.32; white-space: normal; }
    .rf-geo__more { margin-top: 14px; }
    .rf-geo__note { padding: 20px 20px; }
    .rf-kt__form { padding: 26px 20px 28px; }
    .rf-kt__row { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .rf-seo { padding-bottom: 90px; }
    .rf-seo__box { padding: 26px 22px; }
    .rf-rev__score { align-items: flex-start; }
    .rf-foot { padding: 54px 0 108px; }
    .rf-foot__cta { padding: 26px 22px; margin-bottom: 40px; }
    .rf-foot__cta-act { width: 100%; }
    .rf-foot__cta-act .rf-btn { flex: 1 1 100%; }
    .rf-foot__col--kontakt { grid-column: 1 / -1; }
    .rf-foot__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .rf-fab__btn { width: 55px; height: 55px; }
    .rf-fab { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
    :root { --pad: 46px; }
    .rf-hero { padding: 30px 0 38px; }
    .rf-hero__h1 { font-size: 2.05rem; }
    .rf-hero__lead { font-size: 1rem; }
    .rf-flag { font-size: .74rem; padding: 7px 13px 7px 10px; }
    .rf-hero__jump a { font-size: .83rem; }
    .rf-ticket { padding: 16px 16px 15px; margin-top: -26px; }
    .rf-ticket__head { font-size: .7rem; letter-spacing: .06em; }
    .rf-ticket__score { font-size: .75rem; }
    .rf-ticket__row { padding: 9px 0; }
    .rf-ticket__row dt { font-size: .88rem; }
    .rf-ticket__row dd { font-size: .8rem; gap: 8px; }
    .rf-ticket__row dd b { font-size: .95rem; }
    .rf-ticket__foot { font-size: .82rem; }
    .rf-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rf-rail__item { padding: 16px 14px; }
    .rf-rail__item strong { font-size: 1.12rem; }
    .rf-rail__item span { font-size: .78rem; line-height: 1.4; hyphens: auto; overflow-wrap: break-word; }
    .rf-obj__grid { grid-template-columns: minmax(0, 1fr); }
    .rf-team__grid { grid-template-columns: minmax(0, 1fr); }
    .rf-va__pair { gap: 5px; }
    .rf-vol__scale { padding: 24px 18px 22px; }
    .rf-vol__name { font-size: .93rem; }
    .rf-faq__item summary { padding: 15px 16px; font-size: 1.1rem; }
    .rf-faq__item div { padding: 0 16px 18px; }
    .rf-preis__table thead th, .rf-preis__table tbody td { padding: 12px 16px; }
    .rf-preis__box { padding: 22px 20px 24px; }
    .rf-son__list li, .rf-plan__check li { font-size: .89rem; }
    .rf-foot__grid { gap: 26px 20px; }
    .rf-foot__links a, .rf-foot__ci { font-size: .88rem; }
}

@media (max-width: 375px) {
    .rf-wrap { padding: 0 14px; }
    .rf-hero__h1 { font-size: 1.92rem; }
    .rf-bar__brand-txt strong { font-size: 1.32rem; }
    .rf-bar__mark { width: 40px; height: 40px; }
    .rf-rail__item { padding: 14px 11px; }
    .rf-rail__item strong { font-size: 1.05rem; letter-spacing: -.01em; }
    .rf-rail__item span { font-size: .74rem; }
    .rf-ticket__row dd { flex-direction: column; align-items: flex-end; gap: 2px; }
    .rf-geo__chip { font-size: .83rem; padding: 9px 10px; }
    .rf-geo__chip small { font-size: .67rem; }
}
