/* ==========================================
   WIBO – Folierung
   Light & Clean Stylesheet
   ========================================== */

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

:root {
  --yellow: #f0b429;
  --yellow-light: #fef3c7;
  --yellow-dark: #d97706;
  --black: #0f0f0f;
  --gray-900: #1a1a1a;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --transition: 0.22s ease;
  --max-width: 1140px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  color: var(--black);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-gap) 0; }
.section--gray { background: var(--gray-50); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section__header p {
  color: var(--gray-500);
  font-size: 17px;
  margin-top: 12px;
}
.section__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--primary:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--black);
  background: var(--gray-50);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(255,255,255,0);
}
.header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--black); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__content h1 {
  margin-bottom: 20px;
  max-width: 680px;
}
.highlight {
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
}
.hero__content > p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}
.badge svg {
  width: 16px;
  height: 16px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.hero__deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.deco-circle {
  border-radius: 50%;
  position: absolute;
}
.deco-circle--1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
  top: -280px;
  right: 0;
}
.deco-circle--2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(240,180,41,0.12) 0%, transparent 70%);
  top: -80px;
  right: 120px;
}

/* ---- LEISTUNGEN ---- */
.services {
  display: grid;
  gap: 16px;
}
.service {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service--featured {
  background: var(--black);
  border-color: var(--black);
}
.service--featured h3,
.service--featured p,
.service--featured li {
  color: rgba(255,255,255,0.85) !important;
}
.service--featured h3 {
  color: var(--white) !important;
}
.service--featured .service__icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.1);
  color: var(--yellow);
}
.service__icon {
  width: 52px;
  height: 52px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}
.service__icon svg {
  width: 22px;
  height: 22px;
}
.service__body {
  flex: 1;
}
.service__body h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.service__body > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.65;
}
.service__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.service__list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service__list li::before {
  content: '–';
  color: var(--yellow-dark);
  font-weight: 700;
}

/* ---- VORTEILE ---- */
.vorteile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vorteil {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.vorteil:hover {
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
}
.vorteil__icon {
  width: 40px;
  height: 40px;
  color: var(--black);
  margin-bottom: 16px;
}
.vorteil__icon svg { width: 100%; height: 100%; }
.vorteil h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.vorteil p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- ZAHLEN ---- */
.zahlen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.zahl {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.zahl strong {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.zahl span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ---- ABLAUF ---- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.step__arrow {
  font-size: 1.4rem;
  color: var(--gray-300);
  flex-shrink: 0;
  padding: 0 8px;
  align-self: center;
  margin-top: 0;
}
.step__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- KONTAKT ---- */
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.kontakt__text .section__tag {
  margin-bottom: 16px;
}
.kontakt__text h2 {
  margin-bottom: 16px;
}
.kontakt__text > p {
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
}
.kontakt__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kontakt__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.kontakt__detail-icon {
  width: 42px;
  height: 42px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}
.kontakt__detail-icon svg { width: 18px; height: 18px; }
.kontakt__detail strong {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 2px;
}
.kontakt__detail span {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

/* FORM */
.kontakt__form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.form__group input,
.form__group textarea,
.form__group select {
  background: var(--gray-50);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--gray-300);
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,15,15,0.07);
}
.form__note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 12px;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 16px;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; margin: 0; }
.form-success p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin: 0; max-width: 340px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer .logo { color: var(--white); margin-bottom: 14px; display: inline-block; }
.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 220px;
  color: rgba(255,255,255,0.45);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer__col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .vorteile__grid { grid-template-columns: repeat(2, 1fr); }
  .zahlen__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav--open { display: flex; }
  .nav a { font-size: 1.3rem; color: var(--black); }
  .nav-toggle { display: flex; z-index: 101; }
  .header .btn { display: none; }

  .service {
    flex-direction: column;
    gap: 18px;
  }

  .steps {
    flex-direction: column;
    gap: 12px;
  }
  .step__arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
  }

  .kontakt__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .zahlen__grid { grid-template-columns: repeat(2, 1fr); }
  .vorteile__grid { grid-template-columns: 1fr; }
  .kontakt__form { padding: 24px 18px; }
}

