/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --petrol: #1a5f6a;
  --petrol-dark: #0f3d47;
  --petrol-light: #2a7a8a;
  --petrol-subtle: #e8f2f4;
  --gold: #b8963c;
  --gold-light: #d4a94d;
  --gold-subtle: #f8f2e6;

  /* Surfaces */
  --color-bg: #ffffff;
  --color-surface: #f9f9f8;
  --color-surface-2: #f4f3f1;
  --color-border: #e5e3df;
  --color-divider: #eeecea;

  /* Text */
  --color-text: #1a1916;
  --color-text-muted: #6b6a67;
  --color-text-faint: #b0aeaa;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  /* Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.6rem, 1rem + 5.5vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-default: 1160px;
  --content-narrow: 720px;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,25,22,0.06), 0 1px 2px rgba(26,25,22,0.04);
  --shadow-md: 0 4px 16px rgba(26,25,22,0.08), 0 2px 6px rgba(26,25,22,0.05);
  --shadow-lg: 0 16px 48px rgba(26,25,22,0.1), 0 4px 16px rgba(26,25,22,0.06);
  --shadow-petrol: 0 8px 32px rgba(26,95,106,0.25);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 400;
}

p, li {
  text-wrap: pretty;
  max-width: 68ch;
}

ul[role="list"] { list-style: none; }

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-interactive),
              opacity var(--transition-interactive);
}

::selection {
  background: rgba(26,95,106,0.15);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: min(100%, var(--content-default));
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: fade-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}

@keyframes fade-reveal {
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    border-color var(--transition-interactive);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--petrol);
  color: #fff;
  border: 1.5px solid var(--petrol);
}
.btn-primary:hover {
  background: var(--petrol-dark);
  border-color: var(--petrol-dark);
  box-shadow: var(--shadow-petrol);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.btn-petrol-outline {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
  flex-shrink: 0;
}
.btn-petrol-outline:hover {
  background: var(--petrol);
  color: #fff;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-base);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.08;
  margin-top: var(--space-4);
  color: var(--color-text);
}

.section-intro {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
}

.section-header {
  margin-bottom: var(--space-16);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background var(--transition-interactive),
    box-shadow var(--transition-interactive),
    backdrop-filter var(--transition-interactive);
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm), 0 0 0 1px var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: filter var(--transition-interactive), opacity var(--transition-interactive);
}

/* On dark hero bg: show white version */
.header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.logo:hover .logo-img {
  opacity: 0.82;
}

.header:not(.scrolled) .nav-links a {
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 450;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--petrol);
  color: #fff !important;
  font-weight: 500;
}

.header:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.nav-cta:hover { background: var(--petrol-dark) !important; }
.header:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.28) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: all 280ms var(--ease-out);
}

.header:not(.scrolled) .hamburger { color: #fff; }

.mobile-menu {
  display: none;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: var(--space-6) var(--space-8) var(--space-8);
  border-top: 1px solid var(--color-border);
}
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--color-divider); }
.mobile-link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-base);
  font-weight: 450;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,28,34,0.88) 0%,
    rgba(15,45,55,0.72) 45%,
    rgba(15,45,55,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: var(--space-24);
  max-width: 780px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.02;
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: var(--space-10);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: var(--space-1);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: float 2.5s ease-in-out infinite;
  transition: color var(--transition-interactive), border-color var(--transition-interactive);
}
.scroll-indicator:hover { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.5); }

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

/* ═══════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════ */
.statement {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.statement-inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.statement-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--petrol-subtle), var(--petrol), var(--petrol-subtle), transparent);
  min-width: 40px;
}

.statement-text {
  flex: 0 1 640px;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-text);
  text-align: center;
  font-style: italic;
  max-width: 640px;
}

@media (max-width: 640px) {
  .statement-inner { flex-direction: column; }
  .statement-line { width: 100%; flex: none; }
  .statement-text { font-size: var(--text-lg); }
}

/* ═══════════════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════════════ */
.leistungen {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

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

@media (min-width: 901px) and (max-width: 1100px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .card:last-child { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; width: 100%; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    border-color var(--transition-interactive);
}

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

.card--featured {
  background: var(--petrol);
  border-color: var(--petrol-dark);
  color: #fff;
}

.card--featured:hover {
  background: var(--petrol-dark);
  box-shadow: var(--shadow-petrol);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--petrol-subtle);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.card--featured .card-icon {
  background: rgba(255,255,255,0.12);
}

.card-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
}

.card--featured .card-tag { color: rgba(255,255,255,0.65); }

.card-title {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

.card--featured .card-title { color: #fff; }

.card-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card--featured .card-text { color: rgba(255,255,255,0.75); }

.card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.card-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-4);
  position: relative;
  max-width: 100%;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--petrol);
}

.card--featured .card-features li { color: rgba(255,255,255,0.7); }
.card--featured .card-features li::before { background: var(--gold-light); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--petrol);
  margin-top: var(--space-2);
  transition: gap var(--transition-interactive), color var(--transition-interactive);
}

.card-link:hover { gap: var(--space-2); color: var(--petrol-dark); }
.card--featured .card-link { color: var(--gold-light); }
.card--featured .card-link:hover { color: white; }

/* ═══════════════════════════════════════════
   LEGAL BANNER
═══════════════════════════════════════════ */
.legal-banner {
  background: var(--gold-subtle);
  border-top: 1px solid rgba(184,150,60,0.2);
  border-bottom: 1px solid rgba(184,150,60,0.2);
  padding-block: var(--space-8);
}

.legal-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.legal-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,150,60,0.12);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,150,60,0.2);
}

