:root {
  /* Grundfarben */
  --bg-dark: #0F172A;
  --bg-dark-2:#0B1224;
  --bg-light:#F7FAFF;
  --bg-alt: #EEF4FF;
  --card:#FFFFFF;
  --muted:#94A3B8;
  --text:#0B1220;
  --white:#FFFFFF;
  /* Akzent: Grün */
  --accent:#2F7D6A;
  --accent-2:#39A88C;
  --accent-soft: rgba(47,125,106,0.18);
  /* UI */
  --border: rgba(148,163,184,0.25);
  --shadow: 0 18px 55px rgba(2, 6, 23, 0.35);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-padding-top: 72px;
}

html,body {
  margin:0;
  padding:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg-light);
}

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

.container {
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.center {
  text-align:center;
}

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

.tiny {
  font-size:12px;
}

/* ========================================================= TOPBAR / NAV ========================================================= */
.topbar {
  position: sticky;
  top:0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(15,23,42,0.97), rgba(15,23,42,0.80));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease, border-color .3s ease;
}

.topbar--scrolled {
  background: rgba(15,23,42,0.99);
  border-bottom-color: rgba(255,255,255,0.14);
}

.topbar--scrolled .topbar__inner {
  height: 60px;
}

.topbar--scrolled .brand__mark {
  width: 34px;
  height: 34px;
}

.topbar__inner {
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  transition: height .3s ease;
}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--white);
  letter-spacing:0.5px;
}

.brand__mark {
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  overflow:hidden;
  border-radius:10px;
  transition: width .25s ease, height .25s ease;
}

.brand__mark img {
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.brand__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #fff;
  text-transform: uppercase;
}

.nav {
  display:flex;
  gap:18px;
  color:rgba(255,255,255,0.85);
  font-weight:500;
}

.nav a {
  padding:8px 10px;
  border-radius:10px;
  transition: background .12s ease;
}

.nav a:hover {
  background:rgba(255,255,255,0.10);
  color: var(--white);
}

.nav a.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
  position: relative;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.topbar__cta {
  display:flex;
  gap:10px;
}

.topbar__back {
  padding: 7px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2F7D6A, #39A88C);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: opacity .15s;
  white-space: nowrap;
}
.topbar__back:hover { opacity: 0.88; }
.topbar__back svg { display: block; }

/* Mobile Burger */
.burger {
  display:none;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:12px;
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0;
  padding:0;
}

.burger span {
  display:block;
  height:2px;
  width:18px;
  margin:3px 0;
  background:rgba(255,255,255,0.85);
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding:14px 20px 18px;
  flex-direction:column;
  gap:10px;
  color:rgba(255,255,255,0.9);
}

.mobile-nav:not([hidden]) {
  display:flex;
}

.mobile-nav a {
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  transition: background .12s ease;
}

.mobile-nav a:hover {
  background:rgba(255,255,255,0.10);
}

.mobile-nav .btn {
  margin-top:6px;
}

/* ========================================================= BUTTONS ========================================================= */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-family: inherit;
  font-size:16px;
  line-height:1.2;
  font-weight:600;
  cursor:pointer;
  transition: transform .08s ease, background .12s ease, border .12s ease, box-shadow .12s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:var(--white);
  box-shadow: 0 10px 24px rgba(47,125,106,0.22);
}

.btn--primary:hover {
  box-shadow: 0 14px 32px rgba(47,125,106,0.32);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.13);
}

.btn--outline-dark {
  background: rgba(255,255,255,0.65);
  border-color: rgba(15,23,42,0.16);
  color:#0B1220;
}

.btn--lg {
  padding:12px 18px;
  border-radius:16px;
}

.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
  white-space: nowrap;
}

.btn--block {
  width:100%;
  padding:12px 16px;
  border-radius:16px;
}

