:root {
    --drive-primary: #0066ff;
    --drive-primary-strong: #004fcb;
    --drive-dark: #0f172a;
    --drive-gray-100: #f8fafc;
    --drive-gray-200: #e2e8f0;
    --drive-text: #1e293b;
    --drive-muted: #64748b;
    --drive-surface: #ffffff;
    --drive-radius: 12px;
    --drive-font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
    --drive-font-display: system-ui, -apple-system, "Segoe UI", sans-serif;
    --drive-hero-background: radial-gradient(circle at 0% 0%, #f8fafc 0%, #ffffff 100%);
    --drive-consent-offset: 0px;
}

body {
    font-family: var(--drive-font-body);
    background-color: var(--drive-surface);
    color: var(--drive-text);
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--drive-consent-offset) + env(safe-area-inset-bottom, 0px));
    transition: padding-bottom 0.2s ease;
}

.drive-form-captcha {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    background: rgba(248, 250, 252, 0.95);
}

.drive-form-captcha__widget {
    min-height: 68px;
}

h1 {
    font-family: var(--drive-font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--drive-dark);
}

h2 {
    font-family: var(--drive-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--drive-dark);
}

.hero-section {
    padding: 160px 0;
    background: var(--drive-hero-background);
    border-bottom: 1px solid var(--drive-gray-200);
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--drive-muted);
}

.cms-block {
    padding: 100px 0;
}

.btn {
    border-radius: var(--drive-radius);
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--drive-primary);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: var(--drive-primary-strong);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--drive-primary-strong);
    border-color: var(--drive-primary-strong);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    background: var(--drive-primary-strong);
    border-color: var(--drive-primary-strong);
    color: #fff;
}

.cta-block .lead {
    color: #fff;
    opacity: 1 !important;
}

.drive-checkbox-card a,
.drive-choice-card a {
    color: var(--drive-primary-strong);
    font-weight: 600;
}

.donation-header-cta {
    font-weight: 700;
    box-shadow: 0 10px 24px -14px rgba(24, 95, 62, 0.72);
}

.login-card {
    background: var(--drive-surface);
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.form-control {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--drive-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid rgba(0, 102, 255, 0.38);
    outline-offset: 3px;
}

.visually-hidden-focusable:focus,
.visually-hidden-focusable:active {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 2000;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    clip: auto;
    background: #ffffff;
    color: var(--drive-dark);
    border-radius: 999px;
    box-shadow: 0 18px 48px -24px rgba(15, 23, 42, 0.45);
}

#cookie-consent-banner {
    position: fixed;
    inset: auto 0 0 0;
    padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
    background: transparent !important;
    border-top: 0;
    box-shadow: none;
}

#cookie-consent-banner[hidden],
#cookie-consent-banner .hidden,
#cookie-consent-banner [hidden] {
    display: none;
}

.drive-consent-banner__shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px -38px rgba(15, 23, 42, 0.35);
}

.drive-consent-banner__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 0.85rem 1.25rem;
}

.drive-consent-banner__title {
    margin: 0 0 0.25rem;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.2;
}

.drive-consent-banner__description {
    margin: 0;
    max-width: 54rem;
    color: var(--drive-muted);
    font-size: 0.92rem;
    line-height: 1.42;
}

.drive-consent-banner__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: var(--drive-muted);
}

.drive-consent-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 0.55rem;
    align-items: center;
}

.drive-consent-banner__actions .btn {
    min-height: 42px;
    padding: 0.64rem 0.95rem;
    white-space: nowrap;
}

.drive-consent-banner__preferences {
    margin-top: 0.75rem;
    padding: 0.9rem;
    border: 1px solid #dbe4ee;
    border-radius: 20px;
    background: #f8fafc;
}

.drive-consent-banner__preferences-intro {
    margin-bottom: 0.65rem;
    color: var(--drive-muted);
    font-size: 0.88rem;
}

.drive-consent-banner__option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.drive-lead-form__story,
.drive-lead-form__card,
.drive-case-study-card {
    border-radius: clamp(1.1rem, 1vw + 0.9rem, 1.8rem);
}

.drive-lead-form__story {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.08), transparent 46%),
        linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
}

.drive-lead-form__benefit {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
}

.drive-lead-form__section-header {
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.drive-lead-form__details {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1rem;
    background: #f8fafc;
}

.drive-lead-form__details-summary {
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    list-style: none;
}

.drive-lead-form__details-summary::-webkit-details-marker {
    display: none;
}

.drive-lead-form__details-summary::after {
    content: "+";
    float: right;
    font-size: 1.1rem;
    line-height: 1;
}

.drive-lead-form__details[open] .drive-lead-form__details-summary::after {
    content: "−";
}

.drive-checkbox-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1rem;
    background: #ffffff;
}

.drive-checkbox-card--muted {
    background: #f8fafc;
}

.drive-checkbox-card .form-check-input {
    margin: 0.2rem 0 0;
}

.drive-lead-form .form-select,
.drive-lead-form .form-control {
    border-radius: 1rem;
}

.drive-case-study-list .badge {
    font-weight: 600;
}

.drive-case-study-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.94) 100%);
}

@media (max-width: 991.98px) {
    .drive-lead-form__benefit,
    .drive-checkbox-card {
        padding: 0.9rem 1rem;
    }
}

.drive-consent-banner__option {
    padding: 0.75rem 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.drive-consent-banner__option .form-check-input {
    margin-top: 0.15rem;
}

.drive-consent-banner__option-note {
    margin: 0.32rem 0 0;
    color: var(--drive-muted);
    font-size: 0.8rem;
    line-height: 1.38;
}

.drive-consent-banner__preferences-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.75rem;
}

.consent-link {
    color: var(--drive-primary-strong);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.footer-consent-trigger {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.footer-consent-trigger:hover,
.footer-consent-trigger:focus-visible {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.14em;
    box-shadow: none;
}

.site-whatsapp-cta {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + var(--drive-consent-offset) + env(safe-area-inset-bottom, 0px));
    z-index: 1900;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 4.25rem;
    max-width: min(21rem, calc(100vw - 1.5rem));
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 48px -30px rgba(15, 23, 42, 0.42);
    color: #0f172a;
    text-decoration: none;
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-whatsapp-cta:hover,
.site-whatsapp-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 30px 56px -30px rgba(15, 23, 42, 0.48);
    border-color: rgba(37, 211, 102, 0.34);
    color: #0f172a;
    outline: none;
}

.drive-consent-visible .site-whatsapp-cta {
    display: none;
}

.site-whatsapp-cta__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 18px 28px -20px rgba(15, 23, 42, 0.55);
}

.site-whatsapp-cta__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-whatsapp-cta__icon {
    display: inline-flex;
    width: 1.65rem;
    height: 1.65rem;
    color: #ffffff;
}

.site-whatsapp-cta__icon svg {
    width: 100%;
    height: 100%;
}

.site-whatsapp-cta__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-whatsapp-cta__eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #128c7e;
}

.site-whatsapp-cta__label {
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    .drive-consent-banner__main {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .drive-consent-banner__actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .drive-consent-banner__actions .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    #cookie-consent-banner {
        padding: 0 0 calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .drive-consent-banner__shell {
        width: calc(100% - 12px);
        padding: 0.72rem 0.78rem;
        border-radius: 18px;
    }

    .drive-consent-banner__title {
        font-size: 1.02rem;
    }

    .drive-consent-banner__description {
        font-size: 0.84rem;
        line-height: 1.34;
    }

    .drive-consent-banner__links {
        gap: 0.25rem 0.35rem;
        margin-top: 0.22rem;
        font-size: 0.78rem;
    }

    .drive-consent-banner__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.42rem;
    }

    .drive-consent-banner__actions .btn:last-child {
        grid-column: 1 / -1;
    }

    .drive-consent-banner__actions .btn {
        min-height: 40px;
        padding: 0.58rem 0.7rem;
        font-size: 0.86rem;
    }

    .drive-consent-banner__preferences {
        margin-top: 0.62rem;
        padding: 0.72rem;
        max-height: min(42vh, 21rem);
        overflow: auto;
    }

    .drive-consent-banner__preferences-intro {
        margin-bottom: 0.55rem;
        font-size: 0.8rem;
    }

    .drive-consent-banner__option-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .drive-consent-banner__option {
        padding: 0.65rem 0.72rem;
        border-radius: 14px;
    }

    .drive-consent-banner__option-note {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .site-whatsapp-cta {
        right: 0.75rem;
        bottom: calc(0.75rem + var(--drive-consent-offset) + env(safe-area-inset-bottom, 0px));
        gap: 0;
        min-height: auto;
        padding: 0.2rem;
        border-radius: 999px;
    }

    .site-whatsapp-cta__avatar {
        width: 3.35rem;
        height: 3.35rem;
    }

    .site-whatsapp-cta__content {
        display: none;
    }
}

.legal-page main {
    max-width: 920px;
}

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
    line-height: 1.65;
}

.legal-meta {
    min-width: 180px;
}

.legal-document-content {
    line-height: 1.75;
}

.legal-document-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-top: 2rem;
}

.shop-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(15, 123, 108, 0.04) 100%);
}

.shop-card,
.content-card,
.module-card,
.theme-card {
    background: var(--drive-surface);
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.shop-price {
    color: var(--drive-primary);
    font-family: var(--drive-font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
}

.checkout-form .form-check {
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
}

.checkout-form .form-check-input {
    margin-top: 0.35rem;
}

.donation-checkout-card {
    position: relative;
    overflow: hidden;
    border-color: #e4ede7;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
}

.donation-checkout-card::before {
    content: "";
    position: absolute;
    inset: -80px auto auto -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 122, 54, 0.12) 0%, rgba(47, 122, 54, 0) 70%);
    pointer-events: none;
}

.donation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    background: rgba(31, 122, 79, 0.1);
    color: #1b5d3a;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-benefits {
    display: grid;
    gap: 0.75rem;
}

.donation-hero-cta {
    border-radius: 999px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.donation-benefits__item {
    display: grid;
    gap: 0.35rem;
    border: 1px solid #dfe9e2;
    background: #f6faf7;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    color: #1a3e2f;
}

.donation-benefits__item strong {
    font-size: 0.98rem;
}

.donation-benefits__item span {
    color: #456154;
    line-height: 1.5;
}

.donation-impact-card {
    border: 1px solid #d7e5db;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8f3 100%);
    padding: 1rem 1.1rem;
}

.donation-impact-card__title {
    color: #143f2b;
    font-size: 1rem;
    font-weight: 700;
}

.donation-impact-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #456154;
}

.donation-impact-list li + li {
    margin-top: 0.45rem;
}

.donation-provider-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.donation-provider-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.donation-provider-badge.is-available {
    background: rgba(31, 122, 79, 0.14);
    color: #145536;
}

.donation-provider-badge.is-unavailable {
    background: rgba(100, 116, 139, 0.16);
    color: #475569;
}

.donation-form .form-label {
    font-weight: 700;
    color: #1f2937;
}

.donation-form-shell {
    position: relative;
    border: 1px solid #dbe8df;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 248, 0.98) 100%);
    box-shadow: 0 28px 60px -38px rgba(21, 49, 34, 0.35);
    padding: 1.25rem;
}

.donation-form-header {
    padding: 0.35rem 0.2rem 1rem;
}

.donation-form-header__eyebrow {
    color: #2f7a36;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-form-header__title {
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    line-height: 1.2;
}

.donation-form-header__text {
    color: #5a6b61;
    line-height: 1.6;
}

.donation-form-panel {
    margin-top: 1rem;
    border: 1px solid #dfeae2;
    border-radius: 1.25rem;
    background: #ffffff;
    padding: 1rem;
}

.donation-form-panel--amount {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
}

.donation-form-panel--consent {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.donation-form-panel__label {
    color: #1b5d3a;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-choice-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 992px) {
    .donation-choice-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }
}

.donation-choice-card {
    border: 1px solid #dce8df;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
    overflow: hidden;
}

.donation-choice-card__header {
    display: grid;
    gap: 0.8rem;
    padding: 1rem 1rem 0.9rem;
    border-bottom: 1px solid #e5eee8;
    background: linear-gradient(180deg, rgba(47, 122, 54, 0.06) 0%, rgba(47, 122, 54, 0.02) 100%);
}

.donation-choice-card__title {
    margin: 0;
    color: #163a2a;
    font-size: 1.05rem;
    font-weight: 700;
}

.donation-choice-card__text {
    color: #5a6b61;
    line-height: 1.55;
}

.donation-choice-card__body {
    padding: 1rem;
}

