/* ============================================================
   PRIVATPHYSIO — Premium Design System
   Farbe: Anthrazit + Blau + Beige
   Typografie: Cormorant Garamond (Heading) + DM Sans (Body)
   ============================================================ */

/* Fonts loaded via HTML <link> tags for better performance */

/* --- Design Tokens --- */
:root {
    /* Primary Palette */
    --anthrazit:       #2D3436;
    --anthrazit-light: #4A5568;
    --anthrazit-soft:  #636E72;

    --blau:            #2E86AB;
    --blau-light:      #4DA8C9;
    --blau-dark:       #1E6B8A;
    --blau-pale:       rgba(46,134,171,0.08);

    --beige-dark:      #D4C8BA;
    --beige:           #EAE0D5;
    --beige-light:     #F5F0EB;
    --cream:           #FDFBF7;
    --white:           #ffffff;

    /* Legacy mappings for backward compatibility */
    --espresso:        var(--anthrazit);
    --espresso-light:  var(--anthrazit-light);
    --navy:            var(--anthrazit);
    --navy-mid:        var(--anthrazit-light);
    --navy-soft:       var(--beige-light);
    --gold:            var(--blau);
    --gold-light:      var(--blau-light);
    --gold-pale:       var(--blau-pale);
    --slate-100:       var(--beige-light);
    --slate-200:       var(--beige-dark);
    --slate-400:       #A0ADB4;
    --slate-600:       var(--anthrazit-light);
    --slate-800:       var(--anthrazit);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --shadow-sm:  0 2px 8px rgba(45,52,54,0.06);
    --shadow-md:  0 8px 30px rgba(45,52,54,0.10);
    --shadow-lg:  0 24px 60px rgba(45,52,54,0.14);
    --shadow-blau: 0 8px 30px rgba(46,134,171,0.25);

    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition:  0.35s var(--ease);

    --header-h: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--anthrazit-light);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    color: var(--anthrazit);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

ul, ol { list-style: none; }

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

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.text-center { text-align: center; }

/* --- Section Titles --- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blau);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--anthrazit);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--anthrazit-light);
    line-height: 1.75;
    max-width: 640px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --- Accent Divider --- */
.gold-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--blau), var(--blau-light));
    border-radius: 2px;
    margin-bottom: 2rem;
}
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
    white-space: nowrap;
}

/* Blau Primary */
.btn-primary {
    background: linear-gradient(135deg, var(--blau) 0%, var(--blau-dark) 100%);
    color: var(--white) !important;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(46,134,171,0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blau);
    filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--blau);
    border-color: var(--blau);
}
.btn-outline:hover {
    background: var(--blau);
    color: var(--white) !important;
}

/* Ghost (for lighter backgrounds) */
.btn-ghost {
    background: rgba(45,52,54,0.06);
    color: var(--anthrazit);
    border-color: rgba(45,52,54,0.25);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(45,52,54,0.14);
    border-color: rgba(45,52,54,0.5);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Transparent by default — JS adds .scrolled */
.site-header.transparent {
    background: transparent;
}
.site-header.scrolled,
.site-header.solid {
    background: rgba(253,251,247,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(45,52,54,0.06);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--anthrazit);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.logo em {
    font-style: normal;
    color: var(--blau);
}
.logo .dot { color: var(--blau); }

/* Desktop Nav */
.main-nav {
    display: none;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--anthrazit-soft);
    letter-spacing: 0.04em;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color 0.3s, background 0.3s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--anthrazit);
    background: rgba(45,52,54,0.06);
}
.nav-link.active {
    color: var(--blau);
    background: transparent;
}

/* Nav CTA */
.nav-cta {
    margin-left: 0.75rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--anthrazit);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--cream);
    z-index: 999;
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}
.mobile-nav.open {
    display: flex;
    transform: translateX(0);
}
.mobile-nav a {
    color: var(--anthrazit-soft);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 400;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(45,52,54,0.07);
    transition: color 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blau); }
