/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('../assets/fonts/GeneralSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --blue: #1D4E9F;
  --blue-light: #2A5FB3;
  --blue-dark: #163C7A;
  --beige: #F2F1EE;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --gray-100: #F7F7F5;
  --gray-200: #E8E7E3;
  --gray-400: #9B9A97;
  --gray-600: #6B6A67;
  --green: #2D8C4E;
  --red-badge: #E84D3D;

  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headline: 'ivy-presto-display', Georgia, 'Times New Roman', serif;

  --section-padding: 120px 0;
  --section-padding-tablet: 80px 0;
  --section-padding-mobile: 60px 0;
  --container-max: 1200px;
  --container-padding: 0 40px;
  --container-padding-mobile: 0 20px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.10);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.3s;
  --duration-medium: 0.6s;
  --duration-slow: 1.2s;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--beige); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4 { font-weight: 400; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================
   PASSWORT-GATE
   ============================================ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate.hidden { display: none; }
.gate-inner { text-align: center; max-width: 360px; width: 100%; padding: 0 20px; }
.gate-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 40px;
}
.gate input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.3s;
}
.gate input::placeholder { color: rgba(255,255,255,0.3); }
.gate input:focus { border-color: rgba(255,255,255,0.4); }
.gate button {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.gate button:hover { opacity: 0.85; }
.gate-error {
  margin-top: 14px;
  color: var(--red-badge);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gate-error.show { opacity: 1; }

.site { display: none; }
.site.visible { display: block; }

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #d4d3cf 0%, #c4c3bf 50%, #b8b7b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.placeholder-img::after {
  content: attr(data-label);
  font: 500 12px/1 var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}

/* ============================================
   GLOBAL ELEMENTS
   ============================================ */
.overline {
  display: block;
  font: 400 14px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.overline-light { color: rgba(255,255,255,0.4); }

.section-headline {
  font-family: var(--font-headline);
  font-size: 40px;
  line-height: 1.15;
  color: var(--dark);
}
.section-headline em {
  font-style: italic;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 500 14px var(--font-body);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-lg { font-size: 16px; padding: 16px 32px; }
.btn-full { width: 100%; justify-content: center; }
.arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-medium) var(--ease-out),
              transform var(--duration-medium) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SEKTION 1 — NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: transparent;
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 28px;
  width: auto;
}
.logo-light { display: none; }
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  font: 400 15px/1 var(--font-body);
  color: var(--dark);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--blue); }
.navbar-cta { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin-bottom: 24px; }
.mobile-menu a { font: 400 20px var(--font-body); color: var(--dark); }

/* ============================================
   SEKTION 2 — HERO
   ============================================ */
.hero {
  padding: 120px 0 80px;
  background: var(--beige);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero h1 {
  font-family: var(--font-headline);
  font-size: 56px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero h1 strong { font-weight: 700; }
.hero-sub {
  font: 400 18px/1.6 var(--font-body);
  color: var(--gray-600);
  margin-bottom: 32px;
}
.hero-subcta {
  font: 400 14px var(--font-body);
  color: var(--gray-400);
  margin-top: 12px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font: 500 13px var(--font-body);
  color: var(--dark);
  box-shadow: var(--shadow-card);
}

/* Hero Images — Scroll Loop */
.hero-images {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 600px;
  position: relative;
}
.hero-images::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--beige));
  z-index: 2;
  pointer-events: none;
}
.hero-images::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(var(--beige), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-images-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  animation: heroScroll 30s linear infinite;
}
.hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-img .placeholder-img {
  aspect-ratio: 4/5;
  min-height: 0;
}
.hero-img--large {
  grid-column: span 2;
}
.hero-img--large .placeholder-img {
  aspect-ratio: 16/10;
}

@keyframes heroScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ============================================
   SEKTION 3 — PROBLEM
   ============================================ */
