/* ============================================================
   S&R LOGISTICS SERVICES GmbH – Stylesheet
   Font: Inter (alle Schriften)
   Farben: Anthrazit #2d3436, Schwarz #1a1a1a, Schwarz-Weiß
   ============================================================ */

/* Self-hosted fonts – no external Google Fonts connection */
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/montserrat.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Material Symbols Outlined';
  src: url('../assets/fonts/material-symbols-outlined.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
  font-display: block;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

:root {
  --anthrazit:       #2d3436;
  --anthrazit-dark:  #1a1a1a;
  --anthrazit-mid:   #3d4347;
  --anthrazit-light: #4a5568;
  --anthrazit-pale:  #f0f2f3;
  --anthrazit-border:#dde1e3;
  --accent:          #003f8a;
  --accent-light:    rgba(0,63,138,0.75);
  --white:           #ffffff;
  --off-white:       #f8f9fa;
  --gray-100:        #f1f3f4;
  --gray-200:        #e2e6ea;
  --gray-400:        #94a3b8;
  --gray-600:        #475569;
  --gray-900:        #0f172a;
  --radius:          12px;
  --radius-pill:     9999px;
  --shadow:          0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg:       0 12px 48px rgba(45,52,54,0.2);
  --transition:      0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.01em; text-transform: uppercase;
}
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.1rem; font-weight: 700; text-transform: none; font-family: 'Inter', sans-serif; }
.accent       { color: var(--accent); }
.accent-light { color: var(--accent-light); }

.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #003f8a; margin-bottom: 12px;
  background: rgba(0,63,138,0.08); padding: 6px 16px;
  border-radius: var(--radius-pill); border: 1.5px solid #003f8a;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header p { margin-top: 14px; color: var(--gray-600); font-size: 1rem; line-height: 1.65; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }

/* ── LUCIDE ──────────────────────────────── */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
svg { flex-shrink: 0; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.03em; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #ffffff; border-color: rgba(255,255,255,0.2); }
.btn-primary:hover { background: #00317a; border-color: #00317a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,63,138,0.3); }
.btn-white { background: var(--white); color: var(--anthrazit-dark); border-color: var(--white); }
.btn-white:hover { background: var(--anthrazit-pale); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-dark { background: transparent; color: var(--anthrazit); border-color: rgba(45,52,54,0.35); }
.btn-outline-dark:hover { background: rgba(45,52,54,0.06); border-color: var(--anthrazit); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ── LANGUAGE SWITCHER ───────────────────── */
.lang-switch {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill); padding: 5px 10px;
}
.lang-switch--mobile { display: none; }
.lang-btn {
  background: none; border: 2px solid transparent; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 0; opacity: 0.45; transition: all var(--transition);
  flex-shrink: 0;
}
.lang-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.lang-btn.active { opacity: 1; border-color: var(--white); }
.lang-btn:hover:not(.active) { opacity: 0.8; }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,26,0.97); backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  padding: 28px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: 0; }
.nav-logo-tagline { display: flex; flex-direction: column; gap: 4px; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 10px; }
.nav-logo-tagline span { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-logo-img { height: 36px; width: auto; }
.nav-logo-mark {
  width: 48px; height: 48px; background: var(--white); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 22px;
  color: var(--anthrazit-dark); letter-spacing: -1px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text strong { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: 0.06em; color: var(--white); text-transform: uppercase; }
.nav-logo-text small { font-size: 0.58rem; letter-spacing: 0.14em; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 29px; }
.nav-links a { font-weight: 400; font-size: 1rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 6px;
  background: var(--accent) !important; color: #ffffff !important;
  padding: 14px 24px !important; border-radius: var(--radius-pill) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important; font-weight: 400 !important;
  font-size: 0.95rem !important; letter-spacing: 0.04em !important;
  text-transform: uppercase !important; transition: all var(--transition) !important;
}
.nav-cta:hover { background: #00317a !important; border-color: rgba(255,255,255,0.35) !important; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,63,138,0.4) !important; }
.nav-cta svg { width: 18px; height: 18px; }
.nav-right { display: flex; align-items: center; gap: 19px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; width: auto; height: auto; align-items: center; justify-content: center; margin-left: auto; flex-shrink: 0; }
.burger span { display: block; width: 32px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── MOBILE MENU ─────────────────────────── */
@keyframes slideIn { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(100%); } }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--anthrazit-dark); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
  padding: 0 40px;
}
.mobile-menu.open { display: flex; animation: slideIn 0.55s cubic-bezier(0.4,0,0.2,1) both; }
.mobile-menu.closing { animation: slideOut 0.45s cubic-bezier(0.4,0,0.2,1) both; }
.mobile-logo-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.mobile-logo-img { height: 32px; width: auto; }
.mobile-logo-mark {
  width: 56px; height: 56px; background: var(--white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 22px; color: var(--anthrazit-dark); letter-spacing: -1px;
}
.mobile-logo-text strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.mobile-logo-text small { font-size: 0.6rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 320px; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu ul li:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-link { display: block; font-size: 1.2rem; font-weight: 300; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; transition: color var(--transition); padding: 16px 0; }
.mobile-link:hover { color: rgba(255,255,255,0.5); }
.cta-mobile { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: #ffffff; padding: 14px 36px; border-radius: var(--radius-pill); font-size: 1rem !important; }
.cta-mobile svg { width: 18px; height: 18px; }
.mobile-cta { display: inline-flex; align-items: center; gap: 10px; background: #003f8a; color: #ffffff; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.04em; padding: 18px 44px; border-radius: var(--radius-pill); margin-top: 32px; transition: background var(--transition); }
.mobile-cta:hover { background: #00317a; }
.mobile-cta svg { width: 18px; height: 18px; }
.mobile-bottom { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 24px; }
.mobile-lang { display: flex; gap: 8px; }
.mobile-lang .lang-btn { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 8px 20px; font-size: 0.875rem; }
.mobile-lang .lang-btn.active { background: var(--white); color: var(--anthrazit-dark); }
.mobile-phone { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.mobile-phone:hover { color: var(--white); }
.mobile-phone svg { width: 15px; height: 15px; }
.burger span { transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────── */
.hero { min-height: 100vh; background: var(--anthrazit-dark); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.hero-main { flex: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 110px); }
.hero-bg-grid { display: none; }
.hero-glow { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 144px 64px 72px 80px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); padding: 7px 14px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; margin-top: 40px; margin-bottom: 24px; animation: fadeUp 0.6s ease both; width: fit-content; }
.hero-badge svg { width: 15px; height: 15px; }
.hero-title { color: var(--white); margin-bottom: 22px; animation: fadeUp 0.6s 0.1s ease both; }
.hero-title__pre { font-family: 'Inter', sans-serif; font-size: clamp(1.17rem, 2.08vw, 1.56rem); font-weight: 500; color: rgba(255,255,255,0.65); display: block; margin-top: 24px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
.hero-title__main { font-size: clamp(2rem, 3.36vw, 3.36rem); line-height: 1.1; display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; white-space: nowrap; }
.hero-title__sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.6); display: block; margin-top: 20px; font-weight: 300; }
.hero-title .accent { color: #ffffff; font-weight: 400; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.15rem; line-height: 1.75; margin-bottom: 36px; max-width: 85%; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; margin-bottom: 20px; }
.hero-btn { flex: 0 1 auto; justify-content: center; padding: 18px 40px; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.05em; border-width: 1.5px; }
.hero-trust { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; padding-top: 32px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); margin-bottom: 24px; animation: fadeUp 0.6s 0.45s ease both; }
.trust-google { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 8px 12px 8px 8px; flex: 0 0 auto; width: fit-content; }
.trust-google-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 6px; }
.trust-google-icon svg { width: 18px; height: 18px; }
.trust-google-right { display: flex; align-items: center; }
.trust-google-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-google-score { color: var(--white); font-weight: 700; font-size: 0.8rem; }
.trust-google-stars { display: flex; gap: 2px; }
.trust-google-stars svg { width: 15px; height: 15px; }
.trust-google-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.trust-dguv { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 13px 12px 13px 8px; flex: 0 0 auto; width: fit-content; }
.trust-dguv-label { background: #003f8a; color: #ffffff; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; padding: 5px 10px; border-radius: 8px; display: flex; align-items: center; flex-shrink: 0; }
.trust-dguv-text { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.hero-stats { display: flex; gap: 32px; animation: fadeUp 0.6s 0.4s ease both; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .num { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .num span { color: var(--accent); }
.hero-stat .lbl { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

/* Hero right */
.hero-right { position: relative; overflow: hidden; }
.hero-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #111 0%, #2d3436 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: rgba(255,255,255,0.12); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 40px;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.hero-img-placeholder svg { width: 64px; height: 64px; opacity: 0.2; }
.hero-img-placeholder p { max-width: 220px; line-height: 1.6; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,26,26,1) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.3) 75%, rgba(26,26,26,0.05) 100%),
    linear-gradient(to left, rgba(26,26,26,0.6) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.1) 40%, transparent 100%),
    linear-gradient(to top, rgba(26,26,26,0.6) 0%, transparent 40%);
}
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; }

/* Hero footer */
.hero-footer { background: #002f6a; border-top: 1px solid rgba(255,255,255,0.06); padding: 0; }
.hero-usp-strip { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.hero-usp-strip-item { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.06); min-height: 110px; animation-fill-mode: forwards; }
.hero-usp-strip-item:last-child { border-right: none; }
.hero-usp-strip-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.hero-usp-strip-icon svg { width: 30px; height: 30px; }
.hero-usp-strip-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--white); }
.hero-usp-strip-text span { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ── VORTEILE ─────────────────────────────── */
.warum { padding: 96px 0; background: var(--white); }
.warum .container { max-width: 1280px; padding: 0 20px; }
.warum h2, .warum h2 .accent { color: var(--anthrazit); }
.vorteile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vorteil-card { background: var(--anthrazit-pale); border-radius: 16px; padding: 32px 20px; border: 1px solid var(--anthrazit-border); transition: all var(--transition); }
.vorteil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--anthrazit-light); background: var(--white); }
.vorteil-icon { width: 52px; height: 52px; background: var(--white); border-radius: 14px; border: 1px solid var(--anthrazit-border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #003f8a; }
.vorteil-icon svg { width: 26px; height: 26px; }
.vorteil-card h3 { font-size: 1rem; color: var(--gray-900); margin-bottom: 8px; }
.vorteil-card p  { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

/* ── LEISTUNGEN ──────────────────────────── */
.leistungen { padding: 96px 0; background: #f0f6fc; }
.leistungen h2, .leistungen h2 .accent { color: var(--anthrazit); }
.leistungen .container { max-width: 1400px; padding: 0 40px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services-cta { text-align: center; margin-top: 64px; padding: 56px 40px; background: var(--white); border-radius: 20px; border: 1px solid var(--gray-200); }
.services-cta h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--anthrazit); margin-bottom: 16px; text-transform: uppercase; letter-spacing: -0.01em; }
.services-cta p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto 32px; }
.services-cta .btn { display: inline-flex; }
.services-cta-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.services-cta-tags span { display: inline-flex; align-items: center; gap: 6px; background: var(--anthrazit-pale); border: 1px solid var(--anthrazit-border); border-radius: var(--radius-pill); padding: 6px 14px; font-size: 0.82rem; color: var(--gray-600); }
.services-cta-tags span svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.service-card { background: var(--white); border-radius: 28px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.45); box-shadow: 0 4px 20px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06); transition: all var(--transition); position: relative; opacity: 0; transform: translateY(24px); display: flex; flex-direction: column; }
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(255,255,255,0.65); transform: translateY(-4px); }
.service-card.featured { border-width: 4px; border-color: rgba(0,63,138,0.7); box-shadow: 0 0 0 1px rgba(0,63,138,0.15); }
.service-badge { position: absolute; top: 12px; right: 12px; background: #003f8a; color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill); z-index: 1; border: 1.5px solid rgba(255,255,255,0.5); }
.service-img { width: 100%; height: 288px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; overflow: hidden; }
.service-img--betrsichv   { background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%); }
.service-img--produktschutz { background: linear-gradient(135deg, #2d3436 0%, #3d4347 100%); }
.service-img--transport   { background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%); }
.service-img--zusatz      { background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%); }
.service-img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.18); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 20px; width: 100%; height: 100%; }
.service-img-placeholder svg { width: 44px; height: 44px; }
.service-img-corner-icon { position: absolute; top: 14px; left: 14px; width: 52px; height: 52px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); }
.service-play-btn { position: absolute; bottom: 16px; right: 16px; display: none; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border: none; cursor: pointer; z-index: 3; width: 52px; height: 52px; border-radius: 50%; backdrop-filter: blur(4px); transition: background 0.2s ease, transform 0.2s ease; }
.service-play-btn.visible { display: flex; }
.service-play-btn svg { width: 24px; height: 24px; color: rgba(255,255,255,0.85); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); transition: color 0.2s ease; }
.service-play-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }
.service-play-btn:hover svg { color: #fff; }
.service-img-corner-icon svg { width: 28px; height: 28px; }
.service-body { padding: 18px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.service-icon { width: 44px; height: 44px; background: var(--anthrazit-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--anthrazit); margin-bottom: 14px; }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: clamp(1.3rem, 1.785vw, 1.7rem); margin-bottom: 12px; color: #2d3748; white-space: nowrap; }
.service-card p  { color: var(--gray-600); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.service-card ul { margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card ul li { font-size: 0.85rem; color: var(--gray-600); display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.service-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.service-card ul li .material-symbols-outlined { font-size: 26px; font-variation-settings: 'wght' 600; color: #1a6fd4; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.04em; text-transform: uppercase; color: #003f8a; border: 2px solid #003f8a; border-radius: var(--radius-pill); padding: 10px 20px; transition: all var(--transition); align-self: flex-start; margin-top: 24px; }
.service-link svg { width: 17px; height: 17px; }
.service-link .material-symbols-outlined { font-size: 20px; line-height: 1; }
.service-link:hover { background: #003f8a; color: #ffffff; gap: 9px; }

/* ── DIGITAL SECTION ─────────────────────── */
.digital { padding: 96px 0; background: var(--anthrazit-dark); position: relative; overflow: hidden; }
.digital::before { display: none; }
.digital-glow { position: absolute; top: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.digital-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.digital-text .section-tag { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.35); }
.digital-text h2 { color: var(--white); margin-bottom: 36px; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; letter-spacing: 0.02em; line-height: 1.45; }
.dh-bold { font-weight: 800; color: var(--white); }
.dh-thin { font-weight: 300; color: rgba(255,255,255,0.8); }
.digital-text p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }
.digital-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.digital-feature { display: flex; align-items: flex-start; gap: 14px; }
.digital-feature-icon { width: 54px; height: 54px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.digital-feature-icon svg { width: 28px; height: 28px; }
.digital-feature-text h3, .digital-feature-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 3px; text-transform: none; letter-spacing: 0; }
.digital-feature-text p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }
.digital-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.app-slider { width: 64%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.app-slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; }
.app-arrow { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.app-arrow:hover { background: rgba(255,255,255,0.25); }
.app-arrow svg { width: 20px; height: 20px; }
.app-slider-track { position: relative; border-radius: 30px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.2); width: 100%; }
.app-slide { width: 100%; height: auto; display: none; }
.app-slide.active { display: block; position: relative; z-index: 2; }
.app-slide.slide-out { display: block; position: absolute; top: 0; left: 0; width: 100%; z-index: 1; animation: appFadeOut 0.6s ease forwards; }
.app-slide.slide-in { display: block; position: absolute; top: 0; left: 0; width: 100%; z-index: 3; animation: appFadeIn 0.6s ease forwards; }
@keyframes appFadeIn  { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes appFadeOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.97); } }
.app-slider-dots { display: flex; gap: 8px; }
.app-dot { width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,0.25); padding: 0; transition: background 0.2s, transform 0.2s; }
.app-dot.active { background: #fff; transform: scale(1.25); }
.app-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 16px; }

/* ── ÜBER UNS ────────────────────────────── */
.ueber-uns { padding: 96px 0; background: #f0f2f3; }
.ueber-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* Text-Spalte */
.ueber-content h2 { color: var(--anthrazit); margin-bottom: 20px; }
.ueber-content h2 .accent { color: var(--accent); }
.ueber-content p { color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; font-size: 0.95rem; }
.ueber-values { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 28px; }
.value { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--gray-600); }
.value svg { width: 17px; height: 17px; color: var(--anthrazit); flex-shrink: 0; }

/* Rechte Spalte */
.ueber-right { display: flex; flex-direction: column; gap: 20px; }

/* Logo-Card */
.ueber-logo-card { background: var(--anthrazit-dark); border-radius: 16px; padding: 36px 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ueber-logo-img { height: 48px; width: auto; }
.ueber-logo-tagline { display: flex; flex-direction: column; gap: 2px; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 16px; }
.ueber-logo-tagline span { font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.4); letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.4; }
.ueber-logo-claim { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-style: italic; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; width: 100%; }

.ueber-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--anthrazit-dark); border-radius: 16px; overflow: hidden; }
.ueber-stat { padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.ueber-stat:last-child { border-right: none; }
.ueber-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.ueber-stat span { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* Ansprechpartner-Streifen */
.ueber-contact-strip { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 16px 20px; flex-wrap: wrap; }
.ueber-contact-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--anthrazit-pale); border: 1px solid var(--anthrazit-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--anthrazit); }
.ueber-contact-avatar svg { width: 20px; height: 20px; }
.ueber-contact-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ueber-contact-info strong { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }
.ueber-contact-info span { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
.ueber-contact-links { display: flex; flex-direction: column; gap: 4px; }
.ueber-contact-links a { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray-600); transition: color var(--transition); }
.ueber-contact-links a:hover { color: var(--accent); }
.ueber-contact-links svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────── */
.faq { padding: 96px 0; background: #f7f8fa; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(3,26,74,0.15); border-radius: 12px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--gray-900); transition: background var(--transition); }
.faq-q:hover { background: rgba(3,26,74,0.04); }
.faq-q[aria-expanded="true"] { background: rgba(3,26,74,0.05); color: #031a4a; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: #031a4a; transition: transform 0.3s ease; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; margin: 0; }

/* ── KONTAKT ──────────────────────────────── */
.kontakt { padding: 96px 0; background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 55%, #3d4347 100%); position: relative; overflow: hidden; }
.kontakt h2 { color: var(--white); }
.kontakt::before { display: none; }
.kontakt-kacheln { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.kontakt-kachel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 28px; backdrop-filter: blur(12px); display: flex; flex-direction: row; align-items: center; gap: 20px; transition: all var(--transition); color: var(--white); }
.kontakt-kachel:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.kachel-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); }
.kachel-icon svg { width: 32px; height: 32px; }
.kachel-icon--dark { background: rgba(255,255,255,0.12); }
.kachel-icon--accent { background: var(--accent); color: #ffffff !important; }
.kachel-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.kachel-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.kachel-value { font-size: 0.95rem; font-weight: 600; color: var(--white); word-break: break-all; line-height: 1.5; }
.kachel-hint { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.35); margin-top: 8px; transition: color var(--transition), gap var(--transition); }
.kachel-hint svg { width: 14px; height: 14px; }
.kontakt-kachel:hover .kachel-hint { color: rgba(255,255,255,0.85); gap: 8px; }

/* ── FLOATING CALL ───────────────────────── */
.call-float { display: none; position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 56px; height: 56px; background: var(--accent); border-radius: 50%; align-items: center; justify-content: center; color: #ffffff; box-shadow: 0 4px 20px rgba(0,63,138,0.3); transition: transform var(--transition), box-shadow var(--transition); animation: accentpulse 2.5s ease-in-out infinite; }
.call-float svg { width: 26px; height: 26px; }
.call-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(255,255,255,0.2); }
@keyframes accentpulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 4px 32px rgba(255,255,255,0.2), 0 0 0 8px rgba(255,255,255,0.1); }
}