.mobile-nav .btn-primary {
    margin-top: 1.5rem;
    justify-content: center;
    font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(4rem, 8vw, 8rem);
    overflow: hidden;
    color: var(--anthrazit);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/img/unsplash_13.jpg');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.03);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(253,251,247,0.85) 0%,
        rgba(253,251,247,0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    animation: heroFadeUp 1s 0.2s both;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blau);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1.5px;
    background: var(--blau);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 600;
    color: var(--anthrazit);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero-title em {
    font-style: italic;
    color: var(--blau);
}

.hero-text {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--anthrazit-light);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Locations bar at bottom */
.hero-locations {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(253,251,247,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(45,52,54,0.08);
    padding: 0.9rem 1.5rem;
    z-index: 3;
}
.hero-locations .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-locations-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blau);
    font-weight: 600;
    white-space: nowrap;
}
.hero-locations-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-locations-list span {
    font-size: 0.875rem;
    color: var(--anthrazit-soft);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-locations-list span::before {
    content: '●';
    color: var(--blau);
    font-size: 0.5rem;
}

/* ============================================================
   PILLARS / TRUST STRIP
   ============================================================ */
.pillars {
    background: var(--cream);
    border-bottom: 1px solid var(--beige-dark);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.pillar-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--beige-dark);
    border-bottom: 1px solid var(--beige-dark);
    transition: background 0.3s;
    background: var(--white);
    border-radius: 0;
}
.pillar-item:hover { background: var(--blau-pale); }
.pillar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--blau);
}
.pillar-item h3 {
    font-size: 1.0625rem;
    color: var(--anthrazit);
    margin-bottom: 0.35rem;
}
.pillar-item p {
    font-size: 0.875rem;
    color: var(--anthrazit-light);
    margin: 0;
}

/* ============================================================
   ABOUT / INTRO
   ============================================================ */
.about-intro {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
}
.about-text p {
    font-size: 1.0625rem;
    color: var(--anthrazit-light);
    line-height: 1.85;
}
.about-text .btn { margin-top: 1.5rem; }

.about-media {
    position: relative;
}
.about-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.about-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    color: var(--anthrazit);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}
.about-badge strong {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--blau);
    line-height: 1;
}
.about-badge span {
    font-size: 0.75rem;
    color: var(--anthrazit-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   SERVICES / PAKETE
   ============================================================ */
.services {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--beige-light);
}
.services-intro {
    margin-bottom: 3.5rem;
}
.services-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,200,186,0.4);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blau);
}
.service-card-icon {
    width: 52px;
    height: 52px;
    background: var(--blau-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blau);
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-card-icon {
    background: var(--blau);
    color: var(--white);
}
.service-card h3 {
    font-size: 1.375rem;
    color: var(--anthrazit);
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--anthrazit-light);
    flex-grow: 1;
    line-height: 1.75;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blau);
    transition: gap 0.25s;
}
.service-link:hover { gap: 0.75rem; }

/* Service Card Variants & Utilities */
.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    color: var(--anthrazit-light);
    font-size: 0.9rem;
    line-height: 2;
}

.badge-recommended {
    display: inline-block;
    background: var(--blau);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 0.5rem;
}

.service-card--highlighted {
    border-color: var(--blau);
    box-shadow: 0 0 0 1.5px var(--blau), var(--shadow-lg);
}
.service-card--highlighted .service-card-icon {
    background: var(--blau);
    color: var(--white);
}