.donation-choice-card .form-label {
    display: none;
}

.donation-choice-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.donation-status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.donation-status-pill.is-available {
    background: rgba(31, 122, 79, 0.14);
    color: #145536;
}

.donation-status-pill.is-pending {
    background: rgba(178, 125, 45, 0.15);
    color: #8a5a13;
}

.donation-choice-note {
    margin-top: 0.9rem;
    border-radius: 1rem;
    padding: 0.85rem 0.95rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.donation-choice-note strong {
    color: #163a2a;
}

.donation-choice-note.is-ready {
    background: rgba(31, 122, 79, 0.08);
    color: #426052;
}

.donation-choice-note.is-pending {
    background: rgba(247, 217, 76, 0.22);
    color: #5f5424;
}

.donation-amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.donation-amount-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    border: 1px solid #d7e4da;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f4faf5 100%);
    color: #19402d;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.donation-amount-chip:hover {
    border-color: #8fb99b;
    box-shadow: 0 18px 30px -26px rgba(24, 95, 62, 0.55);
    transform: translateY(-1px);
}

.donation-amount-chip.is-active {
    border-color: #2f7a36;
    background: linear-gradient(180deg, #2f7a36 0%, #27652e 100%);
    color: #ffffff;
    box-shadow: 0 18px 32px -24px rgba(24, 95, 62, 0.8);
}

.donation-amount-chip.is-unavailable,
.donation-amount-chip[disabled] {
    border-style: dashed;
    border-color: #d3dad5;
    background: linear-gradient(180deg, #fbfcfb 0%, #f3f5f4 100%);
    color: #7a887f;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.donation-amount-chip.is-unavailable:hover,
.donation-amount-chip[disabled]:hover {
    border-color: #d3dad5;
    box-shadow: none;
    transform: none;
}

.donation-amount-note {
    color: #516458;
    font-size: 0.92rem;
    line-height: 1.6;
}

.donation-amount-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid #d8e6dc;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fbfdfb 0%, #f1f7f3 100%);
}

.donation-amount-summary__label {
    color: #516458;
    font-size: 0.95rem;
}

.donation-amount-summary__value {
    color: #163a2a;
    font-size: 1rem;
    font-weight: 800;
}

.donation-form .form-control {
    min-height: 58px;
    border-radius: 1rem;
    border-color: #d8e6dc;
    background: #fcfefd;
    font-size: 1.05rem;
}

.donation-form .form-check {
    border-color: #dce8df;
    background: #ffffff;
}

.donation-form #donation_checkout_frequency,
.donation-form #donation_checkout_provider {
    display: grid;
    gap: 0.75rem;
    position: relative;
}

.donation-form #donation_checkout_frequency > input[type="radio"],
.donation-form #donation_checkout_provider > input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donation-form #donation_checkout_frequency > label,
.donation-form #donation_checkout_provider > label {
    position: relative;
    display: block;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 1.1rem;
    border: 1px solid #d6e3da;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
    color: #153a2a;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.donation-form #donation_checkout_frequency > label:hover,
.donation-form #donation_checkout_provider > label:hover {
    border-color: #8fb99b;
    box-shadow: 0 16px 30px -26px rgba(24, 95, 62, 0.6);
    transform: translateY(-1px);
}

.donation-form #donation_checkout_frequency > label::before,
.donation-form #donation_checkout_provider > label::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: 2px solid #6b7f73;
    background: #ffffff;
    box-sizing: border-box;
}

.donation-form #donation_checkout_frequency > input[type="radio"]:checked + label,
.donation-form #donation_checkout_provider > input[type="radio"]:checked + label {
    border-color: #2f7a36;
    background: linear-gradient(180deg, #f5fbf6 0%, #eef7f0 100%);
    box-shadow: 0 20px 34px -28px rgba(24, 95, 62, 0.65);
}

.donation-form #donation_checkout_frequency > input[type="radio"]:checked + label::before,
.donation-form #donation_checkout_provider > input[type="radio"]:checked + label::before {
    border-color: #2f7a36;
    background:
        radial-gradient(circle at center, #2f7a36 0 42%, transparent 44% 100%),
        #ffffff;
}

.donation-form #donation_checkout_frequency > input[type="radio"][disabled] + label,
.donation-form #donation_checkout_provider > input[type="radio"][disabled] + label {
    border-style: dashed;
    border-color: #d6ddd8;
    background: linear-gradient(180deg, #fafcfb 0%, #f5f7f6 100%);
    opacity: 0.85;
    cursor: not-allowed;
}

.donation-form #donation_checkout_frequency > input[type="radio"][disabled] + label,
.donation-form #donation_checkout_provider > input[type="radio"][disabled] + label {
    color: #66776d;
}

.donation-form #donation_checkout_frequency > input[type="radio"][disabled] + label::after {
    content: "Bald verfügbar";
    display: inline-flex;
    align-items: center;
    margin-left: 0.65rem;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    background: rgba(178, 125, 45, 0.15);
    color: #8a5a13;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.donation-form #donation_checkout_frequency > input[type="radio"]:focus-visible + label,
.donation-form #donation_checkout_provider > input[type="radio"]:focus-visible + label {
    border-color: #2f7a36;
    box-shadow: 0 0 0 3px rgba(47, 122, 54, 0.1);
}

.donation-submit-btn {
    min-width: 240px;
    font-size: 1rem;
    font-weight: 700;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

.donation-transfer-inline {
    display: grid;
    justify-items: start;
    gap: 0.75rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid #dce8df;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

.donation-transfer-inline__title {
    color: #163a2a;
    font-size: 1rem;
    font-weight: 700;
}

.donation-transfer-inline__text {
    color: #516458;
    line-height: 1.6;
}

.donation-transfer-inline__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1rem;
    border: 1px solid #cfe0d4;
    border-radius: 999px;
    background: #f8fcf9;
    color: #1b5d3a;
    font-weight: 700;
    text-decoration: none;
}

.donation-transfer-inline__link:hover,
.donation-transfer-inline__link:focus-visible {
    text-decoration: underline;
}

.shared-snippet .donation-transfer-card {
    border: 1px solid #dce8df;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    box-shadow: 0 24px 55px -40px rgba(21, 49, 34, 0.35);
    padding: 1.4rem;
}

.donation-transfer-card__header {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.donation-transfer-card__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(31, 122, 79, 0.1);
    color: #1b5d3a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-transfer-card__title {
    margin: 0;
    color: #163a2a;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.donation-transfer-card__text,
.donation-transfer-card__hint {
    color: #516458;
    line-height: 1.7;
}

.donation-transfer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.donation-transfer-field {
    display: grid;
    gap: 0.55rem;
    border: 1px solid #dce8df;
    border-radius: 1.1rem;
    background: #ffffff;
    padding: 1rem;
}

.donation-transfer-field--wide {
    grid-column: 1 / -1;
}

.donation-transfer-field__label {
    color: #5c6d63;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-transfer-field__value {
    color: #163a2a;
    font-size: 1.05rem;
    line-height: 1.5;
    word-break: break-word;
}

.donation-copy-btn {
    width: fit-content;
    border-radius: 999px;
}

@media (max-width: 767.98px) {
    .donation-submit-btn,
    .donation-hero-cta,
    .donation-header-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .donation-form-shell {
        padding: 1rem;
    }

    .donation-amount-chip {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .donation-transfer-grid {
        grid-template-columns: 1fr;
    }
}

.donation-form .form-text {
    color: #4b5563;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.donation-form .invalid-feedback,
.donation-form .form-error-message {
    font-weight: 600;
}

.donation-form-footer {
    align-items: center;
}

.module-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.module-pill.is-on {
    background: rgba(15, 123, 108, 0.12);
    color: var(--drive-primary-strong);
}

.module-pill.is-off {
    background: rgba(100, 116, 139, 0.12);
    color: var(--drive-muted);
}

.theme-medical .hero-section {
    position: relative;
    overflow: hidden;
}

.theme-medical .hero-section::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(15, 123, 108, 0.18);
    border-radius: calc(var(--drive-radius) * 1.4);
    pointer-events: none;
}

.theme-compassion .hero-section {
    position: relative;
    overflow: hidden;
}

.theme-compassion .hero-section::before {
    content: "";
    position: absolute;
    inset: auto -12% -35% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(47, 122, 54, 0.18) 0%, rgba(47, 122, 54, 0) 72%);
    pointer-events: none;
}

.theme-compassion .btn-primary {
    box-shadow: 0 8px 24px -12px rgba(35, 94, 41, 0.72);
}

.theme-compassion .footer {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

.theme-compassion-modern .hero-section {
    position: relative;
    overflow: hidden;
}

.theme-compassion-modern .hero-section::before {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(31, 122, 79, 0.2) 0%, rgba(31, 122, 79, 0) 72%);
    pointer-events: none;
}

.theme-compassion-modern .btn-primary {
    border-radius: 999px;
    box-shadow: 0 12px 30px -14px rgba(24, 95, 62, 0.75);
}

.theme-compassion-modern .btn-outline-secondary {
    border-radius: 999px;
}

.theme-compassion-modern .content-card,
.theme-compassion-modern .module-card,
.theme-compassion-modern .theme-card {
    border-radius: 28px;
    border-color: #e4ede7;
    box-shadow: 0 30px 60px -35px rgba(22, 40, 31, 0.35);
}

.theme-compassion-modern .footer {
    background: linear-gradient(180deg, #ffffff 0%, #eff8f1 100%);
}

.mobile-main-nav .btn {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.site-header__container {
    position: relative;
}

.site-header__utility {
    position: relative;
    z-index: 1;
}

.site-header__utility-item {
    line-height: 1.5;
}

.site-header__utility-item a {
    color: inherit;
    font-weight: 700;
}

.site-header__main,
.site-header__desktop-nav {
    position: relative;
    z-index: 1;
}

.site-logo-link {
    min-width: 0;
    gap: 0.75rem;
}

.site-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
}

.site-logo-image {
    display: block;
    width: clamp(180px, 24vw, 240px);
    height: auto;
}

.site-logo-text {
    line-height: 1;
}

.site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
}

.site-menu-toggle__icon {
    position: relative;
    display: inline-flex;
    width: 1.2rem;
    height: 0.95rem;
}

.site-menu-toggle__icon span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease, width 180ms ease, background-color 180ms ease;
}

.site-menu-toggle__icon span:nth-child(1) {
    top: 0;
}

.site-menu-toggle__icon span:nth-child(2) {
    top: calc(50% - 1px);
    width: 72%;
}

.site-menu-toggle__icon span:nth-child(3) {
    bottom: 0;
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__icon span:nth-child(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__icon span:nth-child(3) {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}

@media (max-width: 575.98px) {
    .site-logo-image {
        width: min(62vw, 220px);
    }
}

.theme-homes-nrw {
    background: #fbfcfb;
    color: var(--drive-text);
}

.theme-homes-nrw h1,
.theme-homes-nrw h2,
.theme-homes-nrw h3,
.theme-homes-nrw h4,
.theme-homes-nrw h5,
.theme-homes-nrw h6 {
    letter-spacing: 0;
}

.theme-homes-nrw h1 {
    font-size: 4.35rem;
    line-height: 1.02;
    max-width: 11ch;
}

.theme-homes-nrw h2 {
    font-size: 2.45rem;
    line-height: 1.12;
}

.theme-homes-nrw h3 {
    font-size: 1.2rem;
    line-height: 1.25;
}

.theme-homes-nrw .btn,
.theme-homes-nrw .card,
.theme-homes-nrw .accordion-item,
.theme-homes-nrw .form-control,
.theme-homes-nrw .form-select {
    border-radius: 8px;
}

.theme-homes-nrw .site-header {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom-color: rgba(23, 33, 31, 0.08) !important;
    box-shadow: 0 18px 44px -38px rgba(23, 33, 31, 0.32) !important;
    backdrop-filter: blur(14px);
}

.theme-homes-nrw .site-logo-image {
    width: min(48vw, 190px);
    height: auto;
    max-height: 66px;
    object-fit: contain;
}

.theme-homes-nrw .cms-block {
    padding: 0;
}

.theme-homes-nrw h1,
.theme-homes-nrw h2,
.theme-homes-nrw h3,
.theme-homes-nrw p,
.theme-homes-nrw a {
    overflow-wrap: anywhere;
    hyphens: auto;
}

.theme-homes-nrw main a:not(.btn),
.theme-homes-nrw footer a:not(.btn) {
    color: var(--drive-primary-strong);
}

.theme-homes-nrw main a:not(.btn):hover,
.theme-homes-nrw footer a:not(.btn):hover,
.theme-homes-nrw main a:not(.btn):focus-visible,
.theme-homes-nrw footer a:not(.btn):focus-visible {
    color: #0b4f4a;
}

.theme-homes-nrw .site-whatsapp-cta__eyebrow {
    color: var(--drive-primary-strong);
}

.theme-homes-nrw footer nav a,
.theme-homes-nrw footer .footer-consent-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
}

.homes-eyebrow {
    margin: 0 0 0.85rem;
    color: #75530f;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.homes-hero {
    padding: 5.5rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(247, 244, 237, 0.94) 0%, rgba(247, 244, 237, 0.72) 48%, rgba(244, 247, 245, 0) 100%),
        var(--drive-hero-background);
}

.homes-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.homes-hero--text-only .homes-hero__grid {
    grid-template-columns: minmax(0, 54rem);
}

.homes-hero__copy {
    position: relative;
    z-index: 2;
}

.homes-hero__lead {
    max-width: 42rem;
    margin: 0 0 1.6rem;
    color: #405350;
    font-size: 1.18rem;
    line-height: 1.64;
}

.homes-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1.35rem;
}

