/* =============================================================================
   Self-hosted Fonts (DSGVO-konform, kein Google-Aufruf)
   ============================================================================= */

/* DM Sans — latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* DM Sans — latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/dm-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Sora — latin-ext */
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/sora-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Sora — latin */
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/sora-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============================================================================
   RangHoch — Theme Components
   Nutzt Custom Properties aus style.css (--rh-*)
   ============================================================================= */

/* =============================================================================
   1. Hero-Sektion
   ============================================================================= */

.rh-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--rh-color-primary);
}

.rh-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.rh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

.rh-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
    padding-block: var(--rh-space-xxl);
    color: #fff;
}

.rh-hero__content h1,
.rh-hero__title {
    font-size: var(--rh-fs-xxl);
    color: #fff;
    margin-bottom: var(--rh-space-md);
    line-height: 1.15;
}

.rh-hero__subtitle {
    font-size: var(--rh-fs-lg);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--rh-space-xl);
    max-width: 640px;
}

.rh-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--rh-space-sm);
    padding: var(--rh-space-md) var(--rh-space-xl);
    background-color: var(--rh-color-accent);
    color: #fff;
    font-weight: 700;
    font-size: var(--rh-fs-md);
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    transition: background-color var(--rh-transition), transform var(--rh-transition);
}

.rh-hero__cta:hover {
    background-color: var(--rh-color-secondary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 48em) {
    .rh-hero {
        min-height: 400px;
    }
    .rh-hero__content {
        padding-block: var(--rh-space-xl);
    }
    .rh-hero__content h1,
    .rh-hero__title {
        font-size: var(--rh-fs-xl);
    }
    .rh-hero__subtitle {
        font-size: var(--rh-fs-md);
    }
}


/* =============================================================================
   2. CTA-Banner (Standard, Emergency, Subtle)
   ============================================================================= */

.rh-cta {
    background-color: var(--rh-color-primary);
    color: #fff;
    padding: var(--rh-space-xl) var(--rh-space-md);
    text-align: center;
}

.rh-cta__inner {
    max-width: var(--rh-max-width);
    margin-inline: auto;
}

.rh-cta__title {
    font-size: var(--rh-fs-xl);
    color: #fff;
    margin-bottom: var(--rh-space-md);
}

.rh-cta__text {
    font-size: var(--rh-fs-md);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--rh-space-lg);
}

.rh-cta__btn {
    display: inline-block;
    padding: var(--rh-space-md) var(--rh-space-xl);
    background-color: #fff;
    color: var(--rh-color-primary);
    font-weight: 700;
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    transition: background-color var(--rh-transition), color var(--rh-transition);
}

.rh-cta__btn:hover {
    background-color: var(--rh-color-accent);
    color: #fff;
    text-decoration: none;
}

/* Notdienst-Variante */
.rh-cta--emergency {
    background-color: #c0392b;
}

.rh-cta--emergency .rh-cta__title {
    font-size: var(--rh-fs-xxl);
}

.rh-cta--emergency .rh-cta__phone {
    display: block;
    font-size: var(--rh-fs-xxl);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
    margin-block: var(--rh-space-lg);
    text-decoration: none;
}

.rh-cta--emergency .rh-cta__phone:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Subtle-Variante */
.rh-cta--subtle {
    background-color: transparent;
    border: 2px solid var(--rh-color-primary);
    color: var(--rh-color-text);
}

.rh-cta--subtle .rh-cta__title {
    color: var(--rh-color-primary);
}

.rh-cta--subtle .rh-cta__text {
    color: var(--rh-color-text-muted);
}

.rh-cta--subtle .rh-cta__btn {
    background-color: var(--rh-color-primary);
    color: #fff;
}


/* =============================================================================
   3. Service-Cards
   ============================================================================= */

.rh-services {
    padding-block: var(--rh-space-xxl);
}

.rh-services__title {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rh-gap);
}

.rh-service-card {
    background-color: var(--rh-color-bg);
    border: 1px solid var(--rh-color-border);
    border-radius: var(--rh-radius-lg);
    padding: var(--rh-space-xl) var(--rh-space-lg);
    text-align: center;
    transition: box-shadow var(--rh-transition), transform var(--rh-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rh-service-card:hover {
    box-shadow: var(--rh-shadow-lg);
    transform: translateY(-4px);
}

.rh-service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--rh-color-primary) 10%, var(--rh-color-bg));
    border-radius: var(--rh-radius-full);
    margin-bottom: var(--rh-space-lg);
    font-size: 2rem;
    color: var(--rh-color-primary);
}

.rh-service-card__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--rh-color-primary);
}

.rh-service-card__title {
    font-size: var(--rh-fs-md);
    margin-bottom: var(--rh-space-sm);
}

.rh-service-card__desc {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    flex: 1;
    margin-bottom: var(--rh-space-lg);
}

.rh-service-card__link {
    font-size: var(--rh-fs-sm);
    font-weight: 600;
    color: var(--rh-color-primary);
    text-decoration: none;
}

.rh-service-card__link:hover {
    text-decoration: underline;
}

@media (max-width: 64em) {
    .rh-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48em) {
    .rh-services__grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================================================
   4. Testimonials
   ============================================================================= */

.rh-testimonials {
    padding-block: var(--rh-space-xxl);
    background-color: var(--rh-color-bg-alt);
}

.rh-testimonials__title {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--rh-gap);
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

.rh-testimonial {
    background-color: var(--rh-color-bg);
    border-radius: var(--rh-radius-lg);
    padding: var(--rh-space-xl);
    box-shadow: var(--rh-shadow-sm);
    position: relative;
}

.rh-testimonial::before {
    content: '\201C';
    font-family: var(--rh-font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--rh-color-primary);
    opacity: 0.2;
    position: absolute;
    top: var(--rh-space-sm);
    left: var(--rh-space-lg);
}

.rh-testimonial__text {
    font-size: var(--rh-fs-md);
    line-height: 1.7;
    color: var(--rh-color-text);
    margin-bottom: var(--rh-space-lg);
    font-style: italic;
}

.rh-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--rh-space-md);
}

.rh-testimonial__stars span {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #f4b400;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rh-testimonial__author {
    font-size: var(--rh-fs-sm);
    font-weight: 600;
    color: var(--rh-color-text);
}

.rh-testimonial__location {
    font-size: var(--rh-fs-xs);
    color: var(--rh-color-text-muted);
}


/* =============================================================================
   5. FAQ-Accordion (reines CSS, kein JS nötig)
   ============================================================================= */

.rh-faq {
    padding-block: var(--rh-space-xxl);
    max-width: var(--rh-content-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

.rh-faq__title {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-faq__item {
    border: 1px solid var(--rh-color-border);
    border-radius: var(--rh-radius-md);
    margin-bottom: var(--rh-space-sm);
    overflow: hidden;
}

.rh-faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--rh-space-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--rh-fs-md);
    list-style: none;
    background-color: var(--rh-color-bg);
    transition: background-color var(--rh-transition);
}

.rh-faq__item summary::-webkit-details-marker { display: none; }

.rh-faq__item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--rh-color-primary);
    flex-shrink: 0;
    margin-left: var(--rh-space-md);
    transition: transform var(--rh-transition);
}

.rh-faq__item[open] summary {
    background-color: var(--rh-color-bg-alt);
    color: var(--rh-color-primary);
}

.rh-faq__item[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}

.rh-faq__answer {
    padding: var(--rh-space-lg);
    padding-top: 0;
    background-color: var(--rh-color-bg-alt);
    color: var(--rh-color-text-muted);
    line-height: 1.7;
}


/* =============================================================================
   6. Trust-Signale / Partner-Leiste
   ============================================================================= */

.rh-trust {
    padding-block: var(--rh-space-xl);
    border-top: 1px solid var(--rh-color-border);
    border-bottom: 1px solid var(--rh-color-border);
}

.rh-trust__inner {
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--rh-space-xl);
}

.rh-trust__item {
    display: flex;
    align-items: center;
    gap: var(--rh-space-sm);
    font-size: var(--rh-fs-sm);
    font-weight: 600;
    color: var(--rh-color-text-muted);
}

.rh-trust__item::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--rh-color-primary);
    color: #fff;
    border-radius: var(--rh-radius-full);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.rh-partners {
    padding-block: var(--rh-space-xl);
}

.rh-partners__inner {
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--rh-space-xl);
}

.rh-partners__item img {
    height: 48px;
    width: auto;
    filter: grayscale(1) opacity(0.5);
    transition: filter var(--rh-transition);
}

.rh-partners__item img:hover {
    filter: grayscale(0) opacity(1);
}


/* =============================================================================
   7. Öffnungszeiten-Widget
   ============================================================================= */

