/* ============================================================
   ALLOVIA GARTENDIENST — Design System
   Navy #0C1D2E · Forest Green #1E6B45 · Off-White #F4F3EF
   DM Serif Display + Inter · Editorial
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --c-primary:       #0C1D2E;
  --c-primary-dark:  #060e17;
  --c-primary-light: #edf0f4;
  --c-secondary:     #1E6B45;
  --c-secondary-hover: #165936;
  --c-accent:        #E85A1E;
  --c-accent-light:  #fdeee7;

  --c-bg:            #F4F3EF;
  --c-surface:       #ffffff;
  --c-surface-2:     #EEECEA;
  --c-border:        #DDD9D2;
  --c-border-light:  #E8E5DF;

  --c-text:          #111111;
  --c-text-2:        #3D3A35;
  --c-muted:         #7A7570;
  --c-muted-light:   #ADA9A3;

  --c-success:       #1a7a45;
  --c-success-bg:    #e8f5ee;
  --c-warn:          #c87300;
  --c-warn-bg:       #fff4e0;

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 999px;

  --shadow-xs:  0 1px 3px rgba(13,27,46,.07);
  --shadow-sm:  0 2px 8px rgba(13,27,46,.09), 0 0 0 1px rgba(13,27,46,.04);
  --shadow:     0 4px 20px rgba(13,27,46,.12), 0 1px 4px rgba(13,27,46,.07);
  --shadow-md:  0 8px 32px rgba(13,27,46,.14), 0 2px 8px rgba(13,27,46,.08);
  --shadow-lg:  0 20px 60px rgba(13,27,46,.18), 0 4px 16px rgba(13,27,46,.10);

  --nav-h: 88px;
  --section-py: 80px;
  --section-py-sm: 52px;
  --container: 1120px;
  --container-sm: 800px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 460ms;
}

/* ---- Skip Navigation (Barrierefreiheit) ---- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--c-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

h4, h5 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-text);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 0.9375rem; }

h2 em, h1 em {
  font-style: italic;
  color: var(--c-accent);
}

p { color: var(--c-text-2); }
.text-muted { color: var(--c-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
  display: block;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header p {
  font-size: 1.0625rem;
  margin-top: 16px;
  color: var(--c-muted);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--c-secondary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-secondary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,107,69,.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-primary);
  background: var(--c-primary-light);
}

.btn-ghost {
  background: transparent;
  color: var(--c-secondary);
  padding: 10px 20px;
}
.btn-ghost:hover { background: var(--c-accent-light); }

.btn-lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-white {
  background: #fff;
  color: var(--c-primary);
}
.btn-white:hover {
  background: var(--c-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,.25);
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav.transparent {
  background: transparent;
}

.nav.solid, .nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--c-border-light), var(--shadow-xs);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--c-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.01em;
}

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 600px) {
  .nav-logo img { height: 52px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-cta-mobile { display: none; }

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-2);
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease);
}

.nav-links a:hover { color: var(--c-primary); background: var(--c-primary-light); }
.nav-links a.active { color: var(--c-primary); font-weight: 600; }

.nav.transparent .nav-links a { color: rgba(255,255,255,.85); }
.nav.transparent .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav.transparent .nav-logo-text { color: #fff; }
.nav.transparent .nav-logo-sub { color: rgba(255,255,255,.6); }
.nav.transparent .nav-logo-mark { background: rgba(255,255,255,.2); }
.nav.transparent .nav-logo-mark svg { stroke: #fff; }
.nav.transparent .nav-logo img { filter: brightness(0) invert(1); }

/* Scrolled: transparent-Farben zurücksetzen auf Solid-State */
.nav.scrolled .nav-logo img { filter: none; }
.nav.scrolled .nav-links a { color: var(--c-text-2); }
.nav.scrolled .nav-links a:hover { color: var(--c-primary); background: var(--c-primary-light); }
.nav.scrolled .nav-phone { color: var(--c-primary); }
.nav.scrolled .nav-toggle { color: var(--c-text); }
.nav.scrolled .nav-toggle:hover { background: var(--c-primary-light); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav.transparent .nav-phone { color: rgba(255,255,255,.75); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}
.nav-toggle:hover { background: var(--c-primary-light); }
.nav-toggle:active { background: var(--c-primary-light); }
.nav-toggle[aria-expanded="true"] { background: var(--c-primary-light); color: var(--c-primary); }
.nav.transparent .nav-toggle { color: #fff; }
.nav.transparent .nav-toggle:hover { background: rgba(255,255,255,.12); }
.nav.transparent .nav-toggle[aria-expanded="true"] { background: rgba(255,255,255,.18); color: #fff; }

/* ---- Mobile Nav ---- */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-phone-desktop { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta .btn { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 24px 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    gap: 4px;
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
    border-top: 1px solid var(--c-border-light);
    box-shadow: 0 12px 32px rgba(13,27,46,.13);
  }

  .nav-links.open a {
    padding: 14px 16px;
    font-size: 1.0625rem;
    color: var(--c-text-2);
    border-radius: var(--radius-sm);
  }

  .nav-links.open .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
  }

  .nav-links.open .nav-cta-mobile a {
    display: flex;
    justify-content: center;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #08141f;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(5,12,20,.97) 0%,  rgba(5,12,20,.65) 40%, rgba(5,12,20,.25) 100%),
    linear-gradient(to right, rgba(5,12,20,.6) 0%,   rgba(5,12,20,.0) 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
  padding-top: 100px;
}

.hero-inner {
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(232,90,30,.4);
  border-radius: 100px;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color var(--dur-fast) var(--ease);
}

.hero-phone:hover { color: #fff; }

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-img { background-position: center 35%; }
  .hero-content { padding-bottom: 60px; padding-top: 80px; }
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--c-primary);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.trust-list {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-list::-webkit-scrollbar { display: none; }

.trust-list li {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,.65);
  padding: 16px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}

.trust-list li:last-child { border-right: none; }

@media (max-width: 640px) {
  .trust-list li { padding: 14px 20px; font-size: 0.75rem; }
}

/* ---- Services (editorial) ---- */
.services { background: var(--c-bg); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--c-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-secondary), var(--c-accent));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { color: var(--c-primary); }

.service-card-img {
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  height: 196px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--dur-fast) var(--ease);
}

.service-card:hover .service-link { gap: 10px; }

.service-card { display: flex; flex-direction: column; }

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

@media (max-width: 540px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 160px; }
}

/* ---- Why / USP ---- */
.why { background: var(--c-primary); overflow: hidden; position: relative; }

.why::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(30,107,69,.15);
  pointer-events: none;
}