.service-card--wide {
    grid-column: 1 / -1;
    background: var(--beige);
    border-color: transparent;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.service-card--wide:hover {
    border-color: transparent;
}
.service-card--wide-title {
    color: var(--blau);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
    flex: 1;
    min-width: 200px;
}
.service-card--wide-content {
    flex: 1;
    min-width: 200px;
}
.service-card--wide-text {
    color: var(--anthrazit-soft);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* Background Utility */
.bg-slate-100 {
    background: var(--beige-light) !important;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--anthrazit);
    color: var(--white);
    overflow: hidden;
    position: relative;
}
.process::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46,134,171,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.process .eyebrow { color: var(--blau-light); }
.process .section-title { color: var(--white) !important; }
.process .section-subtitle { color: rgba(255,255,255,0.65); }
.process .gold-line { background: linear-gradient(90deg, var(--blau), var(--blau-light)); }

.steps-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}
.step-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: background 0.3s, border-color 0.3s;
}
.step-card:hover {
    background: rgba(46,134,171,0.1);
    border-color: rgba(46,134,171,0.35);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--blau-light);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    min-width: 3rem;
}
.step-card h3 {
    color: var(--white) !important;
    font-size: 1.1875rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6) !important;
    margin: 0;
    line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS / SOCIAL PROOF
   ============================================================ */
.testimonials {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--blau);
    border: 1px solid rgba(212,200,186,0.4);
    border-left: 3px solid var(--blau);
}
.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--blau);
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--anthrazit);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.testimonial-author strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--anthrazit);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--anthrazit-soft);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--beige);
    color: var(--anthrazit);
    text-align: center;
    border-top: 1px solid var(--beige-dark);
    border-bottom: 1px solid var(--beige-dark);
}
.cta-band .section-title { color: var(--anthrazit); margin-bottom: 1rem; }
.cta-band .section-subtitle { color: var(--anthrazit-soft); margin: 0 auto 2.5rem auto; }
.cta-band-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.cta-band-actions .btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--anthrazit-soft);
    font-size: 0.95rem;
    transition: color 0.3s;
}
.cta-band-actions .btn-tel:hover { color: var(--blau); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--anthrazit);
    color: rgba(255,255,255,0.55);
    padding: 4rem 0 2rem;
}

.site-footer .logo-custom .logo-main,
.site-footer .logo-custom .logo-sub1,
.site-footer .logo-custom .logo-sub2 {
    color: var(--beige) !important;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo em { font-style: normal; color: var(--blau-light); }
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 280px;
    color: rgba(255,255,255,0.55);
}
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blau-light);
    margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.footer-contact-item svg {
    color: var(--blau-light);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
    line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--blau-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}
.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.35);
    transition: color 0.25s;
}
.footer-legal-links a:hover { color: var(--blau-light); }

/* ============================================================
   PAGE HEADER (Unterseiten)
   ============================================================ */
.page-hero {
    min-height: 36vh;
    background: var(--anthrazit);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 2rem) 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(46,134,171,0.15) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: var(--white) !important;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 0.75rem;
}
.page-hero .eyebrow { color: var(--blau-light); }
.page-hero .section-subtitle { color: rgba(255,255,255,0.65); }
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: var(--blau-light); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   LEISTUNGEN PAGE — Detailed Services
   ============================================================ */
.service-detail-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--white);
}
.service-detail-section:nth-child(even) {
    background: var(--beige-light);
}
.service-detail-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.service-detail-text p {
    font-size: 1.0625rem;
    color: var(--anthrazit-light);
    line-height: 1.85;
}
.service-detail-text .btn { margin-top: 1.75rem; }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.875rem;
    background: var(--blau-pale);
    color: var(--blau-dark);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(46,134,171,0.2);
}
.service-tag::before {
    content: '✓';
    font-weight: 700;
    font-size: 0.75rem;
}

.service-detail-visual {
    position: relative;
}
.service-detail-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Services nav bar on Leistungen page */
.services-nav {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    border-bottom: 1px solid var(--beige-dark);
    box-shadow: 0 2px 8px rgba(45,52,54,0.04);
}
.services-nav .container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}
.services-nav .container::-webkit-scrollbar { display: none; }
.services-nav a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--anthrazit-soft);
    letter-spacing: 0.04em;
    white-space: nowrap;
    border-bottom: 2.5px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}
