/* ============================================================
   RESET & CUSTOM PROPERTIES
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:         #2abfb4;
  --teal-dark:    #1fa39a;
  --teal-light:   #e6f9f8;
  --teal-bg:      #f0fbfa;
  --text:         #3b3f4a;
  --text-light:   #666b7a;
  --text-xlight:  #999;
  --white:        #ffffff;
  --off-white:    #f8f8f8;
  --border:       #e8e8e8;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.13);
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.22s ease;
}

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

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

h2.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  font-weight: 300;
}

section { padding: 80px 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

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

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

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

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

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

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--teal-bg);
}

/* ============================================================
   HEADER
============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text { line-height: 1.2; }

.logo-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-img {
  height: 59px;
  width: auto;
  display: block;
}


.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================================
   NAVIGATION (im Header integriert)
============================================================ */
#header nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: center;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.nav-link .nav-arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  list-style: none;
  padding: 8px 0;
  z-index: 1000;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.875rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.dropdown li a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

@media (max-width: 900px) {
  #header nav {
    flex: none;
  }

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

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 3px solid var(--teal);
    box-shadow: var(--shadow-md);
    height: auto;
    z-index: 998;
    padding: 8px 0;
  }

  .nav-list.open { display: flex; }

  .nav-item { height: auto; flex-direction: column; align-items: stretch; }

  .nav-link { height: 44px; padding: 0 20px; border-radius: 0; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--teal-light);
    padding: 0;
  }

  .nav-item.open .dropdown {
    visibility: visible;
    max-height: 600px;
  }

  .dropdown li a {
    color: var(--text);
    padding: 10px 32px;
    background: transparent;
  }

  .dropdown li a:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
  }

  .nav-item.open .nav-arrow {
    transform: rotate(180deg);
  }
}

/* ============================================================
   HERO
============================================================ */
#hero {
  background: linear-gradient(160deg, #1a2a35 0%, #0d1e28 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 50%, rgba(42,191,180,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(42,191,180,0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative geometric accent */
#hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(42,191,180,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,191,180,0.15);
  border: 1px solid rgba(42,191,180,0.35);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

#hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

#hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 42px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   SCHLAGZEILE BAND
============================================================ */
.tagline-band {
  background: var(--teal);
  padding: 16px 0;
  overflow: hidden;
}

.tagline-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.tagline-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
  position: relative;
  white-space: nowrap;
}

.tagline-item + .tagline-item::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

/* ============================================================
   LEISTUNGEN
============================================================ */
#leistungen { background: var(--white); }

.section-header { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--teal-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--teal);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================================
   WARUM STYLEKONZEPT
============================================================ */
#warum { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
============================================================ */
#cta-banner {
  background: var(--teal);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-top: 6px;
  font-size: 1rem;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   BEWERTUNGEN
============================================================ */
#bewertungen { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border-top: 3px solid var(--teal);
}

.review-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span {
  width: 16px;
  height: 16px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-text {
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 22px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.reviewer-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-xlight);
  margin-top: 1px;
}

/* ============================================================
   FAQ
============================================================ */
#faq { background: var(--off-white); }

.faq-wrap { max-width: 800px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-item.open .faq-question { color: var(--teal); }

.faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-toggle svg {
  width: 10px; height: 10px;
  fill: none;
  stroke: var(--text-xlight);
  stroke-width: 2;
  transition: stroke var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  background: var(--teal);
  border-color: var(--teal);
}

.faq-item.open .faq-toggle svg { stroke: white; }

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
  display: block;
  padding-top: 18px;
}

/* ============================================================
   KONTAKT
============================================================ */
#kontakt { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--teal);
}

.contact-card-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 18px; height: 18px;
  fill: white;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-xlight);
  margin-bottom: 3px;
}

.contact-card-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.contact-card-value a {
  color: var(--teal);
  font-size: 1.35rem;
}

.contact-card-value a:hover { color: var(--teal-dark); }

.hours-list { display: flex; flex-direction: column; gap: 2px; }

.hours-row {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
}

.hours-day {
  min-width: 90px;
  color: var(--text-xlight);
  font-size: 0.82rem;
}

.hours-time { font-weight: 500; color: var(--text); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-cta { margin-top: 24px; }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #1a2a35;
  color: rgba(255,255,255,0.6);
}

.footer-top { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 40px;
}

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

.footer-leistungen-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

@media (max-width: 600px) {
  .footer-leistungen-list { grid-template-columns: 1fr; }
}

.footer-logo .logo-name { color: rgba(255,255,255,0.9); }
.footer-logo .logo-tagline { color: var(--teal); }

.footer-desc {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

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

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--teal); }

.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   MOBILE STICKY CTA
============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #1a2a35;
  border-top: 3px solid var(--teal);
  padding: 12px 20px;
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-cta-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 58px; }
  section { padding: 60px 0; }
}

/* ============================================================
   UTILITY
============================================================ */
.text-teal { color: var(--teal); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  margin: 16px 0 0;
  border-radius: 2px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 600px) {
  #hero { padding: 72px 0 64px; }
  .hero-stats { gap: 28px; }
  .cta-inner { flex-direction: column; }
}
