/* ═══════════════════════════════════════════
   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
═══════════════════════════════════════════ */
/* scroll animation via JS IntersectionObserver */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   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: 88px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: var(--space-8);
}

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

.logo-img {
  height: 82px;
  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;
  animation: ken-burns 18s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes ken-burns {
  0%   { transform: scale(1.0)  translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1%, -0.5%); }
  50%  { transform: scale(1.1)  translate(1%, 1%); }
  75%  { transform: scale(1.06) translate(0.5%, -1%); }
  100% { transform: scale(1.0)  translate(-0.5%, 0.5%); }
}

.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-connector { display: 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%;
}

/* ═══════════════════════════════════════════
   ROI-RECHNER
═══════════════════════════════════════════ */
.roi-rechner {
  padding: var(--space-24) 0;
  background: var(--color-bg-alt);
}

.roi-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--space-12) var(--space-10);
  max-width: 860px;
  margin: 0 auto var(--space-6);
  box-shadow: 0 2px 24px rgba(15,61,71,0.07);
}

/* Slider */
.roi-slider-wrap { margin-bottom: var(--space-10); }

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.roi-employees-display {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--petrol);
  font-weight: 500;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--petrol) 0%, var(--petrol) 9%, var(--color-border) 9%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--petrol);
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--petrol), 0 2px 8px rgba(15,61,71,0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--petrol); border: 3px solid white;
  box-shadow: 0 0 0 1px var(--petrol); cursor: pointer;
}

.roi-slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
  font-size: 11px;
  color: var(--color-text-faint);
}

/* Ergebnisse */
.roi-results {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-bottom: var(--space-10);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.roi-stat { text-align: center; padding: 0 var(--space-6); }

.roi-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--petrol);
  line-height: 1.1;
  margin-bottom: var(--space-2);
  transition: all 0.35s ease;
}

.roi-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: var(--space-2);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.roi-stat-source {
  font-size: 10px;
  color: var(--color-text-faint);
  font-style: italic;
}

.roi-stat-divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
}

/* CTA */
.roi-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.roi-cta-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 44ch;
  line-height: 1.6;
}

.roi-cta-text strong { color: var(--gold); }

.roi-disclaimer {
  font-size: 11px;
  color: var(--color-text-faint);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .roi-card { padding: var(--space-8) var(--space-6); }
  .roi-results {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .roi-stat-divider { width: 100%; height: 1px; }
  .roi-cta { flex-direction: column; text-align: center; }
  .roi-cta-text { max-width: 100%; }
}

/* ═══════════════════════════════════════════
   ÜBER UNS — Neues Layout
═══════════════════════════════════════════ */
.about-intro {
  max-width: 800px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.about-intro-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.about-photo-wrap {
  margin-bottom: var(--space-16);
  position: relative;
}

.about-img-wide {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 2px;
}

.about-quote {
  background: var(--petrol-dark);
  padding: var(--space-8) var(--space-10);
  margin-top: 0;
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: white;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

/* Founders Grid */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.founder-card {
  background: white;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--gold);
  padding: var(--space-8);
  border-radius: 2px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--petrol-dark);
  margin: 0 0 var(--space-1);
}

.founder-role {
  display: block;
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  white-space: normal;
  line-height: 1.5;
}

.founder-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.founder-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--petrol);
  background: rgba(26,95,106,0.07);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Gemeinsame Werte */
.about-values {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: var(--space-10);
  text-align: center;
  border-radius: 2px;
}

.about-values-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--petrol-dark);
  font-style: italic;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; }
  .about-quote { padding: var(--space-6); }
}

/* ═══════════════════════════════════════════
   CHECKLISTE
═══════════════════════════════════════════ */
.checklist-section {
  padding: var(--space-24) 0;
  background: var(--color-bg);
}
.checklist-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.checklist-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(26,95,106,0.12);
  border-radius: 4px;
  padding: var(--space-10);
  box-shadow: 0 4px 32px rgba(26,95,106,0.07);
}
.cl-question {
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(26,95,106,0.08);
}
.cl-question:last-child { border-bottom: none; }
.cl-q-text {
  font-size: var(--text-base);
  color: var(--petrol-dark);
  font-weight: 500;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}
.cl-options {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.cl-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--petrol);
  background: transparent;
  color: var(--petrol);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cl-btn:hover { background: rgba(26,95,106,0.08); }
