/*
Theme Name: Sei Gesund
Theme URI: https://pflege-seigesund.de/
Author: Sei Gesund GmbH
Description: Professionelle WordPress-Theme für Sei Gesund GmbH — Ambulante Pflege & Tagespflege in Osnabrück.
Version: 3.1
Text Domain: seigesund
*/

/* ===== CSS VARIABLES ===== */
:root {
  /* SeiGesund — насыщенный голубой */
  --sg-primary: #1976D2;
  --sg-light: #E3F2FD;
  --sg-dark: #0D47A1;
  --sg-accent: #42A5F5;

  /* Tagespflege — насыщенный тёмно-розовый */
  --tp-primary: #C2185B;
  --tp-light: #FCE4EC;
  --tp-dark: #880E4F;
  --tp-accent: #F06292;

  /* Shared */
  --white: #FFFFFF;
  --bg-gray: #F5F6F9;
  --text-dark: #1A2332;
  --text-body: #4A5568;
  --text-light: #7B8794;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--sg-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  background: var(--tp-primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--tp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--sg-primary);
}
.btn-white {
  background: var(--white);
  color: var(--sg-primary);
}
.btn-white:hover {
  background: var(--sg-light);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--sg-primary);
  transition: var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow.pink { color: var(--tp-primary); }
