/* ===========================================================
   HOFRAND HAUSSERVICE – Design System v7 "Premium Glass"
   Glassmorphism, bold typography, gold + dark palette, wider layout
   =========================================================== */

/* --- Font --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Inter-Variable.woff2') format('woff2');
}

/* --- Design Tokens --- */
:root {
    --gold: #fdb433;
    --gold-dark: #e09a1a;
    --gold-text: #8a5e00;
    --gold-light: #fff3d6;
    --dark: #1d1d1f;
    --gray-800: #333;
    --gray-600: #555;
    --gray-500: #6e6e73;
    --gray-300: #c8c8cc;
    --gray-100: #f2f1ef;
    --warm-bg: #f9f8f6;
    --white: #fff;
    --red: #d93025;
    --whatsapp: #25D366;
    --glass-dark: rgba(29,29,31,0.85);
    --glass-blur: blur(16px) saturate(150%);
    --glass-light: rgba(255,255,255,0.12);
    --glass-border: rgba(255,255,255,0.15);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs: 0.8rem;
    --text-sm: 0.938rem;
    --text-base: 1.063rem;
    --text-lg: 1.2rem;
    --text-xl: 1.4rem;
    --text-2xl: 1.95rem;
    --text-3xl: 2.6rem;
    --text-4xl: 3.4rem;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
    --shadow-md: 0 2px 12px rgba(0,0,0,.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.1);
    --shadow-card: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.06);
    --shadow-glass: 0 8px 32px rgba(0,0,0,.12);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --wrap: 1340px;
    --header-h: 76px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a {
    color: var(--gold-text);
    text-decoration: none;
    transition: color .2s var(--ease);
}
/* Verweise im Fliesstext duerfen sich nicht allein ueber die Farbe vom
   umgebenden Text abheben: gegen den dunklen Textton bleiben 1,12:1. */
p a:not([class]), li a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
a:hover { color: var(--dark); }

/* Verweise in Listen sind 19 px hoch und bleiben damit unter den 24 px, die
   WCAG 2.2 fuer Tippziele nennt. Als Blockkasten nimmt der Verweis die Hoehe
   der Zeile an -- 25 px, ohne dass sich etwas verschiebt. Innenabstaende
   waeren der naheliegende Weg, aber am Inline-Element laufen sie ueber und
   schoeben die Fusszeile um 16 px nach unten.
   Nur wo der Verweis allein im Listenpunkt steht: sonst risse die Regel
   Verweise mitten aus einem Satz heraus in eine eigene Zeile. */
li > a:not([class]):only-child { display: block; }
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: var(--text-3xl); margin-bottom: 16px; }
h2 { font-size: var(--text-2xl); margin-bottom: 16px; }
h3 { font-size: var(--text-xl); margin-bottom: 12px; }
h4 { font-size: var(--text-lg); margin-bottom: 8px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
.text-accent { color: var(--gold-text); }
.text-gradient {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, #e8a500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}
.w-100 { width: 100%; }

/* --- Layout --- */
.wrap, .container {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 32px;
}
.section, .sec { padding: 80px 0; }
.section-pearl { padding: 80px 0; background: var(--warm-bg); }
.section-dark { padding: 48px 0; background: var(--dark); color: var(--white); }
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
}
.section-header p {
    font-size: var(--text-lg);
    color: var(--gray-500);
}
.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-text);
    margin-bottom: 10px;
    background: var(--gold-light);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all .25s var(--ease);
    white-space: nowrap;
    line-height: 1.4;
}
.btn-lg { padding: 15px 36px; font-size: var(--text-base); }
.btn-sm { padding: 8px 18px; font-size: var(--text-xs); }
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    border-color: transparent;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(253,180,51,.35);
    transform: translateY(-2px) scale(1.02);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover {
    background: var(--gray-800);
    border-color: var(--gray-800);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-300);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--dark);
    background: var(--gold-light);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.5);
    color: var(--white);
}
.btn-phone {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    border-color: transparent;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.btn-phone:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(253,180,51,.35);
    transform: translateY(-2px) scale(1.02);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    height: var(--header-h);
    transition: background .3s, box-shadow .3s, height .3s;
}
.header.scrolled {
    background: rgba(30,30,32,.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0,0,0,.18);
}
.header.scrolled .logo-name,
.header.scrolled .logo-tagline,
.header.scrolled .nav-link {
    color: rgba(255,255,255,.9);
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--gold);
    background: rgba(255,255,255,.08);
}
.header.scrolled .nav-toggle span {
    background: rgba(255,255,255,.9);
}
.header.scrolled .nav-link::after,
.header.scrolled .nav-link::before {
    border-color: rgba(255,255,255,.9);
}
.header-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    flex-shrink: 0;
}
.logo img {
    width: 42px;
    height: 44px;
    object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-size: 1.19rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--dark);
}
.logo-tagline {
    font-size: 0.72rem;
    color: var(--gray-500);
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin-top: 1px;
}

/* Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    position: relative;
}
.nav-link:hover {
    color: var(--dark);
    background: var(--gold-light);
}
.nav-link.active {
    color: var(--dark);
    background: var(--gold-light);
    font-weight: 700;
}
.nav-item:has(.nav-dropdown) > .nav-link {
    padding-right: 28px;
}
.nav-item:has(.nav-dropdown) > .nav-link::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform .2s;
}
.nav-item:has(.nav-dropdown):hover > .nav-link::before,
.nav-item:has(.nav-dropdown).dropdown-open > .nav-link::before {
    transform: translateY(-30%) rotate(-135deg);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all .2s;
    margin-left: 12px;
    white-space: nowrap;
}
.btn-header:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(253,180,51,.3);
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 100;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
    display: block;
    padding: 10px 14px;
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background .15s, color .15s;
    font-weight: 500;
}
.nav-dropdown-link:hover {
    background: var(--gold-light);
    color: var(--dark);
}
.nav-dropdown-link.active {
    background: var(--gold-light);
    color: var(--gold-text);
    font-weight: 600;
}

/* --- Hero --- */
.hero {
    padding: 64px 0 80px;
    background: var(--warm-bg);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(253,180,51,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-text);
    background: var(--gold-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: var(--text-4xl);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* Hero Trust Strip */
.hero-trust {
    display: flex;
    gap: 0;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    padding: 16px 28px;
    position: relative;
    background: rgba(29,29,31,0.04);
    border-radius: var(--radius);
    margin-right: 12px;
}
.hero-trust-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px 3px 0 0;
}
.hero-trust-value {
    font-size: var(--text-xl);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.hero-trust-label {
    font-size: var(--text-xs);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* --- Stats Section (Premium) --- */
.stats-section {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2e 50%, #1d1d1f 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--wrap);
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 48px 24px;
    position: relative;
    border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(253,180,51,.06) 0%, transparent 70%);
    pointer-events: none;
}
.stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #fff3d6 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.stat-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.68);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* --- Service Cards (Grid) --- */
.tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.tile,
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--gray-600);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.tile:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-color: var(--gold);
}
.tile-img,
.service-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.tile-img img,
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.tile:hover .tile-img img,
.service-card:hover .service-card-image img {
    transform: scale(1.06);
}
.tile-body,
.service-card-body,
.service-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tile-body h3,
.service-card-body h3,
.service-card-content h3 {
    font-size: var(--text-lg);
    margin: 0;
}
.tile-body p,
.service-card-body p,
.service-card-content p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    flex: 1;
    line-height: 1.7;
}
.service-card-link {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gold-text);
    margin-top: 14px;
    display: inline-block;
    transition: color .2s;
}
.service-card:hover .service-card-link { color: var(--dark); }
.service-card-link a { color: inherit; }

