* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  color: #1A2E3D;
  background: #F0F6FB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.page {
  max-width: 1200px;
  margin: 24px auto;
  background: #F0F6FB;
  border-radius: 24px;
  overflow: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1A2E3D;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #2A8EC4;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-mark::after {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #5BBCE4;
  position: absolute;
  bottom: -3px; right: -3px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  color: #4A6070;
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: #1A2E3D; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: #1A2E3D; color: #fff; }
.btn-primary:hover { background: #0d1e29; }
.btn-coral { background: #2A8EC4; color: #fff; }
.btn-coral:hover { background: #1D6B96; }
.btn-light { background: #fff; color: #1A2E3D; border: 1.5px solid #1A2E3D; }

/* HERO */
.hero {
  position: relative;
  padding: 60px 40px 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #4A6070;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(26,46,61,0.08);
}
.badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2A8EC4;
}
h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1A2E3D;
  margin-bottom: 24px;
}
h1 .accent {
  color: #2A8EC4;
  font-style: italic;
  font-weight: 500;
}
.hero p {
  font-size: 18px;
  color: #4A6070;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO ILLUSTRATION */
.hero-visual { position: relative; height: 460px; }
.blob { position: absolute; border-radius: 50%; }
.blob-1 { width: 280px; height: 280px; background: #A8D4EC; top: 20px; left: 60px; }
.blob-2 { width: 200px; height: 200px; background: #7DC0DE; bottom: 40px; left: 20px; }
.blob-3 { width: 160px; height: 160px; background: #5BBCE4; top: 50px; right: 30px; }
.blob-4 { width: 130px; height: 130px; background: #BFE0F0; bottom: 60px; right: 60px; }
.blob-5 { width: 90px; height: 90px; background: #90CDE8; top: 200px; left: 240px; }
.leaf {
  position: absolute;
  width: 70px; height: 110px;
  background: #1D6B96;
  border-radius: 0 100% 0 100%;
  top: 40px; right: 200px;
  transform: rotate(35deg);
}
.leaf-2 {
  position: absolute;
  width: 50px; height: 80px;
  background: #2A8EC4;
  border-radius: 0 100% 0 100%;
  bottom: 100px; left: 200px;
  transform: rotate(-20deg);
}

/* TRUST */
.trust {
  padding: 32px 40px;
  border-top: 1px dashed #B8D8EC;
  border-bottom: 1px dashed #B8D8EC;
  margin: 0 40px;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #4A6070;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.trust-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2A8EC4;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* SECTION HEADER */
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #2A8EC4;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1A2E3D;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 auto;
}
h2 .accent { color: #2A8EC4; font-style: italic; font-weight: 500; }
.section-sub {
  font-size: 16px;
  color: #4A6070;
  max-width: 540px;
  margin: 16px auto 0;
}

/* SERVICES */
.services { padding: 96px 40px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 36px 30px;
  border-radius: 24px;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card.coral    { background: #D4EAF7; }
.service-card.sage     { background: #C8E8F4; }
.service-card.lavender { background: #D8EEF9; }
.service-card.rose     { background: #E4F3FB; }
.service-card.yellow   { background: #BFE0F0; }
.service-card.cream    { background: #fff; border: 1.5px solid #B8D8EC; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1A2E3D;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; color: #4A6070; line-height: 1.6; margin-bottom: 20px; }
.service-card .more { font-size: 13px; font-weight: 600; color: #2A8EC4; text-decoration: none; }
.service-card .more:hover { color: #1D6B96; }

/* ABOUT */
.about {
  padding: 96px 40px;
  background: #fff;
  margin: 0 40px;
  border-radius: 32px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  background: #A8D4EC;
  overflow: hidden;
}
.about-text h2 { text-align: left; margin: 0 0 20px; max-width: none; }
.about-text > p { font-size: 16px; color: #4A6070; margin-bottom: 16px; line-height: 1.7; }
.credentials {
  display: flex; flex-direction: column; gap: 12px;
  margin: 28px 0; padding: 20px 24px;
  background: #F0F6FB; border-radius: 16px;
}
.credential { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #1A2E3D; }
.credential-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.credential strong { font-weight: 600; }

/* PROCESS */
.process { padding: 96px 40px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step { background: #fff; border-radius: 24px; padding: 32px 24px; text-align: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: #2A8EC4; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; margin: 0 auto 18px;
}
.step:nth-child(2) .step-num { background: #5BBCE4; color: #fff; }
.step:nth-child(3) .step-num { background: #7DC0DE; color: #fff; }
.step:nth-child(4) .step-num { background: #1D6B96; color: #fff; }
.step h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: #1A2E3D; }
.step p { font-size: 14px; color: #4A6070; line-height: 1.55; }

/* TESTIMONIALS */
.testimonials {
  padding: 80px 40px;
  background: #1A2E3D;
  margin: 0 40px;
  border-radius: 32px;
  color: #F0F6FB;
  text-align: center;
}
.testimonials .eyebrow { background: #2A8EC4; color: #fff; }
.testimonials h2 { color: #F0F6FB; margin-bottom: 48px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.testimonial-card { background: #223344; border-radius: 20px; padding: 28px; }
.stars { color: #5BBCE4; font-size: 14px; margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; color: #C8DFF0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: #fff;
}
.test-avatar.a { background: #2A8EC4; }
.test-avatar.b { background: #1D6B96; }
.test-avatar.c { background: #5BBCE4; }
.test-name { font-size: 14px; font-weight: 600; color: #F0F6FB; }
.test-role { font-size: 12px; color: #7DA8C4; }

/* FAQ */
.faq { padding: 96px 40px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.faq-grid h2 { text-align: left; max-width: none; margin: 0 0 16px; }
.faq-grid > div > p { font-size: 16px; color: #4A6070; line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 16px; padding: 22px 26px; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: #1A2E3D; cursor: pointer;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: #F0F6FB;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; flex-shrink: 0;
  color: #1A2E3D;
}
.faq-item.open .faq-toggle { background: #2A8EC4; color: #fff; }
.faq-a { margin-top: 12px; font-size: 14px; color: #4A6070; line-height: 1.65; }
.faq-item:not(.open) .faq-a { display: none; }

/* CTA */
.cta-section {
  margin: 0 40px 40px;
  padding: 80px 40px;
  text-align: center;
  background: #2A8EC4;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: #5BBCE4;
  border-radius: 50%;
  opacity: 0.4;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: #1D6B96;
  border-radius: 50%;
  opacity: 0.4;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; position: relative; max-width: none; }
.cta-section p {
  font-size: 17px; color: #fff; margin-bottom: 32px;
  opacity: 0.9; position: relative;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-section .btn { position: relative; }
.cta-section .btn-primary { background: #fff; color: #2A8EC4; }
.cta-section .btn-primary:hover { background: #F0F6FB; }
.cta-meta { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.85); position: relative; }

/* FOOTER */
.footer {
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4A6070;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #4A6070; text-decoration: none; }
.footer-links a:hover { color: #1A2E3D; }

/* HERO IMAGE */
.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ABOUT IMAGE */
.about-portrait {
  border-radius: 32px;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PHOTO GALLERY (leistungsspektrum) */
.photo-gallery {
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-gallery figure {
  border-radius: 24px;
  overflow: hidden;
  margin: 0;
}
.photo-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.photo-gallery figure:hover img {
  transform: scale(1.03);
}
.photo-gallery figcaption {
  background: #fff;
  padding: 14px 18px;
  font-size: 13px;
  color: #4A6070;
  font-weight: 500;
}

/* SIMPLE PAGE (impressum, datenschutz) */
.simple-page { max-width: 800px; margin: 64px auto; padding: 0 40px 64px; }
.simple-page h1 { font-size: 42px; font-weight: 600; margin-bottom: 32px; }
.simple-page .content { font-size: 16px; color: #4A6070; line-height: 1.8; white-space: pre-line; }

/* MOBILE NAV (burger, CSS-only) */
.nav-toggle { display: none; }
.nav-burger { display: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .nav-links { gap: 20px; }
  .hero-grid { gap: 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .faq-grid { gap: 40px; }
}

@media (max-width: 820px) {
  .page { margin: 0; border-radius: 0; }

  .nav { flex-wrap: wrap; padding: 16px 20px; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 6px;
    cursor: pointer;
  }
  .nav-burger span {
    width: 24px;
    height: 2.5px;
    background: #1A2E3D;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a {
    padding: 14px 4px;
    font-size: 16px;
    border-top: 1px solid #D4EAF7;
  }

  .hero { padding: 32px 20px 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 280px; }
  .trust { margin: 0 20px; padding: 24px 0; }
  .trust-row { gap: 12px 28px; }
  .services, .process, .faq { padding: 56px 20px; }
  .section-head { margin-bottom: 36px; }
  .about { margin: 0 12px; padding: 48px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonials { margin: 0 12px; padding: 56px 20px; }
  .testimonials h2 { margin-bottom: 32px; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-section { margin: 0 12px 24px; padding: 56px 24px; }
  .footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
  .photo-gallery { padding: 0 20px 56px; grid-template-columns: 1fr; }
  .photo-gallery img { height: 240px; }
  .simple-page { margin: 40px auto; padding: 0 20px 48px; }
  .simple-page h1 { font-size: 34px; }
}

@media (max-width: 640px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .section-sub { font-size: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { text-align: center; }
  .cta-meta { line-height: 1.8; }
}
