:root {
  --white: #ffffff;
  --lila: #7d6084;
  --gruen: #677a40;
  --lila-soft: rgba(125, 96, 132, 0.08);
  --gruen-soft: rgba(103, 122, 64, 0.08);
  --lila-line: rgba(125, 96, 132, 0.25);
  --gruen-line: rgba(103, 122, 64, 0.25);
  --text: #3c3a3d;
  --text-soft: #7a7880;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Alata', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* dezente Hintergrundkreise */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.bg-circle.one {
  width: 420px;
  height: 420px;
  background: var(--lila-soft);
  top: -180px;
  right: -160px;
}
.bg-circle.two {
  width: 340px;
  height: 340px;
  background: var(--gruen-soft);
  bottom: -140px;
  left: -140px;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 72px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

main.wide {
  max-width: 760px;
}

/* Logo */
.logo {
  width: 100%;
  max-width: 400px;
  margin-bottom: 64px;
  display: block;
  text-decoration: none;
}
.logo svg {
  width: 100%;
  height: auto;
  display: block;
}
.logo svg .cls-1 { fill: var(--text); }

.intro {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  max-width: 400px;
  margin-bottom: 48px;
}

/* dezente Punkt-Trenner */
.dot-divider {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 48px;
}
.dot-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.dot-divider span:nth-child(1) { background: var(--lila); }
.dot-divider span:nth-child(2) { background: var(--text); }
.dot-divider span:nth-child(3) { background: var(--gruen); }

.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}

.btn {
  font-family: 'Alata', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: var(--white);
  padding: 14px 0;
  width: 220px;
  text-align: center;
  border-radius: 999px;
  border: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-lila {
  background: var(--lila);
}
.btn-lila:hover {
  background: #6a5270;
}

.btn-gruen {
  background: var(--gruen);
}
.btn-gruen:hover {
  background: #576838;
}

.kontakt {
  font-size: 15px;
  color: var(--text-soft);
  margin-top: auto;
  padding-top: 24px;
}
.kontakt a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gruen-line);
  transition: border-color 0.2s ease;
}
.kontakt a:hover {
  border-color: var(--gruen);
}

/* Zurück-Link (Unterseiten) */
.back-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--text); }
.back-link .arrow {
  width: 10px;
  height: 10px;
  display: flex;
}
.back-link .arrow svg { width: 100%; height: 100%; }

/* Seiten-Titel (Unterseiten) */
.page-title {
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--text);
}
.page-title.gruen { color: var(--gruen); }
.page-title.lila { color: var(--lila); }
.page-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 440px;
  line-height: 1.6;
  margin: 0 0 48px;
}

footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 0 32px 40px;
  margin-top: 40px;
}

footer.wide { max-width: 760px; }

.line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--lila-line), var(--gruen-line));
  margin-bottom: 24px;
}

details.impressum {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

details.impressum summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
  user-select: none;
}
details.impressum summary::-webkit-details-marker { display: none; }

.toggle-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  transform: rotate(0deg); /* zu: zeigt nach unten (zum Öffnen) */
}
.toggle-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

details[open] .toggle-arrow {
  transform: rotate(180deg); /* auf: zeigt nach oben (zum Schließen) */
}

.impressum-content {
  margin-top: 16px;
  padding-left: 28px;
  border-left: 1px solid var(--lila-line);
}

.impressum-content p {
  margin: 0 0 12px;
}

/* Akkordeons als normaler Seiteninhalt (Designpakete, Über mich) */
.accordion-group {
  width: 100%;
  margin-bottom: 48px;
}

.content-accordion {
  width: 100%;
  text-align: left;
  padding: 20px 0 20px 16px;
  border-bottom: 1px solid var(--lila-line);
}
.content-accordion:first-of-type {
  border-top: 1px solid var(--lila-line);
}

.content-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 17px;
  user-select: none;
}
.content-accordion summary::-webkit-details-marker { display: none; }

.content-accordion.lila summary { color: var(--lila); }
.content-accordion.gruen summary { color: var(--gruen); }

.accordion-content-lg {
  margin-top: 16px;
  padding-left: 28px;
  border-left: 1px solid var(--lila-line);
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}
.accordion-content-lg p { margin: 0 0 12px; }
.accordion-content-lg p:last-child { margin-bottom: 0; }
.accordion-content-lg .service-row {
  border-bottom: none;
  padding: 12px 0;
}
.accordion-content-lg .service-row:first-child { padding-top: 0; }
.accordion-content-lg .service-row + .service-row {
  border-top: 1px solid var(--lila-line);
}

/* Startup-Rabatt-Hinweis */
.startup-note {
  width: 100%;
  background: var(--gruen-soft);
  border: 1px solid var(--gruen-line);
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Leistungen-Liste */
.service-list {
  width: 100%;
  text-align: left;
  margin-bottom: 48px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lila-line);
}

.service-row:first-child {
  border-top: 1px solid var(--lila-line);
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-name {
  font-size: 17px;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 380px;
}

.service-sub {
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.service-sub .service-sub-price {
  color: var(--text-soft);
  white-space: nowrap;
}

.service-price {
  font-size: 17px;
  color: var(--gruen);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-note {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}

.ust-note {
  font-size: 15px;
  color: #5c4763;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 12px;
}

.stand-note {
  font-size: 11px;
  color: var(--text-soft);
  opacity: 0.75;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  main { padding: 56px 24px 32px; }
  .intro { font-size: 17px; }
  .buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .service-row { flex-direction: column; gap: 6px; }
  .service-price { align-self: flex-start; }
}