/* --- Icon Cards (Features) --- */
.icon-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow .3s var(--ease), transform .3s;
    position: relative;
    overflow: hidden;
}
.icon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px 0 0 4px;
}
.icon-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}
.icon-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border-radius: var(--radius);
    color: var(--gold-text);
    margin-bottom: 16px;
}
.icon-card-icon svg { width: 24px; height: 24px; }
.icon-card h3, .icon-card h4 {
    font-size: var(--text-base);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 8px;
}
.icon-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* --- Region Cards --- */
.region-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-600);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.region-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(253,180,51,.1);
    transform: translateY(-3px);
    color: var(--dark);
}
.region-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border-radius: var(--radius);
    color: var(--gold-text);
    flex-shrink: 0;
}
.region-card-icon svg { width: 20px; height: 20px; }
.region-card-text { min-width: 0; }
.region-card h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.region-card p {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Process Steps (Horizontal) --- */
.process-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
}
.process-h-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.process-h-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.process-h-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    font-weight: 900;
    font-size: 1.75rem;
    border-radius: var(--radius);
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(253,180,51,.3);
    font-family: var(--font);
}
.process-h-step h3 {
    font-size: var(--text-base);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 8px;
}
.process-h-step p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Vertical process steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
}
.process-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}
.process-step:last-child { border-bottom: none; }
.process-step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--dark);
    font-weight: 900;
    font-size: 1.25rem;
    border-radius: var(--radius);
    flex-shrink: 0;
    font-family: var(--font);
}
.process-step-content h4 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 4px;
}
.process-step-content p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 0;
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.testimonial-card .testimonial-text {
    flex: 1;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 14px;
    left: 22px;
    font-size: 52px;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: .35;
}
.testimonial-stars {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: var(--text-base);
    color: var(--dark);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 14px;
}
.testimonial-author {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 0;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2e 50%, #1d1d1f 100%);
    color: rgba(255,255,255,.75);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(253,180,51,.06), transparent 70%);
    pointer-events: none;
}
.cta-section h2, .cta-section h3, .cta-section h4 { color: var(--white); }
.cta-section a { color: var(--gold); }
.cta-section .btn { color: inherit; }
.cta-section .btn-outline-white { color: var(--white); }
.cta-section .btn-outline-white:hover { color: var(--white); }
.cta-title {
    font-size: var(--text-2xl);
    margin-bottom: 14px;
}
.cta-text {
    font-size: var(--text-lg);
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.55);
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .btn-primary {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(253,180,51,.35);
    transform: translateY(-2px) scale(1.02);
}
.section-dark .cta-text { color: rgba(255,255,255,.6); }

/* Trust bar */
.trust-bar { padding: 10px 0; background: var(--dark); color: var(--white); }
.trust-bar .wrap, .trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.trust-bar-item { display: flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 500; }
.trust-bar-value { color: var(--gold); font-weight: 700; font-size: var(--text-lg); }
.stats-section.section-dark { background: var(--dark); }

