﻿/* ==========================================================================
   CRANE Parts UG — Premium Industrial B2B Design
   Navy + Safety Orange · 2026
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — Original CRANE.parts Gelb */
  --brand:          #FFC700;   /* Hauptmarken-Gelb */
  --brand-dark:     #E6B300;   /* Hover-Gelb */
  --brand-light:    #FFD93D;   /* Lighter Gelb */
  --brand-tint:     #FFF8DC;   /* Sehr helles Cream */
  --brand-glow:     rgba(255, 199, 0, .45);

  /* Accent — Logo-Rot */
  --accent:         #D63031;   /* Akzent-Rot vom Logo */
  --accent-dark:    #B71C1C;
  --accent-light:   #ff5a5b;

  /* Ink / Navy */
  --ink:            #1a1d29;   /* Headlines & dark text */
  --ink-2:          #2a2f3e;
  --ink-3:          #3a4154;
  --ink-soft:       #4a5163;

  /* Steel / Body */
  --steel:          #555a68;
  --steel-2:        #6b7280;
  --steel-3:        #9ca3af;
  --steel-mute:     #d1d5db;

  /* Surfaces */
  --bg:             #ffffff;
  --bg-soft:        #fafaf7;   /* Leicht warmes Off-White */
  --bg-mute:        #f4f4ef;   /* Warmes Hellgrau */
  --bg-warm:        #fdf6e3;   /* Warmes Cream für Akzentflächen */
  --bg-card:        #ffffff;

  /* Lines */
  --line:           #e5e7eb;
  --line-strong:    #d1d5db;
  --line-dark:      rgba(255, 255, 255, .12);

  /* Shadows */
  --shadow-xs:      0 1px 2px rgba(26, 29, 41, .05);
  --shadow-sm:      0 2px 6px rgba(26, 29, 41, .06), 0 1px 2px rgba(26, 29, 41, .04);
  --shadow-md:      0 8px 20px -4px rgba(26, 29, 41, .08), 0 4px 8px -2px rgba(26, 29, 41, .04);
  --shadow-lg:      0 24px 48px -12px rgba(26, 29, 41, .18), 0 8px 16px -4px rgba(26, 29, 41, .06);
  --shadow-xl:      0 40px 80px -20px rgba(26, 29, 41, .25);
  --shadow-brand:   0 16px 32px -8px rgba(255, 199, 0, .55);

  /* Type */
  --ff-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Container */
  --maxw: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --t-fast: .15s ease;
  --t-base: .25s cubic-bezier(.4, 0, .2, 1);
  --t-slow: .45s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv11', 'ss01';
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--brand); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; }

.display {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.eyebrow.dark { color: var(--brand); }
.eyebrow.dark::before { background: var(--brand); }

.lead { font-size: 1.15rem; color: var(--steel); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}
.section-header {
  max-width: 760px;
  margin-bottom: 3.5rem;
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}
.section-soft { background: var(--bg-soft); }
.section-mute { background: var(--bg-mute); }
.section-dark {
  background: var(--ink);
  color: var(--steel-mute);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: var(--steel-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.05rem 1.8rem;
  border-radius: var(--r-md);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-base); }
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(214, 48, 49, .45);
}
.btn-primary:hover svg { transform: translateX(4px); }

.btn-yellow {
  background: var(--brand);
  color: var(--ink);
  box-shadow: var(--shadow-brand);
}
.btn-yellow:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.btn-yellow:hover svg { transform: translateX(4px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}
.btn-ghost.on-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-sm {
  padding: .65rem 1.2rem;
  font-size: .85rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: var(--brand);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
  box-shadow: 0 2px 8px rgba(26, 29, 41, .06);
}
.site-header.scrolled {
  padding: .65rem 0;
  box-shadow: 0 6px 24px rgba(26, 29, 41, .14);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-decoration: none;
}
.brand-logo {
  width: 54px; height: 54px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand .wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .3em;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand .wordmark em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .02em;
}
.brand:hover .wordmark em { color: var(--accent); transition: color var(--t-fast); }

/* Im Footer (dunkler Hintergrund): CRANE bleibt rot, PARTS wird weiß */
.footer-brand .brand { color: var(--accent); }
.footer-brand .brand .wordmark em { color: #fff; }
.footer-brand .brand:hover .wordmark em { color: var(--brand); }

/* Auf kleinen Headern (Mobile) leicht kompakter */
@media (max-width: 720px) {
  .brand-logo { width: 44px; height: 44px; }
  .brand .wordmark { font-size: 1.1rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  position: relative;
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t-fast);
  padding: .5rem 0;
  font-family: var(--ff-display);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  padding: .65rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  background: transparent;
}
.nav-phone:hover { background: var(--ink); color: var(--brand); }
.nav-phone:hover svg { color: var(--brand); }
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); transition: color var(--t-fast); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav-toggle span { width: 18px; height: 2px; background: currentColor; position: relative; transition: all var(--t-base); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 2px; background: currentColor;
  transition: all var(--t-base);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: url('../img/startseite-kran-industriehalle.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--ink);
}

/* Fallback für iOS Safari & Touch-Geräte */
@supports (-webkit-touch-callout: none) {
  .hero { background-attachment: scroll; }
}
@media (max-width: 720px) {
  .hero { background-attachment: scroll; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 29, 41, .45) 0%, rgba(26, 29, 41, .65) 60%, rgba(26, 29, 41, .85) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 90%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-grid > div { max-width: 920px; margin-inline: auto; }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.hero-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-full);
  color: #fff;
  font-size: .75rem;
}
.hero-meta .pill .live {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(214, 48, 49, .25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(214, 48, 49, .25); }
  50%      { box-shadow: 0 0 0 8px rgba(214, 48, 49, 0); }
}

.hero h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
  letter-spacing: -0.025em;
}
.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s cubic-bezier(.4, 0, .2, 1) forwards;
}
.hero h1 .line:nth-child(2) { animation-delay: .12s; }
.hero h1 .line:nth-child(3) { animation-delay: .24s; }
.hero h1 .accent {
  position: relative;
  color: var(--brand);
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: -.1em; right: -.1em;
  bottom: 4px;
  height: 14px;
  background: var(--brand);
  opacity: .18;
  z-index: -1;
  border-radius: 2px;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .88);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .35);
}
.hero-sub strong { color: var(--brand); font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  max-width: 700px;
  margin-inline: auto;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--brand); }

