/* ============================================
   BerlinMediation – Kirby CMS Styles
   Original-Design-Nachbau
   ============================================ */

/* CSS Variables */
:root {
  --color-navy: oklch(0.28 0.065 250);
  --color-navy-dark: oklch(0.22 0.055 250);
  --color-navy-light: oklch(0.36 0.075 250);
  --color-orange: oklch(0.63 0.155 55);
  --color-orange-hover: oklch(0.56 0.145 55);
  --color-white: oklch(0.995 0.005 90);
  --color-bg: oklch(0.96 0.008 90);
  --color-bg-warm: oklch(0.97 0.01 90);
  --color-text: oklch(0.17 0.01 90);
  --color-text-light: oklch(0.4 0.015 90);
  --color-text-muted: oklch(0.58 0.01 90);
  --color-border: oklch(0.87 0.015 90);
  --color-card-bg: oklch(0.93 0.012 90);

  --font-heading: 'Alegreya', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-orange);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-navy);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding: 0.25rem 0;
}

.nav-menu a:hover {
  color: var(--color-navy);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.header-cta {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.header-cta:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  color: var(--color-white);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section-problems {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.section-benefits {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.section-skills {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.section-process {
  padding: var(--space-3xl) 0;
}

.section-philosophy {
  padding: var(--space-3xl) 0;
}

.section-team {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.section-testimonials {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.section-cta-large {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.section-faq {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.section-contact {
  padding: var(--space-3xl) 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

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

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--color-orange);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.035) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  align-items: center;
  gap: var(--space-2xl);
}

.hero-content {
  padding: var(--space-3xl) 0;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  padding: var(--space-lg) 0;
}

.hero-visual img {
  position: absolute;
  inset: var(--space-md) 0;
  width: 100%;
  height: calc(100% - var(--space-md) * 2);
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
}

/* Logos bar */
.logos-bar {
  background: var(--color-white);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.logos-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.logo-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ============================================
   Problems
   ============================================ */
.section-problems {
  background: var(--color-white);
}

.section-problems .section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-problems .section-lead {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.problem-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.problem-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.problem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-card-content {
  padding: var(--space-md);
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.problem-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================
   Benefits
   ============================================ */
.section-benefits {
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--space-md);
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-card:nth-child(odd):last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

.benefit-badge {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.benefit-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.benefits-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   Skills
   ============================================ */
.section-skills {
  background: var(--color-white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: left;
}

.skill-card {
  background: oklch(35% 0.02 250);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.skill-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
}

.skill-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.skill-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  font-weight: 600;
}

.skill-card p {
  color: oklch(80% 0.02 250);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   Process
   ============================================ */
.section-process {
  background: var(--color-bg-warm);
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-border) 5%, var(--color-border) 95%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.process-timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-orange);
  transform: translateX(-50%) scaleY(var(--timeline-progress, 0));
  transform-origin: top;
  z-index: 1;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.process-step:nth-child(even) .process-step-image {
  order: 2;
}

.process-step:nth-child(even) .process-step-content {
  order: 1;
}

.process-step.is-observed {
  opacity: 0;
  transform: translateY(24px);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.process-step-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.process-step-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.process-step-content {
  padding: var(--space-md) 0;
}

.process-step-label {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.process-step-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.process-step-content p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.process-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   Philosophy
   ============================================ */
.section-philosophy {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.philosophy-content .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.philosophy-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.philosophy-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

.philosophy-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================
   Team
   ============================================ */
.section-team {
  background: var(--color-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: left;
}

.team-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 0 var(--space-md) 0;
  background: var(--color-bg);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

.team-bio {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   Testimonials
   ============================================ */
.section-testimonials {
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
}

.testimonial:nth-child(1),
.testimonial:nth-child(4) {
  grid-column: 1 / -1;
  padding: var(--space-2xl);
}

.testimonial:nth-child(1) p,
.testimonial:nth-child(4) p {
  font-size: 1.0625rem;
  max-width: 65ch;
}

.stars {
  color: var(--color-orange);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.125em;
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta-large {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.cta-box {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  color: var(--color-white);
}

.cta-content .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-content .section-lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}

.cta-content .btn-primary {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.cta-content .btn-primary:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
}

.cta-info {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.cta-info h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.cta-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.cta-info a {
  color: var(--color-white);
}

.cta-info a:hover {
  color: var(--color-orange);
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
  background: var(--color-bg-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-orange);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-xs);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================
   Termine
   ============================================ */
.section-termine {
  background: var(--color-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.termine-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.termine-dates h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.dates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dates-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.0625rem;
  color: var(--color-text);
}

.dates-list li:first-child {
  padding-top: 0;
}

.dates-list li:last-child {
  border-bottom: none;
}

.termine-meta {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
}

.status-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.status--aktuell .status-badge {
  background: oklch(0.63 0.155 55);
  color: var(--color-white);
}

.status--ausgebucht .status-badge {
  background: oklch(0.5 0.05 250);
  color: var(--color-white);
}

.status--vergangen .status-badge {
  background: var(--color-border);
  color: var(--color-text-muted);
}

.meta-block {
  margin-bottom: var(--space-lg);
}

.meta-block:last-child {
  margin-bottom: 0;
}

.meta-block h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.meta-block p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.meta-block--price p:first-of-type {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
}

.price-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.termine-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.termine-overview {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.termine-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
}

.termine-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.termine-card-header h2 {
  font-size: 1.5rem;
}

/* ============================================
   Contact Form Section
   ============================================ */
.section-contact {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--color-text);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px oklch(0.28 0.065 250 / 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.contact-info-item {
  margin-bottom: var(--space-lg);
}

.contact-info-item h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.contact-info-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.contact-info-item a {
  color: var(--color-white);
}

.contact-info-item a:hover {
  color: var(--color-orange);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-logo:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.footer-tagline {
  margin-top: var(--space-xs);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: var(--space-xs);
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

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

/* ============================================
   Content Pages (Impressum, Datenschutz)
   ============================================ */
.content-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.page-header {
  margin-bottom: var(--space-xl);
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-content {
  max-width: 720px;
}

.text-content h2,
.text-content h3,
.text-content h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.text-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.7;
}

.text-content ul,
.text-content ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
}

.text-content li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
}

.text-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.text-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: var(--space-xl) 0;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual img {
    position: relative;
  }

  .philosophy-grid,
  .contact-grid,
  .cta-box,
  .termine-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step:nth-child(even) .process-step-image,
  .process-step:nth-child(even) .process-step-content {
    order: unset;
  }

  .process-steps::before,
  .process-step::after,
  .process-timeline-progress {
    display: none;
  }

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

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

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .nav-menu.is-open {
    display: flex;
    animation: navSlideIn 0.3s ease forwards;
  }

  .header-cta {
    display: none;
  }

  @keyframes navSlideIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .problems-grid,
  .skills-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(180px, auto);
  }

  .benefit-card:nth-child(odd):last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 2rem;
  }
}
