/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --p:     #6366F1;
  --p-d:   #4F46E5;
  --p-l:   #EEF2FF;
  --dark:  #0A0A14;
  --text:  #111827;
  --muted: #4B5563;
  --light: #F9FAFB;
  --gray:  #F3F4F6;
  --white: #fff;
  --brd:   #E5E7EB;
  --r:     12px;
  --font:  'Inter', -apple-system, sans-serif;
}

/* ═══════════════════════════════════
   BASE
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--muted); }

.grad {
  background: linear-gradient(135deg, var(--p) 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════
   LAYOUT
═══════════════════════════════════ */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--gray { background: var(--gray); }
.section--dark { background: var(--dark); }

/* ═══════════════════════════════════
   TAG / LABEL
═══════════════════════════════════ */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--p);
  background: var(--p-l);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.tag--light { background: rgba(99,102,241,.15); color: #A5B4FC; border-color: rgba(99,102,241,.25); }

/* ═══════════════════════════════════
   SECTION HEAD
═══════════════════════════════════ */
.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.sec-head h2 { margin-bottom: 12px; }
.sec-head p  { font-size: 1.05rem; }
.sec-head--light h2 { color: var(--white); }
.sec-head--light p  { color: #9CA3AF; }

.sec-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: opacity .18s, transform .18s, box-shadow .18s;
  text-align: center;
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--p) 0%, #8B5CF6 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(99,102,241,.3);
}
.btn--primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,102,241,.4); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--brd);
}
.btn--ghost:hover { border-color: var(--p); color: var(--p); }

.btn--full { width: 100%; justify-content: center; min-height: 54px; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled {
  border-bottom-color: var(--brd);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.logo strong { font-weight: 900; color: var(--p); }
.logo--white { color: var(--white); }
.logo--white strong { color: #A5B4FC; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__cta {
  background: linear-gradient(135deg, var(--p), #8B5CF6);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav__cta:hover { opacity: .88; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--brd);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  transition: border-color .2s, box-shadow .2s;
}
.lang-toggle:hover { border-color: var(--p); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--brd);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 140px;
  z-index: 200;
  animation: pop-in .18s ease;
}
.lang-menu.open { display: block; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font);
  transition: background .15s;
}
.lang-btn:hover { background: var(--gray); }
.lang-btn.active { color: var(--p); font-weight: 700; background: var(--p-l); }

/* RTL support */
[dir="rtl"] .hero__trust li,
[dir="rtl"] .contact__info-row,
[dir="rtl"] .svc-card__result,
[dir="rtl"] .why-item { flex-direction: row-reverse; }
[dir="rtl"] .b-item__arrow { transform: rotate(180deg); }
[dir="rtl"] .b-item:hover .b-item__arrow { transform: rotate(180deg) translateX(-4px); }
[dir="rtl"] .step { flex-direction: row-reverse; }
[dir="rtl"] .steps::before { left: auto; right: 23px; }
[dir="rtl"] .footer__bottom-row { flex-direction: row-reverse; }
[dir="rtl"] .form-ok { direction: rtl; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 98;
}
.nav-overlay.visible { display: block; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  background: var(--white);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--brd);
  overflow: hidden;
  position: relative;
}
/* subtle bg dot pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text { max-width: 560px; }

.hero__text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
}

/* Browser Mockup */
.hero__visual {
  position: relative;
}

