﻿/* ============================================================
   POLAT GROUP GmbH – Strukturberater für Unternehmer
   styles.css – Complete Redesign 2025
   Farben: #1E4E8C (Primary) | #FFFFFF (Weiß) | #38BDF8 (Akzent)
   Font: Calibri / Arial, 16px Body
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --primary:      #1E4E8C;
  --primary-dark: #163a6b;
  --primary-mid:  #2a5fa0;
  --accent:       #38BDF8;
  --accent-dark:  #0ea5e9;
  --white:        #FFFFFF;
  --off-white:    #F5F8FC;
  --light:        #EEF3FA;
  --text:         #2B2B2B;
  --text-muted:   #5a6a7e;
  --border:       rgba(30, 78, 140, 0.13);
  --shadow:       0 4px 20px rgba(30, 78, 140, 0.09);
  --shadow-lg:    0 10px 40px rgba(30, 78, 140, 0.14);
  --radius:       10px;
  --radius-lg:    16px;
  --font:         'Montserrat', 'Open Sans', Arial, sans-serif;
  --graphite:    #2B2B2B;
  --steel-blue:  #5A7FA6;
  --deep-blue:   #0F2F57;
  --light-bg:    #F4F6F8;
  --container:    1160px;
  --header-h:     70px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 78, 140, 0.25);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm  { padding: 0.5rem 1.2rem; font-size: 0.875rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-full { width: 100%; }

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
}
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(22, 58, 107, 0.97);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s;
}
.header.scrolled {
  box-shadow: 0 2px 24px rgba(22, 58, 107, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

/* ── LOGO ── */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.88; }

.logo-img {
  display: block;
  width: auto;
}
.logo-img-desktop { height: 40px; }
.logo-img-mobile  { height: 36px; display: none; }