.rh-hours {
    background-color: var(--rh-color-bg);
    border: 1px solid var(--rh-color-border);
    border-radius: var(--rh-radius-md);
    overflow: hidden;
}

.rh-hours__title {
    padding: var(--rh-space-md) var(--rh-space-lg);
    background-color: var(--rh-color-primary);
    color: #fff;
    font-size: var(--rh-fs-md);
    margin: 0;
}

.rh-hours table {
    width: 100%;
    border-collapse: collapse;
}

.rh-hours tr {
    border-bottom: 1px solid var(--rh-color-border);
}

.rh-hours tr:last-child {
    border-bottom: none;
}

.rh-hours td {
    padding: var(--rh-space-sm) var(--rh-space-lg);
    font-size: var(--rh-fs-sm);
}

.rh-hours td:first-child {
    font-weight: 600;
    width: 50%;
}

.rh-hours td:last-child {
    color: var(--rh-color-text-muted);
    text-align: right;
}

.rh-hours__today {
    background-color: color-mix(in srgb, var(--rh-color-primary) 8%, var(--rh-color-bg));
}

.rh-hours__today td:first-child {
    color: var(--rh-color-primary);
}

.rh-hours__open {
    color: #27ae60 !important;
    font-weight: 600;
}

.rh-hours__closed {
    color: #e74c3c !important;
}


/* =============================================================================
   8. Kontaktformular
   ============================================================================= */

.rh-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-lg);
}

.rh-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-xs);
}

.rh-form-group label {
    font-size: var(--rh-fs-sm);
    font-weight: 600;
    color: var(--rh-color-text);
}

.rh-form-group input,
.rh-form-group select,
.rh-form-group textarea {
    width: 100%;
    padding: var(--rh-space-md);
    border: 1.5px solid var(--rh-color-border);
    border-radius: var(--rh-radius-md);
    font-family: var(--rh-font-body);
    font-size: var(--rh-fs-base);
    color: var(--rh-color-text);
    background-color: var(--rh-color-bg);
    transition: border-color var(--rh-transition), box-shadow var(--rh-transition);
    appearance: none;
}

.rh-form-group input:focus,
.rh-form-group select:focus,
.rh-form-group textarea:focus {
    outline: none;
    border-color: var(--rh-color-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--rh-color-primary) 20%, transparent);
}

.rh-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.rh-form-group--error input,
.rh-form-group--error select,
.rh-form-group--error textarea {
    border-color: #e74c3c;
}

.rh-form-group__error-msg {
    font-size: var(--rh-fs-xs);
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: var(--rh-space-xs);
}

.rh-form-group__error-msg::before {
    content: '\26A0';
}

.rh-contact-success {
    padding: var(--rh-space-lg);
    background-color: color-mix(in srgb, #27ae60 10%, var(--rh-color-bg));
    border: 1px solid #27ae60;
    border-radius: var(--rh-radius-md);
    color: #1e8449;
    font-weight: 600;
}

.rh-contact-error {
    padding: var(--rh-space-lg);
    background-color: color-mix(in srgb, #e74c3c 10%, var(--rh-color-bg));
    border: 1px solid #e74c3c;
    border-radius: var(--rh-radius-md);
    color: #c0392b;
    font-weight: 600;
}

.rh-contact-form .rh-btn-submit {
    align-self: flex-start;
    padding: var(--rh-space-md) var(--rh-space-xl);
    background-color: var(--rh-color-primary);
    color: #fff;
    border: none;
    border-radius: var(--rh-radius-md);
    font-family: var(--rh-font-body);
    font-size: var(--rh-fs-base);
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--rh-transition), transform var(--rh-transition);
}

.rh-contact-form .rh-btn-submit:hover {
    background-color: var(--rh-color-secondary);
    transform: translateY(-1px);
}

@media (max-width: 48em) {
    .rh-contact-form .rh-btn-submit {
        width: 100%;
        text-align: center;
    }
}


/* =============================================================================
   9. Accessibility
   ============================================================================= */

/* Skip-to-Content */
.rh-skip-link {
    position: absolute;
    top: -100%;
    left: var(--rh-space-md);
    background-color: var(--rh-color-primary);
    color: #fff;
    padding: var(--rh-space-sm) var(--rh-space-lg);
    border-radius: 0 0 var(--rh-radius-md) var(--rh-radius-md);
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
}

.rh-skip-link:focus {
    top: 0;
    outline: 3px solid var(--rh-color-accent);
    outline-offset: 2px;
}

/* Focus-Visible: sichtbarer Ring fuer Tastaturnavigation */
:focus-visible {
    outline: 3px solid var(--rh-color-primary);
    outline-offset: 3px;
    border-radius: var(--rh-radius-sm);
}

/* prefers-reduced-motion: alle Animationen/Transitions deaktivieren */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =============================================================================
   10. Hero — Landingpage-Variante (front-page)
   ============================================================================= */

.rh-hero--landing {
    background:
        radial-gradient(ellipse 65% 55% at 82% 8%, rgba(240,94,28,0.22) 0%, transparent 58%),
        radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px),
        #1a1a2e;
    background-size: auto, 36px 36px, auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.rh-hero--landing .rh-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 5rem;
    max-width: 860px;
}

.rh-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rh-color-accent);
    margin-bottom: 1.75rem;
}

.rh-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--rh-color-accent);
    border-radius: 1px;
    flex-shrink: 0;
}

.rh-hero--landing h1 {
    font-family: var(--rh-font-heading);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
}

.rh-hero--landing h1 em {
    color: var(--rh-color-accent);
    font-style: normal;
}

.rh-hero--landing .rh-hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.62);
    max-width: 520px;
    margin-bottom: 0.25rem;
    line-height: 1.75;
}

.rh-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Scroll-Hint Linie */
.rh-hero__scroll {
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.2);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    user-select: none;
}

.rh-hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(240,94,28,0.6), transparent);
    animation: rh-scroll-drop 2s ease-in-out infinite;
}

@keyframes rh-scroll-drop {
    0%   { opacity: 0; transform: translateY(-6px); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Buttons */
.rh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--rh-color-accent);
    color: #fff;
    font-family: var(--rh-font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    transition: background var(--rh-transition), transform var(--rh-transition), box-shadow var(--rh-transition);
    box-shadow: 0 4px 16px rgba(240,94,28,0.35);
}

.rh-btn-primary:hover {
    background: var(--rh-color-secondary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,94,28,0.4);
}

.rh-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    transition: border-color var(--rh-transition), color var(--rh-transition);
}

.rh-btn-ghost:hover {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
    text-decoration: none;
}

/* Stats Strip */
.rh-stats-strip {
    background: #0d0d1a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2.25rem 0;
}

.rh-stats-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 1rem;
}

.rh-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.rh-stat__num {
    font-family: var(--rh-font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.rh-stat__num sup {
    font-size: 0.6em;
    color: var(--rh-color-accent);
    letter-spacing: 0;
}

.rh-stat__label {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.rh-stats-strip__sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

@media (max-width: 48em) {
    .rh-hero--landing { min-height: 100svh; }
    .rh-hero--landing h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .rh-hero__cta-group { flex-direction: column; align-items: flex-start; }
    .rh-hero__scroll { display: none; }
    .rh-stats-strip__inner { gap: 1.5rem; }
    .rh-stats-strip__sep { display: none; }
    .rh-stat__num { font-size: 1.75rem; }
}


/* =============================================================================
   11. Problem-Sektion
   ============================================================================= */

.rh-problem {
    padding-block: 6rem;
    background: var(--rh-color-bg);
}

.rh-problem__intro {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 4rem;
    padding-inline: 1rem;
}

.rh-problem__intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--rh-color-text);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.rh-problem__intro p {
    font-size: 1.1rem;
    color: var(--rh-color-text-muted);
    line-height: 1.7;
}

.rh-problem__list {
    display: flex;
    flex-direction: column;
    max-width: 820px;
    margin-inline: auto;
    padding-inline: 1rem;
}

.rh-problem__item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.75rem 0;
    border-bottom: 1px solid var(--rh-color-border);
    transition: background var(--rh-transition);
}

.rh-problem__item:last-child { border-bottom: none; }

.rh-problem__num {
    font-family: var(--rh-font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--rh-color-accent);
    line-height: 1;
    letter-spacing: -0.06em;
    opacity: 0.18;
    transition: opacity 0.25s;
    user-select: none;
    padding-top: 0.1em;
}

.rh-problem__item:hover .rh-problem__num { opacity: 1; }

.rh-problem__body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rh-color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.rh-problem__body p {
    font-size: 0.95rem;
    color: var(--rh-color-text-muted);
    line-height: 1.72;
    margin: 0;
}

@media (max-width: 48em) {
    .rh-problem { padding-block: 4rem; }
    .rh-problem__item { grid-template-columns: 56px 1fr; gap: 1.25rem; }
    .rh-problem__num { font-size: 2.75rem; }
}


/* Quellennachweis */
.rh-quellen {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: var(--rh-space-xl);
    line-height: 1.5;
}

/* =============================================================================
   12. Leistungen-Sektion
   ============================================================================= */

.rh-leistungen {
    padding-block: var(--rh-space-xxl);
    background: var(--rh-color-bg-alt);
}

.rh-leistungen__header {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-leistungen__header h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-leistungen__header p {
    font-size: var(--rh-fs-md);
    color: var(--rh-color-text-muted);
    max-width: 540px;
    margin-inline: auto;
}

.rh-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--rh-space-lg);
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

.rh-leistung {
    background: var(--rh-color-bg);
    border-radius: var(--rh-radius-lg);
    padding: var(--rh-space-xl);
    box-shadow: var(--rh-shadow-sm);
    display: flex;
    gap: var(--rh-space-lg);
    align-items: flex-start;
}

.rh-leistung__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: color-mix(in srgb, var(--rh-color-accent) 12%, var(--rh-color-bg));
    border-radius: var(--rh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rh-color-accent);
}