/* ========================================================= HERO ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero {
  position:relative;
  background:
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(1200px 800px at 70% 20%, rgba(47,125,106,0.18), transparent 60%),
    radial-gradient(900px 600px at 20% 10%, rgba(29,78,216,0.18), transparent 55%),
    linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  background-size: 28px 28px, auto, auto, auto;
  color:var(--white);
  overflow:hidden;
}

.hero__inner {
  padding-top: 64px;
  padding-bottom: 56px;
}

.hero__content {
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.05;
  margin:0 0 14px;
  letter-spacing:-0.02em;
}

.hero__sub {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.6;
  max-width: none;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(57,168,140,0.32);
  background: rgba(47,125,106,0.12);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hero__pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px rgba(57,168,140,0.7);
  flex-shrink: 0;
}

.text-accent {
  background: linear-gradient(110deg, #fff 10%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__left {
  min-width:0;
  animation: fadeUp .55s ease both;
}

.hero__left .checks {
  margin-top: 28px;
}

.hero__buttons {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero__trust {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.82);
  font-size:14px;
  line-height:1.5;
}

.hero__meta {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 6px 0;
  margin-top: 22px;
}

.hero__meta span {
  display:inline-flex;
  align-items:center;
  gap: 5px;
  color: rgba(255,255,255,0.60);
  font-size:13px;
  line-height:1.4;
}

.hero__meta span::before {
  content: "✓";
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
}

.hero__meta span:not(:last-child)::after {
  content: "·";
  margin: 0 8px;
  color: rgba(255,255,255,0.25);
  font-size: 16px;
  line-height: 1;
}

.hero__micro {
  margin:14px 0 0;
  max-width: 44ch;
  color: rgba(255,255,255,0.62);
  font-size:13px;
  line-height:1.55;
}

/* Check-Liste */
.checks {
  --checks-title-color: rgba(255,255,255,0.92);
  --checks-sub-color: rgba(255,255,255,0.68);
  --checks-sub-line: rgba(255,255,255,0.14);
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap:12px;
}

.checks > li {
  display:flex;
  align-items:center;
  gap:12px;
  padding:2px 0;
  color: var(--checks-title-color);
}

.checks__content {
  display:grid;
  gap:6px;
  flex:1 1 auto;
  min-width:0;
}

.checks__title {
  display:block;
  font-weight:600;
  letter-spacing:-0.01em;
  line-height:1.45;
}

.checks__sub {
  margin:2px 0 0;
  padding:0 0 0 16px;
  list-style:disc;
  display:grid;
  gap:4px;
  border-left:1px solid var(--checks-sub-line);
}

.checks__sub:empty {
  display:none;
}

.checks__sub li {
  display:list-item;
  color:var(--checks-sub-color);
  font-size:13px;
  line-height:1.45;
}

.checks--muted {
  --checks-title-color: rgba(255,255,255,0.78);
  --checks-sub-color: rgba(255,255,255,0.60);
  --checks-sub-line: rgba(255,255,255,0.10);
}

.checks--dark {
  --checks-title-color: #0B1220;
  --checks-sub-color: #475569;
  --checks-sub-line: rgba(15,23,42,0.10);
}

.check {
  width:22px;
  height:22px;
  border-radius:8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(180,255,233,0.22);
  box-shadow: 0 10px 22px rgba(47,125,106,0.24), inset 0 1px 0 rgba(255,255,255,0.22);
  position:relative;
  margin-top:2px;
  flex:0 0 auto;
}

.check::after {
  content:"";
  position:absolute;
  left:7px;
  top:4px;
  width:6px;
  height:10px;
  border-right:2px solid rgba(255,255,255,0.96);
  border-bottom:2px solid rgba(255,255,255,0.96);
  transform: rotate(40deg);
}

