/*
Theme Name: K Concepts
Theme URI: https://www.kconcepts.de
Author: K Concepts Medizinische Lösungen
Author URI: https://www.kconcepts.de
Description: Custom WordPress Theme für K Concepts Medizinische Lösungen
Version: 1.0
License: Proprietary
Text Domain: k-concepts
*/

/* ============================================================
   K Concepts Medizinische Lösungen – style.css
   ============================================================ */

/* ─── RESET + VARIABLEN ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #54aab0;
  --teal-dark:  #3d8a90;
  --teal-light: #e8f5f6;
  --dark:       #1a2533;
  --mid:        #4a5568;
  --light:      #f7f9fa;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --font-head:  'Lora', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── NAVIGATION ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  transition: height 0.3s ease;
}
nav.scrolled { height: 72px; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img {
  height: 64px; width: auto; object-fit: contain;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img { height: 44px; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--mid);
  text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 3px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px; /* Hover bridge to prevent gap-closing before submenu is reached */
}
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: -1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.4rem 0;
  min-width: 160px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300; list-style: none;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 13px; color: var(--mid); text-decoration: none;
  font-weight: 400; letter-spacing: 0; text-transform: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown li a:hover { color: var(--teal); background: var(--teal-light); }
.dropdown-chevron {
  display: inline-block; vertical-align: middle;
  transition: transform 0.2s; flex-shrink: 0;
}
.has-dropdown:hover .dropdown-chevron,
.has-dropdown:focus-within .dropdown-chevron { transform: rotate(180deg); }

.nav-cta {
  background: var(--teal); color: white; border: none;
  padding: 10px 22px; border-radius: 4px; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--font-body); transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--teal-dark); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; top: 84px; left: 0; right: 0; z-index: 199;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: top 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu ul li a {
  display: block; padding: 0.75rem 0;
  font-size: 15px; color: var(--dark); text-decoration: none;
  border-bottom: 1px solid var(--border); font-weight: 400;
  transition: color 0.2s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--teal); }
.mobile-menu ul li.mobile-sub a {
  padding-left: 1.25rem; font-size: 14px;
  color: var(--mid); font-weight: 300;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--teal); color: white; padding: 14px 30px;
  border-radius: 4px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.2s; font-family: var(--font-body);
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent; color: white; padding: 14px 30px;
  border-radius: 4px; font-size: 14px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.5); text-decoration: none;
  transition: all 0.2s; font-family: var(--font-body); display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-outline-teal {
  background: transparent; color: var(--teal); padding: 13px 28px;
  border-radius: 4px; font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--teal); text-decoration: none;
  transition: all 0.2s; font-family: var(--font-body); display: inline-block;
}
.btn-outline-teal:hover { background: var(--teal); color: white; }

/* ─── SECTION LABELS + TITLES ─── */
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 500;
  color: var(--dark); margin-bottom: 3rem; line-height: 1.3;
}
.section-title.white { color: white; }

/* ─── HERO (Homepage – 2-Spalten, heller Stil) ─── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #ffffff;
  padding-bottom: 100px;
}
/* KC Wasserzeichen */
.hero::after {
  content: '';
  position: absolute; left: -4%; bottom: 8%;
  width: 340px; height: 340px;
  background: url('/wp-content/uploads/2026/04/K-1.png') center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none; z-index: 0;
}

/* Dekorativer Kreis oben rechts – solide Fläche, klar sichtbare Rundung */
.hero::before {
  content: '';
  position: absolute; top: -18%; right: -12%;
  width: 54%; aspect-ratio: 1;
  background: var(--teal-light);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}

.hero-container {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 5rem 3rem calc(5rem + 80px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}

/* Welle innerhalb des Heroes */
.hero-wave-bottom {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 1;
  line-height: 0; pointer-events: none;
}
.hero-wave-bottom svg { display: block; width: 100%; height: 80px; }

.hero-label {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.25rem; display: block;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.2; color: var(--dark); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--mid);
  line-height: 1.85; margin-bottom: 2.5rem; max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Bild-Rahmen rechts oben ─── */
.hero-img-frame {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/2; position: relative;
  margin-bottom: 1rem;
  box-shadow: 0 20px 56px rgba(26,37,51,0.13);
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: center 18%;
}
/* Subtiler Farbverlauf unten im Bild */
.hero-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(84,170,176,0.12) 100%);
  pointer-events: none;
}
/* Türkiser Akzent-Schatten hinter dem Bild */
.hero-img-frame::before {
  content: '';
  position: absolute; bottom: -10px; right: -10px; z-index: -1;
  width: 100%; height: 100%;
  background: var(--teal); border-radius: 20px; opacity: 0.12;
}