.rh-leistung__body h3 {
    font-size: var(--rh-fs-md);
    margin-bottom: var(--rh-space-sm);
}

.rh-leistung__body p {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    line-height: 1.65;
    margin-bottom: var(--rh-space-md);
}

.rh-leistung__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-xs);
}

.rh-leistung__list li {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    padding-left: 1.25rem;
    position: relative;
}

.rh-leistung__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rh-color-accent);
    font-weight: 700;
}

@media (max-width: 48em) {
    .rh-leistungen__grid { grid-template-columns: 1fr; }
    .rh-leistung { flex-direction: column; gap: var(--rh-space-md); }
}


/* =============================================================================
   12b. Warum eine Website?
   ============================================================================= */

.rh-warum {
    padding-block: 6rem;
    background: var(--rh-color-bg-alt);
}

.rh-warum__intro {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 4rem;
    padding-inline: 1rem;
}

.rh-warum__intro h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--rh-color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.rh-warum__intro p {
    font-size: 1.05rem;
    color: var(--rh-color-text-muted);
    line-height: 1.72;
}

.rh-warum__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: 1rem;
}

.rh-warum__card {
    background: var(--rh-color-bg);
    border-radius: var(--rh-radius-lg);
    padding: 2rem;
    border: 1px solid var(--rh-color-border);
    transition: border-color var(--rh-transition), box-shadow var(--rh-transition), transform var(--rh-transition);
}

.rh-warum__card:hover {
    border-color: var(--rh-color-accent);
    box-shadow: var(--rh-shadow-md);
    transform: translateY(-3px);
}

.rh-warum__card-icon {
    width: 52px;
    height: 52px;
    background: color-mix(in srgb, var(--rh-color-accent) 10%, var(--rh-color-bg));
    border-radius: var(--rh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rh-color-accent);
    margin-bottom: 1.25rem;
}

.rh-warum__card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rh-color-text);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.rh-warum__card p {
    font-size: 0.9rem;
    color: var(--rh-color-text-muted);
    line-height: 1.72;
    margin: 0;
}

.rh-warum__card p em {
    color: var(--rh-color-text);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 64em) {
    .rh-warum__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 48em) {
    .rh-warum { padding-block: 4rem; }
    .rh-warum__grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   13. Showcase-Sektion (fiktive Handwerker-Websites)
   ============================================================================= */

.rh-showcase {
    padding-block: var(--rh-space-xxl);
    background: var(--rh-color-bg);
}

.rh-showcase__header {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
    max-width: 640px;
    margin-inline: auto;
}

.rh-showcase__header h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-showcase__header p {
    font-size: var(--rh-fs-md);
    color: var(--rh-color-text-muted);
}

.rh-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rh-space-lg);
    align-items: center;
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

/* Showcase Card Wrapper */
.rh-showcase-card {
    transition: transform var(--rh-transition), box-shadow var(--rh-transition);
}

.rh-showcase-card:hover {
    transform: translateY(-4px);
}

.rh-showcase-card__label {
    padding: 10px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rh-color-text-muted);
    text-align: center;
    letter-spacing: 0.02em;
    margin-top: var(--rh-space-sm);
}

/* ---- Browser-Frame (Desktop — Karte 1) ---- */
.rh-browser {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--rh-shadow-lg);
    border: 1px solid var(--rh-color-border);
}