.checks--muted .check {
  background: linear-gradient(180deg, rgba(148,163,184,0.24), rgba(148,163,184,0.12));
  border-color: rgba(148,163,184,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.checks--dark .check::after {
  border-right:2px solid rgba(255,255,255,0.96);
  border-bottom:2px solid rgba(255,255,255,0.96);
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  min-width: 0;
  animation: fadeUp .55s .28s ease both;
}

/* ---- Karten-Stapel ---- */
.orderStack {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 230px;
}

.orderCard {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.07);
  backdrop-filter: blur(12px);
}

.orderCard--front {
  bottom: 0;
  z-index: 3;
  box-shadow: 0 24px 64px rgba(2,6,23,0.32);
}

.orderCard--back1 {
  bottom: 56px;
  left: 18px;
  right: 18px;
  z-index: 2;
  opacity: 0.72;
  transform: rotate(-1.2deg);
  box-shadow: 0 12px 36px rgba(2,6,23,0.16);
}

.orderCard--back2 {
  bottom: 106px;
  left: 36px;
  right: 36px;
  z-index: 1;
  opacity: 0.42;
  transform: rotate(1.8deg);
  box-shadow: 0 6px 18px rgba(2,6,23,0.10);
}

/* Pulsierender Live-Dot */
.orderCard__pulse {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orderCard__pulse span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
}

.orderCard__pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: pulseRing 1.8s ease infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(0.8); opacity: 0.4; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

/* Farbige Dots für Back-Cards */
.orderCard__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.orderCard__dot--blue   { background: #60A5FA; }
.orderCard__dot--purple { background: #A78BFA; }

.orderCard__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.orderCard__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.orderCard__title {
  font-size: 15px;
  font-weight: 700;
  color: #0B1220;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orderCard__sub {
  font-size: 13px;
  color: #64748B;
}

.orderCard__amount {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

.orderCard__amount--accent {
  color: var(--accent);
}

/* Zusammenfassung unter dem Stapel */
.orderSummary {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
}

.orderSummary__num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.orderSummary__label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}


.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 28px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease infinite;
  cursor: default;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50%       { transform: translateY(6px); opacity: 0.6; }
}

.hero__wave {
  height: 90px;
  background: linear-gradient(180deg, rgba(247,250,255,0), rgba(247,250,255,1));
}

/* ========================================================= TRUST BAR ========================================================= */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid rgba(15,23,42,0.07);
  padding: 28px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 36px;
}

.trust-stat__num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.trust-stat__label {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(15,23,42,0.10);
  flex-shrink: 0;
}

/* ========================================================= SECTIONS ========================================================= */
.section {
  padding: 60px 0;
}

.section--light {
  background: var(--bg-light);
  color: var(--text);
}

.section--alt {
  background: var(--bg-alt);
  color: var(--text);
}

.section--dark {
  background: linear-gradient(180deg, #0E1A33, #0B1326);
  color: var(--white);
}

.section--earlypartner {
  background: var(--bg-light);
  color: var(--text);
}

/* Early Partner Badge */
.ep__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(57,168,140,0.35);
  background: rgba(57,168,140,0.12);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ep__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(57,168,140,0.8);
  animation: pulseRing 1.8s ease infinite;
}

/* Early Partner Cards */
.ep__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ep__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(2,6,23,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.ep__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(2,6,23,0.10);
}

.ep__card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(57,168,140,0.15);
  border: 1px solid rgba(57,168,140,0.28);
  border-radius: 14px;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.ep__card h3 {
  color: var(--text);
  font-size: 17px;
  margin: 0 0 10px;
  line-height: 1.3;
}

.ep__card p {
  color: #64748B;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Early Partner CTA */
.ep__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ep__urgency {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
}

.section h2 {
  margin:0 0 18px;
  font-size: 32px;
  letter-spacing:-0.02em;
}

.section-intro {
  margin: 0 0 32px;
}

.section-intro p {
  max-width: 560px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.how-trust {
  margin-top: 32px;
}

/* Horizontaler Schritt-Fluss */
.steps {
  display: flex;
  align-items: flex-start;
  margin-top: 48px;
  gap: 0;
}

.step {
  flex: 1;
  min-width: 0;
}

.step__num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0.22;
  margin-bottom: 16px;
}

.step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.35;
}

.step__desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

.step__connector {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.30;
  padding: 0 20px;
  padding-top: 10px;
  align-self: flex-start;
}

.how-note {
  max-width: 560px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.microcopy {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 6px;
}

.section-cta {
  margin-top: 36px;
}

.note {
  margin-top: 16px;
  color: #64748B;
}

/* 3 Karten */
.cards3 {
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Job-Vorschau Karten */
.jobCards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.jobCard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(2,6,23,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.jobCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(2,6,23,0.10);
}

.jobCard__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(57,168,140,0.10);
  border-radius: 12px;
  color: var(--accent);
}

.jobCard__icon svg {
  width: 20px;
  height: 20px;
}

.jobCard__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.jobCard__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jobCard__meta {
  font-size: 12px;
  color: #64748B;
}

.jobCard__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  margin-left: auto;
}

.card {
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(2,6,23,0.12);
}

.card__icon {
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(47,125,106,0.10);
  border: 1px solid rgba(47,125,106,0.18);
  color: rgba(47,125,106,0.95);
}

.card__step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(57,168,140,0.10);
  border: 1px solid rgba(57,168,140,0.20);
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 14px;
}