.services-nav a:hover,
.services-nav a.active {
    color: var(--blau);
    border-bottom-color: var(--blau);
}

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}
.contact-info-card {
    background: var(--anthrazit);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: var(--white);
}
.contact-info-card h3 {
    font-size: 1.625rem;
    color: var(--white);
    margin-bottom: 2rem;
}
.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(46,134,171,0.15);
    border: 1px solid rgba(46,134,171,0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blau-light);
    flex-shrink: 0;
}
.ci-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blau-light);
    display: block;
    margin-bottom: 0.3rem;
}
.ci-value {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    line-height: 1.55;
}
.ci-value a {
    color: rgba(255,255,255,0.75);
    transition: color 0.25s;
}
.ci-value a:hover { color: var(--blau-light); }
.ci-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}
.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.contact-form-wrap .sub {
    font-size: 0.9rem;
    color: var(--anthrazit-light);
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--anthrazit);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid var(--beige-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--anthrazit);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none;
}
.form-control::placeholder { color: var(--anthrazit-soft); }
.form-control:focus {
    border-color: var(--blau);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46,134,171,0.12);
}
textarea.form-control {
    resize: vertical;
    min-height: 160px;
}
select.form-control {
    cursor: pointer;
}
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    accent-color: var(--blau);
}
.form-privacy label {
    font-size: 0.8125rem;
    color: var(--anthrazit-light);
    line-height: 1.6;
}
.form-privacy a { color: var(--blau); text-decoration: underline; }
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Form Margin Utilities */
.mb-4 { margin-bottom: 1.25rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }

/* Contact Info Card Alt */
.contact-info-card--alt {
    margin-top: 1.5rem;
    background: var(--beige-light);
    color: var(--anthrazit);
}
.contact-info-card--alt h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--anthrazit);
}
.contact-info-card--alt p {
    color: var(--anthrazit-light);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.contact-info-card--alt p.small {
    color: var(--anthrazit-soft);
    font-size: 0.8125rem;
    line-height: 1.65;
}
.contact-info-card--alt strong {
    color: var(--anthrazit);
}

/* Form Success Message */
.form-success-msg {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--blau-pale);
    border-left: 3px solid var(--blau);
    border-radius: var(--radius-sm);
}
.form-success-msg strong {
    color: var(--anthrazit);
}
.form-success-msg p {
    margin: 0.35rem 0 0;
    color: var(--anthrazit-light);
    font-size: 0.9rem;
}

/* ============================================================
   NATIONAL AVAILABILITY SECTION
   ============================================================ */
.national-availability {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--beige-light);
}
.national-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    grid-template-columns: 1fr;
}
.national-card {
    background: var(--white);
    border: 1px solid rgba(212,200,186,0.4);
    border-radius: var(--radius-md);
    padding: 2rem 2.25rem;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.national-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.national-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--blau-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blau);
}
.national-card h4 {
    font-size: 1.125rem;
    color: var(--anthrazit);
    margin-bottom: 0.5rem;
}
.national-card p {
    font-size: 0.9rem;
    color: var(--anthrazit-light);
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   FACHGEBIETE PAGE — Condition Lists
   ============================================================ */
.condition-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
}
.condition-section:nth-child(even) {
    background: var(--beige-light);
}
.condition-section:nth-child(odd) {
    background: var(--white);
}
.condition-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    grid-template-columns: 1fr;
}
.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(212,200,186,0.4);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.condition-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--blau);
}
.condition-icon {
    width: 40px;
    height: 40px;
    background: var(--blau-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blau);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.condition-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--anthrazit);
    margin-bottom: 0.25rem;
}
.condition-item p {
    font-size: 0.875rem;
    color: var(--anthrazit-light);
    margin: 0;
    line-height: 1.65;
}
.condition-section .condition-grid .condition-item {
    background: var(--white);
}
.condition-section:nth-child(even) .condition-item {
    background: var(--white);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
    display: grid;
    gap: 1.75rem;
    margin-top: 3rem;
    grid-template-columns: 1fr;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212,200,186,0.4);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 1.75rem;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.blog-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blau);
    background: var(--blau-pale);
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
}
.blog-card-date {
    font-size: 0.8rem;
    color: var(--anthrazit-soft);
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--anthrazit);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--anthrazit-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blau);
    transition: gap 0.25s;
}
.blog-card-link:hover { gap: 0.75rem; }

