:root {
  --bg: #020617;         /* sehr dunkles Blau */
  --bg2: #020617;
  --text: #e2e8f0;
  --muted: #94a3b8;

  /* Hauptmarke: Solar-Gelb */
  --brand: #eab308;
  --brand-dark: #c99707;

  /* Sekundärfarbe: Türkis-Tech */
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.18);

  --card: rgba(255, 255, 255, .04);
  --stroke: rgba(148, 163, 184, .2);
}

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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(1200px 800px at 10% 0%, rgba(234,179,8,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 16px; }

/* ----------------------------------------------------------
   HEADER / NAVIGATION – PREMIUM
---------------------------------------------------------- */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: radial-gradient(circle at 0% 0%, rgba(234,179,8,0.12), transparent 55%),
              rgba(10,16,32,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.container.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  font-size: 0.75rem;
  color: #9ca3af;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  background:
    radial-gradient(60% 60% at 30% 25%, var(--brand), #0000 60%),
    linear-gradient(180deg, #0e1328, #0a1020);
  box-shadow:
    0 10px 26px rgba(15,23,42,0.9),
    0 0 18px rgba(0,0,0,0.7);
}

/* Desktop-Navigation rechts */

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

.main-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 8px;
  position: relative;
  transition: color .15s ease;
}

/* Unterstrich / Glow beim Hover & aktiv */

.main-nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234,179,8,0), rgba(234,179,8,0.9), rgba(234,179,8,0));
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .16s ease, transform .16s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  opacity: 1;
  transform: translateY(0);
}

.main-nav a.active {
  color: var(--brand);
}

/* Kontakt-Button im Header */

.main-nav .btn.btn--tiny {
  padding-inline: 12px;
  padding-block: 7px;
  font-size: 0.8rem;
  border-radius: 999px;
}

/* Hamburger-Button (Desktop: versteckt) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}

/* Drei Linien */
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 4px 0;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

/* X-Animation */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE ANSICHT */

@media (max-width: 900px) {

  .nav {
    gap: 8px;
  }

  .brand span {
    display: flex;
    flex-direction: column;
  }

  /* Hamburger anzeigen */
  .nav-toggle {
    display: block;
  }

  /* Navigation einklappen */
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 10px 16px 14px;
    background: rgba(15,23,42,0.98);
    border-bottom: 1px solid rgba(148,163,184,0.35);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 50;
  }

  .main-nav a {
    width: 100%;
    padding: 6px 0;
  }

  .main-nav a::after {
    left: 0;
    right: 40%;
  }

  .main-nav.is-open {
    display: flex;
  }

  /* Brand + Toggle auf einer Linie */
  header .container.nav {
    padding-block: 10px;
  }
}

/* Scroll sperren, wenn Menü offen */
body.nav-open {
  overflow: hidden;
}

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */

.btn {
  background: var(--brand);
  color: #0b1224;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn--tiny {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.btn:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 30px rgba(234,179,8,.45);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */

.hero {
  padding: 28px 0 8px;
  text-align: center;
}

.eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fde68a;
  font-weight: 700;
  font-size: 11px;
  border-left: 3px solid var(--accent);
  padding-left: 8px;
  display: inline-block;
}

h1 {
  font-size: 34px;
  margin: .2rem 0 .4rem;
}

.sub { color: #cbd5e1; }

.hero-cta-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-btn-primary { /* nutzt dein Button-Design */ }

.hero-btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(250, 204, 21, 0.7);
  box-shadow: none;
}

.hero-btn-secondary:hover {
  background: rgba(250, 204, 21, 0.08);
}

.hero-cta-hint {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Mobile: Buttons untereinander */
@media (max-width: 600px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   SLIDER – (Finale Version mit translateX + Bildern)
---------------------------------------------------------- */

.slider {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 18px;
  background: radial-gradient(120% 140% at 0% 0%, rgba(15,23,42,0.85), transparent 55%);
}

/* Container als FLEX */
.slides {
  display: flex !important;
  position: relative !important;
  height: 44vh;
  min-height: 280px;
  transition: transform .6s ease;
}

/* Jede Slide nebeneinander */
.slide {
  position: relative !important;
  min-width: 100%;
  height: 44vh;
  min-height: 280px;
  display: grid;
  place-items: center;
  color: #e5e7eb;
  background-size: cover;
  background-position: center;
  opacity: 1 !important;
}

/* Overlay etwas dunkler */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 6% -10%, rgba(234,179,8,.25), transparent 45%),
    linear-gradient(0deg, rgba(0,0,0,.60), rgba(0,0,0,.25));
}