.problem {
  padding: var(--section-padding);
  background: var(--white);
}
.problem-intro {
  max-width: 700px;
  margin-bottom: 64px;
}
.problem-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}
.problem-point {
  display: flex;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.problem-point:first-child { border-top: 1px solid var(--gray-200); }
.problem-num {
  font: 300 48px/1 var(--font-headline);
  color: var(--gray-200);
  flex-shrink: 0;
  width: 72px;
}
.problem-point h3 {
  font: 600 20px/1.3 var(--font-body);
  color: var(--dark);
  margin-bottom: 8px;
}
.problem-point p {
  font: 400 16px/1.6 var(--font-body);
  color: var(--gray-600);
}

.comparison {
  margin-top: 64px;
  max-width: 900px;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  font: 400 15px/1.5 var(--font-body);
}
.comparison-header {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
}
.comparison-highlight {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  border-bottom: none;
  font-weight: 600;
  margin-top: 4px;
}
.check { color: var(--green); font-weight: 700; font-size: 18px; }
.x { color: var(--red-badge); font-weight: 700; font-size: 18px; opacity: 0.5; }
.comparison-highlight .check { color: rgba(255,255,255,0.9); }

/* ============================================
   SEKTION 4 — WIE ES FUNKTIONIERT
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--beige);
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.product-card-img .placeholder-img { min-height: 0; height: 100%; }
.product-card-body { padding: 28px; }
.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(29,78,159,0.08);
  color: var(--blue);
  font: 500 12px var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card-body h3 {
  font: 600 22px/1.3 var(--font-body);
  margin: 12px 0 8px;
  color: var(--dark);
}
.product-card-body p {
  font: 400 16px/1.6 var(--font-body);
  color: var(--gray-600);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 500 15px var(--font-body);
  color: var(--blue);
  margin-top: 16px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* ============================================
   ★ SCROLL-VIDEO
   ============================================ */
.scroll-video-section {
  position: relative;
}
.scroll-video-wrapper {
  height: 300vh;
  position: relative;
}
.scroll-video-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.scroll-video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.scroll-video-placeholder--blue {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
}
.scroll-video-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.5;
}
.scroll-video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.sv-line {
  display: block;
  font-family: var(--font-headline);
  font-size: 72px;
  line-height: 1.1;
  color: var(--white);
  font-weight: 400;
}
.sv-line-small {
  font-size: 48px;
  opacity: 0.7;
  margin-top: 8px;
}
.sv-line-muted {
  opacity: 0.5;
}

.scroll-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SEKTION 5 — BIURO AVANT CLOUD
   ============================================ */
.cloud {
  padding: var(--section-padding);
  background: var(--white);
}
.cloud-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cloud-text p {
  font: 400 17px/1.7 var(--font-body);
  color: var(--gray-600);
  margin-top: 20px;
}
.cloud-visual {
  width: 100%;
  aspect-ratio: 4/3;
}

/* Cloud Grid Visual */
.cloud-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 8px;
  padding: 20px;
}
.cloud-cell {
  border-radius: var(--radius-sm);
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s var(--ease-out);
  position: relative;
}
.cloud-cell.highlight {
  background: var(--blue);
}
.cloud-cell .person-icon {
  font-size: 18px;
  opacity: 0.3;
}
.cloud-cell.highlight .person-icon {
  opacity: 1;
  color: var(--white);
}
.cloud-cell.pulse {
  animation: cellPulse 2s ease-in-out infinite;
}
@keyframes cellPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.match-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--red-badge);
  color: var(--white);
  font: 600 10px var(--font-body);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s var(--ease-out);
}
.match-badge.pop { opacity: 1; transform: scale(1); }

/* Pill Tabs */
.cloud-tabs { margin-top: 60px; }
.pill-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.pill {
  padding: 12px 24px;
  border-radius: 100px;
  font: 500 14px var(--font-body);
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all 0.3s;
}
.pill.active { background: var(--dark); color: var(--white); }
.pill:hover:not(.active) { background: var(--gray-200); }

.pill-contents { position: relative; }
.pill-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--dark);
  border-radius: var(--radius-xl);
  color: var(--white);
  animation: pillFadeIn 0.4s var(--ease-out);
}
.pill-content.active { display: grid; }
@keyframes pillFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.pill-img { border-radius: var(--radius-lg); overflow: hidden; }
.pill-img .placeholder-img {
  aspect-ratio: 16/9;
  min-height: 0;
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}
.pill-img .placeholder-img::after { color: rgba(255,255,255,0.2); }
.pill-text p {
  font: 400 16px/1.7 var(--font-body);
  color: rgba(255,255,255,0.8);
}

/* ============================================
   SEKTION 6 — MATCHING
   ============================================ */
.matching {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
}
.matching-intro {
  font: 400 18px var(--font-body);
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.matching-headline {
  font-family: var(--font-headline);
  font-size: 72px;
  line-height: 1;
  color: var(--white);
}
.matching-headline em { font-style: italic; }

.matching-network {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  position: relative;
  margin-top: 40px;
}
#matching-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.matching-explanation {
  background: var(--blue);
  border-radius: var(--radius-xl);
  margin: 60px 40px 0;
  padding: 72px 60px;
}
.matching-explanation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.matching-explain-headline {
  font: 600 28px/1.25 var(--font-body);
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 20px;
}
.matching-explain-text {
  font: 400 16px/1.7 var(--font-body);
  color: rgba(255,255,255,0.7);
}