.rh-browser__chrome {
    background: #e8e8e8;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rh-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.rh-browser__dot--red    { background: #ff5f57; }
.rh-browser__dot--yellow { background: #febc2e; }
.rh-browser__dot--green  { background: #28c840; }

.rh-browser__url {
    flex: 1;
    margin-left: 8px;
    background: #fff;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.68rem;
    color: #666;
    font-family: system-ui, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Tablet-Frame (Karte 2) ---- */
.rh-device-tablet {
    border-radius: 16px;
    border: 2px solid #2a2a2a;
    background: #0d0d0d;
    padding: 8px;
    overflow: hidden;
    box-shadow: var(--rh-shadow-lg);
}

.rh-device-tablet__screen {
    border-radius: 10px;
    overflow: hidden;
}

.rh-device-tablet__home {
    width: 40px;
    height: 4px;
    background: #555;
    border-radius: 2px;
    margin: 8px auto 4px;
}

/* ---- Smartphone-Frame (Karte 3) ---- */
.rh-device-phone {
    border-radius: 24px;
    border: 2px solid #2a2a2a;
    background: #1a1a1a;
    padding: 6px;
    max-width: 260px;
    margin-inline: auto;
    overflow: hidden;
    box-shadow: var(--rh-shadow-lg);
}

.rh-device-phone__statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    background: #2d4a3e;
    border-radius: 18px 18px 0 0;
    font-family: system-ui, sans-serif;
}

.rh-device-phone__statusicons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rh-device-phone__wifi {
    display: inline-block;
    width: 14px;
    height: 10px;
    border: 2px solid rgba(255,255,255,0.7);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.rh-device-phone__battery {
    display: inline-block;
    width: 16px;
    height: 8px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 2px;
    position: relative;
}

.rh-device-phone__battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 1px;
    width: 2px;
    height: 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 0 1px 1px 0;
}

.rh-device-phone__screen {
    overflow: hidden;
}

.rh-device-phone__nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 6px;
    font-size: 14px;
    color: #555;
}

/* ---- Mock-Website (shared) ---- */
.rh-mock-site {
    font-family: system-ui, sans-serif;
    font-size: 13px;
}

.rh-mock-site__header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.rh-mock-site__logo {
    font-weight: 700;
    font-size: 14px;
}

.rh-mock-site__nav {
    font-size: 10px;
    opacity: 0.8;
    display: flex;
    gap: 12px;
}

.rh-mock-site__hero {
    padding: 22px 16px 18px;
    background: #f8f9fa;
}

.rh-mock-site__hero h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a2e;
    line-height: 1.35;
}

.rh-mock-site__hero p {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.rh-mock-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.rh-mock-btn--full {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

/* Trade-specific header colors */
.rh-mock-site__header--shk    { background: #1e3a5f; }
.rh-mock-site__header--elektro { background: #0d0d0d; }
.rh-mock-site__header--maler  { background: #2d4a3e; }

.rh-mock-btn--shk    { background: #1a1a2e; border-radius: 3px; letter-spacing: 0.05em; font-size: 11px; }
.rh-mock-btn--elektro { background: #f05e1c; border-radius: 20px; font-weight: 700; }
.rh-mock-btn--maler  { background: #059669; border-radius: 20px; }
.rh-mock-btn--maler-outline {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #059669;
    background: transparent;
    border: 1.5px solid #059669;
    text-decoration: none;
    margin-top: 8px;
}

/* Notdienst-Badge (Karte 1) */
.rh-mock-badge--notdienst {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc2626;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rh-mock-badge--notdienst::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: rh-pulse 1.5s ease-in-out infinite;
}

@keyframes rh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Telefonnummer (Karte 1) */
.rh-mock-phone {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.01em;
}

/* Hamburger-Icon (Karte 2) */
.rh-mock-hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: default;
}

.rh-mock-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
}

/* Service-Icons (Karte 2) */
.rh-mock-icons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.rh-mock-icons__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.rh-mock-icons__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e5e5;
    font-size: 16px;
    background: #fff;
}

.rh-mock-icons__label {
    font-size: 9px;
    color: #64748b;
}

/* Sterne-Bewertung */
.rh-mock-stars {
    margin: 8px 0;
    font-size: 10px;
    color: #64748b;
}

.rh-mock-stars__icons {
    color: #f59e0b;
    font-size: 12px;
    margin-right: 4px;
}

.rh-mock-stars--prominent .rh-mock-stars__icons {
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

.rh-mock-stars--prominent .rh-mock-stars__text {
    font-size: 10px;
}

/* Phone-Icon in Header (Karte 3) */
.rh-mock-phone-icon {
    font-size: 18px;
    color: #fff;
}

/* Farbfächer (Karte 3) */
.rh-mock-colors {
    display: flex;
    gap: 6px;
    margin: 8px 0;
}

.rh-mock-colors__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
}

@media (max-width: 64em) {
    .rh-showcase__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .rh-device-phone {
        max-width: 280px;
    }
}


/* =============================================================================
   14. Vertrauen-Sektion
   ============================================================================= */

.rh-vertrauen {
    padding-block: var(--rh-space-xxl);
    background: #1a1a2e;
    color: #fff;
}

.rh-vertrauen__header {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-vertrauen__header h2 {
    font-size: var(--rh-fs-xl);
    color: #fff;
    margin-bottom: var(--rh-space-sm);
}

.rh-vertrauen__header p {
    color: rgba(255,255,255,0.65);
    font-size: var(--rh-fs-md);
    max-width: 480px;
    margin-inline: auto;
}

.rh-vertrauen__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--rh-space-md);
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

.rh-vertrauen__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--rh-space-sm);
    padding: var(--rh-space-lg) var(--rh-space-md);
    background: rgba(255,255,255,0.05);
    border-radius: var(--rh-radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}

.rh-vertrauen__item__icon {
    font-size: 1.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f05e1c;
}

.rh-vertrauen__item__label {
    font-size: var(--rh-fs-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.rh-vertrauen__item__sub {
    font-size: var(--rh-fs-xs);
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

@media (max-width: 64em) {
    .rh-vertrauen__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 48em) {
    .rh-vertrauen__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Inline-Logo im Heading */
.rh-vertrauen__heading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
    flex-wrap: wrap;
    line-height: 1.1;
}
.rh-vertrauen__logo-inline {
    display: block;
    height: 0.82em;
    width: auto;
    overflow: visible;
    flex-shrink: 0;
}


/* =============================================================================
   15. Preise-Sektion (Platzhalter)
   ============================================================================= */

.rh-preise {
    padding-block: var(--rh-space-xxl);
    background: var(--rh-color-bg-alt);
}

.rh-preise__header {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-preise__header h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-preise__header p {
    font-size: var(--rh-fs-md);
    color: var(--rh-color-text-muted);
}

.rh-preise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rh-space-lg);
    max-width: 900px;
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

.rh-preise__grid--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--rh-max-width);
}

.rh-preise__subheading {
    text-align: center;
    font-size: var(--rh-fs-md);
    font-weight: 600;
    color: var(--rh-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--rh-space-lg);
}

.rh-preise__subheading--mt {
    margin-top: var(--rh-space-xxl);
}

.rh-preise__note {
    text-align: center;
    font-size: var(--rh-fs-xs);
    color: var(--rh-color-text-muted);
    margin-top: var(--rh-space-xl);
}

/* Leistungen — Preis-Link */
.rh-leistung__price-link {
    display: inline-block;
    margin-top: var(--rh-space-md);
    font-weight: 600;
    color: var(--rh-color-accent);
    text-decoration: none;
    font-size: var(--rh-fs-sm);
    transition: color var(--rh-transition);
}
.rh-leistung__price-link:hover {
    color: var(--rh-color-text);
}

/* Extras-Sektion (Mini-Karten) */
.rh-extras {
    margin-top: var(--rh-space-xl);
}

.rh-extras__intro {
    text-align: center;
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-md);
    margin-bottom: var(--rh-space-md);
}

.rh-extras__section {
    margin-bottom: var(--rh-space-lg);
}

.rh-extras__category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rh-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--rh-space-sm);
    padding-bottom: var(--rh-space-xs);
    border-bottom: 1px solid var(--rh-color-border);
}

.rh-extras__category-icon {
    color: #f05e1c;
    flex-shrink: 0;
}

.rh-extras__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.rh-extras__card {
    background: var(--rh-color-bg-alt);
    border: 1px solid var(--rh-color-border);
    border-radius: 10px;
    padding: 16px;
    transition: border-color var(--rh-transition), transform var(--rh-transition);
    position: relative;
}

.rh-extras__card:hover {
    border-color: #f05e1c;
    transform: translateY(-2px);
}

.rh-extras__card-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #f05e1c;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.rh-extras__card-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rh-color-text);
    margin-bottom: 6px;
}

.rh-extras__card-desc {
    font-size: 0.78rem;
    color: var(--rh-color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Highlight-Karte (Spar-Tipp) */
.rh-extras__card--highlight {
    border-color: #f05e1c;
    background: rgba(240, 94, 28, 0.04);
}

.rh-extras__card-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: #f05e1c;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@media (max-width: 40em) {
    .rh-extras__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 28em) {
    .rh-extras__grid {
        grid-template-columns: 1fr;
    }
}

/* Exit-Paket */
.rh-preise__exit {
    margin-top: var(--rh-space-xl);
    padding: var(--rh-space-lg);
    background: var(--rh-color-surface);
    border-radius: var(--rh-radius-lg);
    text-align: left;
}
.rh-preise__exit h3 {
    font-size: var(--rh-fs-md);
    margin-bottom: var(--rh-space-xs);
}
.rh-preise__exit p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-sm);
}

/* Rechenbeispiel */
.rh-rechenbeispiel {
    padding: var(--rh-space-xl) 0;
}

/* Legal-Seiten (Impressum, Datenschutz) */
.rh-legal {
    padding-top: var(--rh-space-lg);
}

.rh-legal h1 {
    margin-bottom: var(--rh-space-lg);
}

@media (max-width: 48em) {
    .rh-legal h1 {
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

.rh-legal__content h2 {
    margin-top: var(--rh-space-lg);
    margin-bottom: var(--rh-space-sm);
}

.rh-legal__content p,
.rh-legal__content ul {
    margin-bottom: var(--rh-space-sm);
}

/* Rechenbeispiel — immer dunkel, Dark Mode ignorieren */
.rh-rechenbeispiel__box {
    background: #1a1a2e;
    border-radius: var(--rh-radius-lg);
    padding: var(--rh-space-xl);
    max-width: 520px;
    margin: 0 auto;
    box-shadow: var(--rh-shadow-lg);
    overflow: hidden;
    position: relative;
}

.rh-rechenbeispiel__box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(240,94,28,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.rh-rechenbeispiel__header {
    margin-bottom: var(--rh-space-lg);
}

.rh-rechenbeispiel__eyebrow {
    display: inline-block;
    font-size: var(--rh-fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rh-color-accent);
    margin-bottom: var(--rh-space-xs);
}

.rh-rechenbeispiel__box h3 {
    font-size: var(--rh-fs-lg);
    margin: 0;
    color: #fff;
}

.rh-rechenbeispiel__content {
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-sm);
}

.rh-rechenbeispiel__line {
    display: grid;
    grid-template-columns: 1.5rem 1fr auto;
    align-items: center;
    gap: var(--rh-space-sm);
    padding: var(--rh-space-sm) 0;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rh-rechenbeispiel__line em {
    font-style: normal;
    font-size: var(--rh-fs-sm);
    color: rgba(255,255,255,0.5);
}

.rh-rechenbeispiel__line--free {
    color: rgba(255,255,255,0.6);
}

.rh-rechenbeispiel__icon {
    color: var(--rh-color-accent);
    display: flex;
    align-items: center;
}

.rh-rechenbeispiel__price {
    font-weight: 700;
    font-size: var(--rh-fs-base);
    color: #fff;
    white-space: nowrap;
}

.rh-rechenbeispiel__price--free {
    color: #4ade80;
    font-size: var(--rh-fs-sm);
    font-weight: 600;
}

.rh-rechenbeispiel__divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: var(--rh-space-sm) 0;
}

.rh-rechenbeispiel__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--rh-space-sm) 0;
}

.rh-rechenbeispiel__total-label {
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    font-size: var(--rh-fs-sm);
}

.rh-rechenbeispiel__total-price {
    font-size: var(--rh-fs-2xl);
    font-weight: 700;
    color: var(--rh-color-accent);
    line-height: 1;
}

.rh-rechenbeispiel__total-price small {
    font-size: var(--rh-fs-sm);
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 0.25rem;
}

.rh-rechenbeispiel__hint {
    font-size: var(--rh-fs-sm);
    color: rgba(255,255,255,0.4);
    margin-top: var(--rh-space-xs);
    margin-bottom: 0;
}

.rh-rechenbeispiel__cta {
    display: block;
    text-align: center;
    margin-top: var(--rh-space-lg);
}

/* Dark Mode: Icons + Totalpreis weiß (Box-Hintergrund kann durch --rh-color-primary-Vererbung orange wirken) */
[data-theme="dark"] .rh-rechenbeispiel__icon,
[data-theme="dark"] .rh-rechenbeispiel__total-price {
    color: #fff;
}

@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .rh-rechenbeispiel__icon,
    html:not([data-theme="light"]) .rh-rechenbeispiel__total-price {
        color: #fff;
    }
}