.icon {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.card p {
  margin:0;
  color:#475569;
  line-height:1.55;
}

.split-title {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
}

/* Vergleich */
.compare {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 8px 0;
  align-items: center;
}

.compare__head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 4px;
}

.compare__head--bad {
  color: rgba(255,255,255,0.30);
}

.compare__head--good {
  color: var(--accent-2);
}

.compare__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.compare__item--bad {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
}

.compare__item--good {
  background: rgba(47,125,106,0.14);
  border: 1px solid rgba(57,168,140,0.28);
  color: rgba(255,255,255,0.90);
}

.compare__x {
  font-size: 12px;
  color: #F87171;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  font-size: 16px;
}

/* Konditionen */
.terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 0;
}

.terms__pricing {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(2,6,23,0.06);
  height: 100%;
}

.terms__price-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.terms__price-label {
  font-size: 15px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 24px;
}

.terms__action {
  background: linear-gradient(160deg, #0E1A33 0%, #0B2418 100%);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.terms__action-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
}

.terms__action-sub {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.terms__response {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--accent-2);
}

.terms__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.terms__divider::before,
.terms__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.terms__call {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
}

.terms__call-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.terms__call-text strong {
  color: rgba(255,255,255,0.90);
  font-size: 14px;
}

.terms__call-text span {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* ========================================================= FORM (im Modal) ========================================================= */
.modal__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.modal__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 10px 14px;
  background: #F0FDF7;
  border: 1px solid rgba(47,125,106,0.16);
  border-radius: 12px;
  margin-bottom: 4px;
}

.modal__trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #1A5C49;
}

.modal__trust span::before {
  content: "✓";
  font-weight: 700;
}

.form {
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

.form__group {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.06);
}

.form__group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94A3B8;
}

.form__group-opt {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #CBD5E1;
}

.form label {
  display:grid;
  gap:6px;
  font-weight:600;
  color:#0B1220;
  font-size: 14px;
}

.form input, .form select {
  padding: 11px 12px;
  border-radius: 12px;
  border:1px solid rgba(15,23,42,0.14);
  outline:none;
  background:#fff;
  font-size: 16px;
}

.form input:focus, .form select:focus {
  outline: none;
  border-color: rgba(47,125,106,0.60);
  box-shadow: 0 0 0 4px rgba(47,125,106,0.14);
}

.serviceChecks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.serviceCheck {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: #334155 !important;
  padding: 8px 10px;
  background: white;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .12s, background .12s, color .12s;
}

.serviceCheck:has(input:checked) {
  border-color: var(--accent);
  background: rgba(47,125,106,0.06);
  color: #1A5C49 !important;
}

.serviceCheck input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid rgba(15,23,42,0.22);
  border-radius: 5px;
  background: white;
  transition: all .12s;
  position: relative;
  cursor: pointer;
}

.serviceCheck input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.serviceCheck input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.formMsg {
  font-size: 13px;
  text-align: center;
  min-height: 0;
  border-radius: 10px;
  margin: 0;
  transition: all .2s;
}

.formMsg:not(:empty) {
  padding: 10px 14px;
}

.formMsg--success {
  background: rgba(47,125,106,0.08);
  color: #1A5C49;
  border: 1px solid rgba(47,125,106,0.20);
}

.formMsg--error {
  background: rgba(220,38,38,0.06);
  color: #991B1B;
  border: 1px solid rgba(220,38,38,0.16);
}