/* ---- GLOBAL MOBILE: image service grid ---- */
@media (max-width: 768px) {
  .img-service-grid {
    grid-template-columns: 1fr !important;
  }
  .img-service-card:first-child {
    grid-column: span 1 !important;
  }
  .hero__deco { display: none; }
  .hero__content { padding: 100px 24px 60px; }
}

/* ==========================================
   DROPDOWN NAV
   ========================================== */

.nav__dropdown { position: relative; }

/* Invisible bridge to prevent hover gap between trigger and menu */
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
}

.nav__trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__trigger:hover,
.nav__dropdown.open .nav__trigger { color: var(--black); }

.nav__trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.nav__dropdown.open .nav__trigger svg { transform: rotate(180deg); }

.dropdown__menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 8px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  z-index: 200;
}
.nav__dropdown.open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.dropdown__link:hover { background: var(--gray-50); }

.dropdown__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background var(--transition), color var(--transition);
}
.dropdown__link:hover .dropdown__icon {
  background: var(--yellow-light);
  color: var(--yellow-dark);
}
.dropdown__icon svg { width: 18px; height: 18px; }

.dropdown__link strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.dropdown__link span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ==========================================
   SERVICE PAGES
   ========================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--black); }
.breadcrumb__sep { color: var(--gray-300); }

/* Page Hero */
.page-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 136px 0 80px;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero__text .section__tag { margin-bottom: 16px; }
.page-hero__text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.page-hero__text p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.page-hero__visual {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.page-hero__visual svg {
  width: 80px;
  height: 80px;
  color: #e5e7eb;
}
.page-hero__visual figcaption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d1d5db;
}

/* Intro 2-col */
.sp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-intro__text h2 { margin-bottom: 18px; }
.sp-intro__text p { color: var(--gray-500); margin-bottom: 16px; line-height: 1.7; }
.sp-intro__text strong { color: var(--black); }

.sp-intro__visual {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
}
.sp-intro__visual svg { width: 64px; height: 64px; }

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* Benefits 2-col */
.sp-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-benefits__text .section__tag { margin-bottom: 16px; }
.sp-benefits__text h2 { margin-bottom: 8px; }
.sp-benefits__text > p { color: var(--gray-500); margin-bottom: 24px; }

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
}
.benefit-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.benefit-check svg { width: 11px; height: 11px; color: var(--white); }

.sp-benefits__visual {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
}
.sp-benefits__visual svg { width: 64px; height: 64px; }

/* Einsatzbereiche */
.einsatz-section h2 { margin-bottom: 10px; }
.einsatz-section > p { color: var(--gray-500); margin-bottom: 32px; }

.einsatz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.einsatz-pill {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
  cursor: default;
}
.einsatz-pill:hover { border-color: var(--black); color: var(--black); }

/* Service CTA */
.sp-cta {
  background: var(--black);
  padding: var(--section-gap) 0;
  text-align: center;
}
.sp-cta h2 { color: var(--white); margin-bottom: 14px; }
.sp-cta p {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn--yellow {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  color: var(--black);
  font-size: 16px;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}

/* ==========================================
   RESPONSIVE - ADDITIONS
   ========================================== */

@media (max-width: 768px) {
  .page-hero__grid,
  .sp-intro,
  .sp-benefits {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-hero__visual,
  .sp-intro__visual,
  .sp-benefits__visual { display: none; }
  .page-hero__text h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .page-hero__text p {
    max-width: 100%;
    font-size: 15px;
  }
  .page-hero {
    padding: 100px 0 56px;
    overflow-x: hidden;
  }

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

  /* Dropdown inline in mobile menu */
  .nav--open .nav__dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav--open .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    margin-top: 8px;
    min-width: unset;
    width: 280px;
  }
  .nav--open .nav__trigger { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}