/* legacy — kept for compat */
.rh-rechenbeispiel__box .rh-btn--outline {
    display: inline-block;
    margin-top: var(--rh-space-md);
    border: 2px solid var(--rh-color-accent);
    color: var(--rh-color-accent);
    padding: var(--rh-space-sm) var(--rh-space-lg);
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background var(--rh-transition), color var(--rh-transition);
}

.rh-rechenbeispiel__box .rh-btn--outline:hover {
    background: var(--rh-color-accent);
    color: #fff;
}

/* Rechner-Unterseite Hero */
.rh-rechner-hero {
    padding: var(--rh-space-3xl) 0 var(--rh-space-xl);
    text-align: center;
}

.rh-rechner-hero h1 {
    font-size: var(--rh-fs-2xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-rechner-hero p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-lg);
    max-width: 600px;
    margin: 0 auto;
}

.rh-rechner-back {
    margin-bottom: var(--rh-space-sm);
}

.rh-rechner-back a {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-sm);
    text-decoration: none;
}

.rh-rechner-back a:hover {
    color: var(--rh-color-accent);
}

.rh-preis-card {
    background: var(--rh-color-bg);
    border-radius: var(--rh-radius-lg);
    padding: var(--rh-space-xl);
    border: 2px solid var(--rh-color-border);
    text-align: center;
    position: relative;
    transition: border-color var(--rh-transition), box-shadow var(--rh-transition);
    display: flex;
    flex-direction: column;
}

.rh-preis-card--featured {
    border-color: var(--rh-color-accent);
    box-shadow: var(--rh-shadow-md);
}

.rh-preis-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rh-color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: var(--rh-radius-full);
    white-space: nowrap;
}

.rh-preis-card__name {
    font-size: var(--rh-fs-md);
    font-weight: 700;
    margin-bottom: var(--rh-space-sm);
    color: var(--rh-color-text);
}

.rh-preis-card__price {
    font-size: var(--rh-fs-xxl);
    font-weight: 800;
    color: var(--rh-color-primary);
    letter-spacing: -0.03em;
    margin-bottom: var(--rh-space-md);
}

.rh-preis-card__currency {
    font-size: var(--rh-fs-md);
    font-weight: 600;
    vertical-align: super;
}

.rh-preis-card__coming {
    font-size: var(--rh-fs-xs);
    font-weight: 600;
    color: var(--rh-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px dashed var(--rh-color-border);
    border-radius: var(--rh-radius-sm);
    padding: var(--rh-space-xs) var(--rh-space-md);
    display: inline-block;
    margin-bottom: var(--rh-space-lg);
}

.rh-preis-card__features {
    list-style: none;
    text-align: left;
    margin: 0 0 var(--rh-space-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-sm);
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    flex-grow: 1;
}

.rh-preis-card__features li::before {
    content: '✓  ';
    color: var(--rh-color-accent);
    font-weight: 700;
}

.rh-preis-card__cta {
    display: block;
    margin-top: auto;
    padding: var(--rh-space-sm) var(--rh-space-md);
    background: var(--rh-color-accent);
    color: #fff;
    font-weight: 700;
    font-size: var(--rh-fs-sm);
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    transition: background-color var(--rh-transition);
}

.rh-preis-card__cta:hover {
    background: var(--rh-color-accent);
    color: #fff;
    text-decoration: none;
}

.rh-preis-card--featured .rh-preis-card__cta {
    background: var(--rh-color-accent);
}

.rh-preis-card--featured .rh-preis-card__cta:hover {
    background: var(--rh-color-secondary);
}

/* Care-Variante (Betreuungspakete) — dezenter, ohne CTA-Button */
.rh-preis-card--care {
    border-color: var(--rh-color-border);
    background: var(--rh-color-bg-alt);
}

.rh-preis-card--care .rh-preis-card__price {
    font-size: var(--rh-fs-xl);
    color: var(--rh-color-primary);
}

@media (max-width: 64em) {
    .rh-preise__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 48em) {
    .rh-preise__grid { grid-template-columns: 1fr; max-width: 400px; }
    .rh-preise__grid--4 { grid-template-columns: 1fr; max-width: 420px; }
}

/* Preis-Toggle */
.rh-preise__toggle-row .rh-preise__subheading {
    margin-bottom: 0;
    text-align: left;
}

.rh-preise__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--rh-space-md);
    margin-top: var(--rh-space-xl);
    margin-bottom: var(--rh-space-md);
}

.rh-price-toggle {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.rh-price-toggle__label {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    transition: color .2s;
}
.rh-price-toggle__label--active {
    color: var(--rh-color-text);
    font-weight: 600;
}

.rh-price-toggle__badge {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    background: #dcfce7;
    color: #166534;
    padding: 0.1em 0.4em;
    border-radius: var(--rh-radius-sm);
    margin-left: 0.25em;
}

.rh-price-toggle__btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.rh-price-toggle__track {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--rh-color-accent);
    border-radius: var(--rh-radius-full);
    position: relative;
    transition: background .2s;
}

.rh-price-toggle__btn[aria-pressed="true"] .rh-price-toggle__track {
    background: var(--rh-color-text-muted);
}

.rh-price-toggle__thumb {
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.rh-price-toggle__btn[aria-pressed="true"] .rh-price-toggle__thumb {
    transform: translateX(20px);
}

@media (max-width: 48em) {
    .rh-preise__toggle-row { flex-direction: column; align-items: flex-start; }
}


/* =============================================================================
   16. CTA-Banner — Abschluss
   ============================================================================= */

.rh-cta-final {
    background: var(--rh-color-accent);
    padding-block: var(--rh-space-xxl);
    text-align: center;
}

.rh-cta-final__inner {
    max-width: 640px;
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

.rh-cta-final h2 {
    font-size: var(--rh-fs-xl);
    color: #fff;
    margin-bottom: var(--rh-space-md);
}

.rh-cta-final p {
    font-size: var(--rh-fs-md);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--rh-space-xl);
}

.rh-btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: var(--rh-space-sm);
    padding: var(--rh-space-md) var(--rh-space-xxl);
    background: #fff;
    color: var(--rh-color-accent);
    font-family: var(--rh-font-heading);
    font-weight: 800;
    font-size: var(--rh-fs-md);
    border-radius: var(--rh-radius-md);
    text-decoration: none;
    transition: transform var(--rh-transition), box-shadow var(--rh-transition);
}

.rh-btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--rh-color-secondary);
    text-decoration: none;
}


/* =============================================================================
   Akkordeon (geteilt: FAQ, Prozess, Paket-Details)
   ============================================================================= */

.rh-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

/* Reset für alle Akkordeon-Buttons — überschreibt WP-Defaults */
.rh-accordion__btn,
.rh-care-details__toggle {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.rh-accordion__btn:focus-visible,
.rh-care-details__toggle:focus-visible {
    outline: 2px solid var(--rh-color-accent);
    outline-offset: 2px;
}

.rh-accordion__body {
    padding: var(--rh-space-md) var(--rh-space-lg) var(--rh-space-lg);
}

.rh-accordion__body p {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    line-height: 1.65;
    margin-bottom: var(--rh-space-sm);
}

.rh-accordion__body ul {
    list-style: none;
    padding: 0;
    margin: var(--rh-space-sm) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-xs);
}

.rh-accordion__body ul li {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    padding-left: 1.25rem;
    position: relative;
}

.rh-accordion__body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rh-color-accent);
    font-weight: 700;
}

.rh-accordion__chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

[aria-expanded="true"] .rh-accordion__chevron {
    transform: rotate(180deg);
}


/* =============================================================================
   Prozess-Sektion
   ============================================================================= */

.rh-prozess {
    padding-block: var(--rh-space-xxl);
    background: var(--rh-color-bg);
}

.rh-prozess__header {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
}

.rh-prozess__header h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-prozess__header p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-md);
}

.rh-prozess__accordion {
    max-width: 740px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--rh-color-border);
    border-radius: var(--rh-radius-lg);
    overflow: hidden;
}

.rh-prozess__accordion .rh-accordion__item {
    border-bottom: 1px solid var(--rh-color-border);
}

.rh-prozess__accordion .rh-accordion__item:last-child {
    border-bottom: none;
}

.rh-prozess__accordion .rh-accordion__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--rh-space-md);
    padding: var(--rh-space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background-color 0.2s;
}

.rh-prozess__accordion .rh-accordion__btn:hover {
    background: var(--rh-color-bg-alt);
}

