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

:root {
    --primary-color: #a71c2f;
    --primary-dark: #8b1725;
    --primary-deep: #73111e;
    --primary-soft: rgba(167, 28, 47, 0.08);
    --surface: #ffffff;
    --surface-muted: #f7f7f7;
    --surface-tint: #f5f5f5;
    --surface-warm: #fbf8f6;
    --text-dark: #2f2f2f;
    --text-light: #666666;
    --text-muted: #7c7c7c;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
    --page-padding: clamp(18px, 4vw, 40px);
    --section-padding: clamp(82px, 10vw, 132px);
    --section-padding-compact: clamp(60px, 7vw, 96px);
    --card-padding: clamp(22px, 3.5vw, 34px);
    --grid-gap: clamp(16px, 2vw, 28px);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: "Aptos", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid rgba(167, 28, 47, 0.34);
    outline-offset: 4px;
    border-radius: 8px;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 14px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

button,
input,
textarea {
    font: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.section-title {
    max-width: 920px;
    margin: 0 auto 18px;
    color: var(--text-dark);
    text-align: center;
    font-size: clamp(30px, 4.6vw, 46px);
    line-height: 1.12;
}

.section-eyebrow {
    display: block;
    margin: 0 auto 12px;
    text-align: center;
}

.section-subtitle {
    max-width: 740px;
    margin: 0 auto clamp(38px, 5vw, 68px);
    text-align: center;
    color: var(--text-light);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.navbar .container {
    padding: 0 20px;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--nav-height);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--text-dark);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 12px 24px rgba(167, 28, 47, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-dark);
    box-shadow: 0 18px 30px rgba(167, 28, 47, 0.24);
}

.btn-secondary {
    background: #f4f4f4;
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: #ececec;
}

.btn-large {
    padding: 15px 34px;
    font-size: 17px;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(820px, calc(92vh - var(--nav-height)));
    padding: clamp(90px, 12vw, 150px) var(--page-padding);
    background: url("../images/hero-finanzierung-neumuenster.jpg") center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 14, 14, 0.2), rgba(18, 14, 14, 0.5)),
        linear-gradient(130deg, rgba(24, 24, 24, 0.22), rgba(0, 0, 0, 0));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto clamp(18px, 3vw, 26px);
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
    max-width: 740px;
    margin: 0 auto 0;
    font-size: clamp(16px, 1.9vw, 20px);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons .btn {
    min-width: 190px;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.hero-proof-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 680px);
    margin: clamp(72px, 10vh, 124px) auto 0;
    padding: 14px 18px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    background: rgba(24, 24, 24, 0.38);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.hero-proof-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 4px 14px;
    color: #fff;
    text-align: center;
}

.hero-proof-list li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof-list strong {
    display: block;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-proof-list span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-proseal {
    position: absolute;
    right: clamp(18px, 4vw, 48px);
    bottom: clamp(22px, 4vw, 48px);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 14px;
    width: min(100%, 390px);
}

.hero-proseal #proSealWidget {
    width: 150px;
    min-height: 240px;
    overflow: hidden;
}

.hero-review-chip {
    display: none;
}

.hero-trust-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    width: 130px;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2));
    transition: transform 0.25s ease;
}

.hero-trust-badge:hover,
.hero-trust-badge:focus-visible {
    transform: translateY(-2px);
}

.hero-trust-badge img {
    width: 100%;
    height: auto;
}

.services,
.about,
.regional,
.why-we-love,
.why-us,
.customer-experience,
.stats,
.team,
.contact {
    padding: var(--section-padding) 0;
}

.services {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(167, 28, 47, 0.045), transparent 30%),
        var(--surface);
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: linear-gradient(90deg, #a71c2f 0%, #c54363 50%, #a71c2f 100%);
}

.services-intro {
    max-width: 820px;
    margin: 0 auto clamp(42px, 5.5vw, 66px);
    color: #4f4f4f;
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.85;
    text-align: center;
    text-wrap: pretty;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
    grid-auto-rows: 1fr;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(20px, 2.8vw, 28px);
}

.service-kicker {
    margin-bottom: 10px !important;
    color: var(--primary-color) !important;
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.35 !important;
    text-transform: uppercase;
}

.service-content h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(20px, 2vw, 23px);
    line-height: 1.28;
}

.service-content p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 800;
    transition: gap 0.25s ease, color 0.25s ease;
}

.read-more:hover,
.read-more:focus-visible {
    color: var(--primary-dark);
    gap: 12px;
}