/* Hero CTA — dunkle Hero-Variante */
.hero .btn-primary {
  background: var(--brand);
  color: var(--ink);
}
.hero .btn-primary:hover {
  background: var(--brand-dark);
  color: var(--ink);
  box-shadow: var(--shadow-brand);
}
.hero .btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Hero-Visual: in der Bild-Hero-Variante komplett ausblenden */
.hero-visual { display: none; }

/* Legacy — falls die rechte Spalte irgendwo noch sichtbar werden soll */
.hero-visual.legacy {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin-left: auto;
}
.hero-visual .main-img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-1deg);
  transition: transform var(--t-slow);
}
.hero-visual .main-img:hover { transform: rotate(0deg) scale(1.01); }
.hero-visual .main-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  background: var(--ink);
  border-radius: var(--r-xl);
  z-index: -1;
  transform: rotate(8deg);
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -25px; left: -25px;
  width: 100px; height: 100px;
  background: var(--brand);
  border-radius: var(--r-md);
  z-index: -1;
}

/* Floating spec card on hero */
.spec-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .95rem 1.15rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
  z-index: 3;
  animation: float-bob 4s ease-in-out infinite;
}
.spec-card .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
.spec-card .icon svg { width: 20px; height: 20px; }
.spec-card .meta small {
  display: block;
  font-size: .7rem;
  color: var(--steel-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
.spec-card .meta strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--ink);
}
.spec-card.sc-top    { top: 8%;    left: -10%; }
.spec-card.sc-right  { top: 38%;   right: -8%; animation-delay: -1.5s; }
.spec-card.sc-bottom { bottom: 6%; left: -5%;  animation-delay: -3s; }
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Hero side numeral */
.hero-numeral {
  position: absolute;
  left: var(--gutter);
  bottom: 5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 3;
}
.hero-numeral .nm {
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .15em;
}
.hero-numeral .bar {
  width: 60px; height: 1px;
  background: rgba(255, 255, 255, .3);
  position: relative;
}
.hero-numeral .bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 1px;
  background: var(--accent);
}

/* ---------- Hero Highlight Bar ---------- */
.hero-highlight {
  background: var(--brand);
  padding: 1.6rem 0;
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 5;
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hl-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .4rem .8rem;
}
.hl-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--brand);
  border-radius: 10px;
  flex-shrink: 0;
}
.hl-icon svg { width: 20px; height: 20px; }
.hl-item small {
  display: block;
  font-family: var(--ff-display);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 2px;
}
.hl-item strong {
  font-family: var(--ff-display);
  font-size: .95rem;
  color: var(--ink);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

/* ---------- Marquee / Brands ---------- */
.brands {
  padding: 2.2rem 0;
  border-block: 2px solid var(--ink);
  overflow: hidden;
  background: var(--brand);
}
.brands-track {
  display: flex;
  gap: 4.5rem;
  align-items: center;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
}
.brands-item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: .08em;
  flex-shrink: 0;
}
.brands-item .sep {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Service / Feature Cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: all var(--t-base);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card .num {
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  font-family: var(--ff-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--steel-3);
  letter-spacing: .12em;
}
.feature-card .icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--bg-mute);
  color: var(--ink);
  margin-bottom: 1.6rem;
  transition: all var(--t-base);
}
.feature-card:hover .icon { background: var(--ink); color: #fff; }
.feature-card .icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: .65rem; color: var(--ink); }
.feature-card p { color: var(--steel); font-size: .98rem; margin: 0; }