.homes-trust-list,
.homes-check-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.homes-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 43rem;
}

.homes-trust-list li,
.homes-check-list li {
    position: relative;
    padding-left: 1.55rem;
    color: #405350;
}

.homes-trust-list li::before,
.homes-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--drive-primary-strong);
    font-weight: 900;
}

.homes-hero__visual {
    position: relative;
}

.homes-hero__visual picture {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    box-shadow: 0 34px 82px -50px rgba(23, 33, 31, 0.55);
}

.homes-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homes-hero__stats {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    width: min(90%, 34rem);
}

.homes-hero__stats--inline {
    position: static;
    width: min(100%, 42rem);
    margin-top: 0.5rem;
}

.homes-hero__stats div {
    min-height: 5.8rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 48px -34px rgba(23, 33, 31, 0.55);
}

.homes-hero__stats strong {
    display: block;
    color: var(--homes-ink);
    font-size: 1.35rem;
    line-height: 1.1;
}

.homes-hero__stats span {
    display: block;
    margin-top: 0.3rem;
    color: #536864;
    font-size: 0.82rem;
    line-height: 1.25;
}

.homes-section {
    padding: 5rem 0;
}

.homes-section__intro {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.homes-section__intro--center {
    margin-inline: auto;
    text-align: center;
}

.homes-section__intro p,
.homes-cta p,
.homes-lead-form__copy > p {
    color: #536864;
    font-size: 1.05rem;
    line-height: 1.7;
}

.homes-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.homes-card {
    min-height: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(23, 33, 31, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px -40px rgba(23, 33, 31, 0.36);
}

.homes-card__icon {
    display: inline-grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: var(--homes-paper);
    color: var(--drive-primary-strong);
    font-weight: 900;
}

.homes-card p {
    color: #536864;
    line-height: 1.62;
}

.homes-card__link {
    display: inline-flex;
    margin-top: 0.4rem;
    color: var(--drive-primary-strong);
    font-weight: 800;
    text-decoration: none;
}

.homes-card__link:hover,
.homes-card__link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.homes-text-section {
    background: #ffffff;
}

.homes-text-section__inner {
    display: grid;
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    gap: 2.5rem;
    align-items: start;
}

.homes-text-section.is-muted,
.homes-text-section.muted {
    background: var(--drive-gray-100);
}

.homes-richtext {
    color: #405350;
    font-size: 1.03rem;
    line-height: 1.75;
}

.homes-richtext p:last-child,
.homes-richtext ul:last-child {
    margin-bottom: 0;
}

.homes-richtext ul {
    padding-left: 1.2rem;
}

.homes-cta {
    padding: 4rem 0;
}

.homes-cta--primary {
    background: var(--drive-primary-strong);
    color: #ffffff;
}

.homes-cta--light {
    background: var(--homes-paper);
    color: var(--homes-ink);
}

.homes-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.homes-cta--primary h2,
.homes-cta--primary p {
    color: #ffffff;
}

.homes-faq__accordion {
    max-width: 58rem;
    margin: 0 auto;
    border: 1px solid rgba(23, 33, 31, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.homes-faq .accordion-button {
    color: var(--homes-ink);
    font-weight: 800;
}

.homes-faq .accordion-body {
    color: #536864;
    line-height: 1.7;
}

.homes-lead-form {
    background: var(--drive-gray-100);
}

.homes-partner-form {
    background: var(--drive-gray-100);
}

.homes-valuation-frame {
    background: #ffffff;
}

.homes-valuation-frame__panel {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    border: 1px solid rgba(23, 33, 31, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px -40px rgba(23, 33, 31, 0.42);
}

.homes-valuation-frame__iframe {
    display: block;
    width: 100%;
    min-height: 760px;
    border: 0;
    background: #ffffff;
}

.homes-valuation-frame__consent {
    position: absolute;
    inset: 1rem;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(23, 33, 31, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
}

.homes-valuation-frame__consent h3 {
    margin: 0;
}

.homes-valuation-frame__consent p {
    max-width: 34rem;
    margin: 0 auto;
    color: #536864;
    line-height: 1.65;
}

.homes-valuation-frame.is-loaded .homes-valuation-frame__consent {
    display: none;
}

.homes-lead-form__grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
}

.homes-lead-form__copy,
.homes-lead-form__panel {
    border: 1px solid rgba(23, 33, 31, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px -40px rgba(23, 33, 31, 0.42);
}

.homes-lead-form__copy {
    position: sticky;
    top: 7.5rem;
    padding: 1.5rem;
}

.homes-lead-form__panel {
    padding: 1.5rem;
}

.homes-form {
    display: grid;
    gap: 1.2rem;
}

.homes-form__group {
    display: grid;
    gap: 0.8rem;
}

.homes-form__group h3 {
    margin: 0;
}

.homes-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.drive-choice-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.95rem;
    border: 1px solid rgba(23, 33, 31, 0.13);
    border-radius: 8px;
    background: #fff;
}

.drive-choice-card .form-check-input {
    margin: 0.22rem 0 0;
}

.theme-homes-nrw .drive-consent-banner__shell,
.theme-homes-nrw .drive-consent-banner__option {
    border-radius: 8px;
}

@media (max-width: 1199.98px) {
    .homes-hero__grid,
    .homes-lead-form__grid {
        grid-template-columns: 1fr;
    }

    .homes-lead-form__copy {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .theme-homes-nrw h1 {
        font-size: 3.25rem;
    }

    .theme-homes-nrw h2 {
        font-size: 2.05rem;
    }

    .homes-card-grid,
    .homes-text-section__inner {
        grid-template-columns: 1fr;
    }

    .homes-hero {
        padding-top: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .theme-homes-nrw h1 {
        font-size: 2.55rem;
        max-width: 100%;
    }

    .theme-homes-nrw h2 {
        font-size: 1.78rem;
    }

    .homes-section,
    .homes-cta {
        padding: 3.25rem 0;
    }

    .homes-trust-list,
    .homes-form__row,
    .homes-hero__stats,
    .homes-cta__inner {
        grid-template-columns: 1fr;
    }

    .homes-hero__visual picture {
        aspect-ratio: 4 / 3;
    }

    .homes-hero__stats {
        position: static;
        width: 100%;
        margin-top: 0.8rem;
    }

    .homes-action-row .btn {
        width: 100%;
    }

    .homes-valuation-frame__panel,
    .homes-valuation-frame__iframe {
        min-height: 820px;
    }

    .homes-valuation-frame__consent {
        inset: 0.75rem;
        padding: 1rem;
    }
}

/* Homes.NRW visual rhythm pass */
.theme-homes-nrw {
    --homes-radius: 8px;
    --homes-border: rgba(23, 33, 31, 0.11);
    --homes-shadow-soft: 0 18px 46px -38px rgba(23, 33, 31, 0.42);
    --homes-shadow-lifted: 0 30px 70px -54px rgba(23, 33, 31, 0.52);
    --homes-section-space: clamp(4.25rem, 6vw, 6.75rem);
    --homes-section-space-tight: clamp(3.25rem, 4.5vw, 5rem);
    --homes-grid-gap: clamp(1.25rem, 2vw, 1.65rem);
    --homes-copy-muted: #405350;
    --homes-copy-soft: #536864;
    background: #fbfcfb;
    color: var(--homes-ink);
    font-size: 16px;
    line-height: 1.58;
}

.theme-homes-nrw .container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.theme-homes-nrw .d-flex {
    display: flex !important;
}

.theme-homes-nrw .flex-column {
    flex-direction: column !important;
}

.theme-homes-nrw .flex-wrap {
    flex-wrap: wrap !important;
}

.theme-homes-nrw .justify-content-between {
    justify-content: space-between !important;
}

.theme-homes-nrw .align-items-center {
    align-items: center !important;
}

.theme-homes-nrw .align-items-start {
    align-items: flex-start !important;
}

.theme-homes-nrw .gap-3 {
    gap: 1rem !important;
}

.theme-homes-nrw .mb-0 {
    margin-bottom: 0 !important;
}

.theme-homes-nrw .mb-2 {
    margin-bottom: 0.5rem !important;
}

.theme-homes-nrw .mb-4 {
    margin-bottom: 1.5rem !important;
}

.theme-homes-nrw .mt-2 {
    margin-top: 0.5rem !important;
}

.theme-homes-nrw .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.theme-homes-nrw .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.theme-homes-nrw .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.theme-homes-nrw .text-start {
    text-align: left !important;
}

.theme-homes-nrw .text-decoration-none {
    text-decoration: none !important;
}

.theme-homes-nrw .text-muted {
    color: #64748b !important;
}

.theme-homes-nrw .small {
    font-size: 0.875em;
}

.theme-homes-nrw .fw-semibold {
    font-weight: 600 !important;
}

.theme-homes-nrw .rounded-pill {
    border-radius: 999px !important;
}

.theme-homes-nrw .bg-white {
    background-color: #ffffff !important;
}

.theme-homes-nrw .border-bottom {
    border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
}

.theme-homes-nrw .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.theme-homes-nrw .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(15, 23, 42, 0.075) !important;
}

.theme-homes-nrw .collapse:not(.show) {
    display: none;
}

@media (min-width: 768px) {
    .theme-homes-nrw .text-md-end {
        text-align: right !important;
    }
}

@media (min-width: 576px) {
    .theme-homes-nrw .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .theme-homes-nrw .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .theme-homes-nrw .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .theme-homes-nrw .container {
        max-width: 1140px;
    }
}

.theme-homes-nrw h1,
.theme-homes-nrw h2,
.theme-homes-nrw h3,
.theme-homes-nrw h4,
.theme-homes-nrw h5,
.theme-homes-nrw h6 {
    color: var(--homes-ink);
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: normal;
    hyphens: auto;
}

.theme-homes-nrw h1 {
    max-width: min(100%, 17ch);
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
    font-size: clamp(2.55rem, 4.65vw, 4rem);
    font-weight: 790;
    line-height: 1.06;
}

.theme-homes-nrw h2 {
    margin-bottom: clamp(0.9rem, 1.8vw, 1.25rem);
    font-size: clamp(1.8rem, 3.1vw, 2.55rem);
    font-weight: 760;
    line-height: 1.14;
}

.theme-homes-nrw h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.08rem, 1.35vw, 1.2rem);
    font-weight: 760;
    line-height: 1.28;
}

.theme-homes-nrw p {
    margin-bottom: 1rem;
}

.theme-homes-nrw p:last-child {
    margin-bottom: 0;
}

.theme-homes-nrw .site-header {
    padding-block: 0.72rem !important;
}

.theme-homes-nrw .site-header__container,
.theme-homes-nrw .site-header__surface,
.theme-homes-nrw .site-header__main,
.theme-homes-nrw .site-header__desktop-nav {
    gap: 0.72rem !important;
}

.theme-homes-nrw .site-logo-image {
    width: clamp(150px, 18vw, 188px);
    max-height: 62px;
}

.theme-homes-nrw .site-header__desktop-nav nav > .btn,
.theme-homes-nrw .site-header__meta > .btn,
.theme-homes-nrw .site-locale-nav > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.5rem 0.78rem !important;
    border-color: rgba(23, 33, 31, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #5c6b69;
    box-shadow: none;
    font-size: 0.88rem;
    font-weight: 720;
    line-height: 1;
    text-align: center;
}

.theme-homes-nrw .site-header__desktop-nav nav > .btn-dark,
.theme-homes-nrw .site-locale-nav > .btn-dark,
.theme-homes-nrw .site-header__meta > .btn-dark {
    border-color: var(--homes-ink);
    background: var(--homes-ink);
    color: #ffffff;
}

.theme-homes-nrw .site-header__desktop-nav nav > .btn:hover,
.theme-homes-nrw .site-header__desktop-nav nav > .btn:focus-visible,
.theme-homes-nrw .site-locale-nav > .btn:hover,
.theme-homes-nrw .site-locale-nav > .btn:focus-visible {
    border-color: rgba(17, 94, 89, 0.4);
    background: #f4f7f5;
    color: #115e59;
    transform: none;
}

.theme-homes-nrw .site-header__desktop-nav nav > .btn-dark:hover,
.theme-homes-nrw .site-header__desktop-nav nav > .btn-dark:focus-visible {
    background: var(--homes-ink);
    color: #ffffff;
}

.theme-homes-nrw main .btn {
    border-radius: var(--homes-radius);
    font-weight: 760;
    line-height: 1.2;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.theme-homes-nrw main .btn:hover,
.theme-homes-nrw main .btn:focus-visible {
    transform: translateY(-1px);
}

.theme-homes-nrw main .btn-lg {
    min-height: 3.1rem;
    padding: 0.84rem 1.2rem;
    font-size: 1rem;
}

.theme-homes-nrw main .btn-sm {
    min-height: 2.5rem;
    padding: 0.62rem 0.9rem;
    font-size: 0.9rem;
}

.theme-homes-nrw .homes-hero {
    padding: clamp(4rem, 6vw, 6.6rem) 0 clamp(3.5rem, 5vw, 5.4rem);
}

.theme-homes-nrw .homes-section {
    padding: var(--homes-section-space) 0;
}

.theme-homes-nrw .homes-cta {
    padding: var(--homes-section-space-tight) 0;
}

.theme-homes-nrw .homes-hero + .homes-section,
.theme-homes-nrw .homes-section + .homes-section,
.theme-homes-nrw .homes-section + .homes-cta,
.theme-homes-nrw .homes-cta + .homes-related {
    margin-top: 0;
}

.theme-homes-nrw .homes-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    gap: clamp(2rem, 4vw, 4.25rem);
}

.theme-homes-nrw .homes-hero--text-only .homes-hero__grid {
    grid-template-columns: minmax(0, 56rem);
}

.theme-homes-nrw .homes-hero__lead {
    max-width: 39.5rem;
    margin-bottom: clamp(1.35rem, 2.4vw, 1.8rem);
    color: var(--homes-copy-muted);
    font-size: clamp(1.05rem, 1.35vw, 1.14rem);
    line-height: 1.62;
}

.theme-homes-nrw .homes-action-row {
    gap: 0.75rem;
    margin-bottom: clamp(1.2rem, 2vw, 1.55rem);
}

.theme-homes-nrw .homes-trust-list,
.theme-homes-nrw .homes-check-list {
    gap: 0.72rem;
}

.theme-homes-nrw .homes-trust-list li,
.theme-homes-nrw .homes-check-list li {
    color: var(--homes-copy-muted);
    font-size: 0.98rem;
    line-height: 1.48;
}

.theme-homes-nrw .homes-hero__visual picture,
.theme-homes-nrw .homes-valuation-frame__panel,
.theme-homes-nrw .homes-lead-form__copy,
.theme-homes-nrw .homes-lead-form__panel,
.theme-homes-nrw .homes-card,
.theme-homes-nrw .homes-faq__accordion,
.theme-homes-nrw .homes-related__surface,
.theme-homes-nrw .homes-related__card,
.theme-homes-nrw .homes-image-section__figure {
    border-radius: var(--homes-radius);
}

.theme-homes-nrw .homes-hero__visual picture,
.theme-homes-nrw .homes-valuation-frame__panel,
.theme-homes-nrw .homes-lead-form__copy,
.theme-homes-nrw .homes-lead-form__panel,
.theme-homes-nrw .homes-related__surface,
.theme-homes-nrw .homes-image-section__figure {
    box-shadow: var(--homes-shadow-soft);
}

.theme-homes-nrw .homes-hero__stats {
    gap: 0.62rem;
    width: min(92%, 33rem);
}

.theme-homes-nrw .homes-hero__stats div {
    min-height: 5.2rem;
    padding: 0.92rem;
}

.theme-homes-nrw .homes-hero__stats strong {
    font-size: clamp(1.12rem, 1.7vw, 1.32rem);
}

.theme-homes-nrw .homes-hero__stats span {
    font-size: 0.8rem;
}

.theme-homes-nrw .homes-section__intro {
    max-width: 46rem;
    margin-bottom: clamp(1.65rem, 2.6vw, 2.35rem);
}

.theme-homes-nrw .homes-section__intro p,
.theme-homes-nrw .homes-cta p,
.theme-homes-nrw .homes-lead-form__copy > p {
    max-width: 42rem;
    color: var(--homes-copy-soft);
    font-size: clamp(1rem, 1.15vw, 1.06rem);
    line-height: 1.64;
}

.theme-homes-nrw .homes-card-grid {
    gap: var(--homes-grid-gap);
}

.theme-homes-nrw .homes-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.15rem, 2vw, 1.5rem);
    border-color: var(--homes-border);
    box-shadow: 0 14px 36px -34px rgba(23, 33, 31, 0.4);
}

.theme-homes-nrw .homes-card__icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}

.theme-homes-nrw .homes-card p {
    color: var(--homes-copy-soft);
    font-size: 0.98rem;
    line-height: 1.58;
}

.theme-homes-nrw .homes-card__link {
    margin-top: auto;
    padding-top: 0.35rem;
    align-items: center;
    min-height: 2.5rem;
}

.theme-homes-nrw .homes-text-section__inner {
    grid-template-columns: minmax(16rem, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(2rem, 4vw, 3.75rem);
}

.theme-homes-nrw .homes-richtext {
    max-width: 46rem;
    color: var(--homes-copy-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.theme-homes-nrw .homes-richtext li + li {
    margin-top: 0.35rem;
}

.theme-homes-nrw .legal-page {
    padding: var(--homes-section-space-tight) 0 !important;
    background: #fbfcfb;
}

.theme-homes-nrw .legal-page main.container {
    max-width: 920px;
}

.theme-homes-nrw .legal-page .d-flex > div {
    min-width: 0;
    max-width: 100%;
}

.theme-homes-nrw .legal-page .d-flex > div:first-child {
    flex: 1 1 34rem;
}

.theme-homes-nrw .legal-page h1 {
    max-width: 100%;
    margin-bottom: 0.78rem;
    font-size: clamp(2.05rem, 4vw, 3rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.theme-homes-nrw .legal-page h2,
.theme-homes-nrw .legal-document-content h2 {
    margin-top: clamp(1.8rem, 3vw, 2.35rem);
    margin-bottom: 0.75rem;
    font-size: clamp(1.35rem, 2.3vw, 1.82rem);
    line-height: 1.2;
}

.theme-homes-nrw .legal-page .lead {
    max-width: 42rem;
    color: var(--homes-copy-soft) !important;
    font-size: clamp(1rem, 1.35vw, 1.08rem);
    line-height: 1.58;
}

.theme-homes-nrw .legal-meta {
    min-width: 11rem;
    color: var(--homes-copy-soft) !important;
    line-height: 1.55;
}

.theme-homes-nrw .legal-document-content {
    max-width: 48rem;
    color: var(--homes-copy-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.theme-homes-nrw .legal-document-content p,
.theme-homes-nrw .legal-document-content li {
    line-height: 1.72;
}

.theme-homes-nrw .legal-document-content a,
.theme-homes-nrw .legal-document-content code {
    overflow-wrap: anywhere;
}

.theme-homes-nrw .homes-cta__inner {
    gap: clamp(1.5rem, 3vw, 2.6rem);
}

.theme-homes-nrw .homes-cta h2 {
    max-width: 14ch;
}

.theme-homes-nrw .homes-cta--primary h2,
.theme-homes-nrw .homes-cta--primary p {
    color: #ffffff;
}

.theme-homes-nrw .homes-faq__accordion {
    border-color: var(--homes-border);
    box-shadow: var(--homes-shadow-soft);
}

.theme-homes-nrw .homes-faq .accordion-button {
    min-height: 3.75rem;
    padding: 1rem 1.15rem;
    color: var(--homes-ink);
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.35;
}

.theme-homes-nrw .homes-faq .accordion-body {
    padding: 1.05rem 1.15rem 1.2rem;
    color: var(--homes-copy-soft);
    line-height: 1.66;
}

.theme-homes-nrw .homes-lead-form,
.theme-homes-nrw .homes-partner-form,
.theme-homes-nrw .homes-contact-form {
    background: #f4f7f5;
}

.theme-homes-nrw .homes-lead-form__grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1.6rem, 3.2vw, 2.5rem);
}

.theme-homes-nrw .homes-lead-form__grid--compact {
    grid-template-columns: minmax(17rem, 0.68fr) minmax(0, 1fr);
}

.theme-homes-nrw .homes-lead-form__copy,
.theme-homes-nrw .homes-lead-form__panel {
    border-color: var(--homes-border);
}

.theme-homes-nrw .homes-lead-form__copy {
    top: 7rem;
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.theme-homes-nrw .homes-lead-form__panel {
    padding: clamp(1.25rem, 2.4vw, 1.9rem);
}

.theme-homes-nrw .homes-form {
    gap: 1.15rem;
}

.theme-homes-nrw .homes-form__group {
    gap: 0.78rem;
    padding-bottom: 0.2rem;
}

.theme-homes-nrw .homes-form__group h3 {
    font-size: 1.06rem;
}

.theme-homes-nrw .homes-form__row {
    gap: 0.9rem 1rem;
}

.theme-homes-nrw .form-label,
.theme-homes-nrw label {
    color: var(--homes-ink);
    font-size: 0.93rem;
    font-weight: 680;
}

.theme-homes-nrw .form-control-lg,
.theme-homes-nrw .form-select-lg {
    min-height: 3.05rem;
    padding: 0.78rem 0.95rem;
    font-size: 1rem;
    line-height: 1.35;
}

.theme-homes-nrw textarea.form-control-lg {
    min-height: 8.75rem;
}

.theme-homes-nrw .drive-choice-card {
    gap: 0.82rem;
    padding: 0.95rem 1rem;
    border-color: rgba(23, 33, 31, 0.13);
}

.theme-homes-nrw .drive-choice-card .form-check-input {
    width: 1.12rem;
    height: 1.12rem;
    margin-top: 0.2rem;
}

.theme-homes-nrw .homes-valuation-frame__panel,
.theme-homes-nrw .homes-valuation-frame__iframe {
    min-height: 720px;
}

.theme-homes-nrw .homes-valuation-frame__consent {
    gap: 0.82rem;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.theme-homes-nrw .homes-image-section {
    background: #ffffff;
}

.theme-homes-nrw .homes-image-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
    gap: clamp(1.8rem, 3.5vw, 3rem);
    align-items: center;
}

.theme-homes-nrw .homes-image-section__copy {
    max-width: 34rem;
}

.theme-homes-nrw .homes-image-section__figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--homes-border);
    background: #ffffff;
}

.theme-homes-nrw .homes-image-section__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.theme-homes-nrw .homes-image-section__figure figcaption {
    padding: 0.8rem 1rem;
    color: var(--homes-copy-soft);
    font-size: 0.9rem;
}

.theme-homes-nrw .homes-related {
    padding-block: var(--homes-section-space-tight);
}

.theme-homes-nrw .homes-related__surface {
    padding: clamp(1.35rem, 3vw, 2.2rem);
    border: 1px solid var(--homes-border);
    background: #ffffff;
}

.theme-homes-nrw .homes-related__intro {
    max-width: 44rem;
    margin-bottom: clamp(1.35rem, 2vw, 1.8rem);
}

.theme-homes-nrw .homes-related__intro h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

.theme-homes-nrw .homes-related__intro p:not(.homes-eyebrow) {
    color: var(--homes-copy-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.theme-homes-nrw .homes-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--homes-grid-gap);
}

.theme-homes-nrw .homes-related__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.15rem;
    border: 1px solid var(--homes-border);
    background: #f8faf8;
}

.theme-homes-nrw .homes-related__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-height: 1.65rem;
    margin-bottom: 0.65rem;
}

.theme-homes-nrw .homes-related__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    padding: 0.28rem 0.52rem;
    border: 1px solid rgba(17, 94, 89, 0.13);
    border-radius: 999px;
    background: #ffffff;
    color: #526561;
    font-size: 0.78rem;
    font-weight: 700;
}

.theme-homes-nrw .homes-related__card h3 {
    font-size: 1.08rem;
}

.theme-homes-nrw .homes-related__card p {
    color: var(--homes-copy-soft);
    font-size: 0.95rem;
    line-height: 1.56;
}

.theme-homes-nrw .homes-related__card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.theme-homes-nrw .drive-consent-banner__shell {
    width: min(1040px, calc(100% - 32px));
    padding: 0.85rem 0.95rem;
    border-radius: var(--homes-radius);
}

.theme-homes-nrw .drive-consent-banner__main {
    gap: 0.75rem 1rem;
}

.theme-homes-nrw .drive-consent-banner__title {
    margin-bottom: 0.18rem;
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.18;
}

.theme-homes-nrw .drive-consent-banner__description {
    max-width: 48rem;
    font-size: 0.88rem;
    line-height: 1.38;
}

.theme-homes-nrw .drive-consent-banner__links {
    font-size: 0.84rem;
}

.theme-homes-nrw .drive-consent-banner__actions .btn {
    min-height: 2.5rem;
    padding: 0.56rem 0.88rem;
    font-size: 0.86rem;
}

.theme-homes-nrw .drive-consent-banner__option {
    border-radius: var(--homes-radius);
}

.theme-homes-nrw .homes-property-offers,
.theme-homes-nrw .homes-property-offer-detail {
    background: #fbfcfb;
}

.theme-homes-nrw .homes-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--homes-grid-gap);
}

