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

:root {
  --bg: #eef2ff;
  --bg-alt: #e4eaff;
  --bg-dark: #1a2340;
  --dark: #1a2340;
  --dark-mid: #243060;
  --accent: #1a2340;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --radius: 50px;
  --radius-card: 20px;
  --shadow: 0 4px 24px rgba(26,35,64,0.08);
  --shadow-hover: 0 8px 40px rgba(26,35,64,0.16);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary:hover { background: var(--dark-mid); border-color: var(--dark-mid); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-primary-lg {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 18px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--dark);
  transition: var(--transition);
}
.btn-primary-lg:hover { background: var(--dark-mid); transform: translateY(-2px); }

.btn-outline-lg {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 18px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--dark);
  transition: var(--transition);
}
.btn-outline-lg:hover { background: var(--dark); color: var(--white); }

.btn-outline-sm {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-outline-sm:hover { background: var(--dark); color: var(--white); }

.btn-full { width: 100%; text-align: center; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-card);
  max-width: 600px;
  width: calc(100% - 48px);
  z-index: 9999;
  box-shadow: var(--shadow-hover);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-content p { font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.cookie-content a { color: #93c5fd; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn-primary { background: var(--bg); color: var(--dark); border-color: var(--white); font-size: 14px; padding: 10px 20px; }
.cookie-banner .btn-outline-sm { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cookie-banner .btn-outline-sm:hover { background: var(--bg); color: var(--dark); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238,242,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  padding: 4px 0;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex: 1; }
.nav-logo img {
  height: 67px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { opacity: 0.55; }

.btn-nav {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--dark);
  white-space: nowrap;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 75px);
  background: var(--bg-alt);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  height: 100%;
}

.hero-content {
  padding-bottom: 80px;
  padding-top: 80px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  opacity: 0.6;
}

.hero-headline {
  font-size: clamp(80px, 11vw, 162px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -3px;
}

.hero-tagline {
  font-size: 21px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 40px;
  opacity: 0.75;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
}
.hero-image img {
  max-height: 580px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  vertical-align: bottom;
  filter: drop-shadow(0 20px 40px rgba(26,35,64,0.12));
}

/* ─── VORTEIL ─── */
.vorteil {
  background: var(--dark);
  padding: 64px 0;
}
.vorteil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.vorteil-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.vorteil-label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 8px 0;
}
.vorteil-item p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ─── SECTIONS ─── */
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  background: rgba(26,35,64,0.08);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ─── LEISTUNGEN ─── */
.leistungen { padding: 100px 0 60px; background: var(--bg); }

.leistungen-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  text-align: center;
}
.leistung-icon-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 16px;
  color: var(--dark);
}
.leistung-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}
.leistung-circle img { width: 100%; height: 100%; object-fit: cover; }
.leistung-circle.contain img { object-fit: contain; padding: 24px; background: var(--bg-alt); }

.leistungen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.leistung-card {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.leistung-card:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.leistung-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.leistung-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.leistung-card .btn-outline { margin-top: auto; text-align: center; }

/* ─── ZIELGRUPPEN ─── */
.zielgruppen { padding: 100px 0; background: var(--bg-alt); }

.zielgruppen-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.tab-btn.active, .tab-btn:hover { background: var(--dark); color: var(--white); }

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

.zielgruppe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.zielgruppe-text h3 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--dark); }
.zielgruppe-text p { font-size: 15px; color: var(--gray); margin-bottom: 12px; }
.zielgruppe-text ul { margin-bottom: 28px; }
.zielgruppe-text li {
  font-size: 15px;
  color: var(--dark);
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}
.zielgruppe-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: 700;
}
.zielgruppe-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

.zielgruppe-image img {
  border-radius: 16px;
  height: 340px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ─── TERMIN ─── */
.termin { padding: 100px 0; background: var(--bg); text-align: center; }
.termin h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; margin-bottom: 32px; color: var(--dark); }
.termin > .container > .btn-outline-lg { margin-bottom: 80px; }

.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