/* ---------- Product Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: all var(--t-base);
  cursor: pointer;
}
.product-card.col-7 { grid-column: span 7; min-height: 460px; }
.product-card.col-5 { grid-column: span 5; min-height: 460px; }
.product-card.col-6 { grid-column: span 6; min-height: 360px; }
.product-card.col-4 { grid-column: span 4; min-height: 360px; }

.product-card .pc-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.product-card .pc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 27, 42, .1) 0%, rgba(13, 27, 42, .55) 55%, rgba(13, 27, 42, .92) 100%);
}
.product-card .pc-body {
  position: relative;
  z-index: 2;
  padding: 2.2rem;
  color: #fff;
}
.product-card .pc-num {
  position: absolute;
  top: 1.6rem; right: 1.6rem;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .4rem .8rem;
  border-radius: var(--r-full);
}
.product-card .pc-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .8rem;
}
.product-card .pc-tag::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--brand);
}
.product-card h3 {
  color: #fff;
  margin-bottom: .8rem;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}
.product-card p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1.4rem;
  max-width: 520px;
  font-size: .96rem;
}
.product-card .pc-cta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display);
  font-weight: 600;
  color: #fff;
  font-size: .92rem;
  padding: .55rem 0;
  border-bottom: 2px solid var(--brand);
  transition: all var(--t-base);
}
.product-card:hover .pc-cta { gap: .9rem; }
.product-card .pc-cta svg { width: 16px; height: 16px; }

/* ---------- Protection Section (Gelbes Band mit Service-Cards) ---------- */
.protection {
  background: var(--brand);
  color: var(--ink);
  position: relative;
}
.protection .section-header { text-align: center; margin-inline: auto; }
.protection .section-header h2 { color: var(--ink); }
.protection .section-header p { color: var(--ink-2); max-width: 720px; margin-inline: auto; }
.protection .section-header .eyebrow { color: var(--accent); justify-content: center; }
.protection .section-header .eyebrow::before { background: var(--accent); }
.protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.protection-card {
  position: relative;
  padding: 2.2rem 2rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid rgba(26, 29, 41, .06);
  transition: all var(--t-base);
  overflow: hidden;
}
.protection-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-slow);
}
.protection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(26, 29, 41, .2);
}
.protection-card:hover::before { transform: scaleY(1); }
.protection-card .pc-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--brand-tint);
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.protection-card .pc-icon svg { width: 24px; height: 24px; }
.protection-card h3 { color: var(--ink); margin-bottom: .6rem; font-size: 1.25rem; }
.protection-card p { color: var(--steel); margin: 0; font-size: .96rem; }

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

/* ---------- Category Tiles (Produktkategorien — klickbar, Shop-vorbereitet) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.cat-tile:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.cat-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-mute);
  position: relative;
}
.cat-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.cat-tile:hover .cat-media img { transform: scale(1.07); }
.cat-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 29, 41, .15) 100%);
  pointer-events: none;
}

.cat-body {
  padding: 1.6rem 1.6rem 1.8rem;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cat-num {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bg-mute);
  line-height: 1;
  transition: color var(--t-base);
}
.cat-tile:hover .cat-num { color: var(--brand); }
.cat-body h3 {
  font-size: 1.2rem;
  margin: 0 0 .4rem;
  color: var(--ink);
  padding-right: 2.5rem;
}
.cat-body p {
  color: var(--steel);
  font-size: .92rem;
  margin: 0 0 1.2rem;
  flex-grow: 1;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--accent);
  letter-spacing: .02em;
  padding-top: .8rem;
  border-top: 2px solid var(--bg-mute);
  transition: all var(--t-base);
}
.cat-tile:hover .cat-cta {
  color: var(--ink);
  border-top-color: var(--brand);
  gap: .8rem;
}
.cat-cta svg { width: 16px; height: 16px; transition: transform var(--t-base); }
.cat-tile:hover .cat-cta svg { transform: translateX(4px); }

.cat-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  padding: .35rem .75rem;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
}

.cat-footer {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.4rem 1.8rem;
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  color: var(--steel);
}
.cat-footer a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid var(--brand);
}
.cat-footer a:hover { color: var(--ink); }

@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats — Original Gelb-Band ---------- */
.stats {
  background: var(--brand);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 29, 41, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 29, 41, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.stats .section-header h2 { color: var(--ink); }
.stats .eyebrow { color: var(--accent); }
.stats .eyebrow::before { background: var(--accent); }
.stats > .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2rem;
}
.stat-item {
  padding: 2rem 1.5rem;
  border-right: 2px solid rgba(26, 29, 41, .15);
  text-align: left;
  position: relative;
}
.stat-item:last-child { border-right: 0; }
.stat-item .num {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: .8rem;
  letter-spacing: -0.03em;
}
.stat-item .num::after {
  content: '+';
  color: var(--accent);
  font-weight: 800;
}
.stat-item .lbl {
  color: var(--ink-2);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-item .bar {
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 3px;
  background: var(--ink);
  transition: width 1.2s ease;
}
.stat-item.in .bar { width: 100%; }

/* ---------- Mission Divider (zwischen Intro und Promises) ---------- */
.mission-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2.5rem auto 0;
  max-width: 640px;
}
.mission-divider .md-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.mission-divider .md-text {
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* ---------- Promise Cards (große Versprechens-Karten) ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.promise-card {
  position: relative;
  padding: 2.6rem 2.2rem 2.2rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: all var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--brand);
}
.promise-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 199, 0, .15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: -1;
}
.promise-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.promise-card .pr-num {
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-mute);
  letter-spacing: -.02em;
  transition: color var(--t-base);
}
.promise-card:hover .pr-num { color: var(--brand); }
.promise-card .pr-icon {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--brand);
  margin-bottom: 1.6rem;
  transition: all var(--t-base);
}
.promise-card:hover .pr-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.promise-card .pr-icon svg { width: 34px; height: 34px; }
.promise-card h3 {
  font-size: 1.35rem;
  margin-bottom: .8rem;
  color: var(--ink);
  max-width: 80%;
}
.promise-card p {
  color: var(--steel);
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; }
  .mission-divider .md-text { font-size: .72rem; letter-spacing: .12em; }
}