.why .section-header h2 { color: #fff; }
.why .section-header p { color: rgba(255,255,255,.65); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usp-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--dur) var(--ease);
}

.usp-card:hover { background: rgba(255,255,255,.11); }

.usp-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.usp-card h4 { color: #fff; margin-bottom: 8px; }
.usp-card p { color: rgba(255,255,255,.6); font-size: 0.9375rem; }

@media (max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .usp-grid { grid-template-columns: 1fr; } }

/* ---- Process ---- */
.process { background: var(--c-surface); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-secondary), var(--c-accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-secondary);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px var(--c-surface), 0 0 0 10px var(--c-secondary);
  transition: transform var(--dur) var(--spring);
}

.process-step:hover .step-circle { transform: scale(1.1); }

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9375rem; color: var(--c-muted); }

@media (max-width: 820px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

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

/* ---- Target Groups ---- */
.targets { background: var(--c-bg); }

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.target-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.target-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.target-card-header {
  background: var(--c-primary-light);
  padding: 28px 28px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.target-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-card-icon svg { color: #fff; }

.target-card-header h3 { font-size: 1.125rem; }
.target-card-header p { font-size: 0.875rem; color: var(--c-muted); margin-top: 4px; }

.target-card-body { padding: 20px 28px 28px; }

.target-list { display: flex; flex-direction: column; gap: 10px; }

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--c-text-2);
}

.target-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-success-bg);
  border: 1px solid var(--c-success);
  display: flex;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a7a45' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