.app-mockup {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--gray-light);
}
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}
.app-logo { font-weight: 800; font-size: 20px; color: var(--dark); }
.app-user { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.app-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.phone-screen {
  background: var(--dark);
  border-radius: 16px;
  padding: 20px;
  color: white;
  margin-top: 12px;
}
.phone-header { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 12px; }
.phone-content { text-align: center; font-size: 13px; margin-bottom: 16px; opacity: 0.8; }
.phone-number { font-size: 48px; font-weight: 900; }
.phone-contracts { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 12px; }
.phone-label { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.contract-item {
  display: flex; justify-content: space-between;
  font-size: 12px; padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.termin-text h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--dark);
}
.termin-text p { font-size: 15px; color: var(--gray); margin-bottom: 16px; }
.termin-text ul { margin-top: 8px; }
.termin-text li {
  font-size: 15px;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

/* ─── ÜBER MICH ─── */
.ueber-mich { padding: 100px 0; background: var(--bg-alt); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.ueber-image img {
  border-radius: 20px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.ueber-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 20px; line-height: 1.2; color: var(--dark); }
.ueber-text p { font-size: 15px; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.ueber-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 36px; font-weight: 900; color: var(--dark); }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }

/* ─── BEWERTUNGEN ─── */
.bewertungen { padding: 80px 0; background: var(--bg); }
.bewertungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bewertung-card {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 32px;
  border-left: 4px solid var(--dark);
}
.sterne { font-size: 18px; color: var(--dark); margin-bottom: 14px; letter-spacing: 2px; }
.bewertung-card p { font-size: 15px; color: var(--dark); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.bewertung-author { font-size: 13px; font-weight: 600; color: var(--gray); }

/* ─── BLOG ─── */
.blog { padding: 100px 0; background: var(--bg-alt); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); line-height: 1.3; }
.blog-content p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.blog-link { font-size: 14px; font-weight: 700; color: var(--dark); border-bottom: 2px solid var(--dark); padding-bottom: 1px; }

/* ─── NEWSLETTER ─── */
.newsletter { padding: 80px 0; background: var(--dark); }
.newsletter-box { text-align: center; color: var(--white); }
.newsletter-box h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.newsletter-box > p { font-size: 16px; opacity: 0.65; margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: none;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.newsletter-form .btn-primary { background: var(--bg); color: var(--dark); border-color: var(--white); white-space: nowrap; }
.newsletter-form .btn-primary:hover { background: var(--bg-alt); }
.newsletter-hint { font-size: 13px; opacity: 0.45; }
.newsletter-hint a { color: var(--white); text-decoration: underline; }

/* ─── KONTAKT ─── */
.kontakt { padding: 100px 0; background: var(--bg); }
.kontakt-form-wide { max-width: 760px; margin: 0 auto; }
.kontakt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kontakt-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { resize: vertical; }

.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--dark); flex-shrink: 0; }
.form-check label { font-size: 13px; font-weight: 400 !important; color: var(--gray); line-height: 1.5; text-transform: none !important; letter-spacing: 0 !important; }
.form-check a { color: var(--dark); text-decoration: underline; }

/* ─── KARRIERE TEASER ─── */
.karriere-teaser {
  padding: 100px 0;
  background: var(--bg-alt);
}
.karriere-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.karriere-teaser-text .section-tag { margin-bottom: 20px; }
.karriere-teaser-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.15;
}
.karriere-teaser-text p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}
.karriere-teaser-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}

/* ─── FOOTER ─── */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 20px; }
.footer-email {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: var(--transition);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
}
.footer-email:hover { color: var(--white); border-bottom-color: var(--white); }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }
.footer-links h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.95); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); cursor: pointer; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 4px; }

/* ─── MODALS ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,35,64,0.6);
  z-index: 1000;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: #f5f7ff;
  border-radius: 24px;
  padding: 48px;
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-hover);
}
.modal h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; color: var(--dark); }
.modal p { font-size: 15px; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.modal strong { color: var(--dark); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--bg-alt);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--dark);
}
.modal-close:hover { background: var(--dark); color: var(--white); }

/* ─── RESPONSIVE: TABLET LANDSCAPE (max 1024px) ─── */
@media (max-width: 1024px) {
  .vorteil-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .leistungen-cards { gap: 20px; }
  .ueber-grid { gap: 40px; }
  .kontakt-grid { gap: 40px; }
  .termin-grid { gap: 48px; }
  .hero-headline { font-size: clamp(72px, 10vw, 140px); }
}