.theme-homes-nrw .homes-offer-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--homes-border);
    border-radius: var(--homes-radius);
    background: #ffffff;
    box-shadow: 0 14px 36px -34px rgba(23, 33, 31, 0.4);
}

.theme-homes-nrw .homes-offer-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--homes-paper);
    color: var(--homes-copy-muted);
    text-decoration: none;
}

.theme-homes-nrw .homes-offer-card__media img,
.theme-homes-nrw .homes-offer-gallery img,
.theme-homes-nrw .homes-offer-detail-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-homes-nrw .homes-offer-card__empty-media,
.theme-homes-nrw .homes-offer-detail-hero__empty {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 14rem;
    place-items: center;
    padding: 1rem;
    color: var(--homes-copy-muted);
    font-size: 0.95rem;
    font-weight: 760;
    text-align: center;
}

.theme-homes-nrw .homes-offer-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.95rem;
    padding: clamp(1.1rem, 2vw, 1.4rem);
}

.theme-homes-nrw .homes-offer-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.theme-homes-nrw .homes-offer-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 1.72rem;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(17, 94, 89, 0.14);
    border-radius: 999px;
    background: #f4f7f5;
    color: #526561;
    font-size: 0.78rem;
    font-weight: 720;
}

.theme-homes-nrw .homes-offer-card h3 {
    margin: 0;
    font-size: clamp(1.12rem, 1.45vw, 1.28rem);
    line-height: 1.25;
}