@media (max-width: 900px) { .target-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .target-grid { grid-template-columns: 1fr; } }

/* ---- Coverage Map ---- */
.coverage { background: var(--c-surface); }

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coverage-districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.district-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-2);
  transition: all var(--dur-fast) var(--ease);
}

.district-tag:hover {
  border-color: var(--c-secondary);
  background: var(--c-primary-light);
  color: var(--c-primary);
}

.district-tag svg { color: var(--c-secondary); flex-shrink: 0; }

.coverage-visual {
  background: var(--c-primary-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coverage-map-placeholder {
  text-align: center;
  color: var(--c-primary);
}

.coverage-map-placeholder svg { width: 80px; height: 80px; margin: 0 auto 16px; opacity: .4; }
.coverage-map-placeholder p { font-weight: 600; font-size: 1.125rem; }
.coverage-map-placeholder span { font-size: 0.875rem; color: var(--c-muted); }

@media (max-width: 820px) {
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-visual { display: none; }
}

/* ---- Documentation / Trust ---- */
.documentation {
  background: var(--c-surface);
}

.doc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.doc-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

.doc-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.doc-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-point-icon svg { color: #fff; }

.doc-point-text strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.doc-point-text span {
  font-size: 0.875rem;
  color: var(--c-muted);
}

.doc-visual-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.doc-visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}

.doc-visual-header strong { font-size: 1rem; }
.doc-visual-header span { font-size: 0.8125rem; color: var(--c-muted); }

.doc-log-entries { display: flex; flex-direction: column; gap: 12px; }

.doc-log-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-xs);
  background: var(--c-bg);
}

.doc-log-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
  min-width: 40px;
}

.doc-log-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

.doc-log-text {
  font-size: 0.875rem;
  color: var(--c-text-2);
  flex: 1;
}

.doc-log-text strong { color: var(--c-text); font-weight: 600; }

.doc-log-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--c-success-bg);
  color: var(--c-success);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .doc-inner { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq { background: var(--c-bg); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--dur-fast) var(--ease);
}

.faq-question:hover { background: var(--c-bg); }
.faq-item.open .faq-question { background: var(--c-primary-light); color: var(--c-primary); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
  color: var(--c-muted);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--c-primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.7;
  border-top: 1px solid var(--c-border-light);
  padding-top: 16px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0d3d22 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(30,107,69,.2);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner-text { flex: 1; }
.cta-banner-text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.cta-banner-text p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1.0625rem; }

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
}

/* ---- Contact Form ---- */
.contact-section { background: var(--c-surface); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { color: var(--c-primary); }
.contact-detail-item strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.contact-detail-item a, .contact-detail-item span { font-size: 0.9375rem; color: var(--c-text-2); }
.contact-detail-item a:hover { color: var(--c-secondary); }

/* Form */
.form-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type { margin-bottom: 24px; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-2);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.form-input:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(30,107,69,.15);
}

.form-input::placeholder { color: var(--c-muted-light); }

select.form-input { appearance: none; -webkit-appearance: none; cursor: pointer; }

textarea.form-input { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; justify-content: center; }

.form-legal {
  font-size: 0.8125rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 12px;
}

.form-legal a { color: var(--c-secondary); }
.form-legal a:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,.5);
}

.footer-logo-white {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.5);
  transition: color var(--dur-fast) var(--ease);
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.875rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a { color: rgba(255,255,255,.4); transition: color var(--dur-fast) var(--ease); }
.footer-legal-links a:hover { color: rgba(255,255,255,.8); }

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

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0d3d22 100%);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: 48px;
}

