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

:root {
  --teal:        #3AADA8;
  --teal-dark:   #2A8785;
  --teal-deeper: #1E6C6A;
  --teal-pale:   #EAF6F5;
  --teal-light:  #C5E8E6;
  --burgundy:    #8C2538;
  --burgundy-lt: #B03048;
  --white:       #FFFFFF;
  --bg:          #F6FAFA;
  --text:        #1A2E2D;
  --text-muted:  #5A7372;
  --border:      #D8ECEB;
  --shadow:      0 2px 24px rgba(58,173,168,.12);
  --radius:      12px;
  --font-head:   'Raleway', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(58,173,168,.15); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; display: block; }

.nav-links {
  list-style: none;
  display: flex; gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500; font-size: .88rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; color: white !important; }

.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: .4rem;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: .25s;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal) 60%, #4DBDB8 100%);
  display: flex; align-items: center;
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-layout {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.hero-inner {
  position: relative;
  flex: 1;
  min-width: 0;
}
.hero-photo {
  flex-shrink: 0;
}
.hero-photo img {
  width: clamp(240px, 28vw, 390px);
  height: clamp(240px, 28vw, 390px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border: 5px solid rgba(255,255,255,.88);
  box-shadow:
    0 0 0 12px rgba(255,255,255,.1),
    0 24px 64px rgba(0,0,0,.28);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.18);
  color: white;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 1.6rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,.75);
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(255,255,255,.4);
}
.hero-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: .9rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer; border: none;
  letter-spacing: .03em;
}
.btn-white {
  background: white;
  color: var(--teal-deeper);
}
.btn-white:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal-deeper);
  color: white;
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,173,168,.35);
}
.btn-burg {
  background: var(--burgundy);
  color: white;
}
.btn-burg:hover {
  background: var(--burgundy-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140,37,56,.35);
}

/* ── TRUST BAR ────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { width: 18px; height: 18px; fill: var(--teal); flex-shrink: 0; }

/* ── SECTIONS ─────────────────────────────────── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-label {
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal-deeper);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* ── ÜBER MICH ────────────────────────────────── */
#ueber-mich { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
}
.about-card blockquote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.about-card cite {
  font-size: .82rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}
.about-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 100px; height: 100px;
  background: var(--teal-pale);
  border-radius: 50%;
  border: 3px solid var(--teal-light);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.3rem;
  color: var(--teal-deeper);
  line-height: 1.1;
  text-align: center;
}
.about-accent small { font-size: .6rem; font-weight: 500; display: block; }
.about-content p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: .97rem; }
.about-content p:last-child { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  background: var(--teal-pale);
  color: var(--teal-deeper);
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
  letter-spacing: .02em;
}

/* ── LEISTUNGEN ───────────────────────────────── */
#leistungen { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--teal); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem; font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── KOSTEN ───────────────────────────────────── */
#kosten { background: white; }
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.kosten-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  text-align: center;
}
.kosten-value {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--teal-deeper);
  line-height: 1;
  margin-bottom: .3rem;
}
.kosten-label {
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .8rem;
}
.kosten-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.kosten-info-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
}
.kosten-info-box h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .5rem;
}
.kosten-info-box h3 svg { width: 18px; height: 18px; fill: var(--teal); flex-shrink: 0; }
.kosten-info-box p { font-size: .92rem; color: var(--text-muted); margin-bottom: .6rem; line-height: 1.65; }
.kosten-info-box p:last-child { margin-bottom: 0; }

/* ── PFLEGEGRADE ──────────────────────────────── */
#pflegegrade { background: var(--teal-deeper); }
#pflegegrade .section-label { color: var(--teal-light); }
#pflegegrade .section-title { color: white; }
#pflegegrade .section-lead { color: rgba(255,255,255,.92); }
.grades-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.grade-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background .2s;
}
.grade-card:hover { background: rgba(255,255,255,.13); }
.grade-number {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: .3rem;
}
.grade-label {
  font-family: var(--font-head);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: .7rem;
}
.grade-bar {
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin-bottom: .8rem;
}
.grade-bar-fill {
  height: 100%;
  background: var(--teal-light);
  border-radius: 2px;
}
.grade-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.92);
  line-height: 1.55;
}
.grades-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.info-card h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: white;
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .6rem;
}
.info-card h3 svg { width: 20px; height: 20px; fill: var(--teal-light); flex-shrink: 0; }
.info-card ul {
  list-style: none;
  padding: 0;
}
.info-card ul li {
  font-size: .88rem;
  color: rgba(255,255,255,.92);
  padding: .3rem 0;
  display: flex; align-items: flex-start; gap: .5rem;
}
.info-card ul li::before {
  content: '→';
  color: var(--teal-light);
  flex-shrink: 0;
  margin-top: .02em;
}

/* ── ABLAUF ───────────────────────────────────── */
#ablauf { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--teal-light);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 700;
  color: white;
  position: relative;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--teal-light);
}
.step h3 {
  font-family: var(--font-head);
  font-size: .97rem; font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.step p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── KONTAKT ──────────────────────────────────── */
#kontakt { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--teal); }
.contact-detail-body { font-size: .9rem; }
.contact-detail-body strong {
  display: block;
  font-weight: 600; color: var(--text);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .15rem;
}
.contact-detail-body a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.contact-detail-body a:hover { color: var(--teal); }
.contact-detail-body span { color: var(--text-muted); }

.contact-form-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-box h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,173,168,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: .78rem; color: var(--text-muted);
  margin-top: 1rem; line-height: 1.5;
}
.form-note a { color: var(--teal-deeper); }

/* ── TAGLINE BANNER ───────────────────────────── */
.tagline-banner { line-height: 0; }
.tagline-banner img { width: 100%; height: auto; display: block; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 1rem; display: block; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .9rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ── SCROLL TO TOP ────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--teal);
  color: white;
  border: none; border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(58,173,168,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 99;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; fill: white; }

/* ── MOBILE ───────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grades-grid { grid-template-columns: repeat(3, 1fr); }
  .grades-info { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-burger { display: block; }
  .grades-grid { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-layout { flex-direction: column; gap: 1.8rem; }
  .hero-photo { order: -1; }
  .hero-photo img { width: clamp(160px, 42vw, 240px); height: clamp(160px, 42vw, 240px); border-width: 3px; box-shadow: 0 0 0 8px rgba(255,255,255,.1), 0 12px 32px rgba(0,0,0,.25); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .grades-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 3.5rem 1.2rem; }
  nav { padding: 0 1.2rem; }
}