.link-arrow.pink:hover { color: var(--tp-dark); }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--text-dark);
  transition: transform 0.3s ease;
}
.top-bar.hidden {
  transform: translateY(-100%);
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  height: 36px;
  align-items: center;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  user-select: text;
}
.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.top-bar-item.blue svg { color: var(--sg-accent); }
.top-bar-item.pink svg { color: var(--tp-accent); }
.top-bar-item strong { color: var(--white); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: top 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}
.site-header.scrolled {
  top: 0;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--container);
  margin: 0 auto;
  transition: var(--transition);
}
.site-header.scrolled .header-inner {
  padding: 10px 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo-img {
  height: 54px;
  width: auto;
  transition: all 0.3s ease;
}
.header-logo a:hover .header-logo-img {
  transform: scale(1.08);
}
.header-logo a:hover .header-logo-img:not(.header-logo-sg) {
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.header-logo a:hover .header-logo-sg {
  filter: brightness(0) saturate(100%) invert(33%) sepia(93%) saturate(1350%) hue-rotate(191deg) brightness(96%) drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
/* Paint white SG logo → blue */
.header-logo-sg {
  filter: brightness(0) saturate(100%) invert(33%) sepia(93%) saturate(1350%) hue-rotate(191deg) brightness(96%);
}
.header-logo-divider {
  width: 1px;
  height: 32px;
  background: #D0D5DD;
}
.site-header.scrolled .header-logo-img {
  height: 40px;
}
.site-header.scrolled .header-logo-divider {
  height: 24px;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-sep {
  width: 1px;
  height: 16px;
  background: #D0D5DD;
}
.main-nav a {
  padding: 8px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--sg-primary);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--sg-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 12px;
}
.nav-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--bg-gray);
}
.mobile-nav a:hover { color: var(--sg-primary); }
.mobile-nav .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ===== SIDEBAR FIXED BUTTON ===== */
.sidebar-fixed {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
}
.sidebar-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sg-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.sidebar-dot:hover {
  background: var(--sg-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.sidebar-dot svg {
  width: 24px;
  height: 24px;
}

/* Contact Modal */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.contact-modal-overlay.active {
  display: flex;
}
.contact-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.contact-modal-close:hover { background: #E2E8F0; }
.contact-modal-close svg { width: 18px; height: 18px; color: var(--text-body); }
.contact-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.contact-modal-card {
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.contact-modal-card.blue {
  background: var(--sg-light);
  border-left: 4px solid var(--sg-primary);
}
.contact-modal-card.pink {
  background: var(--tp-light);
  border-left: 4px solid var(--tp-primary);
}
.contact-modal-logo {
  height: 32px;
  margin-bottom: 8px;
}
/* Paint white SG logo → blue in modal */
.contact-modal-logo-sg {
  filter: brightness(0) saturate(100%) invert(33%) sepia(93%) saturate(1350%) hue-rotate(191deg) brightness(96%);
}
.contact-modal-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact-modal-card > p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.contact-modal-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 6px;
  user-select: text;
}
.contact-modal-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-light);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 118px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 40px 20px;
}
.hero-logo {
  width: 200px;
  margin: 0 auto 30px;
  filter: brightness(0) invert(1);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  opacity: 0.92;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 118px;
}
.page-hero .hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.page-hero.pink .hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 60px 20px;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero .subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section-gray { background: var(--bg-gray); }
.section-blue { background: var(--sg-light); }
.section-pink { background: var(--tp-light); }
.section-dark {
  background: var(--text-dark);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-header .accent-line {
  width: 60px;
  height: 3px;
  background: var(--sg-primary);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-header .accent-line.pink { background: var(--tp-primary); }

/* ===== PFLEGE SIDEBAR LAYOUT ===== */
.pflege-menu {
  position: sticky;
  top: 100px;
  align-self: start;
}
.pflege-menu-item {
  color: var(--text-light);
  font-weight: 500;
}
.pflege-menu-item:hover {
  background: var(--white) !important;
  color: var(--sg-primary);
}
.pflege-menu-item.active {
  border-left-color: var(--sg-primary) !important;
  background: var(--white) !important;
  color: var(--sg-primary);
  font-weight: 500;
}
.pflege-tab { display: none; }
.pflege-tab.active { display: block; }

/* Pflege table */
.pflege-table-grid {
  display: grid;
  grid-template-columns: 140px repeat(5, 1fr);
  gap: 6px;
  min-width: 500px;
}
.pflege-table-grid .pt-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding-left: 4px;
}
.pflege-table-grid .pt-cell {
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pflege-sidebar-layout { flex-direction: column !important; }
  .pflege-menu { min-width: unset !important; display: flex; flex-wrap: wrap; gap: 4px; position: static; }
  .pflege-menu-item { border-left: none !important; border-bottom: 3px solid transparent !important; padding: 10px 14px !important; font-size: 0.9rem !important; width: auto !important; }
  .pflege-menu-item.active { border-bottom-color: var(--sg-primary) !important; }
}

/* ===== SERVICE CARDS (3-column grid) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sg-light);
  border-radius: 50%;
  color: var(--sg-primary);
}
.card-icon.pink {
  background: var(--tp-light);
  color: var(--tp-primary);
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 16px; }

.card-gray { background: var(--bg-gray); box-shadow: none; }
.card-gray:hover { box-shadow: var(--shadow); }

/* ===== TWO-COLUMN LAYOUT (text + image) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 8px; }
.two-col-text .overline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sg-primary);
  margin-bottom: 8px;
}
.two-col-text p { color: var(--text-body); }
.two-col-text .btn { margin-top: 20px; }
.two-col-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

/* ===== STATISTICS / COUNTER ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 30px 10px;
}
.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  opacity: 0.7;
  color: var(--sg-accent);
}
.stat-icon svg { width: 100%; height: 100%; }
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .suffix { font-size: 0.7em; }
.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  color: rgba(255,255,255,0.85);
}

/* ===== SERVICES DETAIL CARDS ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.service-detail-card {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 35px 25px;
  transition: var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-detail-card .card-icon {
  margin: 0 0 18px;
}
.service-detail-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.service-detail-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--sg-primary) 0%, var(--sg-dark) 100%);
  color: var(--white);
}
.cta-banner.pink {
  background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-dark) 100%);
}
.cta-banner.mixed {
  background: linear-gradient(135deg, var(--sg-primary) 0%, var(--sg-dark) 40%, var(--tp-dark) 70%, var(--tp-primary) 100%);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ===== CONTACT SECTION ===== */
.contact-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--bg-gray);
}
.contact-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.contact-tab:hover { color: var(--sg-primary); }
.contact-tab.active {
  color: var(--sg-primary);
  border-bottom-color: var(--sg-primary);
}
.contact-tab svg { width: 18px; height: 18px; }

.tab-content { display: none; }
.tab-content.active { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #CBD5E0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sg-primary);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0AEC0;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* File upload */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed #CBD5E0;
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  background: var(--bg-gray);
  cursor: pointer;
  transition: var(--transition);
}
.file-upload-wrapper:hover {
  border-color: var(--sg-primary);
  background: var(--sg-light);
}
.file-upload-wrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}
.file-upload-wrapper .file-upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--sg-primary);
}
.file-upload-wrapper .file-upload-text {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 4px;
}
.file-upload-wrapper .file-upload-hint {
  font-size: 0.8rem;
  color: var(--text-light);
}
.file-upload-wrapper .file-upload-name {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--sg-primary);
  font-weight: 600;
  display: none;
}
/* Submit buttons in forms */
.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  background: var(--sg-primary);
  letter-spacing: 0.3px;
  margin-top: 8px;
}
.form-submit-btn:hover {
  background: var(--sg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.form-submit-btn svg { width: 20px; height: 20px; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sg-primary);
  flex-shrink: 0;
}
.checkbox-group a {
  color: var(--sg-primary);
  text-decoration: underline;
}
/* Copyable text (non-clickable phone numbers) */
.copyable {
  user-select: text;
  cursor: text;
}

/* Honeypot */
.sg-hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
/* Turnstile CAPTCHA */
.cf-turnstile { margin: 12px 0; }
/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 60px; height: 60px; color: #38A169; margin-bottom: 16px; }
.form-success h3 { color: var(--text-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-body); }

/* ===== LOCATIONS / CONTACT CARDS ===== */
.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sg-primary);
}
.location-card.pink { border-top-color: var(--tp-primary); }
.location-card h3 { margin-bottom: 16px; font-size: 1.15rem; }
.location-card .location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.location-card .location-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--sg-primary);
  margin-top: 3px;
}
.location-card.pink .location-detail svg { color: var(--tp-primary); }