/* ---------- Dienstleistungsübersicht ---------- */
.dlu-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.dlu-list {
  display: grid;
  gap: 1.5rem;
}
.dlu-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.3rem;
  padding: 1.6rem 1.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.dlu-item:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.dlu-check {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--brand-tint);
  color: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--brand);
  flex-shrink: 0;
}
.dlu-check svg { width: 28px; height: 28px; }
.dlu-item h3 {
  font-size: 1.2rem;
  margin-bottom: .4rem;
  color: var(--ink);
}
.dlu-item p {
  color: var(--steel);
  font-size: .96rem;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .dlu-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .dlu-item { grid-template-columns: 1fr; gap: .8rem; padding: 1.4rem; }
  .dlu-check { width: 44px; height: 44px; }
  .dlu-check svg { width: 22px; height: 22px; }
}

/* ---------- Service Collage (Kranservice Bilder) ---------- */
.service-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1 / 1;
  position: relative;
}
.service-collage figure {
  margin: 0;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base);
}
.service-collage figure:hover { transform: translateY(-3px); }
.service-collage figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-collage figure:hover img { transform: scale(1.06); }
.service-collage figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 29, 41, .75) 100%);
  pointer-events: none;
}
.service-collage figcaption {
  position: absolute;
  bottom: .9rem; left: 1rem;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  padding: .35rem .7rem;
  background: rgba(26, 29, 41, .6);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}
.service-collage .sc-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.service-collage .sc-main::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: -10px; bottom: -10px;
  border: 2px solid var(--brand);
  border-radius: var(--r-md);
  z-index: -1;
}
@media (max-width: 1100px) {
  .service-collage { aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .service-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
    aspect-ratio: auto;
  }
  .service-collage .sc-main { grid-column: 1; grid-row: 1; }
}

/* ---------- Overview Grid (Produkte im Überblick) ---------- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.overview-item {
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.overview-item:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.overview-item .ov-num {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  padding-bottom: .25rem;
  border-bottom: 2px solid var(--brand);
  min-width: 1.8rem;
}
.overview-item h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
.overview-item p {
  color: var(--steel);
  font-size: .9rem;
  margin: 0;
  line-height: 1.5;
}
.overview-footnote {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 600px;
  color: var(--steel);
  font-size: 1.05rem;
  padding: 1.2rem 1.6rem;
  background: var(--brand-tint);
  border-radius: var(--r-md);
  border-left: 4px solid var(--brand);
}
.overview-footnote strong { color: var(--accent); font-family: var(--ff-display); }

/* ---------- Service Box (Servicezone) ---------- */
.service-box {
  margin-top: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
}
.sb-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.sb-row:last-child { border-bottom: 0; }
.sb-label {
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.sb-value {
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.5;
  font-weight: 500;
}
a.sb-value {
  color: var(--ink);
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
a.sb-value:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 720px) {
  .sb-row { grid-template-columns: 1fr; gap: .3rem; padding: 1rem 1.2rem; }
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  counter-increment: step;
  transition: all var(--t-base);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-mute);
  transition: color var(--t-base);
}
.step:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step:hover::before { color: var(--brand); opacity: .8; }
.step h3 { margin-bottom: .5rem; max-width: 75%; }
.step p { color: var(--steel); margin: 0; }

/* ---------- Testimonials ---------- */
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.t-card {
  padding: 2.4rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  transition: all var(--t-base);
}
.t-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.t-card .stars {
  display: flex; gap: 3px;
  margin-bottom: 1.2rem;
}
.t-card .stars svg {
  width: 18px; height: 18px;
  color: #f59e0b;
  fill: currentColor;
}
.t-card .quote-text {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.t-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.t-author .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-mute);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  flex-shrink: 0;
}
.t-author .av img { width: 100%; height: 100%; object-fit: cover; }
.t-author strong { color: var(--ink); display: block; font-size: .95rem; font-family: var(--ff-display); }
.t-author small  { color: var(--steel-2); font-size: .82rem; }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 5rem 0; }
.cta-box {
  position: relative;
  padding: clamp(2.8rem, 5vw, 5rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255, 199, 0, .45) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box .eyebrow { color: var(--brand); }
.cta-box .eyebrow::before { background: var(--brand); }
.cta-box h2 { color: #fff; margin-bottom: .8rem; }
.cta-box p { color: rgba(255, 255, 255, .8); margin: 0; max-width: 540px; font-size: 1.05rem; }
.cta-box .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-box .btn-primary { background: var(--brand); color: var(--ink); }
.cta-box .btn-primary:hover { background: var(--brand-dark); color: var(--ink); box-shadow: var(--shadow-brand); }

/* ---------- Forms ---------- */
.form-card {
  padding: 2.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.field input, .field textarea, .field select {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  color: var(--ink);
  transition: all var(--t-fast);
  font-family: var(--ff-body);
  font-size: 1rem;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-tint);
}
.field textarea { resize: vertical; min-height: 150px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
  cursor: pointer;
}
.zone-hint {
  display: block;
  font-size: .82rem;
  color: var(--steel-2);
  margin-top: .15rem;
  padding: .55rem .75rem;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--steel-mute);
  transition: all var(--t-base);
}
.zone-hint.active {
  background: var(--brand-tint);
  border-left-color: var(--brand);
  color: var(--ink);
}
.zone-hint strong { color: var(--accent); font-family: var(--ff-display); }

/* ---------- Honeypot — komplett aus dem Viewport, aber für Bots erreichbar ---------- */
.hp-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Captcha ---------- */
[data-captcha-question] {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--ff-display);
  text-transform: none;
  letter-spacing: 0;
}
.captcha-hint {
  display: block;
  font-size: .82rem;
  color: var(--steel-2);
  margin-top: .35rem;
  padding: .5rem .75rem;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--steel-mute);
  transition: all var(--t-base);
}
.captcha-hint.error {
  background: #fee2e2;
  border-left-color: var(--accent);
  color: var(--accent-dark);
  font-weight: 500;
}
.field input.error {
  border-color: var(--accent);
  background: #fef2f2;
  animation: shake .35s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
.checkbox { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: var(--steel); }
.checkbox input { margin-top: 4px; accent-color: var(--ink); }

/* ---------- Brand Card (Standort) — Hell, klare Marke ---------- */
.brand-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: .5rem;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--brand);
}
.brand-card > * { position: relative; z-index: 1; }