.theme-homes-nrw .homes-offer-card h3 a {
    color: var(--homes-ink);
    text-decoration: none;
}

.theme-homes-nrw .homes-offer-card h3 a:hover,
.theme-homes-nrw .homes-offer-card h3 a:focus-visible {
    color: var(--drive-primary-strong);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.theme-homes-nrw .homes-offer-card p {
    color: var(--homes-copy-soft);
    font-size: 0.98rem;
    line-height: 1.58;
}

.theme-homes-nrw .homes-offer-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.theme-homes-nrw .homes-offer-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
}

.theme-homes-nrw .homes-offer-facts div {
    min-width: 0;
    padding: 0.75rem;
    border: 1px solid rgba(23, 33, 31, 0.09);
    border-radius: var(--homes-radius);
    background: #f8faf8;
}

.theme-homes-nrw .homes-offer-facts dt {
    color: var(--homes-copy-soft);
    font-size: 0.78rem;
    font-weight: 760;
}

.theme-homes-nrw .homes-offer-facts dd {
    margin: 0.2rem 0 0;
    color: var(--homes-ink);
    font-size: 0.98rem;
    font-weight: 760;
    line-height: 1.25;
}

.theme-homes-nrw .homes-offer-empty {
    max-width: 48rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid var(--homes-border);
    border-radius: var(--homes-radius);
    background: #ffffff;
    box-shadow: var(--homes-shadow-soft);
}

.theme-homes-nrw .homes-offer-empty p {
    color: var(--homes-copy-soft);
}

.theme-homes-nrw .homes-offer-detail-hero {
    padding: clamp(3.5rem, 5vw, 5.8rem) 0;
    background: #f4f7f5;
}

.theme-homes-nrw .homes-offer-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.theme-homes-nrw .homes-offer-detail-hero__media {
    overflow: hidden;
    min-height: 22rem;
    margin: 0;
    border: 1px solid var(--homes-border);
    border-radius: var(--homes-radius);
    background: var(--homes-paper);
    box-shadow: var(--homes-shadow-soft);
}

.theme-homes-nrw .homes-offer-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
    gap: clamp(1.8rem, 3.5vw, 3rem);
    align-items: start;
}

.theme-homes-nrw .homes-offer-detail-main,
.theme-homes-nrw .homes-offer-inquiry {
    min-width: 0;
}

.theme-homes-nrw .homes-offer-inquiry {
    position: sticky;
    top: 7rem;
}

.theme-homes-nrw .homes-offer-facts--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.theme-homes-nrw .homes-offer-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.theme-homes-nrw .homes-offer-gallery img {
    aspect-ratio: 16 / 10;
    border-radius: var(--homes-radius);
}

.theme-homes-nrw .homes-offer-section-list {
    display: grid;
    gap: 1rem;
}

.theme-homes-nrw .homes-offer-section-list section,
.theme-homes-nrw .homes-offer-notices {
    padding: clamp(1.1rem, 2vw, 1.45rem);
    border: 1px solid var(--homes-border);
    border-radius: var(--homes-radius);
    background: #ffffff;
}

.theme-homes-nrw .homes-offer-section-list h2,
.theme-homes-nrw .homes-offer-notices h3 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.theme-homes-nrw .homes-offer-section-list p,
.theme-homes-nrw .homes-offer-notices p {
    color: var(--homes-copy-muted);
    line-height: 1.68;
}

.theme-homes-nrw .homes-offer-notices {
    display: grid;
    gap: 0.95rem;
    margin: 1.1rem 0;
    background: #f8faf8;
}

.theme-homes-nrw .homes-form__row--single {
    grid-template-columns: 1fr;
}

@media (max-width: 1199.98px) {
    .theme-homes-nrw .homes-hero__grid,
    .theme-homes-nrw .homes-lead-form__grid,
    .theme-homes-nrw .homes-image-section__grid,
    .theme-homes-nrw .homes-offer-detail-hero__grid,
    .theme-homes-nrw .homes-offer-detail-grid {
        grid-template-columns: 1fr;
    }

    .theme-homes-nrw .homes-hero__visual,
    .theme-homes-nrw .homes-image-section__figure,
    .theme-homes-nrw .homes-offer-detail-hero__media {
        max-width: 46rem;
    }

    .theme-homes-nrw .homes-lead-form__copy,
    .theme-homes-nrw .homes-offer-inquiry {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .theme-homes-nrw .site-header {
        padding-block: 0.62rem !important;
    }

    .theme-homes-nrw .site-header__container,
    .theme-homes-nrw .site-header__surface,
    .theme-homes-nrw .site-header__main {
        gap: 0.55rem !important;
    }

    .theme-homes-nrw .homes-card-grid,
    .theme-homes-nrw .homes-text-section__inner,
    .theme-homes-nrw .homes-related__grid,
    .theme-homes-nrw .homes-offer-grid,
    .theme-homes-nrw .homes-offer-facts--large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .theme-homes-nrw {
        --homes-section-space: 3.35rem;
        --homes-section-space-tight: 2.8rem;
    }

    .theme-homes-nrw h1 {
        max-width: 100%;
        font-size: clamp(2.22rem, 9.6vw, 2.58rem);
        line-height: 1.08;
    }

    .theme-homes-nrw h2 {
        font-size: clamp(1.55rem, 7vw, 1.92rem);
        line-height: 1.16;
    }

    .theme-homes-nrw .site-logo-image {
        width: min(54vw, 174px);
        max-height: 56px;
    }

    .theme-homes-nrw .site-menu-toggle {
        min-width: 3rem;
        min-height: 2.6rem;
    }

    .theme-homes-nrw .cms-block > .container,
    .theme-homes-nrw .homes-related.container,
    .theme-homes-nrw .legal-page main.container {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        padding-right: 0;
        padding-left: 0;
    }

    .theme-homes-nrw .homes-hero__grid,
    .theme-homes-nrw .homes-hero__copy,
    .theme-homes-nrw .homes-hero__visual,
    .theme-homes-nrw .homes-action-row,
    .theme-homes-nrw .homes-trust-list {
        min-width: 0;
        max-width: 100%;
    }

    .theme-homes-nrw h1 {
        overflow-wrap: break-word;
    }

    .theme-homes-nrw .legal-page {
        padding-block: 3rem !important;
    }

    .theme-homes-nrw .legal-page .d-flex {
        gap: 1rem !important;
    }

    .theme-homes-nrw .legal-page h1 {
        font-size: clamp(2rem, 8.2vw, 2.28rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .theme-homes-nrw .homes-hero {
        padding: 2.6rem 0 3.05rem;
    }

    .theme-homes-nrw .homes-hero__lead {
        font-size: 1.04rem;
        line-height: 1.58;
    }

    .theme-homes-nrw .homes-action-row .btn {
        width: 100%;
    }

    .theme-homes-nrw .homes-trust-list,
    .theme-homes-nrw .homes-form__row,
    .theme-homes-nrw .homes-hero__stats,
    .theme-homes-nrw .homes-cta__inner,
    .theme-homes-nrw .homes-offer-facts,
    .theme-homes-nrw .homes-offer-gallery {
        grid-template-columns: 1fr;
    }

    .theme-homes-nrw .homes-hero__visual picture,
    .theme-homes-nrw .homes-image-section__figure img {
        aspect-ratio: 4 / 3;
    }

    .theme-homes-nrw .homes-hero__stats {
        position: static;
        width: 100%;
        margin-top: 0.85rem;
    }

    .theme-homes-nrw .homes-lead-form__copy,
    .theme-homes-nrw .homes-lead-form__panel,
    .theme-homes-nrw .homes-related__surface {
        padding: 1.15rem;
    }

    .theme-homes-nrw .homes-valuation-frame__panel,
    .theme-homes-nrw .homes-valuation-frame__iframe {
        min-height: 760px;
    }

    .theme-homes-nrw .drive-consent-banner__shell {
        width: calc(100% - 14px);
        padding: 0.72rem 0.78rem;
    }

    .theme-homes-nrw .drive-consent-banner__title {
        font-size: 1.08rem;
    }

    .theme-homes-nrw .drive-consent-banner__description {
        font-size: 0.8rem;
        line-height: 1.34;
    }

    .theme-homes-nrw .drive-consent-banner__links {
        font-size: 0.76rem;
    }

    .theme-homes-nrw .drive-consent-banner__actions {
        gap: 0.38rem;
    }

    .theme-homes-nrw .drive-consent-banner__actions .btn {
        min-height: 2.5rem;
        padding: 0.52rem 0.62rem;
        font-size: 0.8rem;
    }
}

.theme-industrial-performance {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 28%),
        linear-gradient(180deg, #f3f5f8 0%, #ffffff 18%, #f8fafc 100%);
}

.theme-industrial-performance .btn-primary {
    color: #111827;
    box-shadow: 0 16px 40px -26px rgba(245, 158, 11, 0.9);
}

.theme-industrial-performance .btn-primary:hover {
    color: #111827;
}

.theme-industrial-performance .btn-outline-secondary {
    border-color: rgba(17, 24, 39, 0.18);
    color: #111827;
}

.theme-industrial-performance header[role="banner"] {
    background: rgba(248, 250, 252, 0.78) !important;
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(17, 24, 39, 0.08) !important;
    box-shadow: 0 22px 48px -42px rgba(15, 23, 42, 0.4);
}

.theme-industrial-performance .site-header {
    padding-block: 0.52rem !important;
}

.theme-industrial-performance .site-header__container {
    gap: 0.55rem !important;
}

.theme-industrial-performance .site-header__surface--industrial {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.65rem 0.72rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.45rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.96)),
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 34%);
    box-shadow:
        0 32px 56px -46px rgba(15, 23, 42, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.theme-industrial-performance .site-header__surface--industrial::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 36%);
}

