@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&display=swap');

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

:root {
  --ink:    #0a0a0a;
  --ink-2:  #3d3d3d;
  --ink-3:  #888;
  --ink-4:  #bbb;
  --paper:  #fafaf8;
  --paper-2:#f2f1ee;
  --paper-3:#e8e7e3;
  --accent: #1a5cff;
  --accent-soft: #eef2ff;
  --accent-2: #0038cc;
  --green:  #00b87a;
  --green-soft: #e6f9f3;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --sans:   'Inter', sans-serif;
  --display:'Bricolage Grotesque', sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 60px;
  background: rgba(250,250,248,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s;
}
.nav-logo { font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--ink-2); text-decoration: none; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-btn {
  font-size: 13px; font-weight: 600; color: #fff; font-family: var(--sans);
  background: var(--ink); border: none; border-radius: 8px;
  padding: 8px 18px; cursor: pointer; transition: background .15s;
}
.nav-btn:hover { background: var(--accent); }

/* ─── HERO ────────────────────────────────── */
.hero {
  padding: 120px 40px 80px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: var(--green-soft); border-radius: 20px;
  padding: 5px 14px; margin-bottom: 28px; text-transform: uppercase; letter-spacing: .06em;
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,184,122,.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,184,122,.4); }
  70%  { box-shadow: 0 0 0 8px rgba(0,184,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,184,122,0); }
}
.hero-title {
  font-family: var(--display); font-size: 62px; font-weight: 800;
  line-height: 1.02; letter-spacing: -2px; color: var(--ink); margin-bottom: 24px;
}
.hero-title .line-2 { color: var(--accent); display: block; }
.hero-title .line-3 { color: var(--ink-3); font-weight: 600; display: block; font-size: 54px; }
.hero-desc { font-size: 17px; color: var(--ink-2); line-height: 1.8; max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 56px; }
.btn-cta {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--accent); border: none;
  border-radius: var(--r-sm); padding: 14px 28px; cursor: pointer;
  transition: background .15s, transform .15s;
}
.btn-cta:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: var(--ink-2); background: transparent;
  border: 1.5px solid var(--paper-3); border-radius: var(--r-sm);
  padding: 14px 24px; cursor: pointer; transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); }
.hero-trust { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-3); }
.trust-badges { display: flex; gap: 6px; }
.trust-badge {
  font-size: 11px; font-weight: 600; color: var(--ink-2);
  background: var(--paper-2); border-radius: 6px;
  padding: 4px 10px; border: 1px solid var(--paper-3);
}