.mockup {
  background: var(--white);
  border: 1.5px solid var(--brd);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray);
  border-bottom: 1px solid var(--brd);
}
.mockup__bar span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
}
.mockup__bar span:nth-child(1) { background: #FCA5A5; }
.mockup__bar span:nth-child(2) { background: #FCD34D; }
.mockup__bar span:nth-child(3) { background: #86EFAC; }

.mockup__url {
  flex: 1;
  margin-left: 8px;
  background: var(--white);
  border: 1px solid var(--brd);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  color: var(--muted);
  font-family: monospace;
}
.mockup__body { padding: 20px; }
.mockup__hero-block {
  background: linear-gradient(135deg, var(--p-l), #F3E8FF);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup__line {
  height: 10px;
  border-radius: 6px;
  background: rgba(99,102,241,.3);
}
.mockup__line--h  { width: 80%; height: 14px; background: rgba(99,102,241,.4); }
.mockup__line--short { width: 55%; }
.mockup__line--btn { width: 40%; height: 28px; background: var(--p); border-radius: 8px; margin-top: 4px; }
.mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup__card {
  height: 60px;
  background: var(--gray);
  border-radius: 8px;
  border: 1px solid var(--brd);
}

/* Floating badges on mockup */
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  animation: badge-float 4s ease-in-out infinite;
  will-change: transform;
}
.hero__badge--1 { bottom: -16px; left: -20px; animation-delay: 0s; }
.hero__badge--2 { top: -16px;    right: -10px; animation-delay: 2s; }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.hero__badge-icon { font-size: 1.4rem; }
.hero__badge strong { display: block; font-size: .82rem; font-weight: 700; color: var(--text); }
.hero__badge small  { font-size: .72rem; color: var(--muted); }

/* ═══════════════════════════════════
   STATS
═══════════════════════════════════ */
.stats {
  border-bottom: 1px solid var(--brd);
  padding: 32px 0;
  background: var(--white);
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.stat strong {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--p), #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--brd);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--brd);
  border-top: 3px solid var(--p);
  border-radius: var(--r);
  padding: 32px;
  transition: box-shadow .18s, transform .18s;
  will-change: transform;
}
.svc-card:hover {
  box-shadow: 0 10px 40px rgba(99,102,241,.1);
  transform: translateY(-2px);
}

.svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--p-l);
  color: var(--p);
  border-radius: 10px;
  margin-bottom: 18px;
}

.svc-card h3 { margin-bottom: 8px; }
.svc-card p  { font-size: .925rem; line-height: 1.65; flex: 1; }

.svc-card__result {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--brd);
  font-size: .82rem;
  font-weight: 600;
  color: #16A34A;
}

/* ═══════════════════════════════════
   BRANCHEN
═══════════════════════════════════ */
.branchen {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--brd);
  border-radius: var(--r);
  overflow: hidden;
}

.b-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--brd);
  border-left: 4px solid var(--c, var(--p));
  transition: background .15s, padding-left .15s;
  cursor: pointer;
}
.b-item:last-child { border-bottom: none; }
.b-item:hover { background: #FAFAFE; padding-left: 28px; }

.b-item__emoji {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.b-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.b-item__text strong {
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
}
.b-item__text span {
  font-size: .84rem;
  color: var(--muted);
}
.b-item__arrow {
  color: var(--c, var(--p));
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s;
}
.b-item:hover .b-item__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════
   ABLAUF / STEPS
═══════════════════════════════════ */
.steps {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom, var(--p), #A855F7, var(--brd));
}

.step {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.step--last { padding-bottom: 0; }

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--p);
  font-size: .9rem;
  font-weight: 800;
  color: var(--p);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white);
}
.step__num--final {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--p), #A855F7);
  border-color: transparent;
  color: #fff;
}

.step__content { padding-top: 10px; }
.step__content h3 { margin-bottom: 6px; }
.step__content p  { font-size: .925rem; }