.rh-prozess__accordion .rh-accordion__btn[aria-expanded="true"] {
    background: var(--rh-color-bg-alt);
}

.rh-prozess__num {
    font-size: var(--rh-fs-sm);
    font-weight: 800;
    color: var(--rh-color-accent);
    letter-spacing: 0.05em;
    min-width: 2rem;
}

.rh-prozess__accordion .rh-accordion__title {
    flex-grow: 1;
    font-size: var(--rh-fs-md);
    font-weight: 600;
    color: var(--rh-color-text);
}

.rh-prozess__accordion .rh-accordion__chevron {
    color: var(--rh-color-text-muted);
    margin-left: auto;
}

.rh-prozess__accordion .rh-accordion__body {
    padding: 0 var(--rh-space-lg) var(--rh-space-lg) calc(2rem + var(--rh-space-md) + var(--rh-space-md));
}

.rh-prozess__tag {
    display: inline-block;
    margin-top: var(--rh-space-md);
    font-size: var(--rh-fs-xs);
    font-weight: 600;
    color: var(--rh-color-accent);
    background: color-mix(in srgb, var(--rh-color-accent) 10%, var(--rh-color-bg));
    padding: 0.2em 0.75em;
    border-radius: var(--rh-radius-full);
}


/* =============================================================================
   Paket-Details Toggle (Care Cards)
   ============================================================================= */

.rh-care-details {
    margin-bottom: var(--rh-space-sm);
}

.rh-care-details__toggle {
    display: flex;
    align-items: center;
    gap: 0.3em;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--rh-fs-xs);
    font-weight: 600;
    color: var(--rh-color-accent);
    padding: var(--rh-space-xs) 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.rh-care-details__toggle:hover {
    text-decoration-color: var(--rh-color-accent);
}

.rh-care-details__list {
    list-style: none;
    padding: var(--rh-space-sm) 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--rh-space-xs);
}

.rh-care-details__list li {
    font-size: var(--rh-fs-xs);
    color: var(--rh-color-text-muted);
    padding-left: 1.1rem;
    position: relative;
}

.rh-care-details__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rh-color-accent);
    font-weight: 700;
}


/* =============================================================================
   FAQ-Sektion
   ============================================================================= */

.rh-faq {
    padding-block: calc(var(--rh-space-xxl) * 1.5);
    background: var(--rh-color-bg);
    position: relative;
}

.rh-faq__header {
    text-align: center;
    margin-bottom: calc(var(--rh-space-xl) * 1.25);
}

.rh-faq__header h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-faq__header p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-md);
}

.rh-faq__accordion {
    max-width: 740px;
    margin-inline: auto;
}

.rh-faq__accordion .rh-accordion__item {
    border-bottom: 1px solid var(--rh-color-border);
}

.rh-faq__accordion .rh-accordion__item:first-child {
    border-top: 1px solid var(--rh-color-border);
}

.rh-faq__accordion .rh-accordion__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--rh-space-md);
    padding: var(--rh-space-lg) var(--rh-space-sm);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    border-radius: var(--rh-radius-sm);
    transition: background-color var(--rh-transition);
}

.rh-faq__accordion .rh-accordion__btn:hover {
    background-color: var(--rh-color-bg-alt);
}

.rh-faq__accordion .rh-accordion__title {
    font-size: var(--rh-fs-md);
    font-weight: 600;
    color: var(--rh-color-text);
    line-height: 1.4;
}

.rh-faq__accordion .rh-accordion__btn[aria-expanded="true"] .rh-accordion__title {
    color: var(--rh-color-accent);
}

.rh-faq__accordion .rh-accordion__chevron {
    color: var(--rh-color-text-muted);
    flex-shrink: 0;
    transition: transform 0.25s ease, color var(--rh-transition);
}

.rh-faq__accordion .rh-accordion__btn[aria-expanded="true"] .rh-accordion__chevron {
    transform: rotate(180deg);
    color: var(--rh-color-accent);
}

.rh-faq__accordion .rh-accordion__body {
    padding: 0 var(--rh-space-sm) var(--rh-space-lg);
}

.rh-faq__accordion .rh-accordion__body p {
    line-height: 1.7;
    color: var(--rh-color-text-muted);
}


/* =============================================================================
   Paketrechner
   ============================================================================= */

.rh-calc {
    padding-block: var(--rh-space-xxl);
    background: var(--rh-color-bg);
}

.rh-calc__header {
    text-align: center;
    margin-bottom: var(--rh-space-xl);
    max-width: 640px;
    margin-inline: auto;
}

.rh-calc__header h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-calc__header p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-md);
}

.rh-calc__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--rh-space-xl);
    align-items: start;
    max-width: var(--rh-max-width);
    margin-inline: auto;
    padding-inline: var(--rh-space-md);
}

@media (max-width: 64em) {
    .rh-calc__layout { grid-template-columns: 1fr; }
}

/* Steps */
.rh-calc__step {
    margin-bottom: var(--rh-space-xl);
}

.rh-calc__step-title {
    font-size: var(--rh-fs-md);
    font-weight: 700;
    margin-bottom: var(--rh-space-md);
    display: flex;
    align-items: center;
    gap: var(--rh-space-sm);
}

.rh-calc__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f05e1c;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rh-calc__step-optional {
    font-weight: 400;
    color: var(--rh-color-text-muted);
    font-size: 0.85rem;
}

/* Radio-Karten */
.rh-calc__options {
    display: grid;
    gap: var(--rh-space-sm);
}

.rh-calc__options--4 { grid-template-columns: repeat(4, 1fr); }
.rh-calc__options--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 64em) {
    .rh-calc__options--4,
    .rh-calc__options--5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 40em) {
    .rh-calc__options--4,
    .rh-calc__options--5 { grid-template-columns: 1fr; }
}

.rh-calc__card { cursor: pointer; }

.rh-calc__card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.rh-calc__card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border: 2px solid var(--rh-color-border);
    border-radius: 10px;
    transition: border-color var(--rh-transition), background var(--rh-transition);
}

.rh-calc__card input:checked + .rh-calc__card-inner {
    border-color: #f05e1c;
    background: rgba(240, 94, 28, 0.05);
}

.rh-calc__card:hover .rh-calc__card-inner {
    border-color: rgba(240, 94, 28, 0.4);
}

.rh-calc__card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rh-color-text);
    margin-bottom: 4px;
}

.rh-calc__card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f05e1c;
    margin-bottom: 4px;
}

.rh-calc__card-info {
    font-size: 0.75rem;
    color: var(--rh-color-text-muted);
}

.rh-calc__card input[value="none"] + .rh-calc__card-inner {
    border-style: dashed;
}

.rh-calc__card input[value="none"]:checked + .rh-calc__card-inner {
    border-style: solid;
    border-color: var(--rh-color-text-muted);
    background: transparent;
}

/* Billing Toggle */
.rh-calc__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--rh-space-sm);
    margin-bottom: var(--rh-space-md);
}

.rh-calc__toggle-label {
    font-size: 0.85rem;
    color: var(--rh-color-text-muted);
    transition: color var(--rh-transition);
}

.rh-calc__toggle-label--active {
    color: var(--rh-color-text);
    font-weight: 600;
}

.rh-calc__toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.rh-calc__toggle-track {
    display: block;
    width: 40px;
    height: 22px;
    background: var(--rh-color-border);
    border-radius: 11px;
    position: relative;
    transition: background var(--rh-transition);
}

.rh-calc__toggle-thumb {
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform var(--rh-transition);
}

.rh-calc__toggle-thumb--right {
    transform: translateX(18px);
}

/* Extras Checkboxen */
.rh-calc__extras-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rh-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--rh-space-md);
    margin-bottom: var(--rh-space-xs);
}

.rh-calc__extras-category:first-child {
    margin-top: 0;
}

.rh-calc__extra-item {
    display: flex;
    align-items: center;
    gap: var(--rh-space-sm);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--rh-transition);
}

.rh-calc__extra-item:hover {
    background: var(--rh-color-bg-alt);
}

.rh-calc__extra-item input[type="checkbox"] {
    accent-color: #f05e1c;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.rh-calc__extra-name {
    flex: 1;
    font-size: 0.85rem;
    color: var(--rh-color-text);
}

.rh-calc__extra-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f05e1c;
    white-space: nowrap;
}

/* Summary Sidebar */
.rh-calc__summary {
    position: sticky;
    top: var(--rh-space-lg);
}

@media (max-width: 64em) {
    .rh-calc__summary { position: static; }
}

.rh-calc__summary-card {
    background: var(--rh-color-bg-alt);
    border: 1px solid var(--rh-color-border);
    border-radius: 12px;
    padding: var(--rh-space-lg);
}

.rh-calc__summary-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rh-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--rh-space-md);
}