.theme-industrial-performance .site-header__utility {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    gap: 0.35rem !important;
    padding: 0.34rem 0.62rem;
    border-radius: 0.95rem;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 34px -30px rgba(15, 23, 42, 0.72);
}

.theme-industrial-performance .site-header__utility-item {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: rgba(226, 232, 240, 0.92) !important;
    box-shadow: none !important;
    font-size: 0.78rem;
    font-weight: 550;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.2;
}

.theme-industrial-performance .site-header__utility-item a {
    color: #f8fafc;
    text-decoration: none;
}

.theme-industrial-performance .site-header__utility-item a:hover,
.theme-industrial-performance .site-header__utility-item a:focus-visible {
    color: #fde68a;
    text-decoration: underline;
    outline: none;
}

.theme-industrial-performance .site-header__utility-item strong {
    color: #f8fafc;
}

.theme-industrial-performance .site-header__main {
    display: grid !important;
    grid-template-columns: minmax(0, auto) 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
}

.theme-industrial-performance .site-logo-link--industrial {
    align-self: stretch;
    position: relative;
}

.theme-industrial-performance .site-logo-frame--industrial {
    min-height: 3.85rem;
    padding: 0.56rem 0.72rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 0.92rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.9)),
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 46%);
    box-shadow:
        0 18px 30px -24px rgba(15, 23, 42, 0.62),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.theme-industrial-performance .site-logo-image--industrial {
    width: clamp(170px, 17vw, 265px);
    max-width: 100%;
    filter: drop-shadow(0 2px 14px rgba(15, 23, 42, 0.22));
}

.theme-industrial-performance .site-logo-text--industrial {
    letter-spacing: -0.04em;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    color: #0f172a !important;
}

.theme-industrial-performance .site-primary-nav--industrial-main {
    justify-content: flex-end;
    min-width: 0;
    justify-self: end;
}

.theme-industrial-performance .site-header__actions-wrapper--industrial {
    justify-self: end;
    margin-left: auto;
}

.theme-industrial-performance .site-header__actions {
    align-items: center;
    padding: 0.3rem 0.45rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.42);
}

.theme-industrial-performance .site-header-contact--industrial {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.theme-industrial-performance .site-header-contact__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 180ms ease;
}

.theme-industrial-performance .site-header-contact__link:hover,
.theme-industrial-performance .site-header-contact__link:focus-visible {
    color: #0f172a;
    border-color: rgba(245, 158, 11, 0.32);
    background: rgba(255, 255, 255, 0.98);
    outline: none;
}

.theme-industrial-performance .site-header-contact__link--primary {
    color: #111827;
    border-color: rgba(245, 158, 11, 0.24);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(255, 255, 255, 0.94));
}

.theme-industrial-performance .site-header__desktop-nav--industrial {
    display: none !important;
}

.theme-industrial-performance .site-header__desktop-nav {
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.theme-industrial-performance .site-primary-nav--industrial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem;
    padding: 0.18rem;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.theme-industrial-performance .site-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 1.95rem;
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    color: #526074;
    font-size: 0.85rem;
    font-weight: 650;
    letter-spacing: 0.005em;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.theme-industrial-performance .site-nav-link:hover,
.theme-industrial-performance .site-nav-link:focus-visible {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 24px -24px rgba(15, 23, 42, 0.28);
    outline: none;
    transform: translateY(-1px);
}

.theme-industrial-performance .site-mobile-utility--industrial {
    display: none;
}

.theme-industrial-performance .site-mobile-utility__item {
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.5;
}

.theme-industrial-performance .site-mobile-utility__item a {
    color: #0f172a;
    text-decoration: none;
}

.theme-industrial-performance .site-mobile-utility__item a:hover,
.theme-industrial-performance .site-mobile-utility__item a:focus-visible {
    text-decoration: underline;
}

.theme-industrial-performance .site-nav-link.is-active {
    color: #0f172a;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.95));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.theme-industrial-performance .site-nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.38rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.9), rgba(251, 191, 36, 0.72));
}

.theme-industrial-performance .site-locale-nav--industrial,
.theme-industrial-performance .mobile-locale-nav--industrial {
    align-items: center;
}

.theme-industrial-performance .site-locale-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.7rem;
    min-height: 2.4rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 180ms ease;
}

.theme-industrial-performance .site-locale-link:hover,
.theme-industrial-performance .site-locale-link:focus-visible,
.theme-industrial-performance .site-locale-link.is-current {
    color: #0f172a;
    border-color: rgba(245, 158, 11, 0.34);
    background: rgba(255, 255, 255, 0.92);
    outline: none;
}

.theme-industrial-performance .site-menu-toggle--industrial {
    border-radius: 999px;
    border-color: rgba(148, 163, 184, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
    color: #0f172a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.theme-industrial-performance .site-mobile-nav-collapse {
    margin-top: 0;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.theme-industrial-performance .site-mobile-nav-panel--industrial {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.5rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(255, 255, 255, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.theme-industrial-performance .site-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}

.theme-industrial-performance .site-mobile-nav-link.is-active {
    border-color: rgba(245, 158, 11, 0.34);
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(255, 255, 255, 0.96));
}

.theme-industrial-performance .site-mobile-contact--industrial {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.theme-industrial-performance .site-mobile-contact__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}

.theme-industrial-performance .site-mobile-contact__link--primary {
    border-color: rgba(245, 158, 11, 0.26);
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(255, 255, 255, 0.96));
}

.theme-industrial-performance .site-mobile-contact__link--whatsapp {
    border-color: rgba(37, 211, 102, 0.24);
    background: linear-gradient(180deg, rgba(240, 253, 244, 0.98), rgba(255, 255, 255, 0.96));
    color: #0f172a;
}

.theme-industrial-performance .site-whatsapp-cta--industrial {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94)),
        radial-gradient(circle at top left, rgba(37, 211, 102, 0.12), transparent 45%);
    border-color: rgba(37, 211, 102, 0.22);
}

.theme-industrial-performance .site-whatsapp-cta--industrial .site-whatsapp-cta__label {
    font-weight: 800;
}

.theme-industrial-performance .footer {
    background: linear-gradient(180deg, #fbfcfd 0%, #edf2f7 100%);
}

.theme-industrial-performance .industrial-shell {
    position: relative;
}

.theme-industrial-performance .industrial-section {
    padding-block: clamp(4rem, 7vw, 6rem);
}

.theme-industrial-performance .industrial-section__shell,
.theme-industrial-performance .industrial-content-card,
.theme-industrial-performance .industrial-form-shell,
.theme-industrial-performance .industrial-image-shell,
.theme-industrial-performance .industrial-cta-card,
.theme-industrial-performance .shared-snippet .industrial-pricing-table,
.theme-industrial-performance .shared-snippet .industrial-contact-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow: 0 28px 70px -52px rgba(15, 23, 42, 0.55);
}

.theme-industrial-performance .industrial-content-card,
.theme-industrial-performance .industrial-image-shell,
.theme-industrial-performance .industrial-form-shell,
.theme-industrial-performance .shared-snippet .industrial-pricing-table,
.theme-industrial-performance .shared-snippet .industrial-contact-card {
    padding: clamp(1.4rem, 2vw, 2rem);
}

.theme-industrial-performance .industrial-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: #c77d08;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.theme-industrial-performance .industrial-eyebrow::before {
    content: "";
    width: 2.6rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.8), transparent);
}

.theme-industrial-performance .industrial-section__heading {
    max-width: 780px;
    margin: 0 auto 2rem;
}

.theme-industrial-performance .industrial-section__lead,
.theme-industrial-performance .industrial-hero__lead,
.theme-industrial-performance .industrial-cta-card__text,
.theme-industrial-performance .industrial-richtext,
.theme-industrial-performance .industrial-richtext p,
.theme-industrial-performance .industrial-contact-card p,
.theme-industrial-performance .industrial-pricing-table p {
    color: #475569;
    line-height: 1.75;
}

.theme-industrial-performance .industrial-richtext > *:last-child,
.theme-industrial-performance .industrial-contact-card > *:last-child,
.theme-industrial-performance .industrial-pricing-table > *:last-child {
    margin-bottom: 0;
}

.theme-industrial-performance .industrial-richtext a,
.theme-industrial-performance .industrial-contact-card a,
.theme-industrial-performance .industrial-pricing-table a,
.theme-industrial-performance .industrial-footer-meta a {
    color: #b45309;
    font-weight: 700;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.theme-industrial-performance .industrial-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3.4rem, 7vw, 5.6rem);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 22%),
        radial-gradient(circle at 18% 18%, rgba(148, 163, 184, 0.16), transparent 24%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.14), transparent 26%),
        var(--drive-hero-background);
    color: #e5e7eb;
}

.theme-industrial-performance .industrial-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -22% auto;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0) 68%);
    pointer-events: none;
}

.theme-industrial-performance .industrial-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0) 35%);
    pointer-events: none;
}

.theme-industrial-performance .industrial-hero__shell {
    position: relative;
    z-index: 1;
}

.theme-industrial-performance .industrial-hero__panel {
    position: relative;
    padding: clamp(1.5rem, 2.8vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2.2rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(17, 24, 39, 0.8)),
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%);
    box-shadow:
        0 42px 80px -58px rgba(15, 23, 42, 0.88),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-industrial-performance .industrial-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.04), transparent 40%);
}

.theme-industrial-performance .industrial-hero__grid,
.theme-industrial-performance .industrial-hero__content {
    position: relative;
    z-index: 1;
}

.theme-industrial-performance .industrial-hero .industrial-eyebrow,
.theme-industrial-performance .industrial-hero .industrial-eyebrow::before {
    color: #fbbf24;
    background: none;
}

.theme-industrial-performance .industrial-hero .industrial-eyebrow::before {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.8), transparent);
}

.theme-industrial-performance .industrial-hero .industrial-eyebrow {
    margin-bottom: 1.15rem;
}

.theme-industrial-performance .industrial-hero__headline,
.theme-industrial-performance .industrial-hero h1 {
    color: #f8fafc;
    max-width: 11ch;
    font-size: clamp(2.9rem, 5.8vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.theme-industrial-performance .industrial-hero__lead {
    max-width: 39rem;
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    color: rgba(226, 232, 240, 0.86);
}

.theme-industrial-performance .industrial-hero__actions {
    margin-top: 1.8rem !important;
}

.theme-industrial-performance .industrial-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.theme-industrial-performance .industrial-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #f8fafc;
    font-size: 0.84rem;
    font-weight: 700;
}

.theme-industrial-performance .industrial-btn-primary,
.theme-industrial-performance .industrial-cta-card__button.btn-primary {
    border: 0;
    color: #111827;
    background: linear-gradient(135deg, #f59e0b 0%, #facc15 100%);
}

.theme-industrial-performance .industrial-btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.02);
}

.theme-industrial-performance .industrial-btn-secondary:hover,
.theme-industrial-performance .industrial-btn-secondary:focus-visible {
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.08);
}

.theme-industrial-performance .industrial-stat-card {
    display: grid;
    gap: 0.4rem;
    height: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.theme-industrial-performance .industrial-stat-card strong {
    color: #f8fafc;
    font-size: 1.15rem;
    font-weight: 800;
}

.theme-industrial-performance .industrial-stat-card span {
    color: rgba(226, 232, 240, 0.86);
    line-height: 1.5;
}

.theme-industrial-performance .industrial-hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    box-shadow: 0 24px 70px -45px rgba(15, 23, 42, 0.85);
}

.theme-industrial-performance .industrial-hero-media::after {
    content: "";
    position: absolute;
    inset: auto 0.75rem 0.75rem 0.75rem;
    height: 28%;
    border-radius: 0 0 1.3rem 1.3rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.24) 100%);
    pointer-events: none;
}

.theme-industrial-performance .industrial-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 1.3rem;
    object-fit: cover;
}

.theme-industrial-performance .industrial-feature-grid {
    position: relative;
    margin-top: clamp(-1.7rem, -2vw, -0.95rem);
    z-index: 1;
}

.theme-industrial-performance .industrial-feature-grid__intro {
    display: grid;
    gap: 0.95rem;
    margin-bottom: 1.45rem;
}

.theme-industrial-performance .industrial-feature-grid__eyebrow {
    margin-bottom: 0;
}

.theme-industrial-performance .industrial-feature-grid__heading {
    max-width: 52rem;
    margin-bottom: 0;
}

