:root {
  --bg: #f6f7f8;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Alles was im Screenshot blau ist -> grün */
  --primary: #18a34a;
  --primary-700: #15803d;
  --primary-100: #dcfce7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--primary-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Topbar */
.topbar {
  background: var(--primary);
  color: #fff;
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.search input {
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  outline: none;
}

.search__btn {
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  background: #0b1220;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.search__btn:hover {
  filter: brightness(1.05);
}

.flag {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
}

/* Nav */
.nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  color: var(--muted);
}

.nav__item {
  color: #374151;
  font-weight: 600;
  font-size: 13px;
}

.nav__item:hover {
  color: var(--primary-700);
  text-decoration: none;
}

.nav__spacer {
  flex: 1;
}

.languageDropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.languageToggle {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.languageToggle__chevron {
  font-size: 11px;
}

.languageRow {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.languageItem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.languageFlag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block;
}

/* Hero */
.hero {
  padding: 26px 0 38px;
}

.heroCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px 22px 18px;
  text-align: center;
}

.heroCard--left {
  text-align: left;
}

.heroCard--left .heroCard__meta,
.heroCard--left .heroCard__kicker,
.heroCard--left .heroCard__links {
  text-align: left;
}

.heroCard__kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heroCard__title {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: 0.02em;
}

.heroCard__steps {
  margin: 10px auto 14px;
  padding: 0;
  list-style-position: inside;
  color: #111827;
  font-weight: 600;
  max-width: 520px;
}

.heroCard__steps li {
  margin: 6px 0;
  font-weight: 600;
}

.heroCard__description {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: 13px;
  line-height: 1.55;
  color: #374151;
  font-weight: 500;
}

.heroCard__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 520px;
  margin: 14px auto 10px;
}

.heroCard__cta {
  display: flex;
  justify-content: center;
  margin: 16px 0 8px;
}

.heroCard__form input {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 12px;
  outline: none;
}

.heroCard__form input:focus {
  border-color: rgba(24, 163, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(24, 163, 74, 0.16);
}

.btn {
  border: 0;
  border-radius: 6px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-700);
}

.heroCard__meta {
  margin: 8px 0 2px;
  color: var(--muted);
  font-size: 12px;
}

.heroCard__links {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.press {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.press__item {
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.press__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-100);
  border: 1px solid rgba(24, 163, 74, 0.25);
  color: var(--primary-700);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.press__text {
  color: #374151;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

/* Categories card */
.categoryCard {
  margin-top: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.categoryCard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.categoryGroup__title {
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #111827;
}

.check {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #374151;
  padding: 5px 0;
}

.check input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.categoryCard__bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.categoryCard__searchRow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.categoryCard__label {
  font-weight: 700;
  color: #374151;
  font-size: 12px;
}

.categoryCard__searchRow input {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  outline: none;
}

.categoryCard__searchRow input:focus {
  border-color: rgba(24, 163, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(24, 163, 74, 0.16);
}

.categoryCard__tip {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-100);
  border: 1px solid rgba(24, 163, 74, 0.25);
  color: var(--primary-700);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Footer */
.footer {
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--primary-700);
  text-decoration: none;
}

.footer__company {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
}

/* Legal pages */
.legalText {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.65;
  color: #374151;
  font-weight: 600;
}

.faq__item {
  border: 2px solid #d1d5db;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  margin: 10px 0;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 900;
  color: #111827;
  font-size: 13px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "▾";
  float: right;
  color: #6b7280;
  font-weight: 900;
}

.faq__item[open] summary::after {
  content: "▴";
}

.blogGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.blogCard {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blogCard__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #111827;
}

.blogCard__meta {
  margin: 0 0 10px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
}

.blogCard__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #374151;
  font-weight: 600;
}

@media (max-width: 900px) {
  .blogGrid {
    grid-template-columns: 1fr;
  }
}

/* Wizard/Formular */
.wizardForm {
  margin-top: 12px;
}

.formCard {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.formField {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.formField label {
  font-size: 13px;
  color: #111827;
  font-weight: 800;
}

.serviceSelect,
.textInput,
.textArea {
  border: 2px solid #d1d5db;
  border-radius: 10px;
  padding: 14px 14px;
  outline: none;
  font-family: inherit;
  background: #ffffff;
}

.serviceSelect:focus,
.textInput:focus,
.textArea:focus {
  border-color: rgba(24, 163, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(24, 163, 74, 0.16);
}

.textInput[readonly] {
  background: #f9fafb;
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.formGrid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.formSection {
  padding: 6px 0 14px;
}

.wizardActions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.wizardSelected {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.detailsSection {
  margin-top: 10px;
  padding-top: 6px;
  border-top: 0;
}

.sectionTitle {
  margin: 10px 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: #111827;
}

.sectionTitle--big {
  margin: 14px 0 6px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.sectionSubtitle {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.req {
  color: #ef4444;
  font-weight: 900;
  margin-left: 2px;
}

.check--inline {
  margin: 4px 0 14px;
}

.wizardActions--end {
  justify-content: flex-end;
  margin-top: 14px;
}

.invoice {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.infoBox {
  margin: 10px 0 12px;
  border: 2px solid rgba(24, 163, 74, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.7), rgba(255, 255, 255, 1));
  padding: 14px 14px 10px;
}

.infoBox--notice {
  border-color: rgba(180, 83, 9, 0.45);
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.85), rgba(255, 255, 255, 1));
}

.infoBox--success {
  border-color: rgba(24, 163, 74, 0.55);
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.95), rgba(255, 255, 255, 1));
}

.infoBox__title {
  font-weight: 900;
  color: #111827;
  font-size: 13px;
  margin: 10px 0 6px;
}

.infoBox__title:first-child {
  margin-top: 0;
}

.infoBox__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #374151;
  font-weight: 600;
}

.invoice__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.invoice__title {
  font-weight: 900;
  color: #111827;
}

.invoice__badge {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary-700);
  background: var(--primary-100);
  border: 1px solid rgba(24, 163, 74, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
}

.invoice__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: #374151;
  font-weight: 600;
}

.invoice__divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.invoice__row--total {
  font-size: 14px;
  color: #111827;
}

.invoice__hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 720px) {
  .formGrid {
    grid-template-columns: 1fr;
  }

  .formGrid--3 {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .topbar__inner {
    grid-template-columns: 1fr;
  }

  .press {
    grid-template-columns: 1fr;
  }

  .categoryCard__grid {
    grid-template-columns: 1fr;
  }

  .categoryCard__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .heroCard__form {
    grid-template-columns: 1fr;
  }

  .search {
    grid-template-columns: 1fr;
  }
}

