@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
/* ============================================
   SANOVA UMWELTTECHNIK – Hauptstylesheet


:root {
  --primary:     #545c63;   /* Dunkelgrau aus Logo */
  --primary-mid: #636c74;
  --accent:      #5aadaa;   /* Türkis aus Logo */
  --accent-light:#7ec8c6;
  --gold:        #5aadaa;   /* Türkis Logo */
  --gold-light:  #8dd9d7;
  --bg:          #f5f8f8;
  --bg-alt:      #eaf1f1;
  --text:        #1e1e1e;
  --text-mid:    #3d3d3d;
  --text-light:  #5a6060;
  --white:       #ffffff;
  --border:      #c8d5d5;
  --shadow:      0 4px 24px rgba(84,92,99,0.10);
  --shadow-lg:   0 12px 48px rgba(84,92,99,0.16);
  --radius:      4px;
  --radius-lg:   10px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:   'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h:       72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(58,63,69,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: background var(--transition);
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.85; }
.nav-logo-text { display: flex; flex-direction: column; gap: 0; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: var(--primary); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  padding: 0.5rem 1.2rem !important;
  background: var(--white) !important;
  color: var(--primary) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--accent-light) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #3a4045 0%, #545c63 55%, #4a5259 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(74,140,92,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,168,75,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(74,154,138,0.2);
  border: 1px solid rgba(74,154,138,0.4);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '✓'; font-size: 0.7rem;
  background: var(--gold); color: var(--primary);
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}
.hero-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem; line-height: 1.8;
  margin-bottom: 2.25rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold); color: var(--primary);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-green {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.btn-green:hover { background: var(--primary-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--gold-light);
}
.hero-stat span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* Hero visual */
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateX(-4px); }
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.hero-card-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.hero-card h3 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.hero-card p  { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; }

/* ── Sections ── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-dark .section-label { color: var(--gold-light); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  color: var(--primary);
}
.section-dark h2 { color: var(--white); }
.section-header p {
  margin-top: 1rem;
  color: var(--text-light); font-size: 1.05rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; fill: var(--white); }
.card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--primary); margin-bottom: 0.6rem;
}
.card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }
.card ul { list-style: none; margin-top: 1rem; }
.card ul li {
  padding: 0.3rem 0;
  color: var(--text-mid); font-size: 0.9rem;
  padding-left: 1.2rem; position: relative;
}
.card ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-size: 0.8rem;
}

/* Leistungs-Card */
.leistung-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.leistung-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.leistung-card-header {
  background: linear-gradient(135deg, #3a4045 0%, #545c63 100%);
  padding: 1.75rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.leistung-card-header .icon {
  width: 48px; height: 48px;
  background: rgba(200,168,75,0.2);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.leistung-card-header .icon svg { width: 24px; height: 24px; fill: var(--gold-light); }
.leistung-card-header h3 {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--white);
  font-weight: 600; margin-bottom: 0.2rem;
}
.leistung-card-header .norm {
  font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}
.leistung-card-body { padding: 1.5rem; }
.leistung-card-body p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  background: rgba(26,58,42,0.07);
  color: var(--primary-mid);
  padding: 0.2rem 0.7rem;
  border-radius: 2rem; font-size: 0.78rem; font-weight: 500;
}

/* ── USP Strip ── */
.usp-strip {
  background: var(--primary);
  padding: 3rem 2rem;
}
.usp-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.usp-item { text-align: center; }
.usp-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--gold-light);
  line-height: 1;
}
.usp-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-top: 0.3rem; }