.logo-tagline {
  display: block;
  font-size: 0.625rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Footer logo */
.footer-logo {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

/* Responsive: mobile → nur Icon */
@media (max-width: 640px) {
  .logo-img-desktop { display: none; }
  .logo-img-mobile  { display: block; }
  .logo-tagline     { display: none; }
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-desktop a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-cta { margin-left: 0.25rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.nav-mobile.open {
  max-height: 540px;
  padding: 0.75rem 0 1.5rem;
}
.nav-mobile a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.15s;
}
.nav-mobile a:last-child { border: none; }
.nav-mobile a:hover { background: rgba(255, 255, 255, 0.07); }
.nav-mobile .btn { margin: 1.25rem 1.5rem 0; }

/* ── 1 · HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 45%, #2a5fa0 100%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 45%, rgba(56, 189, 248, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 70% at 10% 80%, rgba(22, 58, 107, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 4.5rem;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(1.9rem, 4.5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-tagline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.hero-claim {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  max-width: 480px;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.pillar-tag {
  padding: 0.35rem 0.9rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.hero-microcopy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.hero-trust-line span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}

/* Hero portrait */
.hero-portrait-wrap { position: relative; }
.hero-portrait-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 5%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* ── 2 · PROBLEM ── */
.problem {
  padding: 6rem 0;
  background: var(--white);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.problem-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.problem-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(30, 78, 140, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-box h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.problem-box p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.problem-cta {
  text-align: center;
}
.problem-digitalisierung {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.6;
}
.problem-digitalisierung a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.problem-digitalisierung a:hover {
  color: var(--accent-dark);
}
.problem-thesis {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.problem-cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ── 3 · SÄULEN ── */
.saeulen {
  padding: 6rem 0;
  background: var(--light);
}
.saeulen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.saeule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.saeule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.saeule-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.saeule-absicherung { background: rgba(30, 78, 140, 0.09);  color: var(--primary); }
.saeule-vorsorge    { background: rgba(56, 189, 248, 0.12); color: #0284c7; }
.saeule-vermoegen   { background: rgba(34, 197, 94, 0.10);  color: #16a34a; }
.saeule-immobilien  { background: rgba(249, 115, 22, 0.10); color: #ea580c; }

.saeule-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.saeule-card > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.saeule-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.saeule-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.125rem;
  position: relative;
}
.saeule-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ── 4 · PORTFOLIO (Tabelle) ── */
.portfolio {
  padding: 6rem 0;
  background: var(--white);
}
.portfolio-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.portfolio-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--white);
}
.portfolio-table thead tr {
  background: var(--primary);
  color: var(--white);
}
.portfolio-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.portfolio-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.portfolio-table tbody tr:last-child { border-bottom: none; }
.portfolio-table tbody tr:hover { background: var(--off-white); }
.portfolio-table tbody td {
  padding: 1.125rem 1.25rem;
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.portfolio-bereich { white-space: nowrap; }

.badge-absicherung, .badge-vorsorge, .badge-vermoegen, .badge-immobilien {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.badge-absicherung { background: rgba(30,78,140,0.09);  color: var(--primary);  }
.badge-vorsorge    { background: rgba(56,189,248,0.12); color: #0284c7; }
.badge-vermoegen   { background: rgba(34,197,94,0.10);  color: #16a34a; }
.badge-immobilien  { background: rgba(249,115,22,0.10); color: #ea580c; }

.badge-ohg  {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(30, 78, 140, 0.08);
  color: var(--primary);
  white-space: nowrap;
}
.badge-gmbh {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.12);
  color: #0369a1;
  white-space: nowrap;
}

/* ── 5 · TRUSTED ADVISOR ── */
.trusted {
  padding: 6rem 0;
  background: var(--light);
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.trusted-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.trusted-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(30, 78, 140, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.trusted-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.625rem;
}
.trusted-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.trusted-quote {
  text-align: center;
  padding: 2.5rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
}
.trusted-quote blockquote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 0.875rem;
}
.trusted-quote cite {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
}

/* ── 6 · PROZESS ── */
.prozess {
  padding: 6rem 0;
  background: var(--white);
}
.prozess-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 3.5rem;
}
.prozess-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}
.prozess-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.prozess-connector {
  position: absolute;
  top: 26px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(30,78,140,0.25));
}
.prozess-connector.last { display: none; }
.prozess-step:last-child .prozess-connector { display: none; }

.prozess-step h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.prozess-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.prozess-cta {
  text-align: center;
}

/* ── 7 · FIRMENSTRUKTUR ── */
.struktur {
  padding: 5rem 0;
  background: var(--light);
}
.struktur-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.struktur-dach {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  text-align: center;
  width: 100%;
}
.struktur-dach-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.struktur-dach h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}
.struktur-dach p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.struktur-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.struktur-divider {
  color: var(--primary);
  padding: 0.5rem 0;
}
.struktur-tochter-wrap { width: 100%; }
.struktur-tochter {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.struktur-tochter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.struktur-tochter h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.625rem;
}
.struktur-tochter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── ÜBER MICH ── */
.ueber-mich {
  padding: 6rem 0;
  background: var(--white);
}
.ueber-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}
.ueber-portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 5%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.ueber-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.ueber-lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}
.ueber-slogan {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary-mid);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.ueber-title {
  font-size: 0.9375rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.ueber-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ueber-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.75rem 0;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-slogan {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  text-transform: none;
}
.cta-text h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
}

/* ── ZERTIFIKATE ── */
.vertrauen {
  padding: 6rem 0;
  background: var(--light);
}
.zert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
  margin-bottom: 3rem;
}
.zert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.zert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.zert-year {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  margin-bottom: 0.625rem;
}
.zert-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}
.zert-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.zert-relevanz {
  margin-top: 0.5rem;
  font-size: 0.75rem !important;
  color: var(--primary) !important;
  opacity: 0.75;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  font-style: italic;
}
.zert-highlight {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.04);
}
.mitglieder-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.mitglied-badge {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  text-align: center;
  line-height: 1.35;
  box-shadow: var(--shadow);
}

/* ── KONTAKT ── */
.kontakt {
  padding: 6rem 0;
  background: var(--off-white);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.kontakt-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.kontakt-sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.kontakt-details { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.kontakt-item svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.kontakt-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.kontakt-item strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kontakt-item span, .kontakt-item a { font-size: 0.9375rem; color: var(--text); }
.kontakt-item a:hover { color: var(--primary); }

/* Form */
.kontakt-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}
.form-group label span { color: var(--accent-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #cdd6e2;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 78, 140, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-privacy { margin-bottom: 1.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.checkbox-label input[type=checkbox] { margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.checkbox-label a { color: var(--primary); text-decoration: underline; }

/* Form feedback */
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.form-feedback[hidden] { display: none; }
.form-feedback svg {
  width: 22px; height: 22px;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-feedback div { display: flex; flex-direction: column; gap: 0.2rem; }
.form-feedback strong { font-size: 0.9375rem; font-weight: 700; }
.form-feedback span   { font-size: 0.875rem; opacity: 0.85; }
.form-success {
  background: rgba(34, 139, 87, 0.08);
  border: 1px solid rgba(34, 139, 87, 0.25);
  color: #1a6b3f;
}
.form-success svg { stroke: #1a6b3f; }
.form-error {
  background: rgba(229, 62, 62, 0.08);
  border: 1px solid rgba(229, 62, 62, 0.25);
  color: #c53030;
}
.form-error svg { stroke: #c53030; }

.form-microcopy {
  font-size: 0.75rem;
  color: #718096;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer { background: var(--primary-dark); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 3rem 1.5rem;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-claim  { font-size: 1rem; font-weight: 700; color: var(--white); font-style: italic; margin-bottom: 0.15rem !important; }
.footer-slogan { font-size: 0.8125rem; color: rgba(255,255,255,0.45); font-style: italic; margin-top: 0.15rem; }
.footer-addr { font-size: 0.8125rem; opacity: 0.5; margin-top: 0.25rem; color: rgba(255,255,255,0.5); }

.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a, .footer-legal a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── ANIMATIONS ── */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in       { transform: translateY(22px); }
.fade-in-left  { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-grid        { grid-template-columns: 1fr 360px; gap: 3.5rem; }
  .trusted-grid     { grid-template-columns: repeat(2, 1fr); }
  .prozess-steps    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .saeulen-grid     { grid-template-columns: 1fr 1fr; }
  .zert-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Header */
  .nav-desktop      { display: none; }
  .nav-cta          { display: none; }
  .menu-toggle      { display: flex; }
  .nav-mobile       { display: flex; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2.5rem;
  }
  .hero-portrait-wrap { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-portrait-img  { height: 340px; }
  .hero-text          { max-width: 100%; }

  /* Grids */
  .problem-grid    { grid-template-columns: 1fr; }
  .saeulen-grid    { grid-template-columns: 1fr; }
  .trusted-grid    { grid-template-columns: 1fr 1fr; }
  .prozess-steps   { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .prozess-connector { display: none; }

  .ueber-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .ueber-portrait-wrap { max-width: 280px; margin: 0 auto; }

  .cta-inner       { flex-direction: column; text-align: center; }

  .zert-grid       { grid-template-columns: 1fr; }
  .kontakt-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .form-row        { grid-template-columns: 1fr; }

  .footer-inner    { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
  .footer-links    { flex-direction: column; gap: 1.5rem; }

  .portfolio-table-wrap { border-radius: var(--radius); }
}

@media (max-width: 540px) {
  .trusted-grid  { grid-template-columns: 1fr; }
  .prozess-steps { grid-template-columns: 1fr; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust-line { flex-direction: column; gap: 0.5rem; }
  .mitglieder-row  { gap: 0.75rem; }
}

/* ── Unternehmenswerte ── */
.werte {
  padding: 100px 0;
  background: var(--off-white);
}

.werte-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.werte-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(30,78,140,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.werte-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30,78,140,0.13);
}

/* ── System-Diagramm ── */
.system-diagram-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto 4rem;
  max-width: 520px;
}

.system-diagram-svg {
  width: 100%;
  height: auto;
  max-width: 480px;
}

.system-diagram-svg a rect {
  transition: fill 0.2s, stroke 0.2s;
  cursor: pointer;
}

.system-diagram-svg a:hover rect {
  fill: rgba(30,78,140,0.18);
  stroke: var(--accent);
}

.system-diagram-svg a:hover text {
  fill: var(--accent-dark);
}

.saeulen-kernsatz {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 auto 2.5rem;
  max-width: 560px;
  line-height: 1.5;
}
.diagram-caption {
  font-size: 0.875rem;
  color: #6b7a96;
  font-style: italic;
  text-align: center;
  margin-top: 0.75rem;
  max-width: 380px;
}

@media (max-width: 540px) {
  .system-diagram-wrap { margin: 2rem auto 3rem; }
}

/* ── Werte-Slogan ── */
.werte-slogan {
  font-style: italic;
  color: var(--primary);
  opacity: 0.7;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.werte-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
}

.werte-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.werte-card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.werte-quote {
  font-style: italic;
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.65;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
  margin-top: 0.5rem !important;
}

@media (max-width: 1100px) {
  .werte-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .werte-grid { grid-template-columns: repeat(2, 1fr); }
  .werte      { padding: 70px 0; }
}

@media (max-width: 480px) {
  .werte-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   NEUE SEKTIONEN: Testimonials · FAQ · WhatsApp · Mein Ansatz
   ============================================================ */

/* ── MEIN ANSATZ (Über mich) ── */
.mein-ansatz {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 1.25rem 0 1rem;
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--light);
  padding: 5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-quote {
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--accent);
  font-family: Georgia, serif;
  opacity: 0.7;
}
.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.testimonial-author strong {
  font-size: 0.9375rem;
  color: var(--primary);
  font-style: normal;
}
.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq {
  background: var(--white);
  padding: 5rem 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.faq-item p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* ── 5-SÄULEN GRID (neu) ── */
.saeulen-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .saeulen-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .saeulen-grid-5 { grid-template-columns: 1fr; } }

/* KI-Karte Highlight */
.saeule-card-ki {
  border-top: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(56,189,248,0.06) 0%, var(--white) 100%);
}
.saeule-ki { color: var(--accent); }

/* OHG / GmbH Badge auf Karte */
.saeule-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.saeule-badge-ohg  { background: rgba(30,78,140,0.10); color: var(--primary); }
.saeule-badge-gmbh { background: rgba(56,189,248,0.15); color: #0284c7; }

/* KI-Karte Link */
.saeule-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.saeule-link:hover { text-decoration: underline; }

/* Transparenz-Hinweis OHG/GmbH */
.ohg-hinweis {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(30,78,140,0.05);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ohg-hinweis strong { color: var(--primary); }

/* Hero Pillar Highlight (KI) */
.pillar-tag-highlight {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: var(--accent) !important;
  font-weight: 700;
}

/* ============================================================
   NEUE SEKTIONEN: Lösung · Einstieg KI · Zielgruppe · Struktur
   ============================================================ */

/* ── PROBLEM LEAD ── */
.problem-lead {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin: -1rem auto 1.5rem;
  max-width: 560px;
}

/* ── LÖSUNG ── */
.loesung {
  background: var(--light-bg, #F4F6F8);
  padding: 5rem 0;
}
.loesung-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.loesung-text {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.loesung-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.loesung-list li {
  background: var(--white);
  border: 1.5px solid rgba(30,78,140,0.15);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.9375rem;
  color: var(--primary);
  line-height: 1.4;
}
.loesung-list li strong { font-weight: 700; }
.loesung-fazit {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid rgba(30,78,140,0.1);
  padding-top: 1.25rem;
}

/* ── EINSTIEG KI ── */
.einstieg-ki {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 0;
}
.einstieg-ki .section-eyebrow { color: var(--accent); }
.einstieg-ki h2 { color: var(--white); }
.einstieg-ki p { color: rgba(255,255,255,0.85); }
.einstieg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .einstieg-grid { grid-template-columns: 1fr; gap: 2rem; } }
.einstieg-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.einstieg-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
}
.einstieg-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.einstieg-ergebnis {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9) !important;
}
.einstieg-ergebnis strong { color: var(--white); }
.einstieg-ki .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.einstieg-ki .btn-primary:hover { background: rgba(255,255,255,0.9); }
.einstieg-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.einstieg-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.einstieg-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.einstieg-step span:last-child {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  line-height: 1.4;
}

/* ── ZIELGRUPPE ── */
.zielgruppe {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid rgba(30,78,140,0.08);
}
.zielgruppe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .zielgruppe-grid { grid-template-columns: 1fr; gap: 2rem; } }
.zielgruppe-text h2 { margin-bottom: 1rem; }
.zielgruppe-text p { margin-bottom: 1rem; color: var(--text); line-height: 1.75; font-size: 1rem; }
.zielgruppe-text .btn { margin-top: 0.5rem; }
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.zielgruppe-punkte {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.zielgruppe-punkt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--light-bg, #F4F6F8);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.4;
}
.zielgruppe-punkt svg { flex-shrink: 0; margin-top: 1px; }

/* ── STRUKTUR-HINWEIS ── */
.struktur-hinweis {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.struktur-hinweis p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.struktur-hinweis strong { color: var(--primary); }
.struktur-fazit {
  font-size: 1.0625rem !important;
  font-weight: 600;
  color: var(--primary) !important;
  margin-top: 0.5rem;
}
.struktur-zwei {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 600px) { .struktur-zwei { grid-template-columns: 1fr; } }
.struktur-box {
  background: rgba(30,78,140,0.04);
  border: 1.5px solid rgba(30,78,140,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.struktur-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.struktur-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