.breadcrumb a { color: var(--c-secondary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { color: var(--c-muted-light); }

/* ---- Badges / Tags ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-primary { background: var(--c-primary-light); color: var(--c-primary); }
.badge-success { background: var(--c-success-bg); color: var(--c-success); }
.badge-accent { background: var(--c-accent-light); color: var(--c-secondary); }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ---- Toast / Notification ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--c-text);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform var(--dur) var(--spring);
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--c-success); }
.toast.error { background: #c0392b; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ---- Barrierefreiheit: Focus-Indikatoren ---- */
:focus-visible {
  outline: 3px solid var(--c-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--c-secondary);
  outline-offset: 3px;
}

/* Abbr-Styling für Pflichtfeld-Kennzeichnung */
abbr[title] {
  text-decoration: none;
  color: var(--c-accent);
  font-weight: 700;
  cursor: help;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ---- Small Screen Global ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: var(--section-py-sm) 0; }
  h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .btn-lg { padding: 16px 28px; font-size: 1rem; }
  .contact-inner { gap: 36px; }
  .footer-grid { gap: 28px; }
}

/* ================================================================
   NEUE EDITORIAL SECTIONS
   ================================================================ */

/* ---- Section Intro ---- */
.section-intro {
  max-width: 640px;
  margin-bottom: 72px;
}

.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 1.0625rem; color: var(--c-text-2); line-height: 1.75; margin-top: 12px; }

/* ---- Service Features (editorial alternating) ---- */
.sf-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--c-border);
  min-height: 480px;
}

.sf:last-child { border-bottom: 1px solid var(--c-border); }

.sf-img {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--c-primary-light);
}

.sf-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sf:hover .sf-img img { transform: scale(1.04); }

.sf-body {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-surface);
}

.sf--reverse .sf-img { order: 2; }
.sf--reverse .sf-body { order: 1; background: var(--c-bg); }

.sf-body h2,
.sf-body h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sf-body p {
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sf-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sf-body ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--c-text-2);
  line-height: 1.6;
}

.sf-body ul li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231E6B45' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-accent);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
  width: fit-content;
}

.sf-link::after { content: '→'; font-size: 1rem; }
.sf-link:hover { border-color: var(--c-accent); gap: 10px; }

@media (max-width: 860px) {
  .sf, .sf--reverse { grid-template-columns: 1fr; min-height: auto; }
  .sf-img { height: 280px; order: 0 !important; }
  .sf-body { order: 1 !important; padding: 40px 28px; background: var(--c-surface) !important; }
}

/* ---- Compact Service Grid ---- */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  margin-top: 1px;
}

.sc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 36px;
  background: var(--c-surface);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease);
  position: relative;
}

.sc:hover { background: var(--c-primary-light); }

.sc-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
}

.sc-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.sc-arrow {
  font-size: 1.125rem;
  color: var(--c-accent);
  margin-top: 12px;
  transition: transform var(--dur-fast) var(--ease);
}

.sc:hover .sc-arrow { transform: translateX(4px); }

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

/* ---- Differenz Section ---- */
.differenz {
  background: var(--c-bg);
  padding: var(--section-py) 0;
}

.differenz-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.differenz-img {
  margin: 0;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.differenz-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.differenz-img figcaption {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-top: 10px;
  font-style: italic;
}

.differenz-body .eyebrow { margin-bottom: 12px; }
.differenz-body h2 { margin-bottom: 16px; }

.differenz-intro {
  font-size: 1.0625rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.diff-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}

.diff-item dt {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.diff-item dd {
  font-size: 0.9375rem;
  color: var(--c-text-2);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .differenz-inner { grid-template-columns: 1fr; gap: 48px; }
  .differenz-img { position: static; }
  .differenz-img img { aspect-ratio: 16/9; }
}

/* ---- Documentation ---- */
.documentation {
  background: var(--c-surface);
}

/* ---- FAQ (updated header) ---- */
.faq-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.faq-header h2 { margin-top: 8px; }

/* ---- CTA Photo Banner ---- */
.cta-photo {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 22, 0.82);
}

.cta-photo-content {
  position: relative;
  z-index: 2;
}

.cta-photo-inner {
  max-width: 680px;
}

.cta-photo-inner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.cta-photo-inner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-photo-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-photo { padding: 80px 0; }
  .cta-photo-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   Blog
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.blog-card-body h2,
.blog-card-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.blog-card-body p {
  font-size: 0.9375rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-meta {
  font-size: 0.8125rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.blog-meta-dot { opacity: .4; }

/* Article page */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.article-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 48px;
}

.article-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-primary);
  margin: 48px 0 16px;
  line-height: 1.25;
}