/* Kacheln unterhalb des Bildes */
.hero-right {
  display: flex; flex-direction: column; gap: 0.85rem;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Kacheln als anklickbare Links */
a.hero-card { text-decoration: none; }
.hero-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  display: flex; align-items: center; gap: 0.9rem;
  animation: slideUp 0.7s ease both;
  animation-delay: var(--delay, 0.2s);
  transition: all 0.22s;
}
.hero-card:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(84,170,176,0.12);
  transform: translateY(-2px);
}
/* Icon-Box mit türkisem Hintergrund */
.hero-card-icon-wrap {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.hero-card-icon-wrap svg { width: 17px; height: 17px; }
.hero-card-body { flex: 1; }
.hero-card-body h3 {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--dark); margin-bottom: 0; letter-spacing: 0;
}
/* Chevron rechts */
.hero-card-chevron {
  flex-shrink: 0; color: var(--mid); opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hero-card-chevron svg { width: 16px; height: 16px; display: block; }
.hero-card:hover .hero-card-chevron {
  transform: rotate(180deg); opacity: 1; color: var(--teal);
}
.hero-card-body p {
  font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.6;
  max-height: 0; overflow: hidden; opacity: 0; margin: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}
.hero-card-body .hero-card-more {
  display: block; font-size: 11.5px; font-weight: 500; color: var(--teal);
  letter-spacing: 0.02em; margin-top: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}
.hero-card:hover .hero-card-body p {
  max-height: 6rem; opacity: 1; margin-top: 0.3rem;
}
.hero-card:hover .hero-card-body .hero-card-more {
  max-height: 2rem; opacity: 1; margin-top: 0.4rem;
}

/* ─── WELLEN-TRENNER ─── */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; height: 64px; }

