/* =============================================
   IMPLANTATZENTRUM INGOLSTADT – STYLESHEET
   Farbwelt: Dunkelblau (#0d1f3c) + Gold (#c9a96e)
   ============================================= */

:root {
  --navy:      #0d1f3c;
  --navy-mid:  #162d52;
  --navy-light:#1e3a6e;
  --gold:      #c9a96e;
  --gold-light:#e0c48a;
  --sand:      #f5f0e8;
  --white:     #ffffff;
  --text:      #2c2c2c;
  --text-light:#666666;
  --border:    #e0d8cc;
  --font-serif: 'Montserrat', sans-serif;
  --font-sans:  'Montserrat', sans-serif;
  --brand-blue: #004365;
  --brand-warmgrey: #b0aca4;
  --brand-coolgrey: #58666d;
  --brand-cyan: #009fe3;
  --shadow:    0 4px 24px rgba(13,31,60,0.12);
  --shadow-lg: 0 8px 48px rgba(13,31,60,0.18);
  --radius:    8px;
  --radius-lg: 16px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { font-size: 1rem; color: inherit; }

/* CONTAINER */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-dark  { background: var(--navy); color: var(--white); }
.section-navy  { background: var(--navy-mid); color: var(--white); }
.section-sand  { background: var(--sand); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-intro { color: rgba(255,255,255,0.8); }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.section-intro {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: 220px; min-width: 220px; max-width: 220px; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); overflow: visible; }
.logo-img-footer { height: 48px; width: auto; max-width: 300px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: calc(100vh - 0px);
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 72px 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.trust-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.hero-video-wrapper {
  position: relative;
  z-index: 1;
}

/* =============================================
   YOUTUBE FACADE
   ============================================= */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.yt-facade:hover img { opacity: 0.85; }
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.yt-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.yt-facade iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   PAIN GRID
   ============================================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pain-card h3 { margin-bottom: 12px; color: var(--navy); }
.pain-card p { font-size: 0.95rem; color: var(--text-light); }
.empathy-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.empathy-text p {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--navy);
}

/* =============================================
   METHOD
   ============================================= */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.method-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.method-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.method-card h3 { color: var(--white); margin-bottom: 10px; }
.method-card p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.method-video, .ablauf-video, .story-video {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
}
.method-video h3, .ablauf-video h3, .story-video h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.method-benefits { margin-top: 56px; }
.method-benefits h3 { color: var(--white); text-align: center; margin-bottom: 28px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.benefit-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline { max-width: 760px; margin: 0 auto 56px; }
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 8px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.2));
  margin: 8px 0;
  min-height: 40px;
}
.timeline-content {
  padding-bottom: 40px;
}
.timeline-content h3 { color: var(--navy); margin-bottom: 10px; }
.timeline-content p  { color: var(--text-light); font-size: 0.95rem; }
.timeline-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--sand);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text);
}
.timeline-note strong { color: var(--navy); }

/* =============================================
   SPECIALIST
   ============================================= */
.specialist-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}
.specialist-portrait img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.specialist-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.specialist-badges img.badge-iti {
  height: 80px;
  width: auto;
  filter: none;
  opacity: 1;
  display: block;
}
.iti-credential {
  margin: 4px 0 20px;
}
.iti-text-img {
  height: 64px;
  width: auto;
  max-width: 360px;
  filter: none;
  display: block;
}
.iti-credential-under-photo {
  margin-top: 14px;
  text-align: center;
}
.iti-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.iti-line1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.iti-line2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.iti-line3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.specialist-text h3 { color: var(--white); margin-bottom: 6px; }
.specialist-title {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.specialist-text p { color: rgba(255,255,255,0.8); margin-bottom: 16px; font-size: 0.95rem; font-weight: 400; line-height: 1.8; }
.specialist-text strong { color: var(--white); }
.usp-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.usp-icon { font-size: 1.5rem; flex-shrink: 0; }
.usp-item strong { color: var(--white); display: block; margin-bottom: 4px; }
.usp-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 400px;
}
.team-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}

/* =============================================
   BEFORE / AFTER
   ============================================= */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.before-after-pair {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ba-image {
  position: relative;
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ba-label.before { background: rgba(0,0,0,0.7); color: #fff; }
.ba-label.after  { background: var(--gold); color: var(--navy); }
.ba-arrow { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.treatment-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.treatment-images img {
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  letter-spacing: 0.05em;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
blockquote {
  font-size: 0.9rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}
cite { font-size: 0.8rem; color: var(--text-light); font-style: normal; font-weight: 600; }

/* =============================================
   KOSTEN
   ============================================= */
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.kosten-grid-two {
  grid-template-columns: repeat(2, minmax(260px, 340px));
  justify-content: center;
}
.kosten-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.kosten-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.kosten-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
  transform: scale(1.04);
}
.kosten-kiefer {
  font-size: 0.7rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.kosten-card.featured .kosten-kiefer { color: var(--gold); }
.kosten-preis {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.kosten-card.featured .kosten-preis { color: var(--gold); }
.kosten-detail { font-size: 0.85rem; color: var(--text-light); }
.kosten-card.featured .kosten-detail { color: rgba(255,255,255,0.7); }
.kosten-hinweis {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.kosten-hinweis p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 12px; }
.kosten-hinweis strong { color: var(--navy); }
.section-sand .btn { display: block; width: fit-content; margin: 0 auto; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.contact-step { text-align: center; }
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-family: var(--font-serif);
}
.contact-step p { font-size: 0.8rem; color: rgba(255,255,255,0.8); max-width: 80px; }
.step-arrow { color: var(--gold); font-size: 1.2rem; }
.contact-wrapper { max-width: 680px; margin: 0 auto; }
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-checkbox input { width: auto; flex-shrink: 0; margin-top: 3px; }
.form-checkbox label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; }
.link-gold { color: var(--gold); text-decoration: underline; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 12px; }
.contact-info { text-align: center; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.info-icon { font-size: 1.2rem; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 40px 0;
  text-align: center;
}
.footer-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-trust { align-items: center; }
  .hero-video-wrapper { max-width: 560px; margin: 0 auto; }
  .specialist-grid { grid-template-columns: 1fr; }
  .specialist-portrait { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 16px; border-top: 1px solid rgba(201,169,110,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 56px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .before-after-pair { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }
  .treatment-images { grid-template-columns: 1fr; }
  .testimonial-card { flex-direction: column; }
  .kosten-card.featured { transform: none; }
  .contact-steps { gap: 8px; }
  .step-arrow { display: none; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
}