.bc-tag {
  display: inline-block;
  padding: .35rem .85rem;
  background: var(--brand-tint);
  border: 1px solid rgba(255, 199, 0, .5);
  border-radius: var(--r-full);
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.bc-logo {
  width: 110px; height: 110px;
  display: block;
  margin: 0 auto 1.2rem;
  object-fit: contain;
}
.bc-wordmark {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: .9rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .3em;
  flex-wrap: wrap;
}
.bc-wordmark em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}
.bc-suffix {
  font-size: .55em;
  font-weight: 700;
  color: var(--ink);
  background: var(--brand);
  letter-spacing: .15em;
  margin-left: .3em;
  padding: .25em .55em;
  border-radius: 4px;
  align-self: center;
}
.bc-tagline {
  color: var(--steel);
  font-size: .92rem;
  margin: 0 auto 1.6rem;
  max-width: 300px;
  line-height: 1.55;
}
.bc-address {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  text-align: left;
  line-height: 1.35;
}
.bc-address svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.bc-address small {
  display: block;
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .25rem;
}

/* ---------- Contact Layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: grid; gap: 1.2rem; }
.info-card {
  padding: 1.7rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  display: flex; gap: 1.1rem;
  transition: all var(--t-fast);
}
.info-card:hover {
  border-color: var(--ink);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.info-card .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--ink);
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}
.info-card .icon svg { width: 20px; height: 20px; }
.info-card h4 {
  font-family: var(--ff-display);
  font-size: .95rem;
  color: var(--ink);
  margin: 0 0 .25rem;
}
.info-card p, .info-card a {
  color: var(--steel);
  font-size: .94rem;
  margin: 0;
}
.info-card a:hover { color: var(--accent); }

/* Sales Zones */
.zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.zone {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  transition: all var(--t-base);
}
.zone:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.zone::before {
  content: attr(data-num);
  position: absolute;
  top: -1rem; right: -.5rem;
  font-family: var(--ff-display);
  font-size: 7.5rem;
  font-weight: 800;
  color: var(--bg-soft);
  line-height: 1;
  transition: color var(--t-base);
  pointer-events: none;
}
.zone:hover::before { color: var(--brand); opacity: .35; }
.zone .tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .8rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.zone h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--ink); position: relative; z-index: 1;}
.zone .area { color: var(--steel-2); font-size: .9rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.zone .mail-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ink);
  font-size: .92rem;
  padding-bottom: .25rem;
  border-bottom: 3px solid var(--brand);
  position: relative; z-index: 1;
}
.zone .mail-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 9.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at top, rgba(255, 199, 0, .25) 0%, transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 29, 41, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 29, 41, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
  pointer-events: none;
}

/* ---------- Page Hero with Background Image + Parallax ---------- */
.page-hero.with-image {
  padding: 12rem 0 9rem;
  color: #fff;
  background-image: url('../img/turmkran-hamm.png'); /* Default — wird per inline style überschrieben */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  /* Parallax: Bild bleibt fix, Inhalt scrollt drüber */
  background-color: var(--ink);
}
.page-hero.with-image::before {
  background: linear-gradient(180deg, rgba(26, 29, 41, .35) 0%, rgba(26, 29, 41, .55) 100%);
  mask-image: none;
  background-image: none;
}
.page-hero.with-image .inner h1,
.page-hero.with-image .inner .lead {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .35);
}
.page-hero.with-image .breadcrumb { color: rgba(255, 255, 255, .65); }
.page-hero.with-image .breadcrumb a { color: rgba(255, 255, 255, .85); }
.page-hero.with-image .breadcrumb a:hover { color: var(--brand); }
.page-hero.with-image .breadcrumb .sep { color: var(--brand); }
.page-hero.with-image .eyebrow { color: var(--brand); }
.page-hero.with-image .eyebrow::before { background: var(--brand); }

/* Section, die direkt nach .page-hero.with-image folgt, wirkt wie "drüber geschoben" */
.page-hero.with-image + section {
  position: relative;
  z-index: 2;
  background: var(--bg);
  box-shadow: 0 -20px 50px -10px rgba(26, 29, 41, .25);
  padding-top: 5rem;
}