/* Map placeholder */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  background: var(--bg-gray);
  margin-top: 40px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== TABS (for services) ===== */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.service-tab {
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.service-tab:hover { background: var(--sg-light); color: var(--sg-primary); }
.service-tab.active {
  background: var(--sg-primary);
  color: var(--white);
}

.service-content { display: none; }
.service-content.active { display: block; }

/* Service list items */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.service-list-item:hover { box-shadow: var(--shadow); }
.service-list-item .check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--sg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-primary);
  margin-top: 2px;
}
.service-list-item .check-icon svg { width: 14px; height: 14px; }
.service-list-item span { font-size: 0.95rem; }

/* ===== TIMELINE (Tagesablauf) ===== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--tp-accent);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-left: 75px;
  padding-bottom: 35px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 20px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--tp-primary);
  border-radius: 50%;
  border: 3px solid var(--tp-light);
  z-index: 1;
}
.timeline-time {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--tp-primary);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table-header {
  background: var(--tp-primary);
  color: var(--white);
  padding: 16px 30px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 14px 30px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  transition: var(--transition);
}
.pricing-row:hover { background: var(--tp-light); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .price {
  font-weight: 700;
  color: var(--tp-dark);
  font-family: 'Nunito', sans-serif;
}
.pricing-divider {
  background: var(--bg-gray);
  padding: 10px 30px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Kosten cards (Pflegegrad pricing) */
.kosten-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
.kosten-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--tp-primary);
  transition: var(--transition);
}
.kosten-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.kosten-badge {
  display: inline-block;
  background: var(--tp-light);
  color: var(--tp-primary);
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.kosten-price {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: var(--tp-dark);
  line-height: 1.2;
}
.kosten-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}
.kosten-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.kosten-extra-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.kosten-extra-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tp-light);
  color: var(--tp-dark);
}
.kosten-extra-card h3 small {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
}
.kosten-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f3;
  font-size: 0.95rem;
}
.kosten-extra-row:last-child { border-bottom: none; }
.kosten-extra-row .price {
  font-weight: 700;
  color: var(--tp-dark);
  font-family: 'Nunito', sans-serif;
}
.kosten-extra-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  margin-top: 4px;
  border-top: 2px solid var(--tp-primary);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--tp-dark);
  font-size: 0.95rem;
}

