/* ============================================================
   Life&Home Pflegedienst – Main Stylesheet
   Green theme, modern, professional, fully responsive
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --green-50:  #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;

    --primary:       #2e8b57;
    --primary-dark:  #1e6b40;
    --primary-light: #4aad72;
    --primary-pale:  #e8f5ee;
    --accent:        #f0fdf4;

    --text-dark:   #1a2e1e;
    --text-body:   #374151;
    --text-muted:  #6b7280;
    --text-light:  #9ca3af;

    --bg-white:    #ffffff;
    --bg-light:    #f8fafb;
    --bg-section:  #f3f9f5;

    --border:      #e5e7eb;
    --border-soft: #d1fae5;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);

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

    --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --transition: 0.3s ease;
    --nav-height: 88px;
}

/* Hide mobile-only nav contact on desktop */
.nav-menu-contact {
    display: none;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Headers ---- */
.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-pale);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    font-size: 0.97rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: transparent;
    /* SVG transparent logo – drop shadow for visibility on white bg */
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
    transition: transform var(--transition), filter var(--transition);
    display: block;
}

.logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 2px 6px rgba(46,139,87,0.25));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: 20px;
}

.nav-link {
    padding: 8px 13px;
    font-size: 0.91rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-pale);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    flex-shrink: 0;
}

.hamburger:hover {
    background: var(--primary-pale);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
    background: linear-gradient(150deg, #0d2b18 0%, #14532d 30%, #1a6b38 60%, #0f3d22 100%);
}

/* Decorative pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74,173,114,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46,139,87,0.15) 0%, transparent 45%),
        radial-gradient(circle at 60% 80%, rgba(134,239,172,0.08) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle geometric shapes */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    display: none;
}

.hero-bg-img {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--green-300);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
}

.title-main {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.title-sub {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 600;
    color: var(--green-300);
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.title-tagline {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 400;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-description {
    color: rgba(255,255,255,0.88);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.18);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-300);
    line-height: 1;
}

.stat-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

/* Hero info cards (right side) */
.hero-team-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-info-card {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.hero-info-card:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.30);
    transform: translateX(4px);
}

.hero-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(74,173,114,0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-info-icon i {
    font-size: 1.2rem;
    color: var(--green-300);
}

.hero-info-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px;
}

.hero-info-card span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.3;
}

.hero-cta-card {
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    text-align: center;
}

.hero-cta-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    line-height: 1.5;
}

.hero-cta-card .btn {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
}

.hero-cta-card .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Keep old team-card styles for team section */
.team-card-inner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(255,255,255,0.15);
    max-width: 420px;
    width: 100%;
}

.team-card-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.team-card-badge i {
    color: var(--primary);
    font-size: 1rem;
}

.team-card-badge span {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    animation: bounce 2.5s infinite;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all var(--transition);
}

.hero-scroll:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   VORTEILE SECTION
   ============================================================ */
.vorteile {
    padding: 96px 0;
    background: var(--bg-white);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vorteil-card {
    padding: 36px 28px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.vorteil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.vorteil-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-soft);
}

.vorteil-card:hover::before {
    transform: scaleX(1);
}

.vorteil-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.vorteil-card:hover .vorteil-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(46,139,87,0.30);
}

.vorteil-icon i {
    font-size: 1.7rem;
    color: var(--primary);
    transition: color var(--transition);
}

.vorteil-card:hover .vorteil-icon i {
    color: #fff;
}

.vorteil-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.vorteil-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

/* ============================================================
   LEISTUNGEN SECTION
   ============================================================ */
.leistungen {
    padding: 96px 0;
    background: var(--bg-section);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leistung-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-soft);
}

.leistung-img-wrap {
    position: relative;
    height: 215px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.leistung-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: transform 0.5s ease;
    /* Soft natural look */
    filter: saturate(1.05) brightness(0.97) contrast(0.98);
}

.leistung-card:hover .leistung-img {
    transform: scale(1.05);
}

.leistung-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,50,28,0.35) 0%, transparent 60%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    pointer-events: none;
}

.leistung-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leistung-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.leistung-icon i {
    font-size: 1.15rem;
    color: var(--primary);
}

.leistung-body h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.leistung-body p {
    font-size: 0.91rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.leistung-list {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.leistung-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    color: var(--text-body);
    padding: 5px 0;
    line-height: 1.4;
}

.leistung-list li i {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Leistung Link (instead of button) */
.leistung-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    margin-top: auto;
    transition: all var(--transition);
    border-bottom: 1.5px solid transparent;
    width: fit-content;
}

.leistung-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    gap: 10px;
}