/* --- Page Header (Subpages) --- */
.page-header {
    padding: 56px 0 48px;
    background: var(--warm-bg);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(253,180,51,.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-header-image {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 72px 0 64px;
    border-bottom: none;
}
.page-header-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29,29,31,.85), rgba(29,29,31,.6));
}
.page-header-image .container { position: relative; z-index: 1; }
.page-header-image h1 { color: var(--white); }
.page-header-image .page-subtitle { color: rgba(255,255,255,.7); }
.page-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    margin-bottom: 16px;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 12px;
}
.page-header-image .breadcrumb { color: rgba(255,255,255,.5); }
.page-header-image .breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a {
    color: var(--gold-text);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { color: var(--gray-600); }

/* --- Content Section (Subpages) --- */
.content-section {
    padding: 64px 0 80px;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}
.content-main {
    min-width: 0;
}
.content-main h2 {
    font-size: var(--text-2xl);
    margin-bottom: 24px;
    margin-top: 0;
}
.content-main h3 {
    font-size: var(--text-xl);
    margin-top: 52px;
    margin-bottom: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.content-main h3:first-of-type { border-top: none; padding-top: 0; }
.content-main h4 {
    font-size: var(--text-lg);
    margin-top: 36px;
    margin-bottom: 14px;
}
.content-main p {
    line-height: 1.85;
}
.content-main ul, .content-main ol {
    padding-left: 0;
    margin-bottom: 18px;
}
.content-main ul:not(.check-list), .content-main ol {
    margin-left: 24px;
    padding-left: 0;
}
.content-main ul:not(.check-list) li, .content-main ol li {
    padding: 4px 0;
}

/* --- Sidebar (Base) --- */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-h) + 28px);
}
.sidebar-card {
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: box-shadow .3s;
}
.sidebar-card:hover {
    box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
    font-size: var(--text-base);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 14px;
    padding-top: 0;
    border-top: none;
}
.sidebar-card p {
    font-size: var(--text-sm);
    margin-bottom: 14px;
    line-height: 1.7;
}
.sidebar-card ul {
    list-style: none;
    padding: 0;
}
.sidebar-card ul li {
    padding: 10px 0 0 40px;
}
.sidebar-card ul li a {
    font-size: var(--text-sm);
    color: var(--gray-600);
}
.sidebar-card ul li a:hover {
    color: var(--gold-text);
}

/* Sidebar CTA (Dark Glass) */
.sidebar-cta {
    background: var(--glass-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: rgba(255,255,255,.75);
    border-color: var(--glass-border);
    position: relative;
    overflow: hidden;
}
.sidebar-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.sidebar-cta h3 { color: var(--white); }
.sidebar-cta p { color: rgba(255,255,255,.55); }

/* Sidebar Variant: Glass Light */
.sidebar-glass {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-color: rgba(0,0,0,.06);
    box-shadow: var(--shadow-glass);
}

/* Sidebar Variant: Gold Accent */
.sidebar-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, #fffdf5 100%);
    border-color: rgba(253,180,51,.2);
    position: relative;
}
.sidebar-gold::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* Sidebar Variant: Dark Solid */
.sidebar-dark {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.08);
}
.sidebar-dark h3 { color: var(--white); }
.sidebar-dark p { color: rgba(255,255,255,.75); }
.sidebar-dark ul li a { color: rgba(255,255,255,.6); }
.sidebar-dark ul li a:hover { color: var(--gold); }
.sidebar-dark p a { color: var(--gold); }

/* Sidebar Variant: Bordered */
.sidebar-bordered {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-left: 4px solid var(--gold);
}

/* Sidebar Variant: Gradient Border */
.sidebar-gradient-border {
    background: var(--white);
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.sidebar-gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), var(--gold-light));
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* --- Check List --- */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    position: relative;
    padding: 8px 0 8px 48px;
    font-size: var(--text-base);
    line-height: 1.65;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 26px;
    height: 26px;
    background: var(--gold-light);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e09a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.check-list li a { color: var(--gold-text); }
.check-list li a:hover { color: var(--dark); }

/* Region list in sidebar */
.region-list { list-style: none; padding: 0; }
.region-list li { padding: 5px 0; font-size: var(--text-sm); }
.region-list li a { color: var(--gold-text); }
.text-muted { color: var(--gray-500); font-size: var(--text-sm); }