.cl-btn.selected { background: var(--petrol); color: #fff; }
.cl-progress-wrap {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.cl-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(26,95,106,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.cl-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.cl-progress-label {
  font-size: var(--text-xs);
  color: var(--petrol);
  white-space: nowrap;
  font-weight: 500;
}
.cl-result {
  display: none;
  margin-top: var(--space-8);
  padding: var(--space-8);
  border-radius: 4px;
  background: var(--petrol-dark);
  color: #fff;
  text-align: center;
}
.cl-result.visible { display: block; }
.cl-result-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: var(--space-3);
}
.cl-result-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.cl-result-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-6);
}
.cl-reset {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.cl-reset:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
  padding: var(--space-24) 0;
  background: var(--color-bg-alt);
}
.faq-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(26,95,106,0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(26,95,106,0.12);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--petrol-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--petrol); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--petrol);
  position: relative;
  transition: background 0.2s, transform 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--petrol);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--petrol); }
.faq-question[aria-expanded="true"] .faq-icon::before { background: #fff; }
.faq-question[aria-expanded="true"] .faq-icon::after { background: #fff; transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: var(--space-5);
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .checklist-wrap { padding: var(--space-6); }
  .cl-options { gap: var(--space-2); }
}

/* ═══════════════════════════════════════════
   PREMIUM FEATURES
═══════════════════════════════════════════ */

/* 1. PARALLAX HERO */
.hero-img {
  will-change: transform;
}

/* 2. COUNTER ANIMATION */
.stat-num.counting {
  display: inline-block;
}

/* 3. CUSTOM CURSOR */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: normal;
  opacity: 0;
}
.custom-cursor.visible { opacity: 1; }
.custom-cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(184,150,60,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.custom-cursor-follower.visible { opacity: 1; }
.custom-cursor.hovered { width: 20px; height: 20px; background: var(--petrol); }
.custom-cursor-follower.hovered { width: 50px; height: 50px; border-color: var(--petrol); }

@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-follower { display: none; }
}

/* 4. TEXT REVEAL */
.reveal-text {
  overflow: hidden;
  display: block;
}
.reveal-text .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.reveal-text.revealed .word {
  transform: translateY(0);
  opacity: 1;
}

/* 5. MARQUEE */
.marquee-section {
  background: var(--petrol-dark);
  padding: var(--space-5) 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,150,60,0.2);
  border-bottom: 1px solid rgba(184,150,60,0.2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: 0 var(--space-6);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 6. GLASSMORPHISM PAKETE */
.pakete-grid .paket-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(26,95,106,0.14);
  box-shadow: 0 4px 32px rgba(26,95,106,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.pakete-grid .paket-card:hover {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 48px rgba(26,95,106,0.14), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(-6px);
}
.pakete-grid .paket-card--featured {
  background: var(--petrol-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: var(--gold);
  box-shadow: 0 8px 48px rgba(26,95,106,0.28), 0 0 0 1px var(--gold), inset 0 1px 0 rgba(255,255,255,0.08);
}
.pakete-grid .paket-card--featured:hover {
  background: #0d3540;
  box-shadow: 0 16px 64px rgba(26,95,106,0.36), 0 0 0 1px var(--gold);
  transform: translateY(-8px);
}

/* 7. STICKY SECTION NUMBERS */
.section-num {
  position: absolute;
  left: -2rem;
  top: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: rgba(26,95,106,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: color 0.4s ease;
}
section:hover .section-num { color: rgba(26,95,106,0.1); }

@media (max-width: 1100px) { .section-num { display: none; } }

/* ═══════════════════════════════════════════
   FEATURED PAKET – LESBARKEIT + GLOW
═══════════════════════════════════════════ */

/* Alle Texte auf der dunklen Featured-Karte weiß machen */
.paket-card--featured .paket-title {
  color: #fff;
  font-size: var(--text-3xl);
}
.paket-card--featured .paket-subtitle {
  color: var(--gold);
}
.paket-card--featured .paket-desc {
  color: rgba(255,255,255,0.82);
}
.paket-card--featured .paket-note {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.paket-card--featured .paket-includes {
  color: var(--gold);
  border-bottom-color: rgba(255,255,255,0.15);
}
.paket-card--featured .paket-features li {
  color: rgba(255,255,255,0.85);
}
.paket-card--featured .paket-features li strong {
  color: #fff;
}
.paket-card--featured .paket-features li::before {
  background: var(--gold);
}
.paket-card--featured .paket-badge--gold {
  background: rgba(184,150,60,0.25);
  color: var(--gold);
  border: 1px solid rgba(184,150,60,0.4);
}

/* Statische Gold-Umrandung — kein Blinken */
.paket-card--featured {
  animation: none;
  box-shadow:
    0 0 0 2px var(--gold),
    0 12px 48px rgba(26,95,106,0.25);
}

/* Gold-Streifen oben — innerhalb der Karte */
.paket-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, #f0d080 50%, var(--gold) 70%, transparent 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}