.read-more-disabled {
    gap: 0;
    color: var(--text-muted);
    cursor: default;
    pointer-events: none;
}

.why-us {
    background:
        radial-gradient(circle at 82% 0%, rgba(167, 28, 47, 0.05), transparent 32%),
        var(--surface-tint);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
    margin-top: clamp(38px, 5vw, 64px);
}

.why-us-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid rgba(167, 28, 47, 0.12);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-us-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary-color);
    font-size: 20px;
}

.why-us-card h3 {
    margin-bottom: 12px;
    font-size: clamp(19px, 2vw, 22px);
}

.why-us-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: stretch;
}

.about-grid > *,
.regional-layout > *,
.why-we-love-content > *,
.service-detail-content,
.impressum-text {
    min-width: 0;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: clamp(27px, 3.8vw, 36px);
    line-height: 1.18;
}

.about-content p:not(.eyebrow) {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.85;
}

.about-lede {
    color: #4d4d4d;
    font-size: 17px;
    line-height: 1.75;
}

.finance-options {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.finance-option {
    position: relative;
    padding: 20px 22px 20px 72px;
    border: 1px solid rgba(167, 28, 47, 0.12);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finance-option:hover,
.finance-option:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.finance-option span {
    position: absolute;
    top: 20px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
}

.finance-option h3 {
    margin-bottom: 7px;
    font-size: 18px;
}

.finance-option p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.62;
}

.about-media {
    position: relative;
    min-height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.regional {
    background: var(--surface-tint);
}

.regional-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: stretch;
}

.regional-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    height: 100%;
    align-self: stretch;
}

.regional-tile {
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.regional-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.regional-tile.badge-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: #fff;
}

.regional-tile.badge-tile strong {
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1;
}

.regional-tile.badge-tile p {
    margin: 0;
    text-align: center;
    line-height: 1.45;
}

.regional-text-card {
    display: flex;
    flex-direction: column;
    align-self: start;
    justify-content: flex-start;
    gap: 16px;
}

.regional-text-card h2,
.regional-text-card h3 {
    font-size: clamp(27px, 3.8vw, 38px);
    line-height: 1.18;
}

.regional-lede {
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
}

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

.regional-column h3,
.regional-column h5 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.3;
}

.regional-column p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.72;
}

.why-we-love {
    background: var(--surface);
}

.why-we-love-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.why-we-love-text .eyebrow,
.why-we-love-text h3 {
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.why-we-love-text h2 {
    margin-bottom: 20px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.14;
}

.why-we-love-text p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.78;
}

.why-we-love-image {
    min-height: 420px;
}

.why-we-love-image img.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.customer-experience {
    background: var(--surface-tint);
}

.reviews-widget-shell {
    margin-top: 32px;
}

.stats {
    background:
        radial-gradient(circle at 18% 0%, rgba(167, 28, 47, 0.04), transparent 28%),
        var(--surface-tint);
}

.trust-badges,
.team-grid {
    display: grid;
    gap: var(--grid-gap);
}

.trust-badges {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: clamp(42px, 5.5vw, 70px);
}

.badge-item {
    padding: clamp(34px, 4.4vw, 46px) clamp(26px, 3.4vw, 38px);
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    margin-bottom: 18px;
    font-size: 34px;
    color: var(--primary-color);
}

.badge-item h5 {
    margin-bottom: 12px;
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.45;
}

.badge-item h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(30px, 3.6vw, 40px);
    line-height: 1.08;
}

.badge-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.62;
}

.team {
    background: var(--surface);
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin-top: clamp(38px, 5vw, 64px);
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.member-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-member:hover .member-image {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-member h3 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.28;
}

.member-role {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.cta {
    padding: var(--section-padding-compact) 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 34%),
        linear-gradient(135deg, var(--primary-color), var(--primary-deep));
    color: #fff;
    text-align: center;
}

.cta-eyebrow {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.cta h2 {
    margin-bottom: 16px;
    font-size: clamp(27px, 3.7vw, 38px);
    line-height: 1.16;
}

.cta p {
    max-width: 660px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.62;
}

.cta-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    padding-inline: 32px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 250px;
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

.dropdown-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
    background: var(--surface-muted);
    color: var(--primary-color);
    padding-left: 26px;
}

.dropdown-item i {
    color: var(--primary-color);
}

.contact {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
    margin-top: clamp(38px, 5vw, 64px);
}

.contact-card {
    padding: clamp(28px, 4vw, 38px);
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 40px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.22;
}

.contact-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.62;
    text-wrap: pretty;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-card a:hover,
.contact-card a:focus-visible {
    color: var(--primary-dark);
}

.contact-note {
    margin-top: 10px;
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 14px !important;
    line-height: 1.52 !important;
    max-width: 24ch;
    margin-inline: auto;
}

.footer {
    padding: clamp(46px, 6vw, 72px) 0 24px;
    background: linear-gradient(180deg, #1f1f1f 0%, #151515 100%);
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(180px, 1fr));
    gap: clamp(24px, 4vw, 44px);
    margin-bottom: clamp(28px, 4vw, 40px);
}

.footer-brand p,
.footer-section a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
    max-width: 340px;
    line-height: 1.75;
}