.grid2 {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkline {
  display:flex !important;
  gap:10px;
  align-items:flex-start;
  font-weight:500 !important;
  color:#334155 !important;
}

.checkline input {
  margin-top: 3px;
}

/* ========================================================= FAQ ========================================================= */
.faq__groups {
  display: grid;
  gap: 32px;
  margin-top: 8px;
}

.faq__group {
  display: grid;
  gap: 8px;
}

.faq__group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  margin: 0 0 4px;
  padding-left: 2px;
}

.faq__list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
  color: #475569;
  line-height: 1.6;
}

.faq__list li {
  font-size: 14px;
}

.faq__cta {
  margin-top: 14px;
}

.faq {
  background: var(--card);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0;
  transition: box-shadow .15s ease;
}

.faq[open] {
  box-shadow: 0 8px 28px rgba(2,6,23,0.08);
}

.faq summary {
  cursor:pointer;
  font-weight:700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-2);
  flex-shrink: 0;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.faq[open] summary::after {
  content: "−";
}

.faq p {
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

/* ========================================================= FOOTER ========================================================= */
.footer {
  background: #0B1224;
  color: rgba(255,255,255,0.75);
  padding: 22px 0;
}

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

.footer__links {
  display:flex;
  gap:12px;
}

.footer__links a {
  color: rgba(255,255,255,0.75);
  transition: color .12s ease;
}

.footer__links a:hover {
  color: rgba(255,255,255,0.95);
}

/* ========================================================= MODAL (Popup) ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  display:none;
  z-index: 100;
}

.modal.is-open {
  display:block;
}

.modal__backdrop {
  position:absolute;
  inset:0;
  background: rgba(2,6,23,0.62);
}

.modal__dialog {
  position: relative;
  width: min(720px, calc(100% - 28px));
  margin: 64px auto;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 30px 90px rgba(2,6,23,0.55);
  padding: 18px 18px 16px;
}

.modal__header {
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  margin-bottom: 10px;
}

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

.modal__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #F1F5F9;
  border: 1px solid rgba(15,23,42,0.10);
  cursor:pointer;
  font-size: 16px;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.modal__close:hover {
  border-color: rgba(47,125,106,0.35);
  box-shadow: 0 0 0 4px rgba(47,125,106,0.12);
}

/* ========================================================= RESPONSIVE ========================================================= */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__right {
    align-items: flex-start;
  }

  .orderStack {
    max-width: 100%;
  }

  .cards3 {
    grid-template-columns: 1fr;
  }

  .ep__cards {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 4px;
  }

  .step__connector {
    transform: rotate(90deg);
    padding: 4px 0;
    margin-top: 0;
    align-self: flex-start;
    margin-left: 4px;
  }


  .jobCards {
    grid-template-columns: 1fr;
  }

  .compare {
    grid-template-columns: 1fr;
  }

  .compare__head--bad,
  .compare__item--bad,
  .compare__arrow {
    display: none;
  }

  .compare__head--good {
    padding-top: 4px;
  }

  .terms {
    grid-template-columns: 1fr;
  }

  .modal__dialog {
    margin: 24px auto;
  }
}

@media (max-width: 760px) {
  .nav {
    display:none;
  }

  .topbar__cta {
    display:none;
  }

  .burger {
    display:flex;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero__buttons {
    flex-direction:column;
    align-items:stretch;
  }

  .hero__buttons .btn {
    width:100%;
  }

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

  .hero__meta span:not(:last-child)::after {
    display: none;
  }

  .trust-bar__inner {
    justify-content: flex-start;
  }

  .trust-stat {
    width: 50%;
    padding: 10px 16px;
    align-items: flex-start;
  }

  .trust-divider {
    display: none;
  }

  .split-title {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .trust-stat {
    width: 100%;
  }

  .orderStack {
    height: 200px;
  }

  .orderCard--back1 {
    bottom: 44px;
    left: 12px;
    right: 12px;
  }

  .orderCard--back2 {
    bottom: 84px;
    left: 24px;
    right: 24px;
  }

  .orderCard {
    padding: 14px 16px;
    gap: 12px;
  }
}