.theme-industrial-performance .industrial-feature-grid__heading h2 {
    margin-bottom: 0.75rem;
}

.theme-industrial-performance .industrial-feature-grid__heading p {
    max-width: 46rem;
    margin-bottom: 0;
}

.theme-industrial-performance .industrial-feature-grid__board {
    position: relative;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.09), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.98) 100%);
    box-shadow: 0 28px 72px -54px rgba(15, 23, 42, 0.58);
}

.theme-industrial-performance .industrial-feature-grid__board::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.theme-industrial-performance .industrial-feature-grid__row {
    position: relative;
    z-index: 1;
}

.theme-industrial-performance .industrial-feature-card {
    position: relative;
    display: grid;
    gap: 0.95rem;
    height: 100%;
    padding: 1.35rem 1.3rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 249, 252, 0.98) 100%);
    box-shadow: 0 18px 48px -42px rgba(15, 23, 42, 0.42);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-industrial-performance .industrial-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.3rem;
    right: 1.3rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.95) 0%, rgba(245, 158, 11, 0.18) 78%, rgba(245, 158, 11, 0) 100%);
    opacity: 0.72;
}

.theme-industrial-performance .industrial-feature-card:hover,
.theme-industrial-performance .industrial-feature-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 251, 0.98) 100%);
    box-shadow: 0 30px 62px -44px rgba(15, 23, 42, 0.36);
}

.theme-industrial-performance .industrial-feature-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.theme-industrial-performance .industrial-feature-card__media {
    overflow: hidden;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.theme-industrial-performance .industrial-feature-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.theme-industrial-performance .industrial-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #111827 0%, #334155 100%);
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-industrial-performance .industrial-feature-card__kicker {
    color: #b45309;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-industrial-performance .industrial-feature-card h3 {
    margin-bottom: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    line-height: 1.2;
}

.theme-industrial-performance .industrial-feature-card p {
    margin-bottom: 0;
    color: #526274;
    line-height: 1.68;
}

.theme-industrial-performance .industrial-feature-card__link {
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
    text-underline-offset: 0.18em;
}

.theme-industrial-performance .industrial-feature-card__link:hover,
.theme-industrial-performance .industrial-feature-card__link:focus-visible {
    color: #b45309;
    text-decoration: underline;
}

.theme-industrial-performance .industrial-image-shell .image-section,
.theme-industrial-performance .industrial-image-shell .container {
    padding: 0;
}

.theme-industrial-performance .industrial-image-shell .figure {
    margin-bottom: 0;
}

.theme-industrial-performance .industrial-image-shell .figure-img {
    border-radius: 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 22px 60px -48px rgba(15, 23, 42, 0.65);
}

.theme-industrial-performance .industrial-image-shell .figure-caption {
    margin-top: 0.9rem;
    color: #64748b;
}

.theme-industrial-performance .industrial-cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 2vw, 2rem);
}

.theme-industrial-performance .industrial-cta-card::before {
    content: "";
    position: absolute;
    inset: auto -10% -45% auto;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 68%);
    pointer-events: none;
}