/* --- FAQ Accordion --- */
.faq-section { margin: 36px 0; }
.faq-section h3 { border-top: none; padding-top: 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--gray-100);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    line-height: 1.5;
    transition: color .2s;
}
.faq-question:hover { color: var(--gold-text); }
.faq-icon {
    flex-shrink: 0;
    transition: transform .3s var(--ease);
    color: var(--gray-500);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer p,
.faq-answer-inner {
    padding-bottom: 20px;
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.75;
}

/* --- Contact Form --- */
.contact-form {
    margin: 28px 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.required { color: var(--red); }
.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font);
    font-size: var(--text-base);
    padding: 13px 18px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(253,180,51,.15);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(217,48,37,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    flex-shrink: 0;
}
.form-checkbox label {
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--gray-600);
}
.form-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.form-success h4 { color: #2e7d32; margin-top: 0; }
.form-error {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    color: var(--red);
}

/* Contact direct */
.contact-direct { margin: 28px 0; }
.contact-method {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 28px;
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}
.contact-method-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: var(--radius);
    color: var(--dark);
    flex-shrink: 0;
}
.contact-method-icon svg { width: 28px; height: 28px; }
.contact-method-content h3 { margin-top: 0; margin-bottom: 4px; }
.contact-phone-number {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.contact-hours {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 0;
}

/* --- Team Section --- */
.team-section { margin: 28px 0; }
.team-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
    padding: 28px;
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}
.team-card-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}
.team-card-content h4 {
    margin-top: 0;
    font-size: var(--text-xl);
}
.team-role {
    font-size: var(--text-sm);
    color: var(--gold-text);
    font-weight: 600;
    margin-bottom: 14px;
}