.footer-section h4 {
    margin-bottom: 14px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li {
    margin-top: 10px;
}

.footer-section a {
    transition: color 0.25s ease;
}

.footer-section a:hover,
.footer-section a:focus-visible {
    color: #fff;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-detail {
    padding: var(--section-padding-compact) 0;
    background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 340px);
}

.service-detail .container {
    max-width: 980px;
}

.breadcrumb {
    margin-bottom: 26px;
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail h1 {
    margin-bottom: 28px;
    font-size: clamp(30px, 4vw, 46px);
}

.service-hero {
    margin-bottom: 28px;
}

.service-hero img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-detail-content {
    max-width: 820px;
    margin-inline: auto;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-detail-content h2 {
    margin: 30px 0 14px;
    font-size: clamp(22px, 3vw, 30px);
}

.service-detail-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.85;
}

.service-detail-content ul,
.impressum-text ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
}

.service-detail-content li,
.impressum-text li {
    position: relative;
    padding-left: 18px;
    color: var(--text-light);
    line-height: 1.75;
}

.service-detail-content li::before,
.impressum-text li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-box {
    margin-top: 42px;
    padding: clamp(26px, 4vw, 38px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fafafa 0%, #f1f1f1 100%);
    border: 1px solid var(--border-color);
    text-align: center;
}

.cta-box h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.cta-box p {
    margin-bottom: 22px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-box .btn-secondary {
    background: #fff;
    border: 1px solid rgba(167, 28, 47, 0.18);
}

.impressum-main {
    padding: var(--section-padding-compact) 0;
    background: var(--surface);
}

.impressum-content {
    max-width: 860px;
}

.impressum-title {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 46px);
}

.impressum-text h2 {
    margin: 28px 0 12px;
    font-size: clamp(20px, 2.6vw, 28px);
    overflow-wrap: anywhere;
    hyphens: auto;
}

.impressum-text p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.85;
    overflow-wrap: break-word;
    hyphens: auto;
}

.impressum-text a {
    color: var(--primary-color);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary-color);
    font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
    color: var(--primary-dark);
}

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

.is-visible {
    animation: fadeInUp 0.65s ease forwards;
}

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

    .btn:hover,
    .btn:focus-visible,
    .service-card:hover,
    .why-us-card:hover,
    .badge-item:hover,
    .contact-card:hover,
    .team-member:hover,
    .team-member:hover .member-image {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(64px, 10vw, 92px);
    }

    .navbar-wrapper {
        min-height: 74px;
    }

    .logo-img {
        height: 44px;
    }

    .hero {
        min-height: 780px;
        padding: 94px 24px 280px;
    }

    .hero h1 {
        font-size: clamp(32px, 7vw, 44px);
    }

    .hero-subtitle {
        max-width: 36ch;
        font-size: 16px;
        line-height: 1.62;
    }

    .hero-proof-list {
        width: min(100%, 560px);
        margin-top: clamp(52px, 8vh, 86px);
    }

    .hero-proseal {
        right: 50%;
        bottom: 28px;
        align-items: center;
        justify-content: center;
        width: min(100%, 320px);
        transform: translateX(50%);
    }

    .hero-proseal #proSealWidget {
        width: 140px;
        min-height: 220px;
    }

    .hero-trust-badge {
        width: 118px;
    }

    .about-grid,
    .regional-layout,
    .why-we-love-content {
        grid-template-columns: 1fr;
    }

    .regional-columns,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .why-we-love-image,
    .about-media {
        min-height: 320px;
    }

    .services-grid,
    .trust-badges,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-auto-rows: auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .member-image {
        margin-bottom: 12px;
        border-radius: 14px;
    }

    .service-image {
        height: 200px;
    }

    .service-card {
        min-height: 0;
    }

    .section-subtitle {
        margin-bottom: 40px;
        font-size: 15px;
    }

    .cta-dropdown {
        width: min(100%, 360px);
    }

    .dropdown-toggle {
        width: 100%;
    }

    .dropdown-menu,
    .dropdown-menu.active {
        left: 0;
        right: 0;
        min-width: 100%;
        transform: translateX(0);
    }

    .dropdown-menu.active {
        transform: translateX(0) translateY(0);
    }

    .service-content {
        padding: 22px;
    }

    .badge-item,
    .contact-card,
    .why-us-card {
        padding: 24px;
    }

    .service-content h3,
    .contact-card h3,
    .team-member h3 {
        font-size: 18px;
    }

    .service-content p,
    .badge-item p,
    .contact-card p,
    .why-us-card p,
    .why-we-love-text p,
    .regional-column p {
        font-size: 14px;
        line-height: 1.6;
    }

    .badge-item h3 {
        font-size: 32px;
    }

    .contact-note {
        max-width: 22ch;
    }
}