.theme-industrial-performance .industrial-cta-card--dark {
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.theme-industrial-performance .industrial-cta-card--dark h2,
.theme-industrial-performance .industrial-cta-card--dark .industrial-cta-card__text {
    color: #f8fafc;
}

.theme-industrial-performance .industrial-cta-card--dark .industrial-cta-card__button {
    border-color: rgba(255, 255, 255, 0.18);
}

.theme-industrial-performance .industrial-form-shell {
    position: relative;
}

.theme-industrial-performance .industrial-form-shell h2 {
    margin-bottom: 0.7rem;
}

.theme-industrial-performance .industrial-form-shell--inquiry {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.theme-industrial-performance .industrial-form-shell__subheadline {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.theme-industrial-performance .industrial-form-note {
    height: 100%;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(148, 163, 184, 0.38);
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(241, 245, 249, 0.95) 100%);
    color: #64748b;
    line-height: 1.65;
}

.theme-industrial-performance .industrial-form-shell .form-label {
    font-weight: 700;
    color: #0f172a;
}

.theme-industrial-performance .industrial-form-shell .form-control,
.theme-industrial-performance .industrial-form-shell .form-select {
    min-height: 3.55rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.theme-industrial-performance .industrial-form-shell .form-control:focus,
.theme-industrial-performance .industrial-form-shell .form-select:focus {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 0 0.22rem rgba(245, 158, 11, 0.15);
}

.theme-industrial-performance .industrial-form-check {
    display: grid;
    grid-template-columns: 1.3rem 1fr;
    align-items: start;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
}

.theme-industrial-performance .industrial-form-check--card {
    min-height: 100%;
}

.theme-industrial-performance .industrial-form-check .form-check-input {
    margin-top: 0.2rem;
    width: 1.15rem;
    height: 1.15rem;
    border-color: rgba(100, 116, 139, 0.72);
}

.theme-industrial-performance .industrial-form-check .form-check-input:checked {
    background-color: #f59e0b;
    border-color: #f59e0b;
}

.theme-industrial-performance .industrial-form-check .form-check-label {
    color: #334155;
    line-height: 1.65;
}

.theme-industrial-performance .industrial-inquiry-summary {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    color: #f8fafc;
    box-shadow: 0 24px 64px -42px rgba(15, 23, 42, 0.85);
}

.theme-industrial-performance .industrial-inquiry-summary__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fbbf24;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-industrial-performance .industrial-inquiry-summary__stats {
    display: grid;
    gap: 0.8rem;
}

.theme-industrial-performance .industrial-inquiry-kpi {
    display: grid;
    gap: 0.18rem;
    padding: 0.85rem 0.95rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
}

.theme-industrial-performance .industrial-inquiry-kpi strong {
    color: #f8fafc;
    font-size: 1.02rem;
}

.theme-industrial-performance .industrial-inquiry-kpi span {
    color: rgba(226, 232, 240, 0.86);
    line-height: 1.5;
}

.theme-industrial-performance .industrial-inquiry-livecard {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-industrial-performance .industrial-inquiry-livecard__header {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.theme-industrial-performance .industrial-inquiry-livecard__header strong {
    color: #f8fafc;
}

.theme-industrial-performance .industrial-inquiry-livecard__header span {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.82rem;
}

.theme-industrial-performance .industrial-inquiry-livecard__list {
    display: grid;
    gap: 0.72rem;
    margin: 0;
}

.theme-industrial-performance .industrial-inquiry-livecard__list > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.72rem;
}

.theme-industrial-performance .industrial-inquiry-livecard__list > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.theme-industrial-performance .industrial-inquiry-livecard__list dt,
.theme-industrial-performance .industrial-inquiry-livecard__list dd {
    margin: 0;
}

.theme-industrial-performance .industrial-inquiry-livecard__list dt {
    color: rgba(226, 232, 240, 0.74);
}

.theme-industrial-performance .industrial-inquiry-livecard__list dd {
    color: #f8fafc;
    font-weight: 700;
    text-align: right;
}

.theme-industrial-performance .industrial-inquiry-summary__note {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 1.2rem;
    background: rgba(245, 158, 11, 0.16);
}

.theme-industrial-performance .industrial-inquiry-summary__note strong {
    color: #fde68a;
}

.theme-industrial-performance .industrial-inquiry-summary__note span {
    color: rgba(254, 240, 138, 0.92);
}

.theme-industrial-performance .industrial-inquiry-herohead {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.theme-industrial-performance .industrial-inquiry-herohead__title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.7rem;
}

.theme-industrial-performance .industrial-inquiry-herohead__lead {
    max-width: 48rem;
}

.theme-industrial-performance .industrial-badges--light {
    justify-content: flex-start;
}

.theme-industrial-performance .industrial-badge--light {
    color: #0f172a;
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(245, 158, 11, 0.08);
}

.theme-industrial-performance .industrial-mini-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.1rem 1.15rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 40px -36px rgba(15, 23, 42, 0.34);
}

.theme-industrial-performance .industrial-mini-card__icon {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 800;
}

.theme-industrial-performance .industrial-mini-card h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.theme-industrial-performance .industrial-mini-card p {
    margin-bottom: 0;
    color: #475569;
    line-height: 1.65;
}

.theme-industrial-performance .industrial-inquiry-form {
    position: relative;
}

.theme-industrial-performance .industrial-inquiry-step {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 0 18px 48px -40px rgba(15, 23, 42, 0.32);
}

.theme-industrial-performance .industrial-inquiry-step--closing {
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.theme-industrial-performance .industrial-inquiry-step__header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.theme-industrial-performance .industrial-inquiry-step__header p {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.65;
}

.theme-industrial-performance .industrial-inquiry-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827 0%, #334155 100%);
    color: #f8fafc;
    font-weight: 800;
}

.theme-industrial-performance .industrial-form-shell .form-text {
    margin-top: 0.45rem;
    color: #64748b;
}

.theme-industrial-performance .industrial-form-shell .invalid-feedback,
.theme-industrial-performance .industrial-form-shell .form-error-message {
    display: block;
    margin-top: 0.45rem;
}

.theme-industrial-performance .industrial-form-check--highlight small {
    display: block;
    margin-top: 0.35rem;
    color: #64748b;
    line-height: 1.55;
}

.theme-industrial-performance .industrial-inquiry-status {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(248, 250, 252, 0.84);
    color: #475569;
    line-height: 1.65;
}

.theme-industrial-performance .industrial-inquiry-status[data-state="warning"] {
    border-color: rgba(245, 158, 11, 0.32);
    background: rgba(255, 247, 237, 0.92);
    color: #9a3412;
}

.theme-industrial-performance .industrial-inquiry-status[data-state="success"] {
    border-color: rgba(34, 197, 94, 0.22);
    background: rgba(240, 253, 244, 0.92);
    color: #166534;
}

.theme-industrial-performance .industrial-inquiry-submit {
    min-width: min(100%, 22rem);
}

.theme-industrial-performance .industrial-inquiry-summary h3,
.theme-industrial-performance .industrial-inquiry-summary strong,
.theme-industrial-performance .industrial-inquiry-summary a {
    color: #f8fafc;
}

.theme-industrial-performance .industrial-inquiry-summary ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1.1rem;
}

.theme-industrial-performance .industrial-inquiry-summary p,
.theme-industrial-performance .industrial-inquiry-summary li {
    margin-bottom: 0;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.65;
}

.theme-industrial-performance .industrial-accordion {
    --bs-accordion-border-color: rgba(148, 163, 184, 0.24);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-bg: #ffffff;
    --bs-accordion-active-bg: #fff7ed;
    --bs-accordion-active-color: #9a3412;
}

.theme-industrial-performance .industrial-accordion__item {
    border-radius: 1.2rem !important;
    overflow: hidden;
    box-shadow: 0 16px 40px -34px rgba(15, 23, 42, 0.35);
}

.theme-industrial-performance .industrial-pricing-table h2,
.theme-industrial-performance .industrial-contact-card h2 {
    margin-bottom: 0.9rem;
}

.theme-industrial-performance .industrial-pricing-table .table {
    --bs-table-bg: transparent;
    --bs-table-color: #0f172a;
    margin-top: 1rem;
}

.theme-industrial-performance .industrial-pricing-table thead th {
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom-color: rgba(148, 163, 184, 0.35);
}

.theme-industrial-performance .industrial-pricing-table tbody th,
.theme-industrial-performance .industrial-pricing-table tbody td {
    padding-block: 1rem;
    border-color: rgba(148, 163, 184, 0.18);
    vertical-align: middle;
}

.theme-industrial-performance .industrial-pricing-table tbody td {
    font-weight: 700;
}

.theme-industrial-performance .industrial-pricing-table__hint {
    margin-top: 1rem;
    color: #64748b;
}

.theme-industrial-performance .industrial-contact-card {
    display: grid;
    gap: 0.8rem;
}

.theme-industrial-performance .industrial-footer-cta,
.theme-industrial-performance .industrial-footer-meta {
    max-width: 52rem;
    margin-inline: auto;
}

.theme-industrial-performance .industrial-footer-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.theme-industrial-performance .industrial-footer-cta p,
.theme-industrial-performance .industrial-footer-meta p {
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .theme-industrial-performance .site-header__surface--industrial {
        padding: 0.68rem;
        border-radius: 1.3rem;
    }

    .theme-industrial-performance .site-header__main {
        grid-template-columns: minmax(0, auto) auto;
    }

    .theme-industrial-performance .site-primary-nav--industrial-main {
        display: none !important;
    }

    .theme-industrial-performance .site-header__utility-item {
        font-size: 0.78rem;
    }

    .theme-industrial-performance .site-logo-frame--industrial {
        min-height: 3.7rem;
        padding: 0.56rem 0.68rem;
    }

    .theme-industrial-performance .industrial-inquiry-summary {
        position: static;
    }

    .theme-industrial-performance .industrial-hero-media img {
        aspect-ratio: 16 / 10;
    }

    .theme-industrial-performance .industrial-feature-grid {
        margin-top: -0.7rem;
    }

    .theme-industrial-performance .industrial-feature-grid__board {
        border-radius: 1.65rem;
        padding: 1rem;
    }

    .theme-industrial-performance .industrial-inquiry-livecard__list > div {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .theme-industrial-performance .site-header__container {
        gap: 0.45rem !important;
    }

    .theme-industrial-performance .site-header__surface--industrial {
        gap: 0.45rem;
        padding: 0.52rem;
        border-radius: 1rem;
    }

    .theme-industrial-performance .site-header__utility {
        display: none;
    }

    .theme-industrial-performance .site-header__main {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.5rem;
    }

    .theme-industrial-performance .site-header__actions-wrapper--industrial {
        margin-left: 0;
    }

    .theme-industrial-performance .site-header__actions {
        padding: 0.15rem;
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .theme-industrial-performance .site-logo-image--industrial {
        width: min(52vw, 205px);
    }

    .theme-industrial-performance .site-logo-frame--industrial {
        min-height: 3.25rem;
        padding: 0.46rem 0.58rem;
        border-radius: 0.82rem;
    }

    .theme-industrial-performance .site-menu-toggle--industrial {
        min-height: 2.3rem;
        padding: 0.3rem 0.65rem !important;
        border-radius: 0.8rem;
    }

    .theme-industrial-performance .site-mobile-nav-collapse {
        padding-top: 0.45rem;
    }

    .theme-industrial-performance .site-mobile-nav-panel--industrial {
        padding-top: 0.2rem !important;
    }

    .theme-industrial-performance .site-mobile-utility--industrial {
        display: grid;
        gap: 0.4rem;
        padding: 0.72rem 0.8rem;
        border: 1px solid rgba(148, 163, 184, 0.18);
        border-radius: 0.95rem;
        background: rgba(248, 250, 252, 0.92);
    }

    .theme-industrial-performance .industrial-section {
        padding-block: 3.4rem;
    }

    .theme-industrial-performance .industrial-content-card,
    .theme-industrial-performance .industrial-image-shell,
    .theme-industrial-performance .industrial-form-shell,
    .theme-industrial-performance .shared-snippet .industrial-pricing-table,
    .theme-industrial-performance .shared-snippet .industrial-contact-card,
    .theme-industrial-performance .industrial-cta-card {
        border-radius: 1.4rem;
        padding: 1.15rem;
    }

    .theme-industrial-performance .industrial-feature-grid {
        margin-top: 0;
    }

    .theme-industrial-performance .industrial-feature-grid__intro {
        margin-bottom: 1rem;
    }

    .theme-industrial-performance .industrial-feature-grid__board {
        border-radius: 1.35rem;
        padding: 0.85rem;
    }

    .theme-industrial-performance .industrial-feature-card {
        border-radius: 1.3rem;
        padding: 1.1rem;
    }

    .theme-industrial-performance .industrial-feature-card__media {
        border-radius: 1rem;
    }

    .theme-industrial-performance .industrial-form-check {
        grid-template-columns: 1.15rem 1fr;
        gap: 0.7rem;
    }

    .theme-industrial-performance .industrial-inquiry-step,
    .theme-industrial-performance .industrial-mini-card {
        border-radius: 1.2rem;
        padding: 1rem;
    }

    .theme-industrial-performance .industrial-inquiry-step__header {
        grid-template-columns: 1fr;
    }

    .theme-industrial-performance .industrial-inquiry-step__index {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 575.98px) {
    .theme-industrial-performance .industrial-feature-grid__board {
        border-radius: 1.15rem;
        padding: 0.7rem;
    }

    .theme-industrial-performance .industrial-feature-card {
        border-radius: 1.15rem;
        padding: 1rem;
    }

    .theme-industrial-performance .industrial-feature-card__media {
        border-radius: 0.9rem;
    }

    .theme-industrial-performance .site-header__surface--industrial {
        padding: 0.46rem;
    }

    .theme-industrial-performance .site-header__utility {
        padding: 0.5rem 0.68rem;
        border-radius: 0.9rem;
    }

    .theme-industrial-performance .site-header__utility-item {
        line-height: 1.5;
        font-size: 0.82rem;
    }

    .theme-industrial-performance .site-logo-frame--industrial {
        min-height: 3.05rem;
        padding: 0.42rem 0.52rem;
        border-radius: 0.78rem;
    }

    .theme-industrial-performance .site-logo-image--industrial {
        width: min(50vw, 190px);
    }
}

@media (max-width: 575.98px) {
    .theme-industrial-performance .site-header {
        padding-block: 0.45rem !important;
    }

    .theme-industrial-performance .site-header__utility-item {
        padding: 0.7rem 0.85rem !important;
        font-size: 0.82rem;
    }

    .theme-industrial-performance .site-logo-link--industrial {
        width: 100%;
    }

    .theme-industrial-performance .site-logo-frame--industrial {
        width: 100%;
        min-height: 3.05rem;
        padding: 0.42rem 0.52rem;
        border-radius: 0.78rem;
    }

    .theme-industrial-performance .site-logo-image--industrial {
        width: min(52vw, 190px);
    }

    .theme-industrial-performance .site-menu-toggle--industrial {
        padding-inline: 0.62rem !important;
    }
}

.site-notice-band {
    padding: 0 0 0.75rem;
}

.site-notice-band__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.site-notice-band__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.94);
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.45;
    box-shadow: 0 18px 35px -34px rgba(15, 23, 42, 0.32);
}

.site-notice-band__item a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.site-notice-band__item a:hover,
.site-notice-band__item a:focus-visible {
    text-decoration: underline;
}

.theme-industrial-performance .site-header {
    padding-block: 0.42rem !important;
}

.theme-industrial-performance .site-header__container {
    gap: 0 !important;
}

.theme-industrial-performance .site-header__surface--industrial {
    gap: 0;
    padding: 0.5rem 0.62rem;
    border-radius: 1.15rem;
    box-shadow:
        0 24px 42px -38px rgba(15, 23, 42, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.theme-industrial-performance .site-header__surface--industrial::after {
    display: none;
}

.theme-industrial-performance .site-header__main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.theme-industrial-performance .site-logo-frame--industrial {
    min-height: 3.2rem;
    padding: 0.42rem 0.58rem;
    border-radius: 0.86rem;
    box-shadow:
        0 16px 28px -24px rgba(15, 23, 42, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.theme-industrial-performance .site-logo-image--industrial {
    width: clamp(155px, 15vw, 238px);
}

.theme-industrial-performance .site-primary-nav--industrial-main {
    justify-self: stretch;
    justify-content: flex-start;
    width: 100%;
    padding: 0.16rem;
    border-radius: 999px;
}

.theme-industrial-performance .site-nav-link {
    min-height: 1.88rem;
    padding: 0.32rem 0.64rem;
    font-size: 0.83rem;
}

.theme-industrial-performance .site-nav-link.is-active::after {
    bottom: 0.32rem;
}

.theme-industrial-performance .site-header__actions-wrapper--industrial {
    align-self: center;
}

.theme-industrial-performance .site-menu-toggle--industrial {
    min-height: 2.45rem;
    padding: 0.3rem 0.72rem !important;
    border-radius: 0.9rem;
}

.theme-industrial-performance .site-mobile-nav-collapse {
    padding-top: 0.5rem;
    border-top: 0;
}

.theme-industrial-performance .site-mobile-nav-panel--industrial {
    margin-top: 0.2rem;
    padding: 0.85rem 0.9rem 0.95rem;
    border-radius: 1.15rem;
}

.theme-industrial-performance .site-notice-band {
    padding: 0.3rem 0 0.75rem;
}

.theme-industrial-performance .site-notice-band__inner--industrial {
    padding: 0.32rem 0 0;
}

.theme-industrial-performance .site-notice-band__item--industrial {
    padding: 0.45rem 0.85rem;
    border-color: rgba(148, 163, 184, 0.16);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92)),
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 44%);
    color: rgba(226, 232, 240, 0.94);
    font-size: 0.8rem;
    box-shadow:
        0 18px 32px -30px rgba(15, 23, 42, 0.68),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-industrial-performance .site-notice-band__item--industrial strong,
.theme-industrial-performance .site-notice-band__item--industrial a {
    color: #f8fafc;
}

.theme-industrial-performance .site-notice-band__item--industrial a:hover,
.theme-industrial-performance .site-notice-band__item--industrial a:focus-visible {
    color: #fde68a;
}

@media (max-width: 991.98px) {
    .theme-industrial-performance .site-header__main {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.55rem;
    }

    .theme-industrial-performance .site-primary-nav--industrial-main {
        display: none !important;
    }

    .theme-industrial-performance .site-notice-band__inner {
        gap: 0.5rem;
    }

    .theme-industrial-performance .site-notice-band__item--industrial {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .site-notice-band {
        padding-bottom: 0.55rem;
    }

    .site-notice-band__item {
        width: 100%;
        border-radius: 1rem;
        padding: 0.58rem 0.8rem;
        align-items: flex-start;
    }

    .theme-industrial-performance .site-header {
        padding-block: 0.34rem !important;
    }

    .theme-industrial-performance .site-header__surface--industrial {
        padding: 0.42rem 0.46rem;
        border-radius: 0.95rem;
    }

    .theme-industrial-performance .site-logo-frame--industrial {
        min-height: 2.9rem;
        padding: 0.36rem 0.48rem;
        border-radius: 0.72rem;
    }

    .theme-industrial-performance .site-logo-image--industrial {
        width: min(48vw, 188px);
    }

    .theme-industrial-performance .site-menu-toggle--industrial {
        min-height: 2.15rem;
        padding: 0.25rem 0.58rem !important;
    }

    .theme-industrial-performance .site-mobile-nav-panel--industrial {
        padding: 0.8rem 0.82rem 0.88rem;
    }

    .theme-industrial-performance .site-notice-band {
        padding-top: 0.18rem;
        padding-bottom: 0.48rem;
    }

    .theme-industrial-performance .site-notice-band__item--industrial {
        padding: 0.58rem 0.75rem;
        font-size: 0.76rem;
        line-height: 1.4;
    }
}

.composer-dirty-indicator {
    width: 0.6rem;
    height: 0.6rem;
}

.composer-outline-button {
    display: grid;
    gap: 0.2rem;
    justify-items: start;
    border-radius: 1rem;
    padding: 0.85rem 0.95rem;
    white-space: normal;
}

.composer-outline-button__meta {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drive-composer-preview-shell {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.drive-composer-preview-frame {
    width: 100%;
    max-width: 100%;
    height: 760px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #ffffff;
    box-shadow: 0 30px 65px -38px rgba(15, 23, 42, 0.38);
    transition: max-width 180ms ease, height 180ms ease, box-shadow 180ms ease;
}

.drive-composer-preview-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.drive-composer-preview-shell[data-preview-device="tablet"] .drive-composer-preview-frame {
    max-width: 860px;
    height: 900px;
}

.drive-composer-preview-shell[data-preview-device="mobile"] .drive-composer-preview-frame {
    max-width: 430px;
    height: 860px;
    box-shadow: 0 32px 72px -42px rgba(15, 23, 42, 0.5);
}

.composer-block-flash {
    animation: composer-block-flash 1.4s ease;
}

@keyframes composer-block-flash {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.38);
    }

    35% {
        box-shadow: 0 0 0 8px rgba(0, 102, 255, 0.18);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

@media (max-width: 991.98px) {
    .drive-composer-preview-frame,
    .drive-composer-preview-shell[data-preview-device="tablet"] .drive-composer-preview-frame,
    .drive-composer-preview-shell[data-preview-device="mobile"] .drive-composer-preview-frame {
        max-width: 100%;
        height: 680px;
    }
}

@media (max-width: 575.98px) {
    .drive-composer-preview-shell {
        padding: 0.7rem;
    }

    .drive-composer-preview-frame,
    .drive-composer-preview-shell[data-preview-device="tablet"] .drive-composer-preview-frame,
    .drive-composer-preview-shell[data-preview-device="mobile"] .drive-composer-preview-frame {
        height: 560px;
        border-radius: 1rem;
    }

    .composer-outline-button {
        padding: 0.75rem 0.8rem;
    }
}