/* --- Gallery (Referenzen) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.gallery-grid .service-card-content {
    padding: 20px 24px;
}
.gallery-grid .service-card-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

/* --- Footer (Premium) --- */
.footer {
    background: linear-gradient(180deg, #1d1d1f 0%, #111113 100%);
    color: rgba(255,255,255,.55);
    padding-top: 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer a:hover { color: var(--white); }
.footer .btn { color: inherit; }
.footer .btn-phone { color: var(--dark); }
.footer .btn-phone:hover { color: var(--dark); }
.footer .btn-outline-white { color: var(--white); }
.footer .btn-outline-white:hover { color: var(--white); }

/* Footer Top Banner */
.footer-top {
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
}
.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-top-text h3 {
    color: var(--white);
    font-size: var(--text-xl);
    margin-bottom: 6px;
}
.footer-top-text p {
    color: rgba(255,255,255,.58);
    font-size: var(--text-sm);
    margin: 0;
}
.footer-top-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}
.footer-top-actions::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 260px; height: 120px;
    background: radial-gradient(ellipse, rgba(253,180,51,.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-top-actions .btn {
    position: relative;
    z-index: 1;
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 56px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {
    margin-bottom: 18px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo-name { color: var(--white); font-size: 1.19rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.62); }
.footer-desc {
    font-size: var(--text-sm);
    line-height: 1.75;
    max-width: 320px;
    margin-bottom: 20px;
}
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.trust-item {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-siegel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s;
}
.footer-siegel:hover { opacity: .8; }
.footer-siegel img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .45;
    transition: opacity .2s;
}
.footer-siegel:hover img { opacity: .7; }
.footer-siegel span {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.35);
}
.footer-title {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a {
    font-size: var(--text-sm);
    transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover { padding-left: 4px; }
.footer-contact li {
    padding: 8px 0;
    font-size: var(--text-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--gold);
    margin-top: 2px;
}
.footer-contact li a {
    display: block;
}
.footer-contact li a:hover {
    color: var(--gold);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.45);
    transition: background .2s, color .2s;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: var(--text-xs);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a { font-size: var(--text-xs); }
.footer-credit {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.55);
}
.footer-credit a { color: rgba(255,255,255,.75); }
.footer-credit a:hover { color: var(--gold); }

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
    transform: translateY(calc(var(--fb-offset, 0px) * -1));
    transition: transform .4s var(--ease);
}
body.cookie-visible .floating-buttons { --fb-offset: 76px; }
body.cookie-visible .footer { padding-bottom: 120px; }
.scroll-top {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,30,32,.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.1);
    outline: none;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    cursor: pointer;
    color: rgba(255,255,255,.85);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover { transform: scale(1.1); background: rgba(30,30,32,.85); box-shadow: 0 6px 24px rgba(0,0,0,.25); color: var(--white); }
.floating-cta {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: var(--radius-full);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(253,180,51,.35);
    transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(253,180,51,.45);
    color: var(--dark);
}
.floating-whatsapp {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
    transition: transform .2s, box-shadow .2s;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
    color: var(--white);
}

/* --- Cookie Banner (Redesigned) --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -8px 32px rgba(0,0,0,.1);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie-left {
    flex: 1.5;
    min-width: 240px;
}
.cookie-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.cookie-header svg { color: var(--gold-text); flex-shrink: 0; width: 20px; height: 20px; }
.cookie-header h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin: 0;
}
.cookie-text {
    font-size: var(--text-xs);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}
.cookie-text a { color: var(--gold-text); font-weight: 600; }
.cookie-categories {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-xs);
    color: var(--gray-600);
}
.cookie-category div { line-height: 1.3; }
.cookie-category strong {
    font-weight: 700;
    color: var(--dark);
}
.cookie-toggle {
    position: relative;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background .2s;
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gold);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(18px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: .5;
    cursor: not-allowed;
}
/* Cookie buttons: "Nur Notwendige" and "Auswahl Speichern" stacked, "Alle akzeptieren" large */
.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: stretch;
}
.cookie-buttons-secondary {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cookie-buttons .btn { font-size: var(--text-xs); padding: 9px 16px; white-space: nowrap; }
.cookie-btn-all {
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* --- Content Centered (Service Detail Layout Type A) --- */
.content-centered {
    max-width: 840px;
    margin: 0 auto;
}
.content-centered h2 {
    font-size: var(--text-2xl);
    margin-bottom: 24px;
    margin-top: 0;
}
.content-centered h3 {
    font-size: var(--text-xl);
    margin-top: 52px;
    margin-bottom: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.content-centered h3:first-of-type { border-top: none; padding-top: 0; }
.content-centered h4 {
    font-size: var(--text-lg);
    margin-top: 36px;
    margin-bottom: 14px;
}
.content-centered p { line-height: 1.85; }
.content-centered ul, .content-centered ol { padding-left: 0; margin-bottom: 18px; }
.content-centered ul li, .content-centered ol li { padding: 5px 0; }

/* --- Inline CTA Block --- */
.inline-cta {
    background: var(--glass-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: rgba(255,255,255,.75);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin: 44px 0;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.inline-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.inline-cta h3 {
    color: var(--white);
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}
.inline-cta p {
    color: rgba(255,255,255,.55);
    margin-bottom: 22px;
}
.inline-cta .btn { margin: 0 6px; }

/* --- Related Services --- */
.related-services {
    padding: 72px 0;
    background: var(--warm-bg);
}
.ba-section + .related-services {
    background: var(--white);
}
.related-services .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Glassmorphism Utility Elements --- */
.glass-card {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}
.glass-card-dark {
    background: rgba(29,29,31,.7);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    color: rgba(255,255,255,.8);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(.95);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root { --header-h: 68px; }
    h1 { font-size: var(--text-2xl); }
    .hero h1 { font-size: var(--text-3xl); }
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-media img { height: 340px; }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-horizontal { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .related-services-grid { grid-template-columns: repeat(2, 1fr); }

    /* Mobile nav */
    .nav-toggle { display: flex; }
    .nav-main {
        position: fixed;
        top: var(--header-h); right: 0;
        width: 320px;
        height: calc(100vh - var(--header-h));
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 28px 28px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform .3s var(--ease);
        overflow-y: auto;
        z-index: 999;
    }
    .nav-main.open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-link {
        padding: 14px 0;
        font-size: var(--text-base);
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }
    .nav-link.active { background: none; }
    .nav-link.active::after { display: none; }

    /* Reset scrolled header colors inside mobile menu */
    .header.scrolled .nav-main .nav-link {
        color: var(--gray-600);
    }
    .header.scrolled .nav-main .nav-link:hover,
    .header.scrolled .nav-main .nav-link.active {
        color: var(--dark);
        background: none;
    }
    .header.scrolled .nav-main .nav-link::before {
        border-color: var(--gray-600);
    }
    .header.scrolled .nav-main .nav-dropdown-link {
        color: var(--gray-500);
    }
    .header.scrolled .nav-main .nav-dropdown-link:hover {
        color: var(--dark);
    }
    .nav-item:has(.nav-dropdown) > .nav-link { padding-right: 28px; }
    .nav-item:has(.nav-dropdown) > .nav-link::before { right: 0; }
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
        min-width: auto;
    }
    .nav-item:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-item.dropdown-open .nav-dropdown {
        display: block;
    }
    .nav-dropdown-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }
    .btn-header {
        align-self: stretch;
        justify-content: center;
        margin-top: 18px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: var(--text-2xl); }
    .hero-trust { flex-wrap: wrap; gap: 10px; }
    .hero-media img { height: 260px; }
    .sec, .section, .section-pearl, .section-dark { padding: 60px 0; }
    .card-grid { grid-template-columns: 1fr; }
    .card-grid-4 { grid-template-columns: 1fr 1fr; }
    .card-grid-2 { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .ba-grid { max-width: 100%; }
    .tiles { grid-template-columns: 1fr; }
    .process-horizontal { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 32px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-top-inner { flex-direction: column; text-align: center; }
    .footer-top-actions { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; }
    .team-card-image img { width: 160px; height: 160px; }
    .cookie-inner { flex-direction: column; gap: 14px; padding: 12px 20px; }
    .cookie-left { min-width: 100%; }
    .cookie-categories { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .cookie-buttons { flex-wrap: wrap; width: 100%; }
    .cookie-buttons .btn { flex: 1; min-width: 0; justify-content: center; }
    .cookie-buttons-secondary { flex-direction: row; width: 100%; }
    .cookie-buttons-secondary .btn { flex: 1; }
    .cta-title { font-size: var(--text-xl); }
    .related-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    body { overflow-x: hidden; }
    .wrap, .container { padding: 0 16px; }
    h1 { font-size: var(--text-xl); }
    .hero h1 { font-size: var(--text-2xl); }
    .hero { padding: 40px 0 56px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .hero-trust-item { margin-right: 0; }
    .process-horizontal { grid-template-columns: 1fr; }
    .card-grid-4 { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .nav-main { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .trust-bar .wrap, .trust-bar .container { flex-direction: column; gap: 12px; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 28px 16px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-main .footer-col:first-child,
    .footer-main .footer-col:last-child { grid-column: 1 / -1; }
}

/* --- Before / After Slider --- */
.ba-section { padding: 60px 0; }
.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    aspect-ratio: auto;
    max-height: 500px;
    cursor: col-resize;
}
.ba-slider > img {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.ba-after {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 50%);
}
.ba-after img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.ba-slider input[type="range"] {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    margin: 0;
    opacity: 0;
    cursor: col-resize;
    z-index: 3;
}
.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
}
.ba-handle::before,
.ba-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.ba-handle::before {
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M8 18l-6-6 6-6M16 6l6 6-6 6'/%3E%3C/svg%3E") center/20px no-repeat;
}
.ba-handle::after { display: none; }
.ba-label {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    padding: 4px 10px;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-sm);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.ba-label-before {
    left: 10px;
    background: rgba(0,0,0,.55);
    color: var(--white);
}
.ba-label-after {
    right: 10px;
    background: rgba(253,180,51,.85);
    color: var(--dark);
}

/* Print */
@media print {
    .header, .floating-buttons, .cookie-banner, .nav-toggle { display: none; }
    body { padding-top: 0; }
    .hero { padding: 20px 0; }
}
