/* ═══════════════════════════════════════════════════════════
   LMTEC – Technical Elegance Design System
   Premium-Website für zerstörungsfreie Leckortung
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --navy: #0F1C2E;
  --navy-light: #1A2D45;
  --teal: #1A8FA0;
  --teal-dark: #147A89;
  --teal-light: #E6F5F7;
  --slate: #5A6577;
  --off-white: #F5F6F8;
  --section-alt: #F0F1F4;
  --border: #E4E5EA;
  --white: #FFFFFF;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--off-white);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(26, 143, 160, 0.2);
  color: var(--navy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--section-alt); }
::-webkit-scrollbar-thumb { background: #B0B5C0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.navbar-logo img {
  height: 100px;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s ease;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--teal);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: var(--teal);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--slate);
}

.nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--teal);
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.navbar-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.navbar-cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 0 1.5rem;
  overflow: hidden;
  z-index: 99;
  max-height: 0;
  border-bottom: 0 solid var(--border);
  box-shadow: none;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.mobile-menu.open {
  max-height: 600px;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-menu a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--teal);
}

.mobile-menu .mobile-sub {
  padding-left: 1rem;
}

.mobile-menu .mobile-sub a {
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 400;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(26, 143, 160, 0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-menu-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(26, 143, 160, 0.35);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: flex; }
  .mobile-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 28, 46, 0.92), rgba(15, 28, 46, 0.75), rgba(15, 28, 46, 0.50));
}

.hero-content {
  position: relative;
  padding: 4rem 0;
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  color: var(--teal);
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 540px;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3.25rem; }
  .hero-buttons { flex-direction: row; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}

.section-alt {
  background: var(--section-alt);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

.section-number {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 8rem;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: -1rem;
  right: 2rem;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-number { font-size: 5rem; right: 1rem; }
}

.accent-line {
  width: 3rem;
  height: 2px;
  background: var(--teal);
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   KOMPETENZ STATEMENT
   ═══════════════════════════════════════════════════════════ */
.kompetenz {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 768px;
}

.kompetenz-line {
  display: none;
  width: 2px;
  background: var(--teal);
  flex-shrink: 0;
  align-self: stretch;
}

@media (min-width: 640px) {
  .kompetenz-line { display: block; }
}

.kompetenz h2 {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .kompetenz h2 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .kompetenz h2 { font-size: 2.25rem; }
}

.kompetenz p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card-accent {
  position: relative;
}

.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px 2px 0 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.02);
}

.service-card-body {
  padding: 2rem;
}

.service-card-body h3 {
  font-size: 1.25rem;
}

.service-card-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.service-card-list li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

.card-link svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════════
   WARUM LMTEC (Reasons Grid)
   ═══════════════════════════════════════════════════════════ */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

.reason-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.reason-item:hover {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.reason-item h3 {
  font-size: 1.125rem;
}

.reason-item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.hint-text {
  margin-top: 3.5rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  margin-top: 4rem;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(26, 143, 160, 0.2);
}

@media (min-width: 1024px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-0.5px);
  }
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-left: 4rem;
}

@media (min-width: 1024px) {
  .timeline-item {
    padding-left: 0;
    gap: 4rem;
  }

  .timeline-item .timeline-content {
    flex: 1;
    text-align: right;
  }

  .timeline-item .timeline-spacer {
    flex: 1;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }
}

.timeline-dot {
  position: absolute;
  left: 24px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--section-alt);
  box-shadow: 0 0 0 2px rgba(26, 143, 160, 0.3);
  z-index: 2;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .timeline-dot {
    left: 50%;
  }
}

.timeline-step {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.timeline-content p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--teal);
  color: var(--teal);
}

.review-card blockquote {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate);
}

.review-author {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.review-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
}

.review-author span {
  font-size: 0.75rem;
  color: var(--slate);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 46, 0.9);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .cta-content { padding: 8rem 0; }
}

.cta-content h2 {
  font-size: 1.875rem;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .cta-content h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3rem; }
}

.cta-content .cta-sub {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand img {
  height: 90px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact li span,
.footer-contact li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Subpages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--section-alt);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  margin-top: 80px;
}

@media (min-width: 1024px) {
  .page-hero { padding: 7rem 0; }
}

.page-hero h1 {
  font-size: 1.875rem;
  max-width: 768px;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .page-hero h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.two-col img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════════════════════
   THREE-COLUMN CARDS
   ═══════════════════════════════════════════════════════════ */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.info-card h3 {
  font-size: 1.125rem;
}

.info-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Step cards with numbers */
.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  height: 100%;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-light);
}

.step-card h3 {
  font-size: 1.125rem;
}

.step-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CHECK LIST
   ═══════════════════════════════════════════════════════════ */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li span {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Bullet list */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}

.bullet-list li span {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS (Zustandsanalyse)
   ═══════════════════════════════════════════════════════════ */
.process-steps {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 768px;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--teal-light);
  flex-shrink: 0;
  width: 3.5rem;
}

.process-step h3 {
  font-size: 1.125rem;
}

.process-step p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.contact-info-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.875rem;
  color: var(--slate);
}

.contact-info-item a:hover {
  color: var(--teal);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .contact-form { padding: 2.5rem; }
}

.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 143, 160, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0A5B0;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .form-submit .btn { width: auto; }
}

/* Success message */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--teal);
  margin: 0 auto 1rem;
}

.form-success h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.875rem;
  color: var(--slate);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: 1fr 1fr; }
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.value-card h3 {
  font-size: 1.125rem;
}

.value-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   HINT / NOTE
   ═══════════════════════════════════════════════════════════ */
.note {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(90, 101, 119, 0.7);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (Intersection Observer based)
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--navy);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text strong {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #22b8cc;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.cookie-btn.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.cookie-btn.btn-primary:hover {
  background: var(--teal-dark);
}

.cookie-btn.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ═══════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 768px;
  margin-top: 3rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--slate);
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--slate);
  padding-left: 1.25rem;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.legal-content a {
  color: var(--teal);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--navy);
}