/* ── Process Steps ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; left: 23px; top: 52px;
  width: 2px; height: calc(100% - 28px);
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white);
  counter-increment: step;
  position: relative; z-index: 1;
}
.step-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--primary); margin-bottom: 0.4rem; }
.step-content p  { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #3a4045 0%, #545c63 100%);
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200,168,75,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--white); }
.contact-item-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.15rem; }
.contact-item-text a, .contact-item-text span { color: var(--text); font-size: 0.97rem; }
.contact-item-text a:hover { color: var(--accent); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,140,92,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.75rem; }
.form-success {
  display: none;
  background: rgba(74,140,92,0.1); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 1rem;
  color: var(--primary-mid); font-size: 0.9rem; text-align: center; margin-top: 1rem;
}

/* ── Info / Schadstoffe ── */
.schadstoff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.schadstoff-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; border-top: 4px solid var(--accent);
  transition: box-shadow var(--transition), transform var(--transition);
}
.schadstoff-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.schadstoff-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--primary); margin-bottom: 0.6rem; }
.schadstoff-card .subtitle { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; font-style: italic; }
.schadstoff-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-value { display: flex; gap: 1rem; align-items: flex-start; }
.about-value-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(74,140,92,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.about-value-icon svg { width: 18px; height: 18px; fill: var(--accent); }
.about-value h4 { font-size: 0.95rem; font-weight: 600; color: var(--primary); margin-bottom: 0.15rem; }
.about-value p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.cert-box {
  background: linear-gradient(135deg, #3a4045 0%, #545c63 100%);
  border-radius: var(--radius-lg); padding: 2.5rem;
  color: var(--white);
}
.cert-box h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--gold-light); }
.cert-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.cert-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(200,168,75,0.2); border: 1px solid rgba(200,168,75,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--gold-light);
}
.cert-item-text strong { display: block; font-size: 0.92rem; margin-bottom: 0.15rem; }
.cert-item-text span  { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ── Legal Pages ── */
.legal-page {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}
.legal-content {
  max-width: 780px; margin: 0 auto; padding: 0 2rem;
}
.legal-content h1 { font-family: var(--font-display); font-size: 2.2rem; color: var(--primary); margin-bottom: 0.5rem; }
.legal-content .subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 3rem; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--primary); margin: 2rem 0 0.75rem; }
.legal-content p  { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { list-style: none; margin-bottom: 1rem; }
.legal-content ul li { padding: 0.3rem 0 0.3rem 1.4rem; position: relative; color: var(--text-light); font-size: 0.95rem; }
.legal-content ul li::before { content: '·'; position: absolute; left: 0.4rem; color: var(--accent); font-size: 1.2rem; line-height: 1.4; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(58,63,69,0.97);
  backdrop-filter: blur(8px);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold); color: var(--primary);
  padding: 0.6rem 1.4rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600; border: none; cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,0.7);
  padding: 0.6rem 1.4rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ── Footer ── */
.footer {
  background: #1a2e2d;
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand p  { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #3a4045 0%, #545c63 100%);
  padding: calc(var(--nav-h) + 3.5rem) 2rem 3.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(74,140,92,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.68); max-width: 600px; margin: 0 auto; position: relative; }

/* ── Divider ── */
.divider {
  height: 1px; background: var(--border);
  max-width: 1200px; margin: 0 auto;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual   { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links     { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(58,63,69,0.98); padding: 1.5rem 2rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle    { display: flex; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats    { flex-wrap: wrap; gap: 1.5rem; }
  .usp-grid      { grid-template-columns: 1fr 1fr; }
  .hero-actions  { flex-direction: column; }
  .btn           { justify-content: center; }
}

/* ── Logo in Nav & Footer ── */
.nav-logo-img-wrap {
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 4px 10px;
  display: flex; align-items: center;
  transition: background var(--transition);
}
.nav-logo-img-wrap:hover { background: #fff; }
.nav-logo-img {
  height: 38px; width: auto;
  display: block;
}
.footer-logo-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-flex; align-items: center;
  margin-bottom: 1.25rem;
}
.footer-logo-img {
  height: 48px; width: auto;
  display: block;
  /* Logo hat weißen Hintergrund – leicht transparent machen */
  mix-blend-mode: lighten;
  opacity: 0.92;
}