.slide-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.slide h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

/* Punkte-Navigation – moderner Look */
.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px 0 6px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148,163,184,.45);
  border: 1px solid rgba(148,163,184,.9);
  padding: 0;
  cursor: pointer;
  transition: background .18s ease,
              transform .18s ease,
              box-shadow .18s ease,
              border-color .18s ease;
  transform: scale(.9);
}

.dots button.active {
  background: var(--brand);
  border-color: rgba(234,179,8,.95);
  box-shadow:
    0 0 12px rgba(234,179,8,.6),
    0 0 24px rgba(234,179,8,.35);
  transform: scale(1.2);
}

/* ----------------------------------------------------------
   SECTIONS
---------------------------------------------------------- */

section { padding: 44px 0; }

.section-title {
  font-size: 24px;
  margin: 0 0 12px;
  color: #fff;
  text-align: center;
}

/* ----------------------------------------------------------
   WARUM WIR
---------------------------------------------------------- */

#why { margin: 90px 0 10px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.feature:hover {
  border-color: rgba(234,179,8,.6);
  box-shadow: 0 14px 40px rgba(15,23,42,.9);
  transform: translateY(-2px);
}

.badge {
  width: 70px;
  height: 70px;
  margin: -30px auto 16px;
  position: relative;
  z-index: 5;
}

.feature p { color: var(--muted); }

/* ----------------------------------------------------------
   UNSERE BERATUNGSBEREICHE
---------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
}

.card-grid .card:nth-child(4) {
  grid-column: 1 / span 1;
  justify-self: center;
}

.card-grid .card:nth-child(5) {
  grid-column: 2 / span 1;
  justify-self: center;
}

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(234,179,8,.55);
  box-shadow: 0 16px 40px rgba(15,23,42,.9);
}

.card-cover {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.1)),
    radial-gradient(700px 420px at 0% 0%, rgba(234,179,8,.22), transparent 60%);
}

.card-body { padding: 18px; }

/* ----------------------------------------------------------
   PROZESS (älterer Block tlw. genutzt)
---------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 100px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.step:hover {
  border-color: rgba(234,179,8,.55);
  box-shadow: 0 12px 32px rgba(15,23,42,.9);
  transform: translateY(-2px);
}

.n {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand);
  color: #0f172a;
  font-weight: 900;
  display: grid;
  place-items: center;
}

/* ----------------------------------------------------------
   KONTAKT
---------------------------------------------------------- */

.cta {
  background: #0f172a;
  border-top: 1px solid rgba(234,179,8,.2);
  padding: 46px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 18px;
  overflow: hidden;
}

.contact-media figcaption {
  color: #9ca3af;
  font-size: .85em;
  margin-top: 6px;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #0b1224;
  color: #fff;
}

.contact-form textarea { min-height: 90px; }

.hint { color: #9ca3af; font-size: .85em; }

/* ----------------------------------------------------------
   GENERISCHE GRIDS / LISTEN
---------------------------------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.note {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 16px;
  color: #cbd5e1;
}

ul.check {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.check li {
  margin: 6px 0;
}

ul.check li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 800;
}

/* FAQ-Blöcke */

.faq-item {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0;
}

.faq-item h3 {
  margin: 0 0 6px;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */

.site-footer {
  background: #0a1020;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 36px;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #cbd5e1;
  font-size: 13px;
}

.foot a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 8px;
}

.foot a:hover { color: var(--brand); }

/* ----------------------------------------------------------
   WHATSAPP BUTTON
---------------------------------------------------------- */

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #0b1224;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(234,179,8,.45);
  z-index: 50;
  font-size: 26px;
}

/* ----------------------------------------------------------
   BREADCRUMBS
---------------------------------------------------------- */