/* ─── ÜBER-UNS-STRIP (türkis) ─── */
.about-block {
  position: relative; overflow: hidden;
  margin-top: -100px;
}
.about-strip {
  background: var(--teal);
  padding: 5rem 3rem;
  position: relative; overflow: visible;
}
.about-strip::before {
  content: '';
  position: absolute; left: -10%; top: -40%;
  width: 44%; height: 200%;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
/* v2: obere Welle (außerhalb des Hero, innerhalb about-block) */
.about-wave-top {
  background: transparent;
  margin-bottom: -1px; /* lückenloser Übergang */
}
.about-wave-top svg { height: 80px; }

/* v2: kombinierter Abschnitt (3 Spalten) */
.about-combined {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 3.5rem; align-items: center;
  position: relative; z-index: 1;
}
.about-label {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem;
}
.about-link {
  display: inline-block; margin-top: 0.75rem;
  color: white; font-size: 14px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 4px;
  transition: opacity 0.2s;
}
.about-link:hover { opacity: 0.75; }
.about-team-img {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  aspect-ratio: 4/3;
}
.about-team-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text h2 {
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 500;
  color: white; margin-bottom: 0.6rem; line-height: 1.3;
}
.about-slogan-note {
  font-size: 14px; color: rgba(255,255,255,0.68);
  font-style: italic; font-weight: 400; line-height: 1.5;
  margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 300;
  line-height: 1.9; margin-bottom: 1rem;
}
.about-text a {
  display: inline-block; margin-top: 0.75rem;
  color: white; font-size: 14px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 4px;
  transition: opacity 0.2s;
}
.about-text a:hover { opacity: 0.75; }
.about-values { display: flex; flex-direction: column; }
.about-value {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.about-value:last-child { border-bottom: none; }
.about-value-dot {
  width: 8px; height: 8px; border-radius: 50%; background: white;
  margin-top: 6px; flex-shrink: 0;
}
.about-value strong { display: block; color: white; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.about-value span { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 300; }

/* ─── TEAM SLIDER ─── */
.team-section { padding: 5rem 3rem; background: var(--light); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide {
  min-width: 100%; display: grid;
  grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.slide-img {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  position: relative;
}
.slide-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-img--portrait img { object-position: top center; }
.slide-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(transparent, rgba(84,170,176,0.15));
  pointer-events: none;
}
.slide-text h3 {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.4rem;
}
.slide-text .role {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.25rem; display: block;
}
.slide-text p {
  font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.9;
}
.slider-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 2rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #cbd5e0;
  cursor: pointer; border: none; transition: all 0.3s; padding: 0;
}
.dot.active { background: var(--teal); transform: scale(1.3); }
.slider-arrows {
  display: flex; gap: 0.75rem; margin-top: 2rem; justify-content: center;
}
.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--teal); background: transparent;
  color: var(--teal); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-family: var(--font-body);
}
.arrow-btn:hover { background: var(--teal); color: white; }

/* ─── PRODUKTE GRID ─── */
.products-section { padding: 5rem 3rem; background: linear-gradient(180deg, var(--teal-light) 0%, #ffffff 65%); position: relative; overflow: hidden; }
.products-section::after {
  content: '';
  position: absolute; right: -4%; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: url('/wp-content/uploads/2026/04/K-1.png') center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none; z-index: 0;
}
.products-inner { position: relative; z-index: 1; }
.products-inner { max-width: 1200px; margin: 0 auto; }

/* ─── KC WASSERZEICHEN UTILITY (Unterseiten) ─── */
.wm-left,
.wm-right { position: relative; overflow: hidden; }
.wm-left::after,
.wm-right::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: url('/wp-content/uploads/2026/04/K-1.png') center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none; z-index: 0;
}
.wm-left::after  { left: -4%; bottom: 8%; }
.wm-right::after { right: -4%; top: 50%; transform: translateY(-50%); }
.wm-left > *,
.wm-right > * { position: relative; z-index: 1; }
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.product-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); text-decoration: none; color: inherit;
  transition: all 0.3s; display: flex; flex-direction: column;
  background: var(--white);
}
.product-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(84,170,176,0.14); }
.product-img {
  height: 220px; overflow: hidden; position: relative;
  background: var(--light);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,37,51,0.45));
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.product-body p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; flex: 1; }
.product-link {
  margin-top: 1rem; font-size: 13px; font-weight: 500;
  color: var(--teal); display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.product-card:hover .product-link { gap: 10px; }
.product-card-static { cursor: default; }
.product-card-static:hover {
  border-color: var(--border);
  transform: none;
  box-shadow: none;
}
.product-card-static:hover .product-img img { transform: none; }

/* ─── PATIENTEN-SEKTION (Homepage) ─── */
.patients-section { background: var(--light); padding: 5rem 3rem; }
.patients-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.patients-img {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  position: relative;
}
.patients-img img { width: 100%; height: 100%; object-fit: cover; }
.patients-img::before {
  content: '';
  position: absolute; bottom: -20px; right: -20px; z-index: -1;
  width: 80%; height: 80%;
  background: var(--teal-light);
  border-radius: 12px;
}
.patients-text .badge {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 1.25rem;
}
.patients-text h2 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 500;
  color: var(--dark); margin-bottom: 1rem; line-height: 1.35;
}
.patients-text p {
  font-size: 15px; color: var(--mid); font-weight: 300;
  line-height: 1.9; margin-bottom: 1.5rem;
}
.patients-steps { margin-bottom: 2rem; }
.step {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
  width: 28px; height: 28px; background: var(--teal); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; flex-shrink: 0;
}
.step strong { display: block; font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.step span { font-size: 12px; color: var(--mid); font-weight: 300; }
.patients-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ─── CONSULTING TEASER ─── */
.consulting-teaser {
  position: relative; padding: 7rem 3rem;
  overflow: hidden; background: var(--dark);
}
.consulting-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.consulting-bg-img img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.22;
}
.consulting-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.consulting-card {
  background: rgba(84, 170, 176, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  max-width: 600px; width: 100%;
  text-align: center;
}
.consulting-card-label {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: 0.75rem;
}
.consulting-card h2 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 500;
  color: white; margin-bottom: 1rem;
}
.consulting-card p {
  font-size: 15px; color: rgba(255,255,255,0.9);
  font-weight: 300; line-height: 1.8; margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: white;
  padding: 4rem 3rem 2rem;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.8; margin-top: 0.5rem; }
footer h4 {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1.25rem;
}
footer ul li { margin-bottom: 0.6rem; }
footer ul li a {
  color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; font-weight: 300;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--teal); }
.footer-subnav {
  list-style: none;
  margin-top: 0.35rem;
  margin-left: 0.9rem;
}
.footer-subnav li { margin-bottom: 0.35rem; }
.footer-subnav li:last-child { margin-bottom: 0; }
.footer-subnav li a {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
}
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 2.1; }
.footer-contact a { color: var(--teal); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 0; padding: 0; }
.footer-bottom-links li { padding: 0; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--teal); }