/* Geräte ohne fixed background (iOS Safari!) → fallback ohne fixed */
@supports (-webkit-touch-callout: none) {
  .page-hero.with-image { background-attachment: scroll; }
}
@media (max-width: 720px) {
  .page-hero.with-image { background-attachment: scroll; padding: 9rem 0 6rem; }
  .page-hero.with-image + section { padding-top: 3rem; }
}
.page-hero .inner {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.breadcrumb { display: none; }
.breadcrumb a { color: var(--steel-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--accent); }

/* ---------- Split / About ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { color: var(--steel); font-size: 1.05rem; }

.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-mute);
  box-shadow: var(--shadow-xl);
}
.media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.media-frame:hover img { transform: scale(1.04); }
.media-frame.with-frame::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--brand);
  border-radius: var(--r-xl);
  z-index: -1;
}

.media-tag {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  padding: .5rem .9rem;
  background: #fff;
  border-radius: var(--r-full);
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.media-badge {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  z-index: 2;
  display: flex; align-items: center; gap: .85rem;
  box-shadow: var(--shadow-md);
}
.media-badge .icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--ink);
  display: grid; place-items: center;
  color: #fff; flex-shrink: 0;
}
.media-badge .icon svg { width: 18px; height: 18px; }
.media-badge .meta { line-height: 1.2; }
.media-badge small { display: block; color: var(--steel-2); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.media-badge strong { color: var(--ink); font-family: var(--ff-display); font-size: .95rem; }

/* ---------- Bullet List ---------- */
.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem 1.4rem;
  list-style: none;
  padding: 0; margin: 1.5rem 0 0;
}
.bullets li {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--ink);
  font-weight: 500;
  transition: all var(--t-fast);
}
.bullets li:hover { border-color: var(--ink); background: var(--brand-tint); transform: translateX(3px); }
.bullets li svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery .media-frame { aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.gallery .media-frame:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ---------- Notice ---------- */
.notice {
  padding: 2.2rem 2.4rem;
  background: var(--brand-tint);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 860px;
  margin-inline: auto;
}
.notice h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.notice p { margin: 0; color: var(--steel); font-style: italic; }

/* ---------- Map Visual ---------- */
.map-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(255, 199, 0, .35) 28%, rgba(255, 199, 0, .35) 29%, transparent 29%),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(255, 199, 0, .22) 42%, rgba(255, 199, 0, .22) 43%, transparent 43%),
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(255, 199, 0, .12) 56%, rgba(255, 199, 0, .12) 57%, transparent 57%);
  pointer-events: none;
}
.map-card .map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 199, 0, .22), 0 0 32px var(--brand);
  animation: pulse-pin 2s ease-in-out infinite;
}
.map-card .map-pin::after {
  content: 'HAMM';
  position: absolute;
  top: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: #fff;
  white-space: nowrap;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255, 199, 0, .22), 0 0 32px var(--brand); }
  50%      { box-shadow: 0 0 0 18px rgba(255, 199, 0, 0),   0 0 40px var(--brand); }
}
.map-card .map-meta {
  position: relative;
  z-index: 1;
}
.map-card .map-meta small {
  display: block;
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}
.map-card .map-meta strong {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: #fff;
  display: block;
}