.breadcrumbs {
  color: #9ca3af;
  margin: 10px 0;
  font-size: .9rem;
}

/* ----------------------------------------------------------
   RESPONSIVE (Basics)
---------------------------------------------------------- */

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-form .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: 100%;
  }
  .card-grid .card:nth-child(4),
  .card-grid .card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   NEUER PROZESS-BEREICH
---------------------------------------------------------- */

.process-section {
  position: relative;
  padding: 90px 0 80px;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(234,179,8,.17), transparent 55%),
    radial-gradient(800px 500px at 100% 100%, rgba(15,23,42,.9), transparent 60%);
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
}

.process-visual h2 {
  font-size: 26px;
  margin: 8px 0 6px;
}

.process-sub {
  color: #cbd5e1;
  max-width: 420px;
}

/* Illustration-Karte links */

.process-illustration {
  border-radius: 22px;
  padding: 2px;
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(234,179,8,.65), transparent 60%),
    linear-gradient(135deg, #1f2937, #020617);
  box-shadow:
    0 28px 60px rgba(15,23,42,.9),
    0 0 45px rgba(234,179,8,.35);
}

.process-illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.process-visual .eyebrow {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fef3c7;
}

.process-visual h2 {
  margin: 6px 0 6px;
  font-size: 26px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  position: relative;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(15,23,42,.95), rgba(15,23,42,.88)),
    radial-gradient(120% 160% at 0% 0%, rgba(234,179,8,.24), transparent 65%);
  border: 1px solid rgba(148,163,184,.3);
  box-shadow: 0 10px 28px rgba(15,23,42,.8);
  backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(234,179,8,.7);
  box-shadow:
    0 18px 40px rgba(15,23,42,.95),
    0 0 35px rgba(234,179,8,.35);
  background:
    linear-gradient(135deg, rgba(15,23,42,.98), rgba(15,23,42,.92)),
    radial-gradient(120% 160% at 10% -10%, rgba(234,179,8,.35), transparent 65%);
}

.process-step h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.process-step p {
  margin: 0;
  color: #e2e8f0;
  font-size: 14px;
}

.process-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    radial-gradient(60% 60% at 30% 25%, #fefce8, transparent 60%),
    linear-gradient(135deg, #fde047, #eab308);
  color: #111827;
  font-weight: 900;
  font-size: 17px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(234,179,8,.65);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .process-section { padding: 70px 0 60px; }
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 26px;
  }
  .process-illustration {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .process-step {
    padding: 14px 16px;
  }
}

/* ----------------------------------------------------------
   PV-Styles
---------------------------------------------------------- */

.pv-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f9fafb;
}

/* HERO-BEREICH */

.pv-hero {
  padding: 4.5rem 1.5rem 3rem;
  background: linear-gradient(180deg, #020617 0%, #020617 70%);
}

.pv-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.pv-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.pv-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
  color: #f9fafb;
}

.pv-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 1.2rem;
}

.pv-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pv-hero-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.35rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.pv-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #a5f3fc, var(--accent));
}

.pv-btn-primary,
.pv-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

/* Hauptbutton – Gelb wie Startseite */
.pv-btn-primary {
  background-image: linear-gradient(135deg, #facc15, #eab308);
  color: #020617;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.pv-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Sekundärbutton – Türkis als Akzent */
.pv-btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.7);
}

.pv-btn-secondary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.pv-hero-hint {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* Hero-Box rechts */

.pv-hero-box {
  background: #0b1120;
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.pv-hero-box h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #f9fafb;
}

.pv-hero-box ol {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.93rem;
  color: #d1d5db;
}

.pv-hero-box li + li {
  margin-top: 0.4rem;
}

/* SEKTIONEN */

.pv-section {
  padding: 3.5rem 1.5rem;
}

.pv-section-light {
  background: #020617;
  color: #f9fafb;
}

.pv-section-dark {
  background: #020617;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
}

.pv-section-narrow {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pv-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pv-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #f9fafb;
}

.pv-section-intro {
  max-width: 720px;
  color: #cbd5f5;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* GRIDS / LAYOUT */

.pv-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.pv-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.pv-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
}

/* KARTEN */

.pv-card {
  background: #0b1120;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid #111827;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55);
}

.pv-card h3 {
  font-size: 1.02rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #facc15;
}

.pv-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #d1d5db;
}

