@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Tokens ─────────────────────────────────────── */
:root {
  --bg:           #111319;
  --bg-surface:   #191c27;
  --text:         #f0ece9;
  --text-muted:   rgba(240,236,233,0.55);
  --accent:       #c4958e;
  --accent-hover: #d4a49d;
  --accent-glow:  rgba(196,149,142,0.14);
  --border:       rgba(240,236,233,0.1);
  --border-light: rgba(240,236,233,0.06);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-pill:  999px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: rgba(240,236,233,0.72); max-width: 68ch; }
strong { color: var(--text); font-weight: 600; }

/* ── Layout ──────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background-color 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(196,149,142,0.22);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 6px 24px rgba(196,149,142,0.32);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: rgba(240,236,233,0.28);
  color: var(--text);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border-color: rgba(196,149,142,0.5);
}
.btn-outline:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-messenger {
  background-color: transparent;
  color: rgba(240,236,233,0.8);
  border-color: var(--border);
}
.btn-messenger:hover {
  border-color: rgba(196,149,142,0.55);
  color: var(--accent);
}

/* ── Utility Bar ─────────────────────────────────── */
.utility-bar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  padding: 0.45rem 0;
  font-size: 0.8rem;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.utility-bar__flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.utility-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.utility-bar__contact a {
  color: rgba(240,236,233,0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.utility-bar__contact a:hover { color: var(--accent); }
.flag-icon {
  border-radius: 3px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
  opacity: 0.88;
  transition: opacity 0.2s;
}
.flag-icon:hover { opacity: 1; }

/* ── Navigation ─────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background-color: rgba(17,19,25,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  overflow: visible;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.nav-brand {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links li a {
  font-size: 0.84375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4em 0.7em;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover {
  color: var(--text);
  background-color: rgba(240,236,233,0.06);
}
.nav-links .nav-cta {
  margin-left: 0.5rem;
  background-color: var(--accent) !important;
  color: #fff !important;
  padding: 0.45em 1.1em;
  border-radius: var(--radius-pill);
  /* button-reset so <button> renders identically to <a> */
  border: none;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.nav-links .nav-cta:hover {
  background-color: var(--accent-hover) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: rgba(240,236,233,0.28); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-image:
    linear-gradient(108deg, rgba(17,19,25,0.97) 0%, rgba(17,19,25,0.78) 52%, rgba(17,19,25,0.28) 100%),
    url("../../images/08.webp");
  background-size: cover;
  background-position: center 25%;
}
.hero-content { max-width: 600px; }
.kicker {
  display: inline-block;
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.375rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-content p {
  font-size: 1.0625rem;
  color: rgba(240,236,233,0.78);
  max-width: 54ch;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ── Sections ────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section--alt { background-color: var(--bg-surface); }

.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p { font-size: 1rem; max-width: 56ch; }
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center p { margin-left: auto; margin-right: auto; }

.section-footer { text-align: center; margin-top: 2.5rem; }

/* ── Split Layout ────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split--img-left .split-image { order: -1; }

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 1.25rem; }
.split-text p { margin-bottom: 1rem; }
.split-text .btn { margin-top: 0.625rem; }

/* ── Vorteil Cards 2x2 ───────────────────────────── */
.vorteil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.vorteil-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.25s;
}
.vorteil-card:hover { border-color: rgba(196,149,142,0.45); }
.vorteil-icon {
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-glow);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.vorteil-card h3 { margin-bottom: 0.625rem; }
.vorteil-card p { font-size: 0.9375rem; max-width: none; }

/* ── Metrics Row ─────────────────────────────────── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.metric-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}
.metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}
.metric-label {
  font-size: 0.78125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.verdienst-body {
  max-width: 820px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(240,236,233,0.7);
  margin-bottom: 2rem;
}

/* ── Requirements List ───────────────────────────── */
.requirements-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(240,236,233,0.07);
  font-size: 0.9375rem;
  color: rgba(240,236,233,0.8);
}
.requirements-list li:first-child { border-top: 0; }
.requirements-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  margin-top: 0.26rem;
  border-radius: 50%;
  border: 1.5px solid rgba(196,149,142,0.65);
  background-color: var(--accent-glow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23c4958e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Steps Grid ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}
.step-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.step-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(196,149,142,0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.75rem; }
.step-card p { font-size: 0.9375rem; max-width: none; }

/* ── Testimonials ────────────────────────────────── */
.testimonial-track {
  display: flex;
  gap: 1.375rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem;
  margin: 0 -0.25rem;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: 340px;
  max-width: 82vw;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
}
.testimonial-card .stars {
  color: #e0b15f;
  letter-spacing: 0.15em;
  font-size: 0.84375rem;
  margin-bottom: 1.25rem;
}
.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
  font-style: italic;
  color: rgba(240,236,233,0.88);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
}
.testimonial-card .quelle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.t-arrow {
  width: 2.625rem;
  height: 2.625rem;
  min-width: 2.625rem;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background-color: transparent;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.t-arrow:hover { background-color: var(--accent); border-color: var(--accent); }
.testimonial-dots { display: flex; gap: 0.45rem; align-items: center; }
.tdot {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(240,236,233,0.2);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.tdot.active { background-color: var(--accent); transform: scale(1.45); }

/* ── FAQ ─────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--border); }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.125rem 2.25rem 1.125rem 0;
  position: relative;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0.125rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: rgba(240,236,233,0.7);
  max-width: none;
}

/* ── CTA Section ─────────────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.mini-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1.25rem auto 0;
  max-width: 50ch;
}
.cta-messengers {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}
.cta-messengers p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 auto 1rem;
  max-width: none;
  text-align: center;
}
.cta-messenger-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 1.125rem; }
.footer-col > p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer-dl dt {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.footer-dl dt:first-child { margin-top: 0; }
.footer-dl dd { font-size: 0.875rem; margin: 0.2rem 0 0; }
.footer-dl dd a { color: rgba(240,236,233,0.75); }
.footer-dl dd a:hover { color: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(240,236,233,0.6); }
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom a { font-size: 0.8125rem; color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1023px) {
  .metrics-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: rgba(17,19,25,0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
    gap: 0.125rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li a { display: block; padding: 0.65em 0.75em; }
  .nav-links .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.375rem !important;
    text-align: center;
    display: block;
  }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--img-left .split-image { order: 0; }
  .vorteil-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .section { padding: 4rem 0; }
  .utility-bar__contact { display: none; }
}

@media (max-width: 479px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
}

@media (min-height: 1100px) {
  .hero { min-height: 0; height: 900px; }
}

/* ── Blog-Teaser ─────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: var(--text);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  margin: -1.5rem -1.5rem 0;
  width: calc(100% + 3rem);
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(196,149,142,0.2);
  border-radius: var(--radius-pill);
  padding: 0.2em 0.7em;
  width: fit-content;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-read {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
  transition: gap 0.18s;
}
.blog-card:hover .blog-read { gap: 0.65em; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width: 480px) and (max-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