/* ═══════════════════════════════════
   WARUM / WHY
═══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 22px;
}
.why-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(99,102,241,.2);
  border-radius: 8px;
  color: #A5B4FC;
}
.why-item h3 { color: var(--white); font-size: .95rem; margin-bottom: 5px; }
.why-item p  { color: #9CA3AF; font-size: .875rem; line-height: 1.55; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-wrap { max-width: 700px; }

.faq-list {
  border: 1.5px solid var(--brd);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--brd);
}
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: .975rem;
  cursor: pointer;
  list-style: none;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--gray); }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--p);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 4px 24px 20px;
  font-size: .925rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact {
  background: linear-gradient(160deg, #F5F3FF 0%, #FDF4FF 60%, var(--white) 100%);
  border-top: 1px solid var(--brd);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact__left .tag { margin-bottom: 12px; }
.contact__left h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact__left > p { font-size: .975rem; margin-bottom: 32px; }

.contact__info { display: flex; flex-direction: column; gap: 14px; }
.contact__info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}
.contact__info-row a { color: var(--muted); }
.contact__info-row a:hover { color: var(--p); }
.contact__info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p-l);
  color: var(--p);
  border-radius: 8px;
}

/* Form */
.contact__form {
  background: var(--white);
  border: 1.5px solid var(--brd);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 32px rgba(99,102,241,.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  background: var(--light);
  border: 1.5px solid var(--brd);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #9CA3AF; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--p);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.field input.error,
.field textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: #9CA3AF;
}
.form-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
  border-radius: 16px;
  padding: 32px 20px;
  animation: pop-in .35s ease;
}
.form-ok.visible { display: flex; }
@keyframes pop-in {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
.form-ok__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  color: #16A34A;
}
.form-ok strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #166534;
}
.form-ok span {
  font-size: .875rem;
  color: #15803D;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer__brand .logo { margin-bottom: 14px; }
.footer__brand p { font-size: .875rem; color: #6B7280; max-width: 280px; line-height: 1.65; }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__nav h4 {
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
}
.footer__nav a {
  display: block;
  font-size: .875rem;
  color: #6B7280;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p,
.footer__bottom a {
  font-size: .82rem;
  color: #6B7280;
}
.footer__bottom div { display: flex; gap: 20px; }
.footer__bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════
   STICKY CTA
═══════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--brd);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--p), #8B5CF6);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px;
  border-radius: var(--r);
}

/* ═══════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════ */
.to-top {
  position: fixed;
  bottom: 32px; right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--p), #8B5CF6);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover   { opacity: .88; }

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ═══════════════════════════════════
   FOCUS
═══════════════════════════════════ */
:focus-visible { outline: 2px solid var(--p); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 960px) {
  .section       { padding: 80px 0; }
  .hero          { padding: 60px 0 52px; }
  .hero__inner   { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__text    { max-width: 100%; }
  .hero__btns    { justify-content: center; }
  .hero__trust   { align-items: center; }
  .hero__visual  { max-width: 480px; margin: 0 auto; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .contact__inner{ grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .stat          { padding: 0 24px; }
  .wa-fab        { display: flex; }
}

@media (max-width: 680px) {
  html { font-size: 16px; }
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav__burger { display: flex; }
  .lang-toggle { padding: 5px 8px; font-size: .78rem; }
  .lang-menu { right: 0; }
  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
    border-bottom: 1px solid var(--brd);
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px !important;
    border-radius: var(--r) !important;
  }

  /* Hero */
  .hero { padding: 52px 0 44px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { display: none; }
  .hero__text h1 { font-size: 2.1rem; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero__trust { align-items: center; }

  /* Stats */
  .stats__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat         { padding: 16px 12px; border-right: 1px solid var(--brd); border-bottom: 1px solid var(--brd); text-align: center; }
  .stat:nth-child(odd)  { border-right: 1px solid var(--brd); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat-sep { display: none; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps::before { left: 19px; }
  .step__num { width: 40px; height: 40px; min-width: 40px; font-size: .85rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__form { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__nav { grid-template-columns: 1fr 1fr; }

  /* Sticky CTA & floating buttons */
  .sticky-cta { display: block; }
  .wa-fab     { bottom: 148px; right: 20px; }
  .to-top     { bottom: 88px; right: 20px; }

  /* Touch-friendly Branchen */
  .b-item { padding: 18px 16px; }
  .b-item:hover { padding-left: 22px; }

  /* FAQ */
  .faq-item summary { padding: 18px 16px; }
  .faq-item p       { padding: 4px 16px 18px; }

  /* Sec-head spacing */
  .sec-head { margin-bottom: 40px; }
}

@media (max-width: 420px) {
  .hero__text h1   { font-size: 1.85rem; }
  .stats__inner    { grid-template-columns: 1fr 1fr; }
  .footer__nav     { grid-template-columns: 1fr; }
  .contact__form   { padding: 20px 14px; }
}

/* ═══════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════ */
.wa-fab {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 20px;
  z-index: 89;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