.footer-contact a.footer-wa-btn,
.footer-contact a.footer-wa-btn:hover {
  color: #fff;
  text-decoration: none;
}
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 0.4rem;
  padding: 7px 11px;
  border-radius: 5px;
  background: #25D366;
  font-size: 12px; font-weight: 500;
  line-height: 1;
  transition: background 0.2s;
}
.footer-wa-btn:hover { background: #1ebe5a; }
.footer-wa-btn svg { flex-shrink: 0; width: 14px; height: 14px; }
.footer-ig-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 0.5rem;
}
.footer-ig-link svg { flex-shrink: 0; width: 14px; height: 14px; }

/* ─── PAGE HERO (Unterseiten – dunkler Stil, Standardvariante) ─── */
.page-hero {
  position: relative; min-height: 380px;
  display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(26,37,51,0.9) 40%, rgba(26,37,51,0.35) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 4rem 3rem;
}
.page-hero-content .hero-label { margin-bottom: 1rem; }
.page-hero-content h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600; line-height: 1.25; color: white; margin-bottom: 1rem;
}
.page-hero-content .hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.78);
  line-height: 1.8; max-width: 600px; margin-bottom: 0;
}

/* ─── PAGE HERO (heller Stil – passend zur Homepage) ─── */
.page-hero--light {
  background: #ffffff;
  min-height: calc(75vh - 100px);
}
/* Erster Abschnitt nach hellem Hero */
.page-hero--light + section {
  background: var(--light);
}
/* KC Wasserzeichen – links unten (wie Homepage-Hero, etwas kleiner) */
.page-hero--light::after {
  content: '';
  position: absolute; left: -3%; bottom: 6%;
  width: 260px; height: 260px;
  background: url('/wp-content/uploads/2026/04/K-1.png') center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none; z-index: 0;
}
/* Gleicher dekorativer Kreis wie Homepage */
.page-hero--light::before {
  content: '';
  position: absolute; top: -18%; right: -12%;
  width: 54%; aspect-ratio: 1;
  background: var(--teal-light);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
/* Dunkle Elemente ausblenden */
.page-hero--light .page-hero-img,
.page-hero--light .page-hero-overlay { display: none; }

/* Zweispalten-Container für hellen Hero */
.page-hero-container {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 3rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.page-hero-left .hero-label { color: var(--teal); margin-bottom: 1rem; }
.page-hero-left h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 600; line-height: 1.25; color: var(--dark); margin-bottom: 1rem;
}
.page-hero-left .hero-sub {
  font-size: 16px; font-weight: 300; color: var(--mid);
  line-height: 1.8; max-width: 480px; margin-bottom: 2rem;
}
/* Bild im hellen Hero (rechts) – gleicher Rahmen wie Homepage */
.page-hero-right .hero-img-frame { margin-bottom: 0; }

@media (max-width: 1200px) and (min-width: 901px) {
  .page-hero--light {
    min-height: calc(75vh - 70px);
  }
  .page-hero-container {
    padding: 3.25rem 2.5rem;
  }
}

@media (max-width: 900px) {
  .page-hero-container { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .page-hero-right .hero-img-frame { max-width: 480px; margin: 0 auto; }
}

/* ─── CONTENT SECTIONS (Unterseiten) ─── */
.content-section { padding: 5rem 3rem; background: var(--white); }
.content-section.bg-light { background: var(--light); }

/* Gradient nur auf Unterseiten: jede non-bg-light Section nach page-hero bekommt Gradient */
.page-hero ~ .content-section:not(.bg-light) {
  background: linear-gradient(180deg, var(--teal-light) 0%, #ffffff 65%);
}
.content-inner { max-width: 1200px; margin: 0 auto; }

/* Content mit Bild-Spalte */
.content-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.content-two-col.img-right .col-img { order: 2; }
.content-two-col.img-right .col-text { order: 1; }
.col-img {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative;
}
.col-img img { width: 100%; height: 100%; object-fit: cover; }
.col-text h2 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 500;
  color: var(--dark); margin-bottom: 1.25rem; line-height: 1.3;
}
.col-text h2.large { font-size: 2.2rem; }
.col-text p {
  font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.9;
  margin-bottom: 1rem;
}
.col-text p:last-of-type { margin-bottom: 0; }
.col-text .btn-primary,
.col-text .btn-outline-teal { margin-top: 1.75rem; }

/* Einsatzgebiete / Feature-Liste */
.feature-list {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.6;
}
.feature-list li::before {
  content: '';
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 6px;
}

/* Kategorie-Kacheln */
.category-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.category-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  transition: all 0.25s;
}
.category-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(84,170,176,0.12); }
.category-card h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.75rem;
}
.category-card p {
  font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.75;
}