.matching-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.matching-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.matching-step:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.matching-step:last-child { border-bottom: none; }
.step-num {
  font: 600 13px var(--font-body);
  color: rgba(255,255,255,0.35);
  padding-top: 2px;
}
.matching-step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.matching-step-text strong {
  font: 600 16px var(--font-body);
  color: var(--white);
}
.matching-step-text span {
  font: 400 14px/1.5 var(--font-body);
  color: rgba(255,255,255,0.55);
}

/* ============================================
   SEKTION 7 — PROCESS (ehem. Sellcruiting)
   ============================================ */
.process {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
}
.process-steps {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.process-step {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.process-step:first-child { border-top: 1px solid var(--gray-200); }
.process-step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out), padding 0.6s var(--ease-out);
  padding: 24px 0;
  cursor: pointer;
}
.process-step.open .process-step-inner {
  max-height: 500px;
  padding: 40px 0;
}
.process-step-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-num {
  font: 300 14px/1 var(--font-body);
  color: var(--gray-400);
  letter-spacing: 0.05em;
}
.process-step h3 {
  font: 600 24px/1.2 var(--font-body);
  color: var(--dark);
  transition: color 0.3s;
}
.process-step:hover h3,
.process-step.open h3 { color: var(--blue); }
.process-step p {
  font: 400 16px/1.6 var(--font-body);
  color: var(--gray-600);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.process-step.open p {
  opacity: 1;
  transform: translateY(0);
}
.process-step-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
  max-height: 280px;
}
.process-step.open .process-step-img {
  opacity: 1;
  transform: scale(1);
}
.process-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-step-img .placeholder-img {
  min-height: 200px;
  aspect-ratio: 16/10;
}

/* ============================================
   SEKTION 8 — TIMELINE
   ============================================ */
.timeline-section {
  padding: var(--section-padding);
  background: var(--beige);
}
.timeline-list {
  max-width: 900px;
  margin: 0 auto;
}
.timeline-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.timeline-row:first-child { border-top: 1px solid var(--gray-200); }
.timeline-num {
  font: 600 14px var(--font-body);
  color: var(--gray-400);
  letter-spacing: 0.02em;
}
.timeline-content h3 {
  font: 600 18px/1.3 var(--font-body);
  color: var(--dark);
  margin-bottom: 6px;
}
.timeline-content p {
  font: 400 15px/1.6 var(--font-body);
  color: var(--gray-600);
  max-width: 520px;
}
.timeline-badge {
  font: 500 13px var(--font-body);
  color: var(--blue);
  background: rgba(29,78,159,0.06);
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: start;
  margin-top: 2px;
}

/* ============================================
   SEKTION 9 — GARANTIE
   ============================================ */
.garantie {
  padding: 100px 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}