/* ─── HERO PANEL ──────────────────────────── */
.hero-panel {
  background: var(--ink); border-radius: var(--r-xl); padding: 32px;
  position: relative; overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,255,.3) 0%, transparent 70%);
  pointer-events: none;
}
.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.panel-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .04em; text-transform: uppercase; }
.panel-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: rgba(0,184,122,.12); border-radius: 20px; padding: 4px 12px;
}
.panel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.mockup-bar {
  background: rgba(255,255,255,.06); border-radius: 10px 10px 0 0;
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.m-dot { width: 9px; height: 9px; border-radius: 50%; }
.m-dot-r { background: #ff5f57; }
.m-dot-y { background: #febc2e; }
.m-dot-g { background: #28c840; }
.m-url {
  flex: 1; margin-left: 10px;
  background: rgba(255,255,255,.06); border-radius: 4px;
  padding: 3px 10px; font-size: 11px; color: rgba(255,255,255,.35);
}
.mockup-body { background: rgba(255,255,255,.04); border-radius: 0 0 10px 10px; padding: 16px; margin-bottom: 20px; }
.m-nav { height: 6px; background: var(--accent); border-radius: 3px; width: 45%; margin-bottom: 14px; opacity: .9; }
.m-hero { height: 48px; background: linear-gradient(135deg, rgba(26,92,255,.3), rgba(26,92,255,.1)); border-radius: 6px; margin-bottom: 12px; }
.m-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.m-card { height: 32px; background: rgba(255,255,255,.05); border-radius: 5px; border: 1px solid rgba(255,255,255,.06); }
.m-card.tall { height: 48px; }
.m-footer { display: flex; gap: 6px; }
.m-line { flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; }
.m-line.short { flex: 0 0 40%; }
.panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.p-stat {
  background: rgba(255,255,255,.05); border-radius: 12px;
  padding: 14px 16px; border: 1px solid rgba(255,255,255,.07);
}
.p-stat-num { font-family: var(--display); font-size: 24px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.p-stat-num.accent { color: var(--accent); }
.p-stat-label { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 500; }
.panel-langs { display: flex; gap: 6px; margin-top: 10px; }
.lang-chip {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07); border-radius: 6px; padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.lang-chip.active { color: var(--accent); background: rgba(26,92,255,.15); border-color: rgba(26,92,255,.3); }

/* ─── STRIP ───────────────────────────────── */
.strip { background: var(--ink); overflow: hidden; padding: 14px 0; }
.strip-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.35);
  letter-spacing: .04em; text-transform: uppercase; display: flex; align-items: center; gap: 16px;
}
.strip-item::after { content: '·'; color: rgba(255,255,255,.15); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── NUMBERS ─────────────────────────────── */
.numbers {
  max-width: 1200px; margin: 64px auto 0;
  padding: 0 40px;
}
.numbers-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--paper-3); border-radius: var(--r-lg); overflow: hidden;
}
.num-cell { background: var(--paper); padding: 36px 32px; text-align: center; }
.num-cell:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.num-cell:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.num-value { font-family: var(--display); font-size: 44px; font-weight: 800; color: var(--ink); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.num-value sup { font-size: 24px; vertical-align: super; }
.num-label { font-size: 13px; color: var(--ink-3); font-weight: 500; line-height: 1.5; }

/* ─── SECTIONS ────────────────────────────── */
.section { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--accent); background: var(--accent-soft);
  border-radius: 6px; padding: 4px 12px;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.section-title {
  font-family: var(--display); font-size: 42px; font-weight: 800;
  color: var(--ink); letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 14px; max-width: 600px;
}
.section-sub { font-size: 16px; color: var(--ink-2); line-height: 1.75; max-width: 540px; margin-bottom: 56px; }
hr.divider { border: none; border-top: 1px solid var(--paper-3); max-width: 1200px; margin: 0 auto; }

/* ─── LEISTUNGEN ──────────────────────────── */
.services { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.s-card {
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: var(--r-lg); padding: 32px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.s-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.s-card:hover { border-color: rgba(26,92,255,.25); box-shadow: var(--shadow); transform: translateY(-3px); }
.s-card:hover::before { opacity: 1; }
.s-num { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--paper-3); margin-bottom: 20px; position: relative; }
.s-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative;
}
.s-icon svg { width: 22px; height: 22px; }
.s-title { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -.3px; position: relative; }
.s-desc { font-size: 14px; color: var(--ink-2); line-height: 1.7; position: relative; }
.s-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; position: relative; }
.s-tag { font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border-radius: 5px; padding: 3px 9px; }

/* ─── PROZESS ─────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-grid::after {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: linear-gradient(90deg, var(--accent) 0%, var(--paper-3) 100%);
}
.p-step { padding: 0 16px; text-align: center; }
.p-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--paper-3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--ink-3);
}
.p-step:first-child .p-step-num { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.p-step-title { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -.2px; }
.p-step-desc { font-size: 13px; color: var(--ink-3); line-height: 1.65; }

/* ─── REFERENZ ────────────────────────────── */
.ref-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.ref-main {
  background: var(--ink); border-radius: var(--r-xl); padding: 44px;
  color: #fff; position: relative; overflow: hidden;
}
.ref-main::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,255,.2) 0%, transparent 70%);
  pointer-events: none;
}
.ref-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.ref-name { font-family: var(--display); font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.ref-city { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.ref-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 32px; }
.ref-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.ref-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.ref-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,184,122,.2); border: 1px solid rgba(0,184,122,.4);
  display: flex; align-items: center; justify-content: center;
}
.ref-check svg { width: 10px; height: 10px; }
.ref-link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff; text-decoration: none;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 12px 20px; transition: background .2s;
}
.ref-link-btn:hover { background: rgba(255,255,255,.14); }
.ref-side { display: flex; flex-direction: column; gap: 16px; }
.ref-side-card { background: var(--paper); border: 1px solid var(--paper-3); border-radius: var(--r-lg); padding: 28px; }
.ref-side-card.next {
  border-style: dashed; background: transparent;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 44px 28px; justify-content: center;
}
.ref-side-num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink-4); margin-bottom: 14px; }
.ref-side-title { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -.3px; }
.ref-side-desc { font-size: 13px; color: var(--ink-3); line-height: 1.65; }
.ref-chip { display: inline-flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }
.ref-chip-item { font-size: 11px; font-weight: 600; color: var(--ink-3); background: var(--paper-2); border-radius: 5px; padding: 3px 9px; }
.next-icon {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px dashed var(--paper-3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.next-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; letter-spacing: -.3px; }
.next-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; margin-bottom: 20px; }
.next-btn {
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--accent); border: none; border-radius: 8px;
  padding: 10px 22px; cursor: pointer; font-family: var(--sans); transition: background .15s;
}
.next-btn:hover { background: var(--accent-2); }