.article-body p {
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.9;
  margin-bottom: 20px;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-body ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

.article-body ul li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231E6B45' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.article-info-box {
  background: var(--c-primary-light);
  border-left: 3px solid var(--c-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 32px 0;
}

.article-info-box p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--c-primary);
}

.article-cta-box {
  background: var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.article-cta-box h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.article-cta-box p { color: rgba(255,255,255,.7); margin: 0; font-size: 0.9375rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.related-card {
  display: block;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--dur-fast) var(--ease);
}

.related-card:hover { box-shadow: var(--shadow-sm); }

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.related-card-body {
  padding: 16px;
}

.related-card-body span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: 6px;
}

.related-card-body strong {
  font-size: 0.9375rem;
  color: var(--c-primary);
  line-height: 1.4;
  display: block;
}

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

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-cta-box { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE ERGÄNZUNGEN
   ============================================================ */

/* ---- Über uns — Story (Bild + Text) ---- */
.ueber-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 820px) {
  .ueber-story {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 52px;
  }
}

/* ---- Über uns — Grundsätze ---- */
.ueber-values-wrap { margin-bottom: 80px; }

.ueber-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .ueber-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ueber-values { grid-template-columns: 1fr; }
  .ueber-values-wrap { margin-bottom: 48px; }
}

/* Nav tablet: hamburger already active above 1100px — no separate desktop-tablet style needed */

/* ---- Page Hero (Unterseiten) ---- */
@media (max-width: 640px) {
  .page-hero { padding: calc(var(--nav-h) + 24px) 0 44px; }
  .page-hero h1 { font-size: clamp(1.625rem, 7vw, 2.25rem); }
  .page-hero p { font-size: 1rem; }
}

/* ---- Section Header Abstand ---- */
@media (max-width: 640px) {
  .section-header { margin-bottom: 40px; }
  .section-intro { margin-bottom: 40px; }
}

/* ---- Hero CTA auf sehr kleinen Bildschirmen ---- */
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; }
}

/* ---- CTA Banner Buttons ---- */
@media (max-width: 480px) {
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
}

/* ---- SF-Sections auf sehr kleinen Screens ---- */
@media (max-width: 480px) {
  .sf-body { padding: 28px 20px; }
  .sf-img { height: 220px; }
}

/* ---- Article Spacing auf Mobile ---- */
@media (max-width: 480px) {
  .article-wrap { padding: 28px 16px 56px; }
  .article-hero-img { border-radius: var(--radius); margin-bottom: 32px; }
  .article-body h2 { font-size: 1.25rem; margin: 32px 0 12px; }
  .article-cta-box { padding: 24px 20px; }
  .article-info-box { padding: 16px 18px; }
}

/* ---- Breadcrumb Umbruch auf Mobile ---- */
@media (max-width: 480px) {
  .breadcrumb { flex-wrap: wrap; gap: 4px; margin-bottom: 24px; }
}

/* ---- Form Card auf Mobile ---- */
@media (max-width: 480px) {
  .form-card { padding: 24px 16px; }
}

/* ---- Footer auf sehr kleinen Screens ---- */
@media (max-width: 400px) {
  .footer-legal-links { flex-direction: column; gap: 8px; align-items: center; }
  .footer-bottom { text-align: center; }
}

/* ---- Trust Strip auf sehr kleinen Screens ---- */
@media (max-width: 400px) {
  .trust-list li { padding: 12px 14px; font-size: 0.7rem; }
}

/* ---- Globale Buttons auf sehr kleinen Screens ---- */
@media (max-width: 380px) {
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
}

/* ================================================================
   SUBPAGE RESPONSIVE ERGÄNZUNGEN
   ================================================================ */

/* ---- Leistungen (sf-list & sc-grid) auf Mobile ---- */
@media (max-width: 640px) {
  .sf-list { gap: 0; }
  .sf { min-height: auto; }
  .sf-img { height: 220px; }
  .sf-body { padding: 28px 20px; }
  .sf-body h2, .sf-body h3 { font-size: 1.375rem; }

  .sc { padding: 22px 24px; }
  .sc-grid { margin-top: 0; }
}