/* ─── RESPONSIVE: TABLET PORTRAIT (max 768px) ─── */
@media (max-width: 768px) {

  /* NAV */
  .navbar { position: relative; padding: 8px 0; }
  .nav-logo img { height: 52px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  /* HERO */
  .hero { min-height: auto; align-items: stretch; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 0;
    gap: 0;
  }
  .hero-content { padding-top: 0; padding-bottom: 32px; order: 1; }
  .hero-image { order: 2; justify-content: center; align-self: flex-end; }
  .hero-image img { max-height: 340px; }
  .hero-headline { font-size: clamp(60px, 14vw, 100px); letter-spacing: -2px; }
  .hero-subtitle { font-size: 14px; }
  .hero-tagline { font-size: 17px; margin-bottom: 28px; }
  .hero-ctas { justify-content: center; flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary-lg,
  .hero-ctas .btn-outline-lg { width: 100%; max-width: 320px; text-align: center; }

  /* VORTEIL */
  .vorteil-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .vorteil-number { font-size: 36px; }

  /* LEISTUNGEN */
  .leistungen { padding: 60px 0 40px; }
  .leistungen-icons { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
  .leistung-circle { width: 100px; height: 100px; }
  .leistung-icon-card h3 { font-size: 13px; }
  .leistungen-cards { grid-template-columns: 1fr; gap: 16px; }
  .leistung-card { padding: 28px 24px; }

  /* ZIELGRUPPEN */
  .zielgruppen { padding: 60px 0; }
  .zielgruppen-tabs { gap: 6px; }
  .tab-btn { padding: 9px 14px; font-size: 12px; }
  .zielgruppe-grid { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
  .zielgruppe-image { display: none; }
  .zielgruppe-text h3 { font-size: 24px; }
  .zielgruppe-ctas { flex-direction: column; }
  .zielgruppe-ctas .btn-primary,
  .zielgruppe-ctas .btn-outline { text-align: center; }

  /* TERMIN */
  .termin { padding: 60px 0; }
  .termin h2 { font-size: 32px; }
  .termin-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .termin-text h3 { font-size: 32px; }

  /* ÜBER MICH */
  .ueber-mich { padding: 60px 0; }
  .ueber-grid { grid-template-columns: 1fr; gap: 32px; }
  .ueber-image { display: block; }
  .ueber-image img { height: 320px; }
  .ueber-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-number { font-size: 28px; }

  /* KARRIERE TEASER */
  .karriere-teaser { padding: 60px 0; }
  .karriere-teaser-grid { grid-template-columns: 1fr; gap: 32px; }
  .karriere-teaser-image img { height: 240px; }

  /* BEWERTUNGEN */
  .bewertungen { padding: 60px 0; }
  .bewertungen-grid { grid-template-columns: 1fr; gap: 16px; }

  /* BLOG */
  .blog { padding: 60px 0; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }

  /* NEWSLETTER */
  .newsletter { padding: 60px 0; }
  .newsletter-box { padding: 0 8px; }
  .newsletter-box h2 { font-size: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form .btn-primary { width: 100%; }

  /* KONTAKT */
  .kontakt { padding: 60px 0; }
  .kontakt-form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* MODAL */
  .modal { padding: 28px 20px; }
  .modal h2 { font-size: 22px; }

  /* SECTION SPACING */
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; margin-bottom: 36px; }
}

/* ─── RESPONSIVE: MOBILE (max 480px) ─── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* NAV */
  .nav-logo img { height: 44px; }
  .nav-container { gap: 16px; }

  /* HERO */
  .hero-headline { font-size: clamp(52px, 16vw, 80px); letter-spacing: -1px; }
  .hero-image img { max-height: 280px; }

  /* VORTEIL */
  .vorteil-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .vorteil-number { font-size: 30px; }
  .vorteil-label { font-size: 13px; }

  /* LEISTUNGEN */
  .leistungen-icons { grid-template-columns: 1fr; gap: 24px; }
  .leistung-circle { width: 130px; height: 130px; }
  .leistung-icon-card h3 { font-size: 15px; }

  /* ZIELGRUPPEN TABS – scrollable on small screens */
  .zielgruppen-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .zielgruppen-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; }

  /* STATS */
  .ueber-stats { grid-template-columns: 1fr 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; }

  /* BUTTONS */
  .btn-primary-lg, .btn-outline-lg { padding: 15px 28px; font-size: 15px; }
}