/* ─── WARUM ───────────────────────────────── */
.warum-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.w-card { border-radius: var(--r-lg); padding: 32px; border: 1px solid var(--paper-3); background: var(--paper); transition: border-color .2s; }
.w-card:hover { border-color: rgba(26,92,255,.2); }
.w-card.dark { background: var(--ink); border-color: transparent; }
.w-num { font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--paper-3); line-height: 1; margin-bottom: 16px; letter-spacing: -2px; }
.w-card.dark .w-num { color: rgba(255,255,255,.1); }
.w-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -.3px; }
.w-card.dark .w-title { color: #fff; }
.w-desc { font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.w-card.dark .w-desc { color: rgba(255,255,255,.55); }

/* ─── PAKETE ──────────────────────────────── */
.pricing-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pr-card {
  border-radius: var(--r-lg); padding: 32px;
  background: var(--paper); border: 1px solid var(--paper-3);
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.pr-card:hover { border-color: rgba(26,92,255,.2); box-shadow: var(--shadow); }
.pr-card.featured { background: var(--accent); border-color: var(--accent); color: #fff; }
.pr-card.featured:hover { box-shadow: 0 8px 32px rgba(26,92,255,.35); }
.pr-popular {
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.2); color: #fff;
  border-radius: 6px; padding: 4px 12px;
  text-transform: uppercase; letter-spacing: .06em;
  display: inline-block; margin-bottom: 16px; align-self: flex-start;
}
.pr-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 12px; }
.pr-card.featured .pr-name { color: rgba(255,255,255,.7); }
.pr-price { font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.pr-card.featured .pr-price { color: #fff; }
.pr-period { font-size: 12px; color: var(--ink-4); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--paper-3); line-height: 1.6; }
.pr-card.featured .pr-period { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.2); }
.pr-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 0; }
.pr-features li {
  font-size: 13px; color: var(--ink-2); padding: 9px 0;
  border-bottom: 1px solid var(--paper-3);
  display: flex; align-items: center; gap: 10px;
}
.pr-features li:last-child { border-bottom: none; }
.pr-card.featured .pr-features li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.pr-check { color: var(--accent); font-weight: 700; font-size: 14px; }
.pr-card.featured .pr-check { color: rgba(255,255,255,.9); }
.pr-cta {
  margin-top: 24px; padding: 13px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; font-family: var(--sans); cursor: pointer;
  transition: all .15s; background: transparent; color: var(--ink);
  border: 1.5px solid var(--paper-3);
}
.pr-cta:hover { border-color: var(--accent); color: var(--accent); }
.pr-card.featured .pr-cta { background: #fff; color: var(--accent); border: none; }
.pr-card.featured .pr-cta:hover { background: rgba(255,255,255,.9); }

/* ─── FAQ ─────────────────────────────────── */
.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left .section-title { font-size: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--paper-3); padding: 22px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--paper-3); }
.faq-q {
  font-family: var(--display); font-size: 16px; font-weight: 700;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -.2px;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper-2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, transform .2s;
  font-size: 16px; color: var(--ink-3); font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--ink-2); line-height: 1.75; padding-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ─── KONTAKT ─────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-title { font-size: 38px; }