/* ---------- Legal ---------- */
.legal-box {
  max-width: 860px;
  margin-inline: auto;
  padding: 3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.legal-box h3 {
  margin-top: 2.2rem;
  color: var(--accent);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--ff-display);
}
.legal-box h3:first-child { margin-top: 0; }
.legal-box p { color: var(--steel); }
.legal-box strong { color: var(--ink); }
.legal-box a { color: var(--ink); border-bottom: 2px solid var(--brand); }
.legal-box a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--steel-mute);
  padding-top: 5.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--brand);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .brand { color: #fff; }
.footer-brand p {
  color: var(--steel-mute);
  font-size: .94rem;
  margin: 1.4rem 0 1.8rem;
  max-width: 340px;
  line-height: 1.65;
}
.socials { display: flex; gap: .65rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  color: var(--steel-mute);
  background: rgba(255, 255, 255, .03);
  transition: all var(--t-fast);
}
.socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ink);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.4rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-col a {
  color: var(--steel-mute);
  font-size: .94rem;
  transition: color var(--t-fast);
  display: inline-flex; align-items: center; gap: .4rem;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .85rem;
  color: var(--steel-3);
}
.footer-bottom a { color: var(--steel-mute); }
.footer-bottom a:hover { color: var(--brand); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   OVERFLOW-FIX — Grid-Items dürfen schrumpfen, lange Texte werden umgebrochen
   (Global gültig, nicht nur Mobile)
   ========================================================================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Grid-Items shrinkable machen */
.contact-layout > *,
.form-card,
.brand-card,
.cat-tile,
.zone,
.feature-card,
.t-card,
.promise-card,
.protection-card,
.overview-item {
  min-width: 0;
}

/* Form-Felder dürfen niemals über Parent hinaus */
.field { min-width: 0; }
.field input,
.field textarea,
.field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Lange Option-Texte im Select sollen nicht das Select aufblähen */
.field select {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Lange Wörter (URLs, Mail-Adressen) brechen */
.bc-tagline, .bc-address,
.info-card a, .info-card p,
.cat-body p, .cat-body h3,
.zone .area, .zone h3,
.t-card p,
.legal-box p, .legal-box a,
.notice p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* Cards dürfen nie breiter als Viewport */
.cat-grid, .zones, .feature-grid, .t-grid,
.promise-grid, .protection-grid, .overview-grid,
.form-grid, .contact-layout {
  width: 100%;
  max-width: 100%;
}

/* ==========================================================================
   RESPONSIVE — Tablet (≤1100) · Phone (≤720) · Small (≤480)
   ========================================================================== */

/* ----- TABLET (≤1100 px) ----- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { margin: 0 auto; max-width: 460px; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 2px solid rgba(26, 29, 41, .12); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-box { grid-template-columns: 1fr; text-align: left; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .process { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.col-7, .product-card.col-5, .product-card.col-6, .product-card.col-4 {
    grid-column: span 1; min-height: 360px;
  }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .media-frame:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .bullets { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .protection-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* ----- PHONE (≤720 px) ----- */
@media (max-width: 720px) {
  /* Container etwas enger, kleinere Section-Paddings */
  .container { padding-inline: 1.1rem; }
  section { padding: clamp(3rem, 8vw, 5rem) 0; }

  /* HEADER — Burger statt Nav */
  .site-header { padding: .85rem 0; }
  .site-header.scrolled { padding: .6rem 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-cta { gap: .5rem; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--brand);
    padding: 2rem;
    gap: 1.4rem;
    border-bottom: 2px solid var(--ink);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(26, 29, 41, .15);
  }
  /* Header-Logo + Wortmarke kleiner */
  .brand-logo { width: 40px; height: 40px; }
  .brand .wordmark { font-size: 1rem; gap: .25em; }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
    background-attachment: scroll;
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 1.8rem; }
  .hero-meta { flex-direction: column; gap: .6rem; align-items: center; margin-bottom: 1.2rem; }
  .hero-cta { flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 1rem; padding-top: 1.2rem; justify-content: center; }
  .hero-trust-item { font-size: .82rem; }
  .spec-card, .hero-numeral { display: none; }

  /* HERO HIGHLIGHT BAR */
  .hero-highlight { padding: 1.2rem 0; }
  .hl-grid { grid-template-columns: 1fr; gap: .9rem; }
  .hl-item { padding: .3rem .4rem; }
  .hl-icon { width: 38px; height: 38px; }
  .hl-item strong { font-size: .88rem; }
  .hl-item small { font-size: .65rem; }

  /* PAGE HERO mit Bild */
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero.with-image {
    padding: 8rem 0 5rem;
    background-attachment: scroll;
  }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .page-hero .lead { font-size: 1rem; }

  /* TYPOGRAPHY */
  h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  h3 { font-size: 1.1rem; }
  .lead { font-size: 1rem; }
  .section-header { margin-bottom: 2.2rem; }
  .eyebrow { font-size: .7rem; letter-spacing: .18em; margin-bottom: .8rem; }
  .eyebrow::before { width: 22px; }

  /* BUTTONS — Touch-Targets (min. 48 px) */
  .btn { padding: .95rem 1.4rem; font-size: .92rem; min-height: 48px; }
  .btn-sm { padding: .7rem 1rem; min-height: 40px; }

  /* GRIDS — single column */
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .media-frame:nth-child(1) { grid-column: span 1; }
  .feature-grid { grid-template-columns: 1fr; }

  /* CARDS — kompakteres Padding */
  .feature-card, .step, .t-card, .zone,
  .protection-card, .promise-card { padding: 1.6rem 1.4rem; }
  .feature-card .num, .promise-card .pr-num {
    font-size: 2.4rem; top: 1rem; right: 1.2rem;
  }
  .feature-card .icon, .promise-card .pr-icon {
    width: 52px; height: 52px;
    margin-bottom: 1rem;
  }
  .feature-card .icon svg, .promise-card .pr-icon svg { width: 24px; height: 24px; }

  /* CTA-BOX */
  .cta-banner { padding: 3rem 0; }
  .cta-box { padding: 2rem 1.5rem; gap: 1.5rem; }
  .cta-box h2 { font-size: 1.6rem; }
  .cta-box p { font-size: .95rem; }
  .cta-box .actions { width: 100%; }
  .cta-box .btn { width: 100%; }

  /* FORM — 16px input-size verhindert iOS-Zoom */
  .form-card { padding: 1.6rem 1.4rem; }
  .field input, .field textarea, .field select {
    padding: .95rem 1rem;
    font-size: 16px;
    min-height: 48px;
  }
  .field textarea { min-height: 130px; }
  .field label { font-size: .75rem; }

  /* STATS — 2×2 mit korrekten Trennlinien */
  .stats { padding: 3rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item {
    padding: 1.4rem 1rem;
    border-right: 2px solid rgba(26, 29, 41, .12);
    border-bottom: 2px solid rgba(26, 29, 41, .12);
  }
  .stat-item:nth-child(even) { border-right: 0; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 0; }
  .stat-item .num { font-size: 2.4rem; }
  .stat-item .lbl { font-size: .75rem; }

  /* TESTIMONIALS */
  .t-grid { grid-template-columns: 1fr; }
  .t-card .quote-text { font-size: 1rem; }

  /* ZONES */
  .zones { grid-template-columns: 1fr; }
  .zone { padding: 1.6rem 1.4rem; }
  .zone::before { font-size: 5rem; top: -.6rem; right: -.2rem; }

  /* SERVICE COLLAGE (Über Uns) */
  .service-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 180px);
    aspect-ratio: auto;
    gap: .7rem;
  }
  .service-collage .sc-main { grid-column: 1; grid-row: 1; }

  /* OVERVIEW ITEMS */
  .overview-item { padding: 1.3rem 1.4rem 1.4rem 3.4rem; }
  .overview-item .ov-num { top: 1.2rem; left: 1.2rem; font-size: .9rem; }

  /* CATEGORY TILES */
  .cat-media { aspect-ratio: 16/9; }
  .cat-body { padding: 1.3rem 1.3rem 1.5rem; }
  .cat-num { font-size: 1.5rem; top: 1.1rem; right: 1.3rem; }
  .cat-body h3 { font-size: 1.1rem; padding-right: 2.2rem; }
  .cat-body p { font-size: .88rem; }
  .cat-badge { font-size: .62rem; padding: .3rem .65rem; }
  .cat-footer { padding: 1.2rem 1.4rem; font-size: .92rem; }

  /* PROMISE & PROTECTION */
  .promise-grid, .protection-grid { gap: 1rem; margin-top: 2rem; }
  .promise-card h3, .protection-card h3 { font-size: 1.15rem; }
  .mission-divider { margin-top: 2rem; gap: .8rem; }
  .mission-divider .md-text { font-size: .68rem; letter-spacing: .1em; white-space: normal; text-align: center; }

  /* PROCESS STEPS */
  .step { padding: 2rem 1.4rem 1.5rem; }
  .step::before { font-size: 2.6rem; top: 1rem; right: 1.2rem; }

  /* LEGAL BOX */
  .legal-box { padding: 1.8rem 1.4rem; }
  .legal-box h3 { font-size: .8rem; }

  /* NOTICE */
  .notice { padding: 1.6rem 1.4rem; }

  /* BRAND-CARD (Kontaktseite) */
  .brand-card { padding: 2rem 1.4rem; }
  .bc-logo { width: 80px; height: 80px; margin-bottom: .9rem; }
  .bc-wordmark { font-size: 1.4rem; }
  .bc-tagline { font-size: .88rem; max-width: 100%; }
  .bc-address { padding: .8rem 1.1rem; font-size: .88rem; width: 100%; }

  /* INFO CARDS */
  .info-card { padding: 1.3rem; }
  .info-card .icon { width: 42px; height: 42px; }

  /* DIENSTLEISTUNGSÜBERSICHT */
  .dlu-item { padding: 1.3rem 1.4rem; gap: 1rem; }

  /* SERVICE-BOX */
  .sb-row { grid-template-columns: 1fr; gap: .3rem; padding: .9rem 1.1rem; }
  .sb-label { font-size: .72rem; }
  .sb-value { font-size: .9rem; }

  /* MEDIA FRAMES */
  .media-frame .media-tag { font-size: .65rem; padding: .35rem .7rem; top: 1rem; left: 1rem; }
  .media-badge { bottom: 1rem; left: 1rem; right: 1rem; padding: .75rem 1rem; }
  .media-badge .icon { width: 32px; height: 32px; }
  .media-badge strong { font-size: .85rem; }
  .media-badge small { font-size: .62rem; }
}