@media (max-width: 700px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 520px;
    }

    .nav-menu li + li {
        border-top: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
    }

    .nav-menu a::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .hero-proof-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 330px);
        margin-top: 36px;
        padding: 12px;
        border-radius: 16px;
    }

    .hero-proof-list li {
        min-height: 52px;
        padding: 8px 10px;
    }

    .hero-proof-list li + li {
        border-left: 0;
    }

    .hero-proof-list li:nth-child(2),
    .hero-proof-list li:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, 0.22);
    }

    .hero-proof-list li:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .hero-proof-list strong {
        font-size: 18px;
    }

    .hero-proof-list span {
        font-size: 9px;
    }

    .services-intro {
        max-width: 32ch;
        margin-bottom: 38px;
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.14;
        margin-inline: auto;
    }

    .regional-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        height: auto;
    }

    .regional-tile {
        aspect-ratio: 1 / 1;
        min-height: 0;
        height: auto;
    }

    .service-detail,
    .impressum-main {
        padding: 48px 0;
    }

    .service-detail h1,
    .impressum-title,
    .about-content h2 {
        font-size: clamp(25px, 8vw, 28px);
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .hero {
        min-height: 720px;
        padding-bottom: 178px;
    }

    .hero-eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .hero-proseal {
        align-items: center;
        gap: 10px;
        width: min(100%, 292px);
    }

    .hero-proseal #proSealWidget {
        display: none;
    }

    .hero-trust-badge {
        width: 68px;
    }

    .hero-review-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 12px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--text-dark);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(10px);
    }

    .review-chip-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #d4bc69;
        color: #fff;
        font-size: 13px;
    }

    .hero-review-chip strong,
    .hero-review-chip small {
        display: block;
        line-height: 1.15;
    }

    .hero-review-chip strong {
        font-size: 14px;
    }

    .hero-review-chip small {
        margin-top: 3px;
        color: var(--primary-dark);
        font-size: 11px;
        font-weight: 800;
    }

    .service-detail-content h2 {
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .service-detail-content p,
    .impressum-text p {
        font-size: 15px;
    }

    .cta-box {
        padding: 24px 20px;
    }

    .cta {
        padding: 58px 0;
    }

    .cta .container {
        padding-inline: 28px;
    }

    .cta p {
        max-width: 30ch;
        margin-bottom: 24px;
        font-size: 15px;
    }

    .cta-dropdown {
        width: min(100%, 310px);
    }

    .dropdown-toggle {
        padding-inline: 22px;
    }

    .dropdown-menu,
    .dropdown-menu.active {
        min-width: 100%;
    }

    .finance-options {
        gap: 12px;
        margin-top: 24px;
    }

    .finance-option {
        padding: 18px 18px 18px 62px;
    }

    .finance-option span {
        top: 18px;
        left: 18px;
        width: 30px;
        height: 30px;
    }

    .finance-option h3 {
        font-size: 16px;
    }

    .finance-option p {
        font-size: 13px;
        line-height: 1.55;
    }

    .contact-card {
        padding: 24px 18px;
    }

    .contact-card h3 {
        font-size: 17px;
    }

    .contact-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .contact-note {
        font-size: 13px !important;
        max-width: 22ch;
    }

    .service-content h3,
    .team-member h3 {
        font-size: 17px;
    }

    .member-role,
    .badge-item h5 {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .team-grid {
        gap: 18px 10px;
    }

    .team-member h3 {
        font-size: 15px;
    }

    .member-role {
        font-size: 11px;
        line-height: 1.35;
    }

    .member-image {
        border-radius: 12px;
    }
}