.garantie-content { max-width: 800px; margin: 0 auto; }
.garantie-headline {
  font-family: var(--font-headline);
  font-size: 48px;
  line-height: 1.15;
  color: var(--white);
}
.garantie-headline strong { font-weight: 700; }
.garantie-sub {
  font: 400 18px/1.7 var(--font-body);
  color: rgba(255,255,255,0.8);
  margin: 24px auto 40px;
  max-width: 640px;
}
.garantie-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  text-align: left;
}
.garantie-point {
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}
.garantie-point h3 {
  font: 600 18px var(--font-body);
  margin-bottom: 8px;
}
.garantie-point p {
  font: 400 15px/1.6 var(--font-body);
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SEKTION 10 — BRANCHEN
   ============================================ */
.branchen {
  padding: var(--section-padding);
  background: var(--white);
}
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.branche-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.branche-card .placeholder-img {
  min-height: 0;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.branche-card:hover .placeholder-img { transform: scale(1.05); }
.branche-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.branche-label {
  font: 600 13px var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   SEKTION 11 — WARUM BIURO AVANT
   ============================================ */
.why {
  padding: var(--section-padding);
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.usp-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.usp-cards .section-headline { margin-bottom: 12px; }
.usp-card {
  padding: 28px;
  background: var(--beige);
  border-radius: var(--radius-md);
}
.usp-card h3 {
  font: 600 18px var(--font-body);
  margin-bottom: 8px;
  color: var(--dark);
}
.usp-card p {
  font: 400 16px/1.6 var(--font-body);
  color: var(--gray-600);
}

.cta-sidebar {
  position: sticky;
  top: 100px;
  padding: 40px;
  background: var(--beige);
  border-radius: var(--radius-xl);
}
.cta-sidebar h3 {
  font: 600 24px/1.3 var(--font-body);
  margin-bottom: 20px;
}
.cta-question {
  font: 500 16px var(--font-body);
  color: var(--dark);
  margin: 4px 0;
  padding-left: 16px;
  position: relative;
}
.cta-question::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--blue);
}
.cta-contact {
  margin: 28px 0;
  font: 400 15px/1.6 var(--font-body);
  color: var(--gray-600);
}
.cta-contact strong { color: var(--dark); font-weight: 600; }
.cta-contact a { color: var(--blue); }

/* ============================================
   SEKTION — VOR ORT BEIM KUNDEN
   ============================================ */
.kunden {
  padding: var(--section-padding);
  background: var(--white);
}
.kunden-intro {
  font: 400 18px/1.6 var(--font-body);
  color: var(--gray-600);
  max-width: 600px;
  margin-top: 16px;
  margin-bottom: 64px;
}
.kunden-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.kunden-item:last-child { margin-bottom: 0; }
.kunden-item--reverse { direction: rtl; }
.kunden-item--reverse > * { direction: ltr; }
.kunden-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.kunden-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.kunden-text h3 {
  font: 600 24px/1.3 var(--font-body);
  color: var(--dark);
  margin-bottom: 16px;
}
.kunden-text p {
  font: 400 16px/1.7 var(--font-body);
  color: var(--gray-600);
  margin-bottom: 16px;
}
.kunden-caption {
  font: 400 13px/1.4 var(--font-body);
  color: var(--gray-400);
  font-style: italic;
}

/* ============================================
   SEKTION 12 — FAQ
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--beige);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  width: 100%;
  font: 500 18px/1.4 var(--font-body);
  color: var(--dark);
  text-align: left;
}
.faq-icon {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--gray-400);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font: 400 16px/1.7 var(--font-body);
  color: var(--gray-600);
}

/* ============================================
   SEKTION 13 — FOOTER CTA + FOOTER
   ============================================ */
.footer-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.footer-cta-bg {
  position: absolute;
  inset: -20%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  background-size: cover;
  background-position: center;
}
.footer-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.8);
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.footer-cta-left h2 {
  font-family: var(--font-headline);
  font-size: 44px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-cta-left h2 strong { font-weight: 700; }
.footer-cta-left p {
  font: 400 17px/1.6 var(--font-body);
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.filip-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.filip-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.filip-img .placeholder-img {
  min-height: 0;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
}
.filip-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filip-info strong {
  font: 600 20px var(--font-body);
  color: var(--white);
}
.filip-info span {
  font: 400 14px var(--font-body);
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.filip-info a {
  font: 400 14px var(--font-body);
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.filip-info a:hover { color: var(--white); }

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { height: 24px; margin-bottom: 20px; }
.footer-address {
  font: 400 14px/1.8 var(--font-body);
  color: rgba(255,255,255,0.5);
}
.footer-links h4,
.footer-contact h4 {
  font: 600 13px var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.4);
}
.footer-links a,
.footer-contact a {
  display: block;
  font: 400 15px/2.2 var(--font-body);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
}
.footer-bottom p {
  font: 400 13px var(--font-body);
  color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 0 20px; }
  .navbar { height: 60px; }

  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  .hero-images { max-height: 400px; }

  .problem-grid { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: 1fr; }
  .cloud-top { grid-template-columns: 1fr; }
  .matching-headline { font-size: 48px; }
  .matching-explanation-grid { grid-template-columns: 1fr; }
  .matching-explanation { margin: 60px 20px 0; padding: 48px 28px; }
  .matching-explain-headline { font-size: 24px; }
  .process-step-inner { grid-template-columns: 1fr; }
  .process-step-img { max-height: 220px; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-sidebar { position: relative; top: 0; }
  .garantie-points { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { grid-template-columns: 1fr; }
  .kunden-item { grid-template-columns: 1fr; gap: 32px; }
  .kunden-item--reverse { direction: ltr; }

  .section-headline { font-size: 32px; }
  .garantie-headline { font-size: 36px; }
  .footer-cta-content h2 { font-size: 36px; }

  .sv-line { font-size: 48px; }
  .sv-line-small { font-size: 32px; }

  .container { padding: var(--container-padding-mobile); }

  section { padding: var(--section-padding-tablet); }
  .hero, .matching, .garantie, .footer-cta { /* Keep custom padding */ }
}

/* ============================================
   RESPONSIVE — MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-badges { flex-direction: column; }
  .hero-images-track { grid-template-columns: 1fr; }
  .hero-img--large { grid-column: span 1; }

  .pill-nav { flex-direction: column; gap: 8px; }
  .pill-content { grid-template-columns: 1fr; padding: 24px; }

  .matching-headline { font-size: 36px; }
  .matching-network { min-height: 400px; height: 60vh; }

  .timeline-row {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }
  .timeline-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
  }

  .branchen-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .sv-line { font-size: 36px; }
  .sv-line-small { font-size: 24px; }

  .footer-cta { padding: 80px 20px; }
  .footer-cta-content h2 { font-size: 28px; }
  .garantie-headline { font-size: 28px; }

  .faq-question { font-size: 16px; }
}