/* ---- Einsatzgebiet (districts grid) ---- */
@media (max-width: 540px) {
  .coverage-districts { grid-template-columns: 1fr; gap: 8px; }
  .district-tag { padding: 10px 14px; font-size: 0.875rem; }
}

/* ---- FAQ Seite ---- */
@media (max-width: 540px) {
  .faq-question { padding: 16px 18px; font-size: 0.9375rem; }
  .faq-answer-inner { padding: 12px 18px 16px; }
}

/* ---- Blog Grid ---- */
@media (max-width: 480px) {
  .blog-card-body { padding: 18px; }
  .article-cta-box { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- Differenz-Section Subseiten ---- */
@media (max-width: 640px) {
  .differenz-img img { aspect-ratio: 3/2; }
}

/* ---- Anfrage Seite ---- */
@media (max-width: 600px) {
  .contact-inner { gap: 28px; }
  .contact-detail { gap: 12px; }
}

/* ---- Page Hero auf kleinen Screens ---- */
@media (max-width: 480px) {
  .page-hero { padding: calc(var(--nav-h) + 20px) 0 36px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
}

/* ---- Cta-Banner auf sehr kleinen Screens ---- */
@media (max-width: 420px) {
  .cta-banner-inner { gap: 28px; }
  .cta-banner-text h2 { font-size: 1.375rem; }
}

/* ---- Process Steps ---- */
@media (max-width: 380px) {
  .process-step h4 { font-size: 0.9375rem; }
  .process-step p { font-size: 0.875rem; }
}

/* ---- Über-uns Seite: Story-Bild auf Mobile ---- */
@media (max-width: 480px) {
  .ueber-story img { border-radius: var(--radius); }
  .ueber-story { gap: 28px; }
}

/* ---- Trust Strip: kein Scrolling-Overflow auf kleinen Screens ---- */
@media (max-width: 480px) {
  .trust-list { flex-wrap: nowrap; }
}

/* ---- Impressum / Datenschutz ---- */
@media (max-width: 480px) {
  .legal-content { padding: 40px 0; }
}

/* ---- Gartendienst Unterseiten: 2-spaltig → 1-spaltig ---- */
.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 80px;
}

@media (max-width: 820px) {
  .subpage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }
}

/* ================================================================
   GARTENDIENST — ANIMATIONEN & BILDPLATZHALTER
   ================================================================ */

/* ---- Keyframes ---- */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes sway {
  0%, 100% { transform: rotate(-2.5deg); }
  50%       { transform: rotate(2.5deg); }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(30,107,69,.4); }
  65%  { box-shadow: 0 0 0 14px rgba(30,107,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,107,69,0); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer-bg {
  0%   { background-position: -300% 0; }
  100% { background-position: 300% 0; }
}

/* ---- Hero: animierter Gradient-Hintergrund (Fallback ohne Foto) ---- */
.hero-img {
  background-color: #04100a;
}

/* ---- Hero: botanisches Dekorelement ---- */
.hero-deco {
  position: absolute;
  right: clamp(16px, 7vw, 100px);
  bottom: 0;
  width: clamp(160px, 26vw, 400px);
  height: auto;
  opacity: 1;
  animation: sway 11s ease-in-out infinite;
  transform-origin: 50% 100%;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-deco { width: clamp(110px, 35vw, 240px); opacity: .7; }
}
@media (max-width: 580px) {
  .hero-deco { display: none; }
}

/* ---- sf-img: Gradient-Platzhalter ---- */
.sf-img {
  background: linear-gradient(135deg, #071a0e 0%, #1E6B45 100%);
}

.sf-img-gartenpflege   { background: linear-gradient(135deg, #04100a 0%, #0d2a18 45%, #1E6B45 100%); }
.sf-img-rasenpflege    { background: linear-gradient(135deg, #051208 0%, #123e1c 50%, #2a7a38 100%); }
.sf-img-heckenschnitt  { background: linear-gradient(135deg, #040e07 0%, #0d2c15 50%, #1a5832 100%); }
.sf-img-bepflanzung    { background: linear-gradient(155deg, #120804 0%, #3d1d0a 50%, #7a4818 100%); }
.sf-img-gartengestaltung { background: linear-gradient(135deg, #050c10 0%, #0c2030 50%, #155c3a 100%); }
.sf-img-laubentfernung { background: linear-gradient(148deg, #130c03 0%, #4f2d0a 55%, #8a601a 100%); }

/* Botanische Dekoration als SVG-Overlay auf sf-img */
.sf-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 95%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 400 C92 330 105 265 96 195 C90 145 102 95 98 45 C97 25 100 0 100 0' stroke='white' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M98 310 C55 292 22 262 2 220 C52 243 86 272 98 310Z' fill='white'/%3E%3Cpath d='M100 295 C143 275 178 244 198 202 C148 226 113 256 100 295Z' fill='white'/%3E%3Cpath d='M97 215 C52 196 18 164 0 120 C52 143 86 175 97 215Z' fill='white'/%3E%3Cpath d='M100 200 C145 180 180 148 200 104 C148 127 113 158 100 200Z' fill='white'/%3E%3Cpath d='M98 125 C58 106 28 76 12 35 C58 58 90 88 98 125Z' fill='white'/%3E%3Cpath d='M100 112 C140 92 170 60 186 18 C140 42 110 72 100 112Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: .055;
  pointer-events: none;
  z-index: 1;
}

/* ---- Blog-Karten: Gradient-Platzhalter ---- */
.blog-card-img {
  background: linear-gradient(135deg, #071a0e 0%, #1E6B45 100%);
}

.blog-card-img--gartenpflege  { background: linear-gradient(135deg, #04100a 0%, #1a5030 100%); }
.blog-card-img--rasenpflege   { background: linear-gradient(135deg, #051208 0%, #2a7038 100%); }
.blog-card-img--heckenschnitt { background: linear-gradient(135deg, #040e07 0%, #1a5030 100%); }
.blog-card-img--gartengestaltung { background: linear-gradient(135deg, #050c10 0%, #155c3a 100%); }
.blog-card-img--winterschutz  { background: linear-gradient(135deg, #080d15 0%, #1a3050 100%); }

/* Botanisches SVG auf Blog-Cards */
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 100 C47 78 52 55 49 32 C48 18 50 0 50 0' stroke='white' stroke-width='1' fill='none'/%3E%3Cpath d='M49 75 C30 67 15 53 5 36 C26 44 42 58 49 75Z' fill='white'/%3E%3Cpath d='M50 68 C70 60 85 46 95 29 C74 37 58 51 50 68Z' fill='white'/%3E%3Cpath d='M49 44 C30 36 16 22 8 5 C28 13 44 27 49 44Z' fill='white'/%3E%3Cpath d='M50 38 C69 30 84 16 92 -1 C72 7 57 21 50 38Z' fill='white'/%3E%3C/svg%3E");
  background-size: 80px;
  background-position: bottom 12px right 12px;
  background-repeat: no-repeat;
  opacity: .07;
  pointer-events: none;
}

/* ---- Service Cards: hover animation ---- */
.service-icon {
  transition: background var(--dur) var(--spring), transform var(--dur) var(--spring);
}

.service-card:hover .service-icon {
  background: var(--c-secondary);
  transform: scale(1.08) rotate(-3deg);
}

.service-card:hover .service-icon svg {
  stroke: #fff;
  animation: float-gentle 1.8s ease-in-out infinite;
}

/* ---- Hero CTA: Pulse ---- */
.hero-actions .btn-white {
  animation: pulse-ring 4s ease-out infinite;
}

/* ---- Process Steps: Circle hover ---- */
.step-circle {
  transition: background var(--dur) var(--ease), transform var(--dur) var(--spring), box-shadow var(--dur) var(--ease);
}

.process-step:hover .step-circle {
  transform: scale(1.14);
  background: var(--c-accent);
  box-shadow: 0 0 0 8px var(--c-surface), 0 0 0 10px var(--c-accent);
}

/* ---- USP Cards: hover lift ---- */
.usp-card {
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: default;
}

.usp-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}

.usp-card:hover .usp-num { color: #fff; }
.usp-num { transition: color var(--dur) var(--ease); }

/* ---- Target Cards: Icon rotate ---- */
.target-card-icon {
  transition: background var(--dur) var(--spring), transform var(--dur) var(--spring);
}

.target-card:hover .target-card-icon {
  background: var(--c-secondary);
  transform: rotate(6deg) scale(1.1);
}

/* ---- Page Hero: shimmer on load ---- */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.06) 40%,
    rgba(255,255,255,.12) 50%,
    rgba(255,255,255,.06) 60%,
    transparent 100%);
  background-size: 300% 100%;
  animation: shimmer-bg 4s ease-in-out 0.5s 1 forwards;
  pointer-events: none;
}

/* ---- CTA Banner: animated gradient ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0d3a22 50%, #1e4a82 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease-in-out infinite;
}

/* ---- CTA Photo: floating leaf decoration ---- */
.cta-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 400 C92 330 105 265 96 195 C90 145 102 95 98 45 C97 25 100 0 100 0' stroke='white' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M98 310 C55 292 22 262 2 220 C52 243 86 272 98 310Z' fill='white'/%3E%3Cpath d='M100 295 C143 275 178 244 198 202 C148 226 113 256 100 295Z' fill='white'/%3E%3Cpath d='M97 215 C52 196 18 164 0 120 C52 143 86 175 97 215Z' fill='white'/%3E%3Cpath d='M100 200 C145 180 180 148 200 104 C148 127 113 158 100 200Z' fill='white'/%3E%3C/svg%3E");
  background-size: 120px;
  background-position: bottom 0 right 8%;
  background-repeat: no-repeat;
  opacity: .05;
}

/* ---- sf-img: Bild-Zoom beim Hover ---- */
.sf:hover .sf-img img { transform: scale(1.04); }

/* ---- Reveal: stagger für service-grid ---- */
.service-grid .service-card.reveal:nth-child(1) { transition-delay: 40ms; }
.service-grid .service-card.reveal:nth-child(2) { transition-delay: 100ms; }
.service-grid .service-card.reveal:nth-child(3) { transition-delay: 160ms; }
.service-grid .service-card.reveal:nth-child(4) { transition-delay: 80ms; }
.service-grid .service-card.reveal:nth-child(5) { transition-delay: 140ms; }
.service-grid .service-card.reveal:nth-child(6) { transition-delay: 200ms; }

/* ---- Blog grid: stagger ---- */
.blog-grid .blog-card.reveal:nth-child(1) { transition-delay: 40ms; }
.blog-grid .blog-card.reveal:nth-child(2) { transition-delay: 110ms; }
.blog-grid .blog-card.reveal:nth-child(3) { transition-delay: 180ms; }

/* ---- Trust strip: botanisches Tick-Icon ---- */
.trust-list li::before {
  content: '✦';
  color: var(--c-secondary);
  margin-right: 6px;
  font-size: .65rem;
}

/* ---- Footer logo mark: grün ---- */
.footer-logo-mark {
  background: var(--c-secondary);
}

/* ---- Nav Logo: Größe ---- */
.nav-logo img { height: 60px; }
@media (max-width: 600px) { .nav-logo img { height: 48px; } }

/* ================================================================
   MOBILE RESPONSIVE — Kleine Screens (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-white { height: 42px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Über uns Story */
  .ueber-story { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }

  /* Page Hero */
  .page-hero { padding: 80px 0 40px; }
  .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }

  /* CTA Banner */
  .cta-banner-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; text-align: center; }

  /* sf-list (Leistungen) */
  .sf { grid-template-columns: 1fr; min-height: auto; }
  .sf-img { height: 220px; }
  .sf-body { padding: 28px 20px; }
  .sf--reverse .sf-img { order: 0; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item { padding: 16px 0; }

  /* Anfrage form */
  .anfrage-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; gap: 32px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.8125rem; }

  /* Buttons */
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