.contact-sub { font-size: 16px; color: var(--ink-2); line-height: 1.75; margin-bottom: 36px; }
.c-items { display: flex; flex-direction: column; gap: 14px; }
.c-item { display: flex; align-items: center; gap: 14px; }
.c-item-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--paper-2); border: 1px solid var(--paper-3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-item-icon svg { width: 16px; height: 16px; }
.c-item-text { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.c-item-sub { font-size: 12px; color: var(--ink-4); }
.langs-row { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.lang-pill { font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--paper-3); color: var(--ink-2); background: var(--paper); }
.lang-pill.de { border-color: #000; color: #000; }
.lang-pill.tr { border-color: #E30A17; color: #E30A17; }
.lang-pill.ar { border-color: #007A3D; color: #007A3D; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg > label { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.fg-required { color: var(--accent); }
.fg-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink-4); font-size: 10px; }
.fg input, .fg textarea, .fg select {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--paper-3);
  border-radius: var(--r-sm); padding: 12px 16px; outline: none;
  transition: border-color .15s; width: 100%; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--accent); }
.fg input:invalid:not(:placeholder-shown) { border-color: #f87171; }
.fg textarea { height: 110px; resize: none; }

/* ─── Radio Buttons ───────────────────────── */
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-option { cursor: pointer; }
.radio-option input[type="radio"] { display: none; }
.radio-box {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  border: 1.5px solid var(--paper-3); border-radius: var(--r-sm);
  padding: 9px 16px; transition: all .15s; background: var(--paper);
  cursor: pointer;
}
.radio-box svg { flex-shrink: 0; color: var(--ink-3); transition: color .15s; }
.radio-option input[type="radio"]:checked + .radio-box {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-soft);
}
.radio-option input[type="radio"]:checked + .radio-box svg { color: var(--accent); }
.radio-option:hover .radio-box { border-color: var(--ink-3); }

/* ─── Datenschutz Checkbox ────────────────── */
.fg-check { margin-bottom: 16px; }
.check-label {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
}
.check-label input[type="checkbox"] { display: none; }
.check-box {
  width: 20px; height: 20px; min-width: 20px; border-radius: 5px;
  border: 1.5px solid var(--paper-3); background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; margin-top: 1px;
}
.check-label input[type="checkbox"]:checked + .check-box {
  background: var(--accent); border-color: var(--accent);
}
.check-label input[type="checkbox"]:checked + .check-box::after {
  content: ''; display: block;
  width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.check-text {
  font-size: 12px; color: var(--ink-3); line-height: 1.65;
}
.check-text a { color: var(--accent); text-decoration: none; }
.check-text a:hover { text-decoration: underline; }

/* ─── Form submit & note ──────────────────── */
.form-submit {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--accent); border: none;
  border-radius: var(--r-sm); padding: 15px 28px; cursor: pointer;
  width: 100%; margin-top: 4px; transition: background .15s;
}
.form-submit:hover { background: var(--accent-2); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--ink-4); line-height: 1.65; margin-top: 12px; }
.form-note .fg-required { color: #888; }

/* ─── FOOTER ──────────────────────────────── */
footer { background: var(--ink); padding: 48px 40px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.f-logo { font-family: var(--display); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; }
.f-logo span { color: var(--accent); }
.f-tagline { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.6; }
.f-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 14px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.f-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
}
.f-copy { font-size: 13px; color: rgba(255,255,255,.25); }
.f-legal { display: flex; gap: 24px; }
.f-legal a { font-size: 13px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .15s; }
.f-legal a:hover { color: rgba(255,255,255,.55); }

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left { animation: fadeUp .7s ease both; }
.hero-panel { animation: fadeUp .7s .15s ease both; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-title { font-size: 44px; }
  .hero-panel { display: none; }
  .numbers-inner { grid-template-columns: 1fr 1fr; border-radius: var(--r-md); }
  .num-cell:first-child { border-radius: var(--r-md) 0 0 0; }
  .num-cell:last-child  { border-radius: 0 0 var(--r-md) 0; }
  .numbers { padding: 40px 24px 0; }
  .section { padding: 64px 24px; }
  .services { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::after { display: none; }
  .ref-layout { grid-template-columns: 1fr; }
  .warum-layout { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav { padding: 0 24px; }
}