/* ── FOOTER ──────────────────────────────── */
.footer { background: #111111; border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 40px; width: auto; }
.footer-logo-mark { width: 40px; height: 40px; background: var(--white); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 16px; color: var(--anthrazit-dark); }
.footer-logo-text strong { display: block; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-logo-text small { font-size: 0.48rem; color: rgba(255,255,255,0.25); letter-spacing: 0.14em; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.875rem; line-height: 1.6; max-width: 240px; }
.footer-links h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-links svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--gray-400); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--gray-400); font-size: 0.82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── SUBPAGE HERO ─────────────────────────── */
.subpage-hero {
  background: var(--anthrazit-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.subpage-hero-glow { position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.subpage-hero-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.subpage-hero-back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 32px; transition: color var(--transition); }
.subpage-hero-back:hover { color: var(--white); }
.subpage-hero-back svg { width: 16px; height: 16px; }
.subpage-hero-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.1); padding: 5px 14px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.2); margin-bottom: 20px; }
.subpage-hero h1 { font-size: clamp(1.2rem, 2.4vw, 2.1rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.subpage-hero-sub { color: rgba(255,255,255,0.5); font-size: 0.95rem; max-width: 520px; line-height: 1.6; text-align: center; }

/* ── LEGAL PAGES ──────────────────────────── */
.legal-page { padding: 40px 0 96px; min-height: 100vh; background: var(--off-white); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; font-size: 0.875rem; margin-bottom: 32px; transition: gap var(--transition); }
.legal-back:hover { gap: 12px; }
.legal-back svg { width: 17px; height: 17px; }
.legal-header { margin-bottom: 48px; }
.legal-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.03em; color: var(--gray-900); margin-bottom: 8px; }
.legal-header p { color: var(--gray-400); font-size: 0.875rem; }
.legal-content { background: var(--white); border-radius: 20px; padding: 48px; border: 1px solid var(--gray-200); max-width: 960px; margin: 0 auto; }
.legal-section { margin-bottom: 36px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--anthrazit-pale); text-transform: none; font-family: 'Inter', sans-serif; letter-spacing: 0; }
.legal-section h3 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin: 16px 0 8px; text-transform: none; font-family: 'Inter', sans-serif; letter-spacing: 0; }
.legal-section p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.75; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--accent); }
.legal-section a:hover { text-decoration: underline; }
.legal-section ul { list-style: disc; padding-left: 20px; color: var(--gray-600); font-size: 0.9rem; line-height: 1.75; margin-bottom: 12px; }
.legal-section ul li { margin-bottom: 4px; }
.navbar--solid { background: rgba(26,26,26,0.97) !important; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes uspFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-usp-strip-item {
  opacity: 0;
  animation: uspFadeUp 0.5s ease forwards;
}
.hero-usp-strip-item:nth-child(1) { animation-delay: 0.4s; }
.hero-usp-strip-item:nth-child(2) { animation-delay: 0.65s; }
.hero-usp-strip-item:nth-child(3) { animation-delay: 0.9s; }
.hero-usp-strip-item:nth-child(4) { animation-delay: 1.15s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-main { grid-template-columns: 1fr; }
  .hero-left { padding: 120px 32px 60px; text-align: center; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .hero-footer { padding: 0 32px; }
  .hero-usp-strip { grid-template-columns: repeat(2, 1fr); }
  .digital-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 8px; }
  .ueber-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-kacheln { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .app-slider { width: 100%; }
  .app-slider-track { width: 85%; margin: 0 auto; }
  .app-arrow { width: 44px; height: 44px; }
  .digital-feature + .digital-feature {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 16px;
  }
  .nav-inner { padding: 14px 16px; }
  .nav-links { display: none; }
  .lang-switch { display: none; }
  .lang-switch--mobile { display: flex; }
  .nav-cta { display: none !important; }
  .nav-right { margin-left: auto; }
  .burger { display: flex; }
  .hero-left { padding: 57px 24px 21px; }
  .hero-badge { max-width: 100%; white-space: normal; font-size: 0.72rem; }
  .hero-btn { min-width: 0; width: 100%; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 8px; padding-top: 16px; margin-top: 16px; }
  .trust-google, .trust-dguv { flex: unset; width: 100%; justify-content: flex-start; align-items: center; min-height: unset; white-space: nowrap; }
  .hero-footer { padding: 0; }
  .hero-usp-strip { grid-template-columns: 1fr; }
  .hero-usp-strip-item { padding: 18px 24px 18px 48px; justify-content: flex-start; }
  .hero-usp-strip-icon { width: 72px; height: 72px; }
  .hero-usp-strip-icon svg { width: 36px; height: 36px; }
  .hero-usp-strip-text strong { font-size: 1.1rem; }
  .hero-usp-strip-text span { font-size: 0.95rem; }
  .leistungen, .ueber-uns, .kontakt, .warum, .digital, .faq { padding: 56px 0; }
  .section-header { margin-bottom: 32px; padding: 0 4px; }
  .services-grid { grid-template-columns: 1fr; }
  .leistungen .container { padding: 0 20px; }
  .service-card h3 { white-space: normal; }
  .services-cta { padding: 36px 20px; }
  .leistungen { background: var(--white); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .ueber-contact-strip { flex-direction: column; align-items: flex-start; }
  .kontakt-kachel { flex-direction: row; padding: 20px 16px; gap: 14px; }
  .kachel-icon { width: 48px; height: 48px; flex-shrink: 0; }
  .kachel-label { font-size: 0.82rem; }
  .kachel-value { font-size: 1.05rem; word-break: break-word; }
  .kachel-hint { font-size: 0.92rem; }
  .call-float { display: flex; }
  .legal-content { padding: 28px 24px; }
  .hero-bremen { display: none; }
  .hero-usp-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-usp-strip-item:last-child { border-bottom: none; }
  .faq-q { font-size: 0.9rem; padding: 16px; }
  .faq-a p { padding: 0 16px 16px; }
  .container { padding: 0 24px; }
}
@media (max-width: 480px) {
  .vorteile-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-title__main { font-size: clamp(1.85rem, 9.26vw, 3.17rem); white-space: normal; line-height: 1.25; }
  .hero-title__pre { font-size: clamp(0.85rem, 3.5vw, 1.2rem); }
  .hero-title__sub { font-size: 0.9rem; }
  .trust-google { flex-direction: row; align-items: center; gap: 10px; padding: 10px 12px; }
  .trust-google-row { flex-wrap: wrap; }
  .trust-google-icon { width: 34px; height: 34px; padding: 6px; }
  .trust-google-score { font-size: 0.85rem; }
  .trust-google-label { font-size: 0.72rem; }
  .section-header p { font-size: 0.9rem; }
  .kontakt-kachel { flex-direction: row; text-align: left; align-items: flex-start; }
  .uv-card { padding: 24px 16px; }
}