/* Karten mit Outline */

.pv-card-outline {
  background: #020617;
  box-shadow: none;
  border-style: dashed;
  border-color: #374151;
}

/* LISTE MIT HAKEN */

.pv-list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: #d1d5db;
}

.pv-list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
}

.pv-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Highlight-Box rechts im Vergleichs-Block */

.pv-highlight-box {
  background: #020617;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--accent-soft);
  box-shadow: 0 0 22px rgba(34,211,238,0.18);
}

/* FAQ-BEREICH */

.pv-faq-list h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}

.pv-faq-list ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: #d1d5db;
}

.pv-faq-list li + li {
  margin-top: 0.25rem;
}

/* CTA ABSCHLUSS */

.pv-cta {
  background: #020617;
  color: #f9fafb;
  border-top: 1px solid #111827;
}

.pv-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 1.8rem;
  align-items: center;
}

.pv-cta h2 {
  margin-bottom: 0.4rem;
}

.pv-cta p {
  margin: 0.2rem 0;
}

.pv-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.pv-cta .pv-btn-primary {
  background-image: linear-gradient(135deg, #facc15, #eab308);
  color: #020617;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.pv-cta-phone {
  font-size: 0.9rem;
}

/* RESPONSIVE PV */

@media (max-width: 900px) {
  .pv-hero-inner,
  .pv-grid-3,
  .pv-grid-2,
  .pv-two-col,
  .pv-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .pv-hero {
    padding-top: 3.5rem;
  }

  .pv-hero-box {
    order: -1;
  }
}

@media (max-width: 600px) {
  .pv-section,
  .pv-hero {
    padding-inline: 1.1rem;
  }

  .pv-hero h1 {
    font-size: 2rem;
  }
}

/* Hintergründe PV-Sektionen entfernen (Integration Startseiten-Gradient) */

.pv-hero,
.pv-section-light,
.pv-section-dark,
.pv-cta {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

/* PV-Rechner – Felder & Ergebnisse */

.pv-calc-grid {
  align-items: stretch;
}

.pv-calc-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pv-calc-text {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.3rem;
}

.pv-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pv-field label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.pv-field input,
.pv-field select {
  background: #020617;
  border-radius: 0.75rem;
  border: 1px solid #1f2937;
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  color: #f9fafb;
  outline: none;
}

.pv-field input::placeholder {
  color: #6b7280;
}

.pv-field input:focus,
.pv-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.4);
}

.pv-calc-btn {
  margin-top: 0.4rem;
}

.pv-calc-note {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.1rem;
}

.pv-calc-result {
  margin-top: 0.6rem;
  padding: 0.75rem 0.8rem;
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid var(--accent-soft);
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* ----------------------------------------------------------
   PREMIUM GELB + GLOW für Überschriften
---------------------------------------------------------- */

h1, h2, h3 {
  color: var(--brand) !important;
  text-shadow:
    0 0 12px rgba(234,179,8,0.35),
    0 0 22px rgba(234,179,8,0.15);
}

h4 {
  color: var(--brand);
  text-shadow:
    0 0 8px rgba(234,179,8,0.28),
    0 0 14px rgba(234,179,8,0.15);
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  box-shadow:
    0 0 12px rgba(234,179,8,0.55),
    0 0 28px rgba(234,179,8,0.35),
    0 8px 18px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

/* Sektionen – Glow */

section {
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background:
    radial-gradient(800px 350px at 50% 0%, rgba(234,179,8,0.20), transparent 70%);
  z-index: -1;
}

/* Premium Cards */

.card,
.note,
.feature,
.faq-item {
  position: relative;
  overflow: visible;
}

.card::after,
.note::after,
.feature::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(500px 300px at 0% 0%, rgba(234,179,8,0.28), transparent 65%);
  transition: opacity .2s ease;
}

.card:hover::after,
.note:hover::after,
.feature:hover::after,
.faq-item:hover::after {
  opacity: 1;
}

/* Karten-Hover */

.card:hover,
.note:hover,
.feature:hover,
.faq-item:hover {
  border-color: rgba(234,179,8,0.6);
  box-shadow:
    0 18px 40px rgba(15,23,42,0.95),
    0 0 28px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}

/* Badges */

.badge {
  box-shadow:
    0 12px 30px rgba(234,179,8,0.5),
    0 0 18px rgba(234,179,8,0.6);
}

.process-icon {
  box-shadow:
    0 14px 26px rgba(234,179,8,0.75),
    0 0 18px rgba(234,179,8,0.4);
}

/* Navigation – aktiver Menüpunkt */

.main-nav a.active {
  color: var(--brand);
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234,179,8,0), rgba(234,179,8,0.9), rgba(234,179,8,0));
  box-shadow:
    0 0 10px rgba(234,179,8,0.7),
    0 0 22px rgba(234,179,8,0.4);
}