.rh-calc__summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.rh-calc__summary-line--border {
    border-top: 1px solid var(--rh-color-border);
    margin-top: var(--rh-space-xs);
    padding-top: var(--rh-space-sm);
}

.rh-calc__summary-label { color: var(--rh-color-text-muted); }

.rh-calc__summary-value {
    font-weight: 600;
    color: var(--rh-color-text);
}

.rh-calc__summary-value--total {
    color: #f05e1c;
    font-weight: 700;
}

.rh-calc__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--rh-space-md);
    padding-top: var(--rh-space-md);
    border-top: 2px solid var(--rh-color-border);
}

.rh-calc__summary-total-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rh-color-text);
}

.rh-calc__summary-total-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f05e1c;
}

.rh-calc__summary-note {
    font-size: 0.75rem;
    color: var(--rh-color-text-muted);
    margin-top: var(--rh-space-sm);
    text-align: center;
}

.rh-calc__summary-hint {
    font-size: 0.8rem;
    color: var(--rh-color-text-muted);
    background: rgba(240, 94, 28, 0.06);
    border: 1px solid rgba(240, 94, 28, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: var(--rh-space-sm);
}

.rh-calc__summary-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: var(--rh-space-md);
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
}


/* =============================================================================
   Anfrage-Formular (/anfrage)
   ============================================================================= */

.rh-anfrage-hero {
    padding: var(--rh-space-xxl) 0 var(--rh-space-lg);
    text-align: center;
}

.rh-anfrage-hero h1 {
    font-size: var(--rh-fs-xxl);
    margin-bottom: var(--rh-space-sm);
}

.rh-anfrage-hero p {
    font-size: var(--rh-fs-md);
    color: var(--rh-color-text-muted);
    max-width: 560px;
    margin-inline: auto;
}

.rh-anfrage-form-section {
    padding-bottom: var(--rh-space-xxl);
}

.rh-form {
    max-width: 640px;
    margin-inline: auto;
}

.rh-form__group {
    background: var(--rh-color-bg-alt);
    border: none;
    border-radius: 12px;
    padding: var(--rh-space-lg);
    margin-bottom: var(--rh-space-md);
}

.rh-form__group-title {
    font-size: var(--rh-fs-md);
    font-weight: 700;
    margin-bottom: var(--rh-space-md);
    color: var(--rh-color-text);
}

.rh-form__field {
    margin-bottom: var(--rh-space-sm);
}

.rh-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--rh-color-text);
}

.rh-form__label--optional::after {
    content: " (optional)";
    font-weight: 400;
    color: var(--rh-color-text-muted);
    font-size: 0.8rem;
}

.rh-form__input,
.rh-form__select,
.rh-form__textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--rh-color-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--rh-color-bg);
    color: var(--rh-color-text);
    transition: border-color var(--rh-transition);
    box-sizing: border-box;
}

.rh-form__input:focus,
.rh-form__select:focus,
.rh-form__textarea:focus {
    outline: none;
    border-color: #f05e1c;
    box-shadow: 0 0 0 3px rgba(240, 94, 28, 0.15);
}

.rh-form__radios {
    display: flex;
    gap: var(--rh-space-sm);
    flex-wrap: wrap;
}

.rh-form__radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--rh-color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color var(--rh-transition), background var(--rh-transition);
    font-size: 0.9rem;
}

.rh-form__radio-option:has(input:checked) {
    border-color: #f05e1c;
    background: rgba(240, 94, 28, 0.06);
}

.rh-form__radio-option input[type="radio"] {
    accent-color: #f05e1c;
}

.rh-form__consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--rh-color-text-muted);
    margin: var(--rh-space-md) 0;
    max-width: 640px;
    margin-inline: auto;
}

.rh-form__consent input[type="checkbox"] {
    accent-color: #f05e1c;
    margin-top: 3px;
    flex-shrink: 0;
}

.rh-form__consent a {
    color: #f05e1c;
    text-decoration: underline;
}

.rh-btn--lg {
    width: 100%;
    max-width: 640px;
    display: block;
    margin-inline: auto;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
}

.rh-form__submit-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--rh-color-text-muted);
    margin-top: var(--rh-space-xs);
}

.rh-form__error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: var(--rh-space-md);
    font-size: 0.9rem;
    max-width: 640px;
    margin-inline: auto;
}

.rh-form__paket-hint {
    background: rgba(240, 94, 28, 0.08);
    border: 1px solid rgba(240, 94, 28, 0.2);
    color: var(--rh-color-text);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: var(--rh-space-md);
    font-size: 0.9rem;
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.rh-form__success {
    text-align: center;
    padding: var(--rh-space-xxl) var(--rh-space-md);
    max-width: 480px;
    margin-inline: auto;
}

.rh-form__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 28px;
    margin-bottom: var(--rh-space-md);
}

.rh-form__success h2 {
    font-size: var(--rh-fs-xl);
    margin-bottom: var(--rh-space-sm);
}

.rh-form__success p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-md);
    margin-bottom: var(--rh-space-lg);
}

.rh-form__trust {
    display: flex;
    justify-content: center;
    gap: var(--rh-space-lg);
    margin-top: var(--rh-space-xl);
    font-size: 0.85rem;
    color: var(--rh-color-text-muted);
    max-width: 640px;
    margin-inline: auto;
}

.rh-form__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Honeypot */
/* SEO-Hinweiszeile unter Setup-Paketen */
.rh-preis-card__seo-hint {
    font-size: 0.75rem;
    color: var(--rh-color-text-muted);
    margin-top: var(--rh-space-sm);
    padding-top: var(--rh-space-xs);
    border-top: 1px solid var(--rh-color-border);
    line-height: 1.5;
}

.rh-form__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
}

@media (max-width: 40em) {
    .rh-form__radios {
        flex-direction: column;
    }
    .rh-form__trust {
        flex-direction: column;
        align-items: center;
        gap: var(--rh-space-sm);
    }
    .rh-form__group {
        padding: var(--rh-space-md);
    }
}


/* =============================================================================
   SHK GEWERK-LANDINGPAGE
   ============================================================================= */

/* --- Hero --- */
.rh-shk-hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.rh-shk-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(15, 45, 72, 0.85) 100%);
    display: flex;
    align-items: center;
    width: 100%;
}

.rh-shk-hero__content {
    max-width: 680px;
    padding: var(--rh-space-3xl) 0;
    color: #fff;
}

.rh-shk-hero__content h1,
.rh-shk-hero__content .rh-hero__eyebrow,
.rh-shk-hero__content .rh-hero__sub {
    color: #fff;
}

.rh-shk-hero__tel {
    margin-top: var(--rh-space-sm);
    margin-bottom: 0;
}

.rh-shk-hero__tel a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--rh-fs-sm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rh-shk-hero__tel a:hover {
    color: #fff;
}

.rh-shk-hero__content h1 em {
    color: #fff;
    font-style: italic;
}

/* --- Trust Strip --- */
.rh-shk-trust-strip {
    background: #1a1a2e;
    padding: var(--rh-space-md) 0;
    overflow-x: auto;
}

.rh-shk-trust-strip__inner {
    display: flex;
    justify-content: center;
    gap: var(--rh-space-xl);
    max-width: var(--rh-max-width);
    margin: 0 auto;
    padding: 0 var(--rh-space-md);
    white-space: nowrap;
}

.rh-shk-trust-strip__item {
    color: #fff;
    font-size: var(--rh-fs-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.rh-shk-trust-strip__check {
    color: #f05e1c;
    margin-right: 0.35em;
    font-weight: 700;
}

/* --- Problem (reuses .rh-problem from main) --- */
.rh-shk-problem {
    /* Inherits from .rh-problem — no extra styling needed */
}

/* --- Showcase / Mockup-Galerie --- */
.rh-shk-showcase {
    padding-block: var(--rh-space-xxl);
    text-align: center;
}

.rh-shk-showcase h2 {
    font-size: var(--rh-fs-2xl);
    margin-bottom: var(--rh-space-xl);
}

.rh-shk-showcase__gallery {
    display: flex;
    justify-content: center;
    gap: var(--rh-space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--rh-space-md);
}

.rh-shk-showcase__item {
    max-width: 480px;
    width: 100%;
}

.rh-shk-showcase__label {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
    margin-top: var(--rh-space-sm);
}

.rh-shk-showcase__disclaimer {
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
}

/* --- Angebot --- */
.rh-shk-angebot-section {
    padding-block: var(--rh-space-xxl);
}

.rh-shk-angebot-section h2 {
    text-align: center;
    font-size: var(--rh-fs-2xl);
    margin-bottom: var(--rh-space-xl);
}

.rh-shk-angebot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rh-space-lg);
    max-width: 800px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 48em) {
    .rh-shk-angebot-grid {
        grid-template-columns: 1fr;
    }
}