.legal-text {
  flex: 1;
  min-width: 260px;
}

.legal-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.legal-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 58ch;
}

/* ═══════════════════════════════════════════
   PROZESS
═══════════════════════════════════════════ */
.prozess {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

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

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .step-connector { display: none; }
}
@media (max-width: 500px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-step {
  padding: var(--space-8);
  border-right: 1px solid var(--color-border);
  position: relative;
}

.process-step:last-child { border-right: none; }
.process-step:last-child .step-connector { display: none; }

.step-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--petrol-subtle);
  line-height: 1;
  margin-bottom: var(--space-6);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--petrol);
}

.step-connector {
  position: absolute;
  top: calc(var(--space-8) + 2rem);
  right: -16px;
  width: 32px;
  height: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--petrol);
  border-right: 1.5px solid var(--petrol);
  transform: rotate(45deg);
  margin-left: -4px;
}

.step-title {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
}

.step-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 28ch;
}

@media (max-width: 860px) {
  .process-step { border-right: none; border-bottom: 1px solid var(--color-border); padding: var(--space-6); }
  .process-step:last-child { border-bottom: none; }
  .step-text { max-width: 100%; }
}

/* ═══════════════════════════════════════════
   ÜBER UNS
═══════════════════════════════════════════ */
.about {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: clamp(380px, 50vw, 560px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--petrol);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-lg);
}

.badge-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.badge-label {
  font-size: var(--text-xs);
  line-height: 1.4;
  opacity: 0.85;
}

.about-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-5);
  max-width: 58ch;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.pillar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 450;
  color: var(--color-text);
}

.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: var(--petrol-dark);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(26,95,106,0.4);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(184,150,60,0.06);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 640px;
}

.cta-title {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: #fff;
  margin-top: var(--space-4);
  line-height: 1.1;
}

.cta-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-top: var(--space-5);
  margin-bottom: var(--space-10);
  max-width: 54ch;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--petrol-dark);
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════ */
.kontakt {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}

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

.kontakt-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: var(--space-4);
  margin-bottom: var(--space-10);
  max-width: 46ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.contact-item span,
.contact-item a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

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

/* Form */
.kontakt-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  transition:
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(26,95,106,0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b6a67' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--petrol);
  cursor: pointer;
}

.form-privacy label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  font-size: var(--text-sm);
  color: #2a7a4a;
  padding: var(--space-3) var(--space-4);
  background: rgba(42,122,74,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42,122,74,0.2);
  display: none;
}

.form-success.visible { display: block; }

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

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 220px;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  height: 44px;
}

.footer-claim {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-3);
  letter-spacing: 0.05em;
  max-width: 100%;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: #fff; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-interactive);
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-5);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  max-width: 100%;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════
   PLACEHOLDER INPUTS
═══════════════════════════════════════════ */
::placeholder {
  color: var(--color-text-faint);
}

/* ═══════════════════════════════════════════
   WAS UNS UNTERSCHEIDET
═══════════════════════════════════════════ */
.unterscheidet {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-bg);
}

.unterscheidet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

.u-card {
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.u-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.u-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--petrol-subtle);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.u-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.u-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 100%;
}

/* ═══════════════════════════════════════════
   ÜBER UNS — GRÜNDER
═══════════════════════════════════════════ */
.about-img--square {
  height: clamp(380px, 50vw, 520px);
  object-position: top center;
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  background: rgba(15, 45, 55, 0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.badge-founders {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.badge-name {
  font-size: var(--text-sm);
  font-weight: 450;
  color: rgba(255,255,255,0.9);
}

.badge-name + .badge-name {
  color: var(--gold-light);
}

.about-claim {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--petrol);
  margin-top: var(--space-2);
}

/* ═══════════════════════════════════════════
   PAKETE
═══════════════════════════════════════════ */
.pakete {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.pakete-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--petrol-subtle);
  border-left: 3px solid var(--petrol);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pakete-bullets span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
  margin-top: var(--space-12);
}

@media (max-width: 960px) {
  .pakete-grid { grid-template-columns: 1fr; max-width: 560px; }
}

.paket-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.paket-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.paket-card--featured {
  border-color: var(--petrol);
  box-shadow: 0 0 0 1px var(--petrol), var(--shadow-md);
  position: relative;
}
.paket-card--featured:hover {
  box-shadow: 0 0 0 1px var(--petrol), var(--shadow-petrol);
}

.paket-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.paket-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
  background: var(--petrol-subtle);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.paket-badge--gold {
  color: #6b4c00;
  background: var(--gold-subtle);
}

.paket-title {
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  margin-top: var(--space-1);
}

.paket-subtitle {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--petrol);
}

.paket-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 100%;
}

.paket-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-surface-2, #f4f3f1);
  border: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  line-height: 1.5;
  max-width: 100%;
}

.paket-includes {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--petrol);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.paket-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.paket-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: var(--space-5);
  position: relative;
  max-width: 100%;
}

.paket-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--petrol);
  opacity: 0.5;
}

.paket-card--featured .paket-features li::before { opacity: 1; }

.paket-features li strong {
  color: var(--color-text);
  font-weight: 600;
}

.paket-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(calc(100% - var(--space-8)), 680px);
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  transform: translateX(-50%) translateY(12px);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}
.cookie-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.cookie-link:hover { color: rgba(255,255,255,0.85); }
.cookie-banner .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
  white-space: nowrap;
}
.cookie-banner .btn-primary:hover { background: rgba(255,255,255,0.9); }

/* CTA ghost dark button */
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Form note */
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: calc(var(--space-2) * -1);
  max-width: 100%;
}