/* Bilder-Schatten */

.hero-image-card img,
.service-image-card img,
img.premium-shadow,
section img {
  border-radius: 16px;
  box-shadow:
    0 18px 50px rgba(15,23,42,0.95),
    0 0 30px rgba(0,0,0,0.6);
}

.logo,
.brand img {
  box-shadow: none !important;
}

.wa,
.wa-float {
  box-shadow:
    0 12px 30px rgba(234,179,8,0.65),
    0 0 22px rgba(234,179,8,0.5);
}

@media (max-width: 640px) {
  section::before {
    opacity: 0.06;
  }
  .card:hover,
  .note:hover,
  .feature:hover,
  .faq-item:hover {
    transform: translateY(-1px);
    box-shadow:
      0 10px 26px rgba(15,23,42,0.9),
      0 0 18px rgba(0,0,0,0.5);
  }
}

/* Badge Animation */

.badge {
  width: 70px;
  height: 70px;
  margin: -30px auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  position: relative;
  z-index: 5;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    opacity 0.25s ease;
}

.badge--pulse {
  animation: badgePulse 2.6s ease-in-out infinite;
}

@keyframes badgePulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 12px 28px rgba(234,179,8,0.40),
      0 0 14px rgba(234,179,8,0.55);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 18px 38px rgba(234,179,8,0.65),
      0 0 22px rgba(234,179,8,0.75);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 12px 28px rgba(234,179,8,0.40),
      0 0 14px rgba(234,179,8,0.55);
  }
}

.feature:hover .badge {
  transform: translateY(-6px) scale(1.07);
  filter: brightness(1.05);
}

.badge-icon {
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.35));
  transform: translateY(1px);
  transition: transform 0.25s ease;
}

.feature:hover .badge-icon {
  transform: translateY(-1px) scale(1.04);
}

/* FAQ Teaser – Startseite */

.section--faq-teaser {
  padding-top: 40px;
  padding-bottom: 40px;
  background: radial-gradient(circle at 0% 0%, rgba(234,179,8,0.10), transparent 55%),
              rgba(15,23,42,0.95);
  border-top: 1px solid rgba(148,163,184,0.35);
  border-bottom: 1px solid rgba(15,23,42,1);
}

.faq-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.faq-teaser__text h2 {
  margin: 4px 0 8px;
}

.faq-teaser__text p {
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--muted);
}

.faq-teaser__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 190px;
}

.faq-teaser .btn--primary {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #020617;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(234,179,8,0.35);
}

.faq-teaser .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(234,179,8,0.55);
}

/* Ghost-Button mit Türkis-Akzent */

.faq-teaser .btn--ghost {
  border: 1px solid rgba(34,211,238,0.5);
  color: var(--accent);
  background: transparent;
}

.faq-teaser .btn--ghost:hover {
  border-color: rgba(34,211,238,0.9);
  background: var(--accent-soft);
  color: var(--accent);
}