/* ===== ACCORDION (FAQ) ===== */
.accordion-item {
  border-bottom: 1px solid #E2E8F0;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.accordion-header:hover { color: var(--sg-primary); }
.accordion-header svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-light);
}
.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--sg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-primary);
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.benefit-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== CAREER PAGE ===== */
.job-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--sg-primary);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.job-card .job-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sg-light);
  color: var(--sg-primary);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 12px;
}
.job-card.pink { border-left-color: var(--tp-primary); }
.job-card.pink .job-badge {
  background: var(--tp-light);
  color: var(--tp-primary);
}
.job-card h4 { margin-bottom: 8px; }
.job-card .job-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* ===== KARRIERE SPLIT LAYOUT ===== */
.karriere-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.karriere-block {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.karriere-block.blue-border {
  border: 2px solid var(--sg-light);
  border-top: 4px solid var(--sg-primary);
}
.karriere-block.pink-border {
  border: 2px solid var(--tp-light);
  border-top: 4px solid var(--tp-primary);
}
.karriere-block:hover {
  box-shadow: var(--shadow-hover);
}
.karriere-block-header {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.karriere-block-header.blue {
  background: linear-gradient(135deg, var(--sg-primary) 0%, var(--sg-dark) 100%);
}
.karriere-block-header.pink {
  background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-dark) 100%);
}
.karriere-block-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.15rem;
}
.karriere-block-header span {
  font-size: 0.85rem;
  opacity: 0.85;
  display: block;
}
.karriere-logo-box {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.karriere-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.karriere-positions {
  padding: 10px 0;
  flex: 1;
}
a.karriere-pos {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 30px;
  border-bottom: 1px solid #f0f0f3;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
a.karriere-pos:last-child { border-bottom: none; }
a.karriere-pos:hover { background: var(--bg-gray); }
a.karriere-pos.blue:hover { background: var(--sg-light); }
a.karriere-pos.pink:hover { background: var(--tp-light); }
.karriere-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.karriere-dot.blue { background: var(--sg-primary); }
.karriere-dot.pink { background: var(--tp-primary); }
.karriere-title {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.karriere-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
}
.karriere-block-footer {
  padding: 0 30px 30px;
  margin-top: auto;
}
.karriere-block-footer-inner {
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.karriere-block-footer-inner.blue-bg {
  background: var(--sg-light);
}
.karriere-block-footer-inner.pink-bg {
  background: var(--tp-light);
}

/* ===== GOALS LIST ===== */
.goals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.goal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.goal-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--tp-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-primary);
}
.goal-icon svg { width: 22px; height: 22px; }
.goal-item span { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--sg-primary);
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-logo {
  height: 45px;
}
.footer-logo-white {
  filter: brightness(0) invert(1);
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--sg-accent); padding-left: 4px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.footer-social a:hover {
  background: var(--sg-primary);
  padding-left: 0;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--sg-accent); }

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== DUAL HERO (Homepage) ===== */
.dual-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 118px;
  min-height: 85vh;
}
.dual-hero-panel {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 40px 36px;
}
.dual-hero-panel .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.dual-hero-panel.blue .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
}
.dual-hero-panel.pink .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
}
/* Hero rows — grid children, all z-index above bg */
.hero-row {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 480px;
}
/* Row 1: Logo + title + subtitle — centered in the image */
.hero-row-logo {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25%;
}
.hero-row-logo h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 20px 0 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-row-logo .subtitle {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-logo-box {
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: inline-block;
}
.hero-logo-box img {
  height: 80px;
  width: auto;
  display: block;
}
.hero-logo-box img.logo-invert {
  filter: brightness(0) invert(1);
}
/* Row 2: Buttons */
.hero-row-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-self: start;
  padding-top: 24px;
}
/* Colored hero buttons */
.btn-hero-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: var(--sg-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(25,118,210,0.35);
}
.btn-hero-blue:hover {
  background: var(--sg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25,118,210,0.45);
}
.btn-hero-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: var(--tp-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(194,24,91,0.35);
}
.btn-hero-pink:hover {
  background: var(--tp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,24,91,0.45);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
/* Row 4: Address */
.hero-row-address {
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 20px;
}
.hero-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  opacity: 0.8;
}
.hero-address svg { flex-shrink: 0; }

/* ===== LEGAL PAGES (Impressum, Datenschutz) ===== */
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sg-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.legal-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--sg-primary);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .cards-grid,
  .services-detail-grid,
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-cards { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .goals-list { grid-template-columns: 1fr; }
  .sidebar-dot { width: 48px; height: 48px; }
  .sidebar-dot svg { width: 20px; height: 20px; }
  .karriere-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .cards-grid,
  .services-detail-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .top-bar-inner { gap: 16px; padding: 0 12px; }
  .top-bar-item { font-size: 0.75rem; gap: 5px; }
  .top-bar-item strong { display: none; }
  .dual-hero { grid-template-columns: 1fr; min-height: auto; margin-top: 106px; }
  .dual-hero-panel { min-height: 70vh; padding: 50px 20px 30px; }
  .hero-logo-box { padding: 14px 20px; }
  .hero-logo-box img { height: 60px; }
  .hero-row-buttons { flex-direction: column; align-items: center; }
  .page-hero { min-height: 300px; }
  .hero-logo { width: 150px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-tabs { flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .service-tabs { flex-direction: column; align-items: stretch; }
  .service-tab { text-align: center; }
  .kosten-cards { grid-template-columns: repeat(2, 1fr); }
  .kosten-extras { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .kosten-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kosten-price { font-size: 1.3rem; }
  .kosten-card { padding: 20px 14px; }
  .stat-number { font-size: 2rem; }
  .top-bar-inner { gap: 10px; }
  .hero { min-height: 70vh; margin-top: 106px; }
  .page-hero { margin-top: 106px; }
  .header-inner { padding: 12px 16px; }
  .header-logo-img { height: 36px; }
  .header-logo-divider { height: 22px; }
}