.leistung-link i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.leistung-link:hover i {
    transform: translateX(3px);
}

/* ============================================================
   PFLEGEGRAD SECTION
   ============================================================ */
.pflegegrad {
    padding: 96px 0;
    background: var(--bg-white);
}

.pflegegrad-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.pflegegrad-content .section-title {
    margin-top: 12px;
}

.pflegegrad-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.pflegegrad-stufen {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.stufe-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

/* .stufe-item:hover {
    border-color: var(--primary);
    background: var(--primary-pale);
} */

.stufe-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stufe-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stufe-item strong {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stufe-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.pflegegrad-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    margin-bottom: 32px;
}

.pflegegrad-info i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pflegegrad-info p {
    font-size: 0.91rem;
    color: var(--text-body);
    line-height: 1.65;
}

.pflegegrad-image {
    position: relative;
}

.pflegegrad-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.pflegegrad-badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
}

.pflegegrad-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pflegegrad-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.pflegegrad-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   EINSATZGEBIET SECTION
   ============================================================ */
.einsatzgebiet {
    padding: 96px 0;
    background: var(--bg-section);
}

.einsatzgebiet-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 52px;
    align-items: start;
}

.einsatz-map-container {
    position: relative;
}

.map-frame {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-soft);
    background: var(--bg-light);
}

.einsatz-stadtteile h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.einsatz-intro {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.stadtteile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.stadtteil-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
}

.stadtteil-item:hover {
    background: var(--primary-pale);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.stadtteil-item i {
    color: var(--primary);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.einsatz-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text-muted);
    padding: 12px 14px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    line-height: 1.6;
}

.einsatz-note i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
    padding: 96px 0;
    background: var(--bg-white);
}

.team-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.team-main-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
}

.team-main-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.team-main-badge i {
    color: #f59e0b;
}

.team-main-badge span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.team-values h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.25;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary);
}

.value-icon i {
    color: var(--primary);
    font-size: 1rem;
    transition: color var(--transition);
}

.value-item:hover .value-icon i {
    color: #fff;
}

.value-item strong {
    display: block;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
}

.testimonials .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--green-200);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: rgba(255,255,255,0.7);
}

.testimonial-author strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}

/* ============================================================
   BERATUNG / CONTACT FORM
   ============================================================ */
.beratung {
    padding: 96px 0;
    background: var(--bg-section);
}

.beratung-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.beratung-info .section-title {
    margin-top: 12px;
    margin-bottom: 16px;
}

.beratung-info > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.beratung-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text-body);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1rem;
}

.beratung-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-link {
    display: block;
    text-decoration: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-item-link:hover .contact-item {
    border-color: var(--primary);
    background: var(--primary-pale);
    transform: translateX(4px);
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.contact-item strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Form */
.beratung-form-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.beratung-form h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-pale);
    line-height: 1.3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group-small {
    max-width: 120px;
}

.form-group label {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    font-size: 0.92rem;
    color: var(--text-body);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(46,139,87,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fff5f5;
}

.form-error {
    font-size: 0.78rem;
    color: #ef4444;
    line-height: 1.3;
    min-height: 16px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.6;
}

.form-link {
    color: var(--primary);
    text-decoration: underline;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary);
}

.form-success i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.5;
}

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
.kontakt {
    padding: 96px 0;
    background: var(--bg-white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.kontakt-card {
    padding: 28px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.kontakt-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-soft);
}

.kontakt-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--transition);
}

.kontakt-card:hover .kontakt-icon {
    background: var(--primary);
}

.kontakt-icon i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: color var(--transition);
}

.kontakt-card:hover .kontakt-icon i {
    color: #fff;
}

.kontakt-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.kontakt-card p {
    font-size: 0.91rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.kontakt-card a {
    color: var(--primary-dark);
    font-weight: 600;
    transition: color var(--transition);
}

.kontakt-card a:hover {
    color: var(--primary);
}

.kontakt-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary-dark) !important;
    text-decoration: underline;
    margin-top: 6px;
}

.kontakt-note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.4;
}

.oeffnungszeiten {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.oz-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px dashed var(--border);
    line-height: 1.4;
}

.oz-row:last-child {
    border-bottom: none;
}

.oz-row.highlight {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.85);
}

.footer-main {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 68px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    /* On dark footer: show logo white/bright */
    filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    margin-bottom: 20px;
    opacity: 0.95;
    background: transparent;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.68);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    line-height: 1.3;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: all var(--transition);
    line-height: 1.4;
}