/* Blog intro section */
.blog-intro {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--white);
}

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

/* Tablet ≥ 640px */
@media (min-width: 640px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .condition-grid { grid-template-columns: repeat(2, 1fr); }
    .national-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop ≥ 992px */
@media (min-width: 992px) {
    .main-nav { display: block; }
    .mobile-toggle { display: none; }

    .pillars-grid { grid-template-columns: repeat(4, 1fr); }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }

    /* Alternating layout for details */
    .service-detail-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .service-detail-section:nth-child(even) .service-detail-grid { direction: rtl; }
    .service-detail-section:nth-child(even) .service-detail-grid > * { direction: ltr; }

    .contact-grid { grid-template-columns: 1fr 1.6fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .condition-grid { grid-template-columns: repeat(2, 1fr); }
    .national-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Large ≥ 1280px */
@media (min-width: 1280px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile (< 640px) specific tweaks */
@media (max-width: 639px) {
    .hero-locations-list { display: none; }
    .about-badge { left: 0.5rem; bottom: -1rem; }
    .about-badge strong { font-size: 2rem; }
}

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   TRUST MINI STRIP (Kontakt Page)
   ============================================================ */
.trust-mini {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .trust-mini {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        text-align: left;
    }
}
.trust-mini-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.trust-mini-item strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--anthrazit);
}
.trust-mini-item span {
    font-size: 0.875rem;
    color: var(--anthrazit-light);
}
.trust-mini-sep {
    width: 1px;
    height: 48px;
    background: var(--beige-dark);
    display: none;
}
@media (min-width: 768px) {
    .trust-mini-sep { display: block; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.section-space {
    padding: clamp(4rem, 8vw, 7rem) 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

.page-breadcrumb { display: none !important; }


/* ============================================================
   PRICING / PAKETE
   ============================================================ */
.pricing-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--beige-light);
}
.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,200,186,0.5);
    position: relative;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212,200,186,0.3);
}
.pricing-title {
    font-size: 1.5rem;
    color: var(--anthrazit);
    margin-bottom: 0.5rem;
}
.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--anthrazit-light);
    margin-bottom: 1rem;
    min-height: 2.5rem;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--blau);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pricing-duration {
    font-size: 0.875rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--anthrazit);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-action {
    text-align: center;
    margin-top: auto;
}
.pricing-action .btn {
    width: 100%;
}


/* ============================================================
   CUSTOM LOGO (Replaces text logo)
   ============================================================ */
.logo-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
    padding: 0.5rem 0;
}
.logo-custom .logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--anthrazit);
}
.site-header.transparent .logo-custom .logo-main,
.site-header.scrolled .logo-custom .logo-main,
.site-header.solid .logo-custom .logo-main {
    color: var(--anthrazit);
}
.site-header.transparent .logo-custom .logo-sub1,
.site-header.transparent .logo-custom .logo-sub2,
.site-header.scrolled .logo-custom .logo-sub1,
.site-header.scrolled .logo-custom .logo-sub2,
.site-header.solid .logo-custom .logo-sub1,
.site-header.solid .logo-custom .logo-sub2 {
    color: var(--anthrazit-light);
}
.logo-custom .logo-sub1 {
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    color: var(--anthrazit-light);
    margin-top: 0.25rem;
    text-transform: uppercase;
}
.logo-custom .logo-line {
    width: 60%;
    height: 1px;
    background-color: #6bb9b9;
    margin: 0.35rem 0;
}
.logo-custom .logo-sub2 {
    font-family: var(--font-body);
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    color: var(--anthrazit-light);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .logo-custom .logo-main { font-size: 1.5rem; }
    .logo-custom .logo-sub1 { font-size: 0.4rem; }
    .logo-custom .logo-sub2 { font-size: 0.35rem; }
    .logo-custom .logo-line { margin: 0.25rem 0; }
}