/* Gerätekategorien (5er-Liste) */
.device-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.device-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.device-item:last-child { border-bottom: none; padding-bottom: 0; }
.device-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.device-item h3 {
  font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 0.4rem;
}
.device-item p {
  font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.75;
}

/* Schritte-Ablauf (patienten.html) */
.steps-section { padding: 5rem 3rem; background: var(--light); }
.steps-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.steps-inner .section-title { margin-bottom: 3rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-bottom: 3rem;
}
.step-card {
  background: var(--white); border-radius: 12px; padding: 2rem 1.5rem;
  border: 1px solid var(--border); text-align: left;
}
.step-card-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; margin-bottom: 1.25rem;
  font-family: var(--font-head);
}
.step-card h3 {
  font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7;
}

/* FAQ (patienten.html) */
.faq-section { padding: 5rem 3rem; background: var(--white); }
.faq-section.bg-light { background: var(--light); }
.page-hero ~ .faq-section:not(.bg-light) {
  background: linear-gradient(180deg, var(--teal-light) 0%, #ffffff 65%);
}

/* Umgekehrter Gradient bei zwei direkt aufeinanderfolgenden Gradient-Sections */
.page-hero ~ .content-section:not(.bg-light) + .content-section:not(.bg-light),
.page-hero ~ .content-section:not(.bg-light) + .faq-section:not(.bg-light) {
  background: linear-gradient(0deg, var(--teal-light) 0%, #ffffff 65%);
}

/* Patienten-Seite: steps-section als erste Section nach Hero = Gradient,
   danach content-section = grau, faq-section = Gradient (Pattern-Korrektur) */
.page-hero ~ .steps-section {
  background: linear-gradient(180deg, var(--teal-light) 0%, #ffffff 65%);
}
.steps-section + .content-section:not(.bg-light) {
  background: var(--light);
}
.steps-section + .content-section:not(.bg-light) + .faq-section {
  background: linear-gradient(180deg, var(--teal-light) 0%, #ffffff 65%);
}

/* Wave-Übergang: türkis→weiß endet in teal-light für nahtlosen Anschluss */
.wave[style*="54aab0"] svg path { fill: var(--teal-light); }

.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body);
}
.faq-question span {
  font-size: 15px; font-weight: 500; color: var(--dark); padding-right: 1rem;
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 18px; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--teal); color: white; border-color: var(--teal); transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 0 1.25rem;
  font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* Kontaktformular */
.contact-section { padding: 5rem 3rem; background: var(--light); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-form-wrap { background: var(--white); border-radius: 12px; padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-wrap h2 {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 500;
  color: var(--dark); margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500; color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: var(--font-body); color: var(--dark);
  background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(84,170,176,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.5;
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.form-check a { color: var(--teal); }

.contact-info h2 {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.75rem;
}
.contact-info > p {
  font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.8; margin-bottom: 2rem;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.contact-detail-body span,
.contact-detail-body a {
  font-size: 13px; color: var(--mid); font-weight: 300;
  text-decoration: none; line-height: 1.6;
}
.contact-detail-body a:hover { color: var(--teal); }

/* Wertesektion (unternehmen.html) */
.values-section { padding: 5rem 3rem; background: var(--white); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
/* Therapiegeräte-Grid */
.tech-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 900px) {
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid .value-card { grid-column: span 1 !important; }
}
@media (max-width: 540px) {
  .tech-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--light); border-radius: 12px; padding: 2rem 1.5rem;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.25s;
}
.value-card:hover { border-color: var(--teal); box-shadow: 0 6px 20px rgba(84,170,176,0.1); }
.value-icon {
  width: 44px; height: 44px; margin: 0 auto 1rem;
  background: var(--teal-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.65;
}

/* Consulting-Themen */
.consulting-topics { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.consulting-topic {
  background: var(--light); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border);
}
.consulting-topic h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.75rem;
}
.consulting-topic p {
  font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.8;
}
.consulting-topic ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.consulting-topic ul li {
  font-size: 13px; color: var(--mid); font-weight: 300;
  display: flex; align-items: center; gap: 0.6rem;
}
.consulting-topic ul li::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%; flex-shrink: 0;
}

/* Einfache Textseiten (Impressum / Datenschutz) */
.legal-section { padding: 5rem 3rem; background: var(--white); }
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-inner h1 {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 500;
  color: var(--dark); margin-bottom: 2.5rem;
}
.legal-inner h2 {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 500;
  color: var(--dark); margin-top: 2.5rem; margin-bottom: 0.75rem;
}
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner p {
  font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.9;
  margin-bottom: 0.75rem;
}
.legal-inner a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-notice {
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 8px;
  padding: 1rem 1.25rem; font-size: 13px; color: #7a6000;
  margin-bottom: 2.5rem; line-height: 1.6;
}

/* CTA-Banner */
.cta-banner {
  background: var(--teal); padding: 4rem 3rem; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 500;
  color: white; margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 300;
  line-height: 1.8; max-width: 560px; margin: 0 auto 2rem;
}
.btn-white {
  background: white; color: var(--teal); padding: 14px 30px;
  border-radius: 4px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s; font-family: var(--font-body);
  display: inline-block; border: none; cursor: pointer;
}
.btn-white:hover { background: var(--light); }

/* ─── SHOP COMING SOON ─── */
.shop-soon {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding: 5rem 1.5rem;
}
.shop-soon-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
  filter: saturate(0.85);
}
.shop-soon-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(84,170,176,0.18) 0%, rgba(26,37,51,0) 55%),
    linear-gradient(180deg, rgba(26,37,51,0.92) 0%, rgba(26,37,51,0.78) 100%);
}
.shop-soon-inner {
  position: relative; z-index: 2;
  max-width: 720px; width: 100%;
  text-align: center; color: white;
}
.shop-soon-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(84,170,176,0.18);
  color: var(--teal);
  border: 1px solid rgba(84,170,176,0.35);
}
.shop-soon-icon svg { width: 28px; height: 28px; }
.shop-soon-label {
  display: inline-block;
  color: var(--teal);
  background: rgba(84,170,176,0.12);
  border: 1px solid rgba(84,170,176,0.3);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.shop-soon-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2;
  color: white;
  margin-bottom: 1.25rem;
}
.shop-soon-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.shop-soon-features {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 2rem;
  margin: 0 auto 2.75rem;
  padding: 0;
}
.shop-soon-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.2px;
}
.shop-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.shop-soon-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-outline-light {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 14px; font-weight: 500;
  color: white;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
  .shop-soon { min-height: calc(100vh - 72px); padding: 4rem 1.25rem; }
  .shop-soon-inner h1 { font-size: 1.7rem; }
  .shop-soon-sub { font-size: 15px; }
  .shop-soon-features { gap: 0.8rem 1.5rem; }
  .shop-soon-actions { flex-direction: column; align-items: stretch; }
  .shop-soon-actions a { text-align: center; }
}

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

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; height: 72px; }
  nav.scrolled { height: 60px; }
  .nav-logo img { height: 50px; }
  nav.scrolled .nav-logo img { height: 36px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero { min-height: auto; padding-bottom: 80px; }
  .hero-container { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }
  .hero-right { display: flex; flex-direction: column; gap: 0.65rem; }
  .hero-img-frame { margin-bottom: 0; }

  .about-inner,
  .about-combined,
  .slide,
  .patients-inner,
  .content-two-col,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .content-two-col.img-right .col-img,
  .content-two-col.img-right .col-text { order: unset; }

  .products-grid,
  .category-grid,
  .consulting-topics,
  .steps-grid { grid-template-columns: 1fr; }
  .patients-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .patients-cta .btn-primary,
  .patients-cta .btn-outline-teal {
    text-align: center;
  }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .content-section,
  .steps-section,
  .faq-section,
  .contact-section,
  .values-section,
  .legal-section,
  .products-section,
  .patients-section,
  .team-section,
  .about-strip,
  .cta-banner { padding: 3.5rem 1.5rem; }

  .consulting-teaser { padding: 4rem 1.5rem; }
  .consulting-card { padding: 2rem 1.5rem; }

  .page-hero-content { padding: 3rem 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .consulting-inner { flex-direction: column; }

  .slide { gap: 2rem; }
  .device-list .device-item { flex-direction: column; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .page-hero-content h1 { font-size: 1.7rem; }
}