.footer-links a:hover {
    color: var(--green-300);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--green-400);
    font-size: 0.88rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255,255,255,0.68);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--green-300);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--green-300);
}

.footer-legal span {
    color: rgba(255,255,255,0.25);
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.50);
    text-align: center;
    line-height: 1.4;
}

.footer-designed {
    font-size: 0.80rem;
    color: rgba(255,255,255,0.40);
    text-align: right;
    line-height: 1.4;
}

.designer-link {
    color: var(--green-400);
    transition: color var(--transition);
}

.designer-link:hover {
    color: var(--green-300);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE – TABLET (max 1100px)
   ============================================================ */
@media (max-width: 1100px) {
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pflegegrad-wrap {
        gap: 48px;
    }

    .einsatzgebiet-wrap {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 380px;
    }

    .team-showcase {
        gap: 48px;
    }

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

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

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

    .footer-brand {
        max-width: 100%;
    }
}

/* ============================================================
   RESPONSIVE – TABLET PORTRAIT (max 900px)
   ============================================================ */
@media (max-width: 900px) {
    :root {
        --nav-height: 68px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px 100px;
        gap: 40px;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-team-card {
        order: -1;
    }

    .hero-info-card {
        text-align: left;
    }

    .pflegegrad-wrap {
        grid-template-columns: 1fr;
    }

    .pflegegrad-badge {
        right: 16px;
    }

    .beratung-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .team-showcase {
        grid-template-columns: 1fr;
    }

    .team-main-image img {
        height: 400px;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* ---- Navigation ---- */
    .hamburger {
        display: flex;
    }

    /* Fullscreen overlay drawer – slides down from BELOW the header */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding-top: var(--nav-height);  /* push content below the header */
        gap: 0;
        border: none;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        overflow-x: hidden;
        /* Hidden: clip off to the right */
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease;
        z-index: 999;   /* below header (1000), above everything else */
    }

    .nav-menu.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Dim overlay behind menu */
    .nav-menu::before {
        content: '';
        display: none;
    }

    .nav-list {
        flex-direction: column;
        margin: 0;
        padding: 12px 0;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: block;
        padding: 14px 24px;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-body);
        border-radius: 0;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-pale);
        color: var(--primary-dark);
        padding-left: 30px;
    }

    .btn-nav {
        display: block;
        text-align: center;
        margin: 16px 24px;
        padding: 14px 22px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    /* Mobile contact info at bottom of menu */
    .nav-menu-contact {
        padding: 20px 24px;
        margin-top: auto;
        background: var(--bg-section);
        border-top: 1px solid var(--border);
    }

    .nav-menu-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--primary-dark);
        padding: 8px 0;
        text-decoration: none;
    }

    .nav-menu-contact a i {
        width: 20px;
        color: var(--primary);
    }

    /* Show contact block inside mobile menu */
    .nav-menu-contact {
        display: block;
    }

    /* Sections */
    .vorteile,
    .leistungen,
    .pflegegrad,
    .einsatzgebiet,
    .team,
    .testimonials,
    .beratung,
    .kontakt {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .vorteile-grid {
        grid-template-columns: 1fr;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-designed {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group-small {
        max-width: 100%;
    }

    .beratung-form-wrap {
        padding: 28px 22px;
    }

    .hero-stats {
        gap: 16px;
        padding: 16px 20px;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .pflegegrad-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
    }

    .einsatzgebiet-wrap {
        gap: 36px;
    }

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

    .hero-scroll {
        bottom: 20px;
    }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --nav-height: 64px;
    }

    .logo-img {
        height: 52px;
    }

    .hero-content {
        padding: 40px 16px 80px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .hero-info-card {
        padding: 14px 16px;
    }

    .hero-cta-card {
        padding: 16px;
    }

    .hero-cta-card .btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .stadtteile-grid {
        grid-template-columns: 1fr;
    }

    .title-main {
        font-size: 2.2rem;
    }

    .title-sub {
        font-size: 1.4rem;
    }

    .title-tagline {
        font-size: 0.82rem;
    }

    .map-frame {
        height: 280px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .leistung-img-wrap {
        height: 180px;
    }

    .beratung-form-wrap {
        padding: 22px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .footer-main {
        padding: 48px 0 32px;
    }

    .footer-grid {
        gap: 28px;
    }
}

/* ============================================================
   BODY LOCK (when mobile menu is open)
   ============================================================ */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