.rh-shk-angebot {
    max-width: none;
    background: var(--rh-color-bg);
    border: 1px solid var(--rh-color-border);
    border-radius: var(--rh-radius-lg);
    padding: var(--rh-space-xl);
    text-align: center;
    box-shadow: none;
    position: relative;
}

.rh-shk-angebot--featured {
    border: 2px solid var(--rh-color-accent);
    box-shadow: var(--rh-shadow-md);
}

.rh-shk-angebot--starter .rh-shk-angebot__preis {
    font-size: 2rem;
}

.rh-shk-angebot__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rh-color-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35em 1.2em;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.rh-shk-angebot h3 {
    font-size: var(--rh-fs-xl);
    margin-top: var(--rh-space-sm);
}

.rh-shk-angebot__preis {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rh-color-accent);
    margin: var(--rh-space-sm) 0;
    line-height: 1.1;
}

.rh-shk-angebot__preis span {
    display: block;
    font-size: var(--rh-fs-sm);
    font-weight: 400;
    color: var(--rh-color-text-muted);
    margin-top: 0.25em;
}

.rh-shk-angebot__features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: var(--rh-space-md) 0;
}

.rh-shk-angebot__features li {
    padding: 0.5em 0;
    padding-left: 1.6em;
    position: relative;
    border-bottom: 1px solid var(--rh-color-border);
}

.rh-shk-angebot__features li:last-child {
    border-bottom: none;
}

.rh-shk-angebot__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--rh-color-accent);
    font-weight: 700;
}

.rh-shk-angebot__betreuung {
    background: rgba(240, 94, 28, 0.05);
    border-radius: var(--rh-radius-md);
    padding: var(--rh-space-md);
    margin: var(--rh-space-md) 0;
    text-align: left;
}

.rh-shk-angebot__betreuung ul {
    list-style: none;
    padding: 0;
    margin: var(--rh-space-xs) 0 0;
}

.rh-shk-angebot__betreuung li {
    padding: 0.3em 0 0.3em 1.4em;
    position: relative;
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
}

.rh-shk-angebot__betreuung li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--rh-color-accent);
}

.rh-shk-angebot__ctas {
    display: flex;
    gap: var(--rh-space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--rh-space-md);
}

.rh-shk-alternative {
    text-align: center;
    margin-top: var(--rh-space-lg);
    font-size: var(--rh-fs-sm);
    color: var(--rh-color-text-muted);
}

.rh-shk-alternative a {
    color: var(--rh-color-accent);
    text-decoration: underline;
}

/* --- Prozess 3 Schritte --- */
.rh-shk-prozess {
    padding-block: var(--rh-space-xxl);
}

.rh-shk-prozess h2 {
    text-align: center;
    font-size: var(--rh-fs-2xl);
    margin-bottom: var(--rh-space-xl);
}

.rh-shk-prozess__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rh-space-xl);
}

.rh-shk-prozess__step {
    text-align: center;
    padding: var(--rh-space-lg);
}

.rh-shk-prozess__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rh-color-accent);
    color: #fff;
    font-size: var(--rh-fs-lg);
    font-weight: 800;
    margin-bottom: var(--rh-space-sm);
}

.rh-shk-prozess__step h3 {
    font-size: var(--rh-fs-lg);
    margin-bottom: var(--rh-space-xs);
}

.rh-shk-prozess__step p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-sm);
}

@media (max-width: 48em) {
    .rh-shk-prozess__grid {
        grid-template-columns: 1fr;
        gap: var(--rh-space-lg);
    }
}

/* --- Vertrauen --- */
.rh-shk-vertrauen {
    padding-block: var(--rh-space-xxl);
}

.rh-shk-vertrauen h2 {
    text-align: center;
    font-size: var(--rh-fs-2xl);
    margin-bottom: var(--rh-space-xl);
}

.rh-shk-vertrauen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rh-space-xl);
}

.rh-shk-vertrauen__card {
    text-align: center;
    padding: var(--rh-space-lg);
    border: 1px solid var(--rh-color-border);
    border-radius: var(--rh-radius-lg);
}

.rh-shk-vertrauen__card h3 {
    font-size: var(--rh-fs-lg);
    margin-bottom: var(--rh-space-xs);
}

.rh-shk-vertrauen__card p {
    color: var(--rh-color-text-muted);
    font-size: var(--rh-fs-sm);
}

@media (max-width: 48em) {
    .rh-shk-vertrauen__grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ (reuses .rh-faq + .rh-accordion from main) --- */
.rh-shk-faq {
    /* Inherits from .rh-faq */
}

/* --- Abschluss-CTA --- */
.rh-shk-abschluss {
    padding-block: var(--rh-space-3xl);
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f2d48 100%);
    color: #fff;
}

.rh-shk-abschluss__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--rh-space-md);
}

.rh-shk-abschluss h2 {
    font-size: var(--rh-fs-2xl);
    margin-bottom: var(--rh-space-sm);
    color: #fff;
}

.rh-shk-abschluss p {
    color: #94a3b8;
    margin-bottom: var(--rh-space-lg);
}

.rh-shk-abschluss__ctas {
    display: flex;
    gap: var(--rh-space-sm);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.rh-shk-abschluss__tel {
    margin: 0;
}

.rh-shk-abschluss__tel a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--rh-fs-sm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rh-shk-abschluss__tel a:hover {
    color: #fff;
}

@media (max-width: 48em) {
    .rh-shk-abschluss__ctas {
        flex-direction: column;
    }

    .rh-shk-abschluss h2 {
        font-size: var(--rh-fs-xl);
    }
}

/* --- Sticky Mobile CTA (hidden on desktop, slide-in on mobile) --- */
.rh-shk-sticky-cta {
    display: none;
}

@media (max-width: 48em) {
    .rh-shk-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        text-align: center;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .rh-shk-sticky-cta--visible {
        transform: translateY(0);
    }

    .rh-shk-sticky-cta a {
        display: block;
        background: #f05e1c;
        color: #fff;
        font-weight: 700;
        font-size: var(--rh-fs-base);
        padding: 14px var(--rh-space-md);
        text-decoration: none;
        letter-spacing: 0.02em;
    }

    .rh-shk-sticky-cta a:hover {
        background: #d4510f;
    }

    /* Platz für sticky CTA am Seitenende */
    .rh-hero-page .rh-site-footer {
        padding-bottom: 56px;
    }
}

/* --- btn--lg variant --- */
.rh-btn--lg {
    padding: var(--rh-space-md) var(--rh-space-xl);
    font-size: var(--rh-fs-lg);
}

/* --- Trust strip mobile --- */
@media (max-width: 48em) {
    .rh-shk-trust-strip__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--rh-space-sm) var(--rh-space-lg);
        padding: 0 var(--rh-space-md);
        white-space: normal;
    }

    .rh-shk-trust-strip__item {
        flex: 0 0 auto;
    }

    .rh-shk-hero__content {
        padding-top: 7rem;
        padding-bottom: var(--rh-space-xl);
    }

    .rh-shk-hero .rh-hero__eyebrow {
        display: none;
    }

    .rh-shk-hero__content h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .rh-shk-hero {
        min-height: 70vh;
    }

    /* Vertrauen: Inline-Logo im Heading verkleinern */
    .rh-vertrauen__heading-logo .rh-vertrauen__logo-inline {
        height: 1.2em;
        width: auto;
        vertical-align: baseline;
    }
}

/* --- Extras Tabs Navigation (Variante B: Underline) --- */
.rh-extras-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: var(--rh-space-lg);
    border-bottom: 1px solid var(--rh-color-border);
    padding-bottom: 0;
    flex-wrap: wrap;
}

.rh-extras-tabs__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: var(--rh-color-text-muted);
    font-family: var(--rh-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.rh-extras-tabs__icon {
    width: 20px;
    height: 20px;
    color: var(--rh-color-text-muted);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

@media (hover: hover) {
    .rh-extras-tabs__btn:hover {
        color: var(--rh-color-text);
    }
    .rh-extras-tabs__btn:hover .rh-extras-tabs__icon {
        color: var(--rh-color-accent);
    }
}

.rh-extras-tabs__btn--active {
    color: var(--rh-color-accent);
    border-bottom-color: var(--rh-color-accent);
}

.rh-extras-tabs__btn--active .rh-extras-tabs__icon {
    color: var(--rh-color-accent);
}

.rh-extras-tabs__label {
    line-height: 1;
}

/* Tab Panels */
.rh-extras__panel {
    display: none;
}

.rh-extras__panel--active {
    display: block;
}

@media (max-width: 40em) {
    .rh-extras-tabs {
        gap: 0;
    }
    .rh-extras-tabs__btn {
        padding: 10px 14px;
        font-size: 0.78rem;
    }
    .rh-extras-tabs__icon {
        width: 16px;
        height: 16px;
    }
}