@media (max-width: 768px) {
  .faq-teaser {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-teaser__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .faq-teaser__actions .btn {
    flex: 1 1 140px;
    text-align: center;
  }
}

/* FAQ Hint – Unterseiten */

.section--faq-hint {
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(15,23,42,1);
  background: rgba(15,23,42,0.96);
}

.faq-hint {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.faq-hint h3 {
  margin: 4px 0 6px;
}

.faq-hint p {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-hint__actions .btn--tiny {
  font-size: 0.85rem;
  padding-inline: 14px;
  padding-block: 7px;
  background: rgba(15,23,42,1);
  border: 1px solid rgba(234,179,8,0.75);
  color: var(--brand);
}

.faq-hint__actions .btn--tiny:hover {
  box-shadow: 0 0 16px rgba(234,179,8,0.55);
}

@media (max-width: 768px) {
  .faq-hint {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile-Finetuning allgemein */

@media (max-width: 768px) {

  .hero {
    padding-top: 72px;
    padding-bottom: 40px;
    text-align: left;
  }

  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .hero .sub {
    font-size: 0.95rem;
  }

  .cards-grid,
  .beratung-grid,
  .references-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-teaser__actions,
  .faq-hint__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-teaser__actions .btn,
  .faq-hint__actions .btn {
    flex: 1 1 140px;
    text-align: center;
  }

  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* Für wen wir der richtige Partner sind */

.section--fit {
  background: radial-gradient(circle at 0% 0%, rgba(234,179,8,0.10), transparent 55%),
              rgba(15,23,42,0.96);
  border-top: 1px solid rgba(30,41,59,1);
}

.container.narrow {
  max-width: 1100px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.fit-card {
  border-radius: 18px;
  padding: 24px 24px 20px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(30,41,59,1);
  box-shadow: 0 12px 32px rgba(15,23,42,0.85);
}

.fit-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.fit-card--good ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
  box-shadow: 0 0 0 1px rgba(22,163,74,0.5);
}

.fit-card--bad ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fecaca, #ef4444);
  box-shadow: 0 0 0 1px rgba(248,113,113,0.55);
}

@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .fit-card {
    padding: 18px 16px 16px;
  }
  .fit-card ul li {
    font-size: 0.9rem;
  }
}

/* =========================================
   PV-Hero Bild / Visual
========================================= */

.pv-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-hero-image-card {
  margin: 0;
  background: #020617;
  border-radius: 1.2rem;
  border: 1px solid #111827;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15,23,42,0.9);
}

.pv-hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pv-hero-image-card figcaption {
  padding: 0.6rem 0.9rem 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Mobile: Hero untereinander */

@media (max-width: 900px) {
  .pv-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .pv-hero-visual {
    margin-top: 1.4rem;
  }
}

/* =========================================
   PV-Karten-Icons in "Für wen"-Bereich
========================================= */

.pv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(248,250,252,0.95), rgba(15,23,42,1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 28px rgba(15,23,42,0.9),
    0 0 20px rgba(234,179,8,0.2);
}

.pv-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* =========================================
   PV-Prozess – Illustration links
========================================= */

.pv-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.pv-process-visual {
  display: flex;
  align-items: stretch;
}

.pv-process-image-card {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid #111827;
  box-shadow:
    0 22px 50px rgba(15,23,42,0.95),
    0 0 26px rgba(0,0,0,0.7);
  background: radial-gradient(circle at 10% 0%, rgba(234,179,8,0.25), transparent 60%);
}

.pv-process-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pv-process-image-card figcaption {
  padding: 0.6rem 0.9rem 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.pv-process-grid {
  margin-top: 1.6rem;
}

/* Mobile: Prozess übereinander */

@media (max-width: 900px) {
  .pv-process-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .pv-process-visual {
    max-width: 520px;
    margin: 0 auto 0.4rem;
  }
}

/* =========================================
   PV-Mini-Rechner Icon
========================================= */

.pv-calc-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.pv-calc-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fefce8, #facc15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(234,179,8,0.65);
  flex-shrink: 0;
}

.pv-calc-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* kleine Schönheitskorrektur für Checkbox-Labels */
.pv-calc-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-top: 4px;
}

.pv-calc-check input[type="checkbox"] {
  margin: 0;
}

/* Mobile-Finetuning für Überschriften & Abstände */

@media (max-width: 640px) {

  /* Startseiten-Hero */
  .hero {
    padding-top: 80px;
    padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  /* PV & WP Hero-Bereiche */
  .pv-hero,
  .wp-hero {
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .pv-hero h1,
  .wp-hero h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  /* Abschnittsüberschriften etwas kleiner */
  .section-title,
  .pv-section h2,
  .wp-section h2 {
    font-size: 1.35rem;
  }
}

/* Kontakt-Formular – mobile besser lesbar */

@media (max-width: 640px) {

  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-card {
    padding: 18px 14px;
  }

  .contact-form .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    font-size: 0.95rem;
  }

  .contact-form textarea {
    min-height: 110px;
  }
}

/* WhatsApp-Bubble auf sehr kleinen Screens etwas höher */

@media (max-width: 480px) {
  .wa {
    bottom: 80px;
  }
}

/* =========================================
   PV-Mini-Rechner – Premium Ergebnisbereich
========================================= */

.pv-calc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
}

.pv-calc-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9ca3af;
}

.pv-calc-tag--high {
  border-color: rgba(34,197,94,0.7);
  background: rgba(22,163,74,0.12);
  color: #bbf7d0;
}
.pv-calc-tag--high::before {
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
}

.pv-calc-tag--mid {
  border-color: rgba(234,179,8,0.7);
  background: rgba(234,179,8,0.12);
  color: #fef9c3;
}
.pv-calc-tag--mid::before {
  background: radial-gradient(circle at 30% 30%, #fef9c3, #eab308);
}

.pv-calc-tag--low {
  border-color: rgba(248,113,113,0.8);
  background: rgba(248,113,113,0.10);
  color: #fecaca;
}
.pv-calc-tag--low::before {
  background: radial-gradient(circle at 30% 30%, #fecaca, #ef4444);
}

/* Progressbar */
.pv-calc-bar-wrapper {
  margin-bottom: 0.9rem;
}

.pv-calc-bar-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.pv-calc-bar {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #020617;
  border: 1px solid #111827;
  overflow: hidden;
}

.pv-calc-bar-inner {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #facc15);
  box-shadow: 0 0 18px rgba(34,197,94,0.45);
  transition: width 0.6s ease-out;
}

.pv-calc-bar-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 2px;
}

/* Textblock im Ergebnis */
.pv-calc-textblock {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.pv-calc-textblock ul {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.pv-calc-textblock li + li {
  margin-top: 2px;
}

@media (max-width: 640px) {
  .pv-calc-bar-wrapper {
    margin-bottom: 0.7rem;
  }
}

/* Kleine Geräte unter 420px */

@media (max-width: 420px) {

  .hero h1 {
    font-size: 1.65rem !important;
  }

  header .brand span {
    font-size: 0.8rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .card-body h3 {
    font-size: 1.05rem;
  }
}

/* =========================================
   GLOBALE FINETUNINGS – FORMULARE & CTA
========================================= */

/* Kontaktkarten: Inhalte sauber im Rahmen halten */
.contact-card {
  overflow: hidden;
}

/* Formulare: Inputs/Texte immer 100 % im Container */
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/* Etwas mehr Luft zwischen den Feldern */
.contact-form .row {
  gap: 12px;
  margin-bottom: 8px;
}

.contact-form input:not(:last-child) {
  margin-bottom: 4px;
}

/* Falls auf einzelnen Seiten zusätzliche Inputs unter der row sind */
section .contact-form > input {
  width: 100%;
  box-sizing: border-box;
  margin: 4px 0;
}

/* HERO-CTAs – einheitlicher Look auf allen Seiten */

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.4rem;
}

.hero-btn-primary {
  font-weight: 600;
}

.hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(148,163,184,0.7);
  color: var(--muted);
}

.hero-btn-secondary:hover {
  border-color: rgba(234,179,8,0.8);
  color: var(--brand);
  background: rgba(15,23,42,0.9);
}

.hero-cta-hint {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Mobile: Buttons untereinander statt gequetscht nebeneinander */

@media (max-width: 640px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Minimal mehr Luft nach dem sticky-Header auf kleinen Screens */

@media (max-width: 768px) {
  .hero,
  .pv-hero,
  .wp-hero {
    padding-top: 72px;
  }
}

/* Navigation: etwas mehr Zeilenabstand auf Handy */

@media (max-width: 600px) {
  .main-nav a {
    line-height: 1.5;
  }
}