/* ----- SMALL PHONE (≤480 px) ----- */
@media (max-width: 480px) {
  .container { padding-inline: .9rem; }

  /* HEADER */
  .brand-logo { width: 36px; height: 36px; }
  .brand .wordmark { font-size: .92rem; }
  .nav { gap: .6rem; }

  /* HERO */
  .hero { padding: 5.5rem 0 2.5rem; }
  .hero h1 { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .hero-trust { gap: .7rem; }
  .hero-trust-item { font-size: .76rem; }

  /* PAGE HERO */
  .page-hero.with-image { padding: 6.5rem 0 3.5rem; }
  .page-hero h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }

  /* SECTION HEADER */
  .section-header { margin-bottom: 1.8rem; }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* FOOTER */
  .footer-grid { gap: 1.8rem; margin-bottom: 2.5rem; }
  .site-footer { padding-top: 3.5rem; }

  /* MARQUEE */
  .brands { padding: 1.2rem 0; }
  .brands-item { font-size: .95rem; }
  .brands-track { gap: 2.5rem; }

  /* CARDS noch enger */
  .feature-card, .step, .t-card, .zone,
  .protection-card, .promise-card,
  .form-card, .legal-box { padding: 1.4rem 1.2rem; }

  /* CATEGORIES */
  .cat-body { padding: 1.2rem; }
  .cat-num { font-size: 1.3rem; top: 1rem; right: 1.1rem; }
  .cat-body h3 { font-size: 1.05rem; }
  .cat-body p { font-size: .85rem; }
  .cat-cta { font-size: .82rem; }

  /* STATS */
  .stat-item { padding: 1.1rem .7rem; }
  .stat-item .num { font-size: 2rem; }
  .stat-item .lbl { font-size: .68rem; letter-spacing: .08em; }

  /* CTA */
  .cta-box { padding: 1.8rem 1.3rem; }
  .cta-box h2 { font-size: 1.4rem; }

  /* OVERVIEW */
  .overview-item { padding: 1.2rem 1.3rem 1.3rem 3.2rem; }

  /* NOTICE */
  .notice { padding: 1.4rem 1.2rem; }
  .notice p { font-size: .9rem; }

  /* HIGHLIGHT BAR */
  .hl-item strong { font-size: .82rem; }
  .hl-item small { font-size: .62rem; letter-spacing: .1em; }
}
