:root {
  --bg: #020c0a;
  --bg-soft: #031510;
  --bg-softer: #041c16;

  --emerald-main: #059669;
  --emerald-soft: #10b981;
  --emerald-deep: #047857;

  --accent: var(--emerald-main);

  --text-main: #f9fafb;
  --text-soft: #9ca3af;
  --text-muted: #6b7280;

  --radius-xl: 24px;
  --radius-lg: 18px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.85);
  --shadow-subtle: 0 12px 30px rgba(0, 0, 0, 0.7);

  --transition: 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-height: 72px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  background:
    radial-gradient(circle at top, rgba(16, 185, 129, 0.28), transparent 55%),
    radial-gradient(circle at bottom, #020c0a 0, #000000 70%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(1, 10, 8, 0.94);
  border-bottom: 1px solid rgba(15, 118, 110, 0.45);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Logo – pill, responsive */
.brand-logo {
  height: 42px;
  max-width: 180px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, #02100c, #031914);
  border: 1px solid rgba(45, 212, 191, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.5),
    0 12px 26px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(16, 185, 129, 0.35);
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand-text-main {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0.92;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #2dd4bf);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: #e5fdf5;
  transform: translateY(-1px);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill {
  background: rgba(1, 18, 14, 0.95);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(45, 212, 191, 0.4);
  font-size: 0.7rem;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill span {
  color: #a7f3d0;
  font-weight: 500;
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  white-space: nowrap;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn-primary {
  background: radial-gradient(circle at 0% 0%, rgba(52, 211, 153, 0.3), transparent 55%),
              linear-gradient(135deg, #059669, #10b981);
  color: #022c22;
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.55);
  border: 1px solid rgba(52, 211, 153, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 24px 60px rgba(4, 120, 87, 0.8);
}

.btn-outline {
  background: rgba(2, 12, 10, 0.95);
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.btn-outline:hover {
  background: rgba(3, 22, 18, 0.98);
  border-color: rgba(52, 211, 153, 0.6);
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

.btn-icon {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.7);
  background: rgba(2, 12, 10, 0.9);
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  margin: 3px 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-mobile-open .nav-toggle-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-mobile-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-mobile-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.nav-links-mobile a {
  padding: 0.4rem 0;
}

.nav-mobile-open + .nav-links-mobile {
  display: flex;
}

/* HERO */

.hero {
  padding: 3rem 0 4.5rem;
}

@media (min-width: 960px) {
  .hero {
    padding: 4rem 0 5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(1, 18, 14, 0.9);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.35);
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1.3rem, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(120deg, #a7f3d0, #34d399, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 580px;
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

.hero-subtitle-rows {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-note span {
  color: #a7f3d0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(2, 16, 13, 0.95);
  border: 1px solid rgba(31, 64, 55, 0.9);
  color: var(--text-soft);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.9);
}

/* STRIP */

.strip {
  border-top: 1px solid rgba(15, 118, 110, 0.55);
  border-bottom: 1px solid rgba(15, 118, 110, 0.55);
  padding: 1rem 0;
  background: rgba(1, 18, 14, 0.96);
  backdrop-filter: blur(14px);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.9);
  background: rgba(2, 16, 13, 0.98);
}

.strip-item-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* SECTIONS */

section {
  padding: 3rem 0;
}

@media (min-width: 960px) {
  section {
    padding: 3.5rem 0;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.section-title-block {
  max-width: 460px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* LEISTUNGEN */

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  border-radius: var(--radius-lg);
  background: rgba(2, 16, 13, 0.98);
  border: 1px solid rgba(15, 118, 110, 0.9);
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at top, rgba(45, 212, 191, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.95);
  border-color: rgba(52, 211, 153, 0.9);
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, rgba(45, 212, 191, 0.4), transparent 60%),
              rgba(6, 78, 59, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
  border: 1px solid rgba(52, 211, 153, 0.7);
}

.step-title {
  font-size: 0.98rem;
  font-weight: 500;
}

.step-text {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.step-meta {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* REGION & ÜBER UNS */

.two-col-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .two-col-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.card-soft {
  border-radius: var(--radius-xl);
  background: rgba(2, 16, 13, 0.98);
  border: 1px solid rgba(15, 118, 110, 0.9);
  padding: 1.2rem 1.25rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.card-soft h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: #e5fdf5;
}

/* Bild im Über-uns-Card – falls du das Foto nutzt */
.about-photo {
  margin: -0.4rem -0.4rem 0.7rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9);
}

.about-photo img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.list-check {
  list-style: none;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 0.3rem;
}

@media (min-width: 640px) {
  .list-check {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.list-check li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
  font-size: 0.84rem;
}

.check-icon {
  margin-top: 0.05rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  background: rgba(6, 78, 59, 0.9);
  color: #a7f3d0;
}

/* KONTAKT / FAQ */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.contact-block p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-row {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.contact-row strong {
  color: #e5fdf5;
}

.faq-card {
  border-radius: var(--radius-xl);
  background: rgba(2, 16, 13, 0.98);
  border: 1px solid rgba(15, 118, 110, 0.9);
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.faq-item {
  padding: 0.65rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.8);
}

.faq-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-question {
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.faq-answer {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* CTA */

.cta-bar {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(5, 150, 105, 0.35), transparent 60%),
    rgba(1, 18, 14, 0.98);
  border: 1px solid rgba(45, 212, 191, 0.55);
  padding: 1.4rem 1.5rem;
  margin-bottom: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.95);
}

.cta-text-block {
  max-width: 480px;
}

.cta-title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.cta-sub {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.cta-ahead {
  font-size: 0.78rem;
  color: #a7f3d0;
  margin-top: 0.2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

/* FOOTER */

footer {
  padding: 1rem 0 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--text-soft);
  position: relative;
  transition: color 160ms ease;
}

.footer-links a::after,
.contact-row a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #22c55e, #2dd4bf);
  transition: width 160ms ease;
}

.footer-links a:hover,
.contact-row a:hover {
  color: #e5fdf5;
}

.footer-links a:hover::after,
.contact-row a:hover::after {
  width: 100%;
}

/* RESPONSIVE – TABLET UND DRUNTER */

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-links,
  .nav-cta .pill {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 2.6rem 0 3.6rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-badges {
    gap: 0.5rem;
  }

  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .steps-grid {
    gap: 1rem;
  }

  .cta-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* RESPONSIVE – KLEINE HANDYS */

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

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

  section {
    padding: 2.4rem 0;
  }

  .step-card {
    padding: 0.9rem;
  }

  .card-soft {
    padding: 1rem 1.05rem 1.2rem;
  }

  .cta-bar {
    padding: 1.2rem 1.1rem;
  }

  footer {
    padding-bottom: 1.6rem;
  }
}
