/* =============================================
   ADVINE DIGITAL – Main Stylesheet
   Design: Warm Cream + Forest Green, Premium B2B
   ============================================= */

:root {
  --cream:        #F7F3ED;
  --cream-dark:   #EDE7DC;
  --cream-darker: #E2D9CC;
  --white:        #FFFFFF;

  --green-950: #0D2B1F;
  --green-900: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #3E8A66;
  --green-500: #52B788;
  --green-300: #95D5B2;
  --green-100: #D8F3DC;
  --green-50:  #F0FBF4;

  --text-900: #1A1A1A;
  --text-700: #2C2C2C;
  --text-500: #555555;
  --text-300: #8A8A8A;

  --border:       #DDD7CE;
  --border-light: #EDE8E1;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.11);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.14);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
  --container-pad: 1.5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-900);
  line-height: 1.65;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.18; color: var(--text-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-500); line-height: 1.78; font-size: 1.05rem; }

/* ── Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.text-green  { color: var(--green-700); }
.text-white  { color: white !important; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Badge */
.badge {
  display: inline-block;
  padding: 0.38rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-green   { background: var(--green-100); color: var(--green-700); }
.badge-white   { background: rgba(255,255,255,0.18); color: white; }
.badge-outline { background: transparent; border: 1.5px solid var(--green-300); color: var(--green-700); }

/* Section header */
.section-header { text-align: center; max-width: 660px; margin: 0 auto var(--space-xl); }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.08rem; }

/* Divider */
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  border-radius: 2px;
  margin: 1.25rem auto 0;
}
.section-header .section-divider { margin-top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.78rem 1.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600;
  border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--green-700); color: white;
  box-shadow: 0 4px 16px rgba(45,106,79,0.28);
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.38);
}
.btn-secondary {
  background: transparent; color: var(--text-700);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--green-500); color: var(--green-700);
  transform: translateY(-2px);
}
.btn-white {
  background: white; color: var(--green-700);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-lg { padding: 1.05rem 2.35rem; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

/* Arrow icon */
.btn .arrow { transition: transform var(--transition); font-style: normal; }
.btn:hover .arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(247,243,237,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav-brand { display: flex; align-items: baseline; gap: 0.25rem; text-decoration: none; }
.nav-brand .brand-name { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 700; color: var(--green-700); letter-spacing: -0.02em; }
.nav-brand .brand-dot  { width: 6px; height: 6px; background: var(--green-500); border-radius: 50%; margin-bottom: 4px; flex-shrink: 0; }

.nav-menu { display: flex; align-items: center; gap: 0.15rem; }
.nav-menu li { position: relative; }
.nav-menu > li > a {
  padding: 0.5rem 0.9rem; font-size: 0.88rem; font-weight: 500;
  color: var(--text-700); border-radius: var(--radius-sm);
  transition: all var(--transition); display: flex; align-items: center; gap: 0.3rem;
}
.nav-menu > li > a:hover { color: var(--green-700); background: var(--green-50); }
.nav-menu > li > a .chevron {
  font-size: 0.65rem; transition: transform var(--transition);
  display: inline-block; margin-top: 1px;
}
.nav-dropdown:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 0.6rem); left: 0;
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  min-width: 230px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.22s ease; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.72rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--text-700);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--green-50); color: var(--green-700); }
.dropdown-menu .drop-icon { font-size: 1.1rem; }
.dropdown-menu .drop-label { display: flex; flex-direction: column; }
.dropdown-menu .drop-label small { font-size: 0.72rem; color: var(--text-300); font-weight: 400; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.45rem 0.6rem;
  color: var(--text-700); font-size: 1.3rem; line-height: 1;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding: 9.5rem 0 6rem;
  display: flex; align-items: center;
  background: var(--cream); position: relative; overflow: hidden;
}
.hero-blob-1 {
  position: absolute; top: -15%; right: -8%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.hero-blob-2 {
  position: absolute; bottom: -12%; left: -4%; width: 38vw; height: 38vw;
  background: radial-gradient(circle, var(--cream-dark) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem; align-items: center; position: relative; z-index: 1;
}
.hero-content .badge { margin-bottom: 1.6rem; }
.hero-content h1  { margin-bottom: 1.5rem; }
.hero-content > p { font-size: 1.15rem; max-width: 530px; margin-bottom: 2.5rem; line-height: 1.82; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat {}
.stat-num  { display: block; font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--green-700); line-height: 1; }
.stat-lbl  { font-size: 0.78rem; color: var(--text-300); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; display: block; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual-inner {
  background: white; border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light); position: relative; overflow: hidden;
}
.hero-visual-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
}
.hero-img-wrap {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--green-100) 0%, var(--cream-dark) 55%, var(--green-50) 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-img-placeholder {
  text-align: center; color: var(--green-700); font-size: 0.85rem;
  font-weight: 500; opacity: 0.6; padding: 2rem;
}
.hero-img-placeholder .placeholder-icon { font-size: 3rem; margin-bottom: 0.75rem; display: block; }

.hero-float-card {
  position: absolute; bottom: 1rem; right: -1.5rem;
  background: var(--green-700); color: white;
  padding: 1.1rem 1.5rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.hero-float-card strong { display: block; font-size: 1.5rem; font-family: var(--font-serif); }
.hero-float-card span  { font-size: 0.72rem; opacity: 0.82; }

.hero-float-badge {
  position: absolute; top: 1.5rem; left: -1.5rem;
  background: white; border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-float-badge .fb-icon { font-size: 1.3rem; }
.hero-float-badge .fb-label { font-size: 0.78rem; font-weight: 600; color: var(--text-900); line-height: 1.3; }
.hero-float-badge .fb-sub   { font-size: 0.68rem; color: var(--text-300); }

/* ════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════ */
.trust-bar {
  background: white; padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-label { text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-300); margin-bottom: 1.5rem; font-weight: 600; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.trust-logo-item { opacity: 0.45; transition: opacity var(--transition); }
.trust-logo-item:hover { opacity: 0.85; }
.trust-logo-item img { height: 30px; object-fit: contain; filter: grayscale(100%); }
.trust-logo-text { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--text-500); letter-spacing: 0.04em; }

/* Real logo images in trust bar */
.trust-logo-img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: all var(--transition);
  display: block;
}
.trust-logo-item:hover .trust-logo-img {
  filter: grayscale(0%) opacity(1);
}

/* Reference card screenshots */
.ref-screenshot {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  display: block;
}
/* Referenzkarten ohne Screenshot: Marken-/Programmlogo sauber zentriert */
.ref-screenshot.ref-logo {
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.25rem 2rem;
}

/* Nav logo image */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Über mich Timeline (enhanced) ── */
.career-timeline { display: flex; flex-direction: column; gap: 0; max-width: 900px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 0;
  position: relative;
}
.timeline-item.right .timeline-content { grid-column: 3; grid-row: 1; padding-left: 2.5rem; }
.timeline-item.left  .timeline-content { grid-column: 1; grid-row: 1; padding-right: 2.5rem; text-align: right; }
.timeline-center {
  grid-column: 2; grid-row: 1;
  display: flex; flex-direction: column; align-items: center;
  position: relative; padding: 0.5rem 0;
}
.timeline-dot {
  width: 48px; height: 48px;
  background: var(--green-700); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; z-index: 1;
  border: 4px solid var(--cream); box-shadow: 0 0 0 3px var(--green-300);
}
.timeline-line {
  flex: 1; width: 2px; background: linear-gradient(var(--green-300), var(--green-100));
  min-height: 2rem;
}
.timeline-card {
  background: white; border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  margin-bottom: 2rem;
}
.timeline-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-300); }
.timeline-company-logo {
  height: 32px; width: auto; max-width: 120px; object-fit: contain;
  margin-bottom: 1rem; filter: grayscale(60%); transition: filter var(--transition);
  display: block;
}
.timeline-item.left  .timeline-company-logo { margin-left: auto; }
.timeline-card:hover .timeline-company-logo { filter: grayscale(0%); }
.timeline-period {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 0.5rem; display: block;
}
.timeline-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-card .tc-subtitle { font-size: 0.82rem; color: var(--text-300); margin-bottom: 0.85rem; display: block; }
.timeline-card p { font-size: 0.88rem; line-height: 1.65; }
.timeline-card .tc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.timeline-item.left .tc-tags { justify-content: flex-end; }
.tc-tag {
  font-size: 0.7rem; font-weight: 600; padding: 0.22rem 0.65rem;
  background: var(--green-50); color: var(--green-700); border-radius: var(--radius-full);
  border: 1px solid var(--green-100);
}
/* Expand/collapse */
.tc-more { display: none; margin-top: 0.75rem; }
.tc-more.open { display: block; }
.tc-more ul { padding-left: 1rem; }
.tc-more ul li { font-size: 0.82rem; color: var(--text-500); margin-bottom: 0.3rem; }
.tc-more ul li::marker { color: var(--green-500); }
.btn-expand {
  background: none; border: 1px solid var(--border); border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; color: var(--green-700); cursor: pointer;
  padding: 0.3rem 0.9rem; margin-top: 0.75rem; transition: all var(--transition);
  font-family: var(--font-sans);
}
.btn-expand:hover { background: var(--green-50); border-color: var(--green-300); }

/* Project screenshots grid */
.project-shots {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1rem;
}
.project-shot-img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light); transition: all var(--transition);
}
.project-shot-img:hover { transform: scale(1.02); box-shadow: var(--shadow-sm); }

/* Skills section */
.skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.skill-card {
  background: white; border-radius: var(--radius-md); padding: 1.5rem;
  border: 1px solid var(--border-light); text-align: center;
}
.skill-icon { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.skill-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.skill-bar-wrap { background: var(--cream-dark); border-radius: 4px; height: 5px; overflow: hidden; margin-top: 0.5rem; }
.skill-bar { height: 100%; background: linear-gradient(90deg, var(--green-700), var(--green-500)); border-radius: 4px; }

@media (max-width: 768px) {
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item.right .timeline-content,
  .timeline-item.left  .timeline-content { grid-column: 1; padding: 0 0 0 0; text-align: left; }
  .timeline-center { display: none; }
  .timeline-card { margin-bottom: 1.25rem; }
  .timeline-item.left .tc-tags { justify-content: flex-start; }
  .timeline-item.left .timeline-company-logo { margin-left: 0; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .project-shots { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-section { padding: var(--space-2xl) 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem; border: 1px solid var(--border-light);
  transition: all var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--green-700); border-color: var(--green-700); }
.service-card.featured::after { display: none; }
.service-card.featured:hover { background: var(--green-900); border-color: var(--green-900); box-shadow: var(--shadow-xl); }

.service-icon {
  width: 58px; height: 58px; background: var(--green-100);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: 1.55rem; margin-bottom: 1.5rem; flex-shrink: 0;
}
.service-card.featured .service-icon { background: rgba(255,255,255,0.15); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--text-900); }
.service-card.featured h3 { color: white; }
.service-card > p { font-size: 0.93rem; margin-bottom: 1.5rem; flex: 0; }
.service-card.featured > p { color: rgba(255,255,255,0.78); }

.service-features { margin-bottom: 2rem; flex: 1; }
.service-feat {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.38rem 0; font-size: 0.875rem; color: var(--text-500);
}
.service-feat::before { content: '✓'; color: var(--green-500); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
.service-card.featured .service-feat { color: rgba(255,255,255,0.82); }
.service-card.featured .service-feat::before { color: var(--green-300); }

.service-card .btn { margin-top: auto; align-self: flex-start; }
.service-card.featured .btn { background: white; color: var(--green-700); }
.service-card.featured .btn:hover { background: var(--cream); }

/* ════════════════════════════════════════════
   WHY ADVINE
════════════════════════════════════════════ */
.why-section { padding: var(--space-2xl) 0; background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; }
.why-visual { position: relative; }
.why-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--green-100) 0%, var(--cream-dark) 55%);
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.why-img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--green-700); font-size: 0.85rem; font-weight: 500; opacity: 0.5; padding: 2rem;
}
.why-img-placeholder .pi-icon { font-size: 3.5rem; }

.why-float-card {
  position: absolute; top: 2rem; right: -1.8rem;
  background: white; border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.why-float-card .wfc-icon { font-size: 1.4rem; margin-bottom: 0.3rem; display: block; }
.why-float-card strong { display: block; font-size: 0.83rem; color: var(--text-900); }
.why-float-card span   { font-size: 0.72rem; color: var(--text-300); }

.years-badge {
  position: absolute; bottom: 2.5rem; left: -1.8rem;
  background: var(--green-700); color: white;
  border-radius: var(--radius-md); padding: 1.4rem 1.8rem;
  text-align: center; box-shadow: var(--shadow-lg);
}
.years-badge .yb-num  { display: block; font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.years-badge .yb-text { font-size: 0.72rem; opacity: 0.82; }

.why-content .badge { margin-bottom: 1rem; }
.why-content h2 { margin-bottom: 1.25rem; }
.why-content > p { margin-bottom: 2.5rem; font-size: 1.07rem; line-height: 1.82; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 46px; height: 46px; background: var(--green-100);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.why-point strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-900); margin-bottom: 0.25rem; }
.why-point span   { font-size: 0.8rem; color: var(--text-500); line-height: 1.5; }

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process-section { padding: var(--space-2xl) 0; background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--green-300), var(--green-500), var(--green-300));
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; background: var(--green-700); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--cream); box-shadow: 0 0 0 4px var(--green-300);
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.process-step p  { font-size: 0.865rem; }

/* ════════════════════════════════════════════
   REFERENCES
════════════════════════════════════════════ */
.references-section { padding: var(--space-2xl) 0; background: white; }
.references-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ref-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border-light);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.ref-logo-text { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-500); margin-bottom: 1rem; display: block; }
.ref-tag {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.ref-card p { font-size: 0.895rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.ref-meta { font-size: 0.78rem; color: var(--text-300); padding-top: 1rem; border-top: 1px solid var(--border-light); }

/* ════════════════════════════════════════════
   BOOKING / CTA SECTION
════════════════════════════════════════════ */
.booking-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: white; position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; position: relative; }
.booking-content .badge { margin-bottom: 1.25rem; }
.booking-content h2 { color: white; margin-bottom: 1.25rem; }
.booking-content > p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.booking-features { display: flex; flex-direction: column; gap: 1rem; }
.booking-feat { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.booking-feat-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.05rem; flex-shrink: 0;
}
.booking-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

.booking-widget-wrap {
  background: white; border-radius: var(--radius-xl);
  overflow: hidden; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
}
.calendly-placeholder {
  text-align: center; padding: 2.5rem; color: var(--text-500);
}
.calendly-placeholder .cal-icon { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--green-500); }
.calendly-placeholder h4 { color: var(--text-900); margin-bottom: 0.5rem; }
.calendly-placeholder p  { font-size: 0.88rem; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-section { padding: var(--space-2xl) 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.cd-icon {
  width: 46px; height: 46px; background: var(--green-100);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.cd-text strong { display: block; font-size: 0.8rem; color: var(--text-900); margin-bottom: 0.22rem; font-weight: 600; }
.cd-text a, .cd-text span { font-size: 0.95rem; color: var(--text-500); transition: color var(--transition); }
.cd-text a:hover { color: var(--green-700); }

/* Form */
.contact-form {
  background: white; border-radius: var(--radius-xl);
  padding: 2.75rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-700); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.88rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.93rem; color: var(--text-900);
  background: var(--cream); transition: all var(--transition); outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-500); background: white;
  box-shadow: 0 0 0 3px rgba(82,183,136,0.14);
}
.form-group textarea { height: 145px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; }
.form-note { font-size: 0.78rem; color: var(--text-300); margin-top: 0.8rem; }

/* Success message */
.form-success {
  display: none; text-align: center; padding: 2.5rem;
  background: var(--green-50); border-radius: var(--radius-md);
  border: 1px solid var(--green-300);
}
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.form-success h4 { color: var(--green-700); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.9rem; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer { background: var(--text-900); color: rgba(255,255,255,0.62); padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.09); margin-bottom: 2rem;
}
.footer-brand .fb-name { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; color: var(--green-300); display: block; margin-bottom: 0.4rem; }
.footer-brand .fb-tag  { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; display: block; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.72; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem; transition: all var(--transition);
  color: rgba(255,255,255,0.5);
}
.social-link:hover { background: var(--green-700); color: white; }

.footer-col h5 { font-size: 0.8rem; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.2rem; font-family: var(--font-sans); }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--green-300); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-300); }

/* ════════════════════════════════════════════
   SERVICE PAGE STYLES
════════════════════════════════════════════ */
.page-hero {
  padding: 9rem 0 5rem; background: var(--cream); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -20%; right: -5%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { font-size: 0.8rem; color: var(--text-300); margin-bottom: 1.25rem; }
.page-hero .breadcrumb a { color: var(--green-600); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .badge { margin-bottom: 1.25rem; }
.page-hero h1 { max-width: 700px; margin-bottom: 1.5rem; }
.page-hero > .container > p { max-width: 600px; margin-bottom: 2.5rem; font-size: 1.12rem; }
.page-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Detail sections */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--cream); border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: all var(--transition); }
.feature-item:hover { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.fi-icon { width: 44px; height: 44px; background: var(--green-100); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.fi-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-900); margin-bottom: 0.25rem; }
.fi-text span  { font-size: 0.83rem; color: var(--text-500); line-height: 1.5; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card {
  background: white; border-radius: var(--radius-lg); padding: 2.25rem;
  border: 1.5px solid var(--border-light); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--green-500); position: relative; }
.pricing-card.popular::before { content: 'Beliebt'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green-700); color: white; font-size: 0.7rem; font-weight: 600; padding: 0.28rem 0.9rem; border-radius: var(--radius-full); letter-spacing: 0.06em; text-transform: uppercase; }
.pc-name { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-300); margin-bottom: 0.75rem; }
.pc-price { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--text-900); margin-bottom: 0.3rem; }
.pc-price span { font-size: 1rem; color: var(--text-300); font-family: var(--font-sans); font-weight: 400; }
.pc-desc { font-size: 0.875rem; color: var(--text-500); margin-bottom: 1.75rem; }
.pc-features { flex: 1; margin-bottom: 2rem; }
.pc-feat { display: flex; align-items: flex-start; gap: 0.55rem; padding: 0.38rem 0; font-size: 0.875rem; color: var(--text-500); }
.pc-feat::before { content: '✓'; color: var(--green-500); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.faq-section { padding: var(--space-2xl) 0; background: white; }
.faq-max { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.4rem 0; font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  color: var(--text-900); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; transition: color var(--transition);
}
.faq-question:hover { color: var(--green-700); }
.faq-chevron { font-size: 1.3rem; color: var(--green-500); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-answer-inner { padding: 0 0 1.4rem; }
.faq-answer p { font-size: 0.95rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl); padding: 3.5rem;
  text-align: center; color: white; margin: 3rem 0;
}
.cta-banner h3 { color: white; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   LANDING PAGE EXTRAS
════════════════════════════════════════════ */
.local-hero { background: linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%); color: white; padding: 9.5rem 0 6rem; }
.local-hero h1 { color: white; }
.local-hero > .container > p { color: rgba(255,255,255,0.8); max-width: 580px; }
.local-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.stats-row { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat-pill { background: rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 1rem 1.5rem; text-align: center; }
.stat-pill strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; color: white; }
.stat-pill span   { font-size: 0.75rem; color: rgba(255,255,255,0.72); }

.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.benefit-card { background: white; border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--border-light); transition: all var(--transition); }
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.bc-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.benefit-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.benefit-card p  { font-size: 0.83rem; }

/* Testimonial */
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 2.25rem;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-serif); font-size: 5rem; color: var(--green-100); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.tc-text { font-size: 0.98rem; line-height: 1.75; margin-bottom: 1.5rem; color: var(--text-700); font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 0.75rem; }
.tc-avatar { width: 42px; height: 42px; background: var(--green-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.tc-name  { font-size: 0.88rem; font-weight: 600; color: var(--text-900); }
.tc-role  { font-size: 0.75rem; color: var(--text-300); }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container, .why-grid, .booking-grid, .contact-grid, .local-hero-grid, .detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-float-card, .hero-float-badge, .why-float-card, .years-badge { display: none; }
  .services-grid, .references-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-points { grid-template-columns: 1fr; }
  .detail-grid.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: white; padding: 1rem; box-shadow: var(--shadow-lg); z-index: 999;
  }
  .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream); padding: 0 0 0 1rem; }
  .hero { padding: 7.5rem 0 4rem; min-height: auto; }
  .hero-stats { gap: 1.5rem; }
  .services-grid, .references-grid, .pricing-grid, .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .booking-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .page-hero-ctas { flex-direction: column; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
}

/* ════════════════════════════════════════════
   INQA-COACHING
════════════════════════════════════════════ */

/* ── Conversion Hero ── */
.inqa-hero {
  background: linear-gradient(150deg, var(--green-950) 0%, var(--green-900) 48%, var(--green-700) 100%);
  color: white; padding: 9.5rem 0 5.5rem; position: relative; overflow: hidden;
}
.inqa-hero::before {
  content: ''; position: absolute; top: -25%; right: -8%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(149,213,178,0.16) 0%, transparent 68%);
  pointer-events: none;
}
.inqa-hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.inqa-hero .container { position: relative; z-index: 1; }
.inqa-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.inqa-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.inqa-hero .breadcrumb a { color: var(--green-300); }
.inqa-hero .breadcrumb a:hover { text-decoration: underline; }
.inqa-hero .badge { margin-bottom: 1.4rem; }
.inqa-hero h1 { color: white; margin-bottom: 1.4rem; }
.inqa-hero h1 .hl { color: var(--green-300); }
.inqa-hero .lead { color: rgba(255,255,255,0.84); font-size: 1.15rem; max-width: 560px; margin-bottom: 2rem; line-height: 1.8; }
.inqa-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.inqa-trust-row { display: flex; gap: 1.4rem 1.8rem; flex-wrap: wrap; align-items: center; }
.inqa-trust-row .it { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.78); font-size: 0.86rem; font-weight: 500; }
.inqa-trust-row .it-ic { color: var(--green-300); font-size: 1rem; }

/* ── Funding card (hero anchor / cost example) ── */
.foerder-card {
  background: white; border-radius: var(--radius-xl); padding: 2.25rem 2.25rem 2rem;
  box-shadow: var(--shadow-xl); color: var(--text-900); position: relative; overflow: hidden;
}
.foerder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
}
.foerder-card .fc-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-600); margin-bottom: 0.4rem; }
.foerder-card .fc-head { display: flex; align-items: baseline; gap: 0.5rem; }
.foerder-card .fc-pct { font-family: var(--font-serif); font-size: 3.7rem; font-weight: 700; color: var(--green-700); line-height: 1; }
.foerder-card .fc-pct small { font-size: 1.4rem; font-weight: 600; }
.foerder-card .fc-headline { font-size: 1.05rem; font-weight: 600; color: var(--text-900); line-height: 1.35; }
.foerder-card .fc-sub { font-size: 0.88rem; color: var(--text-500); margin: 0.6rem 0 1.4rem; }
.fc-rows { border-top: 1px solid var(--border-light); }
.fc-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.72rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.93rem; }
.fc-row span { color: var(--text-500); }
.fc-row strong { color: var(--text-900); font-weight: 600; white-space: nowrap; }
.fc-row.total { padding-top: 0.9rem; }
.fc-row.total span { color: var(--text-900); font-weight: 600; }
.fc-row.total strong { color: var(--green-700); font-size: 1.25rem; font-family: var(--font-serif); }
.fc-note { font-size: 0.72rem; color: var(--text-300); margin-top: 0.95rem; line-height: 1.5; }

/* ── Funding highlight band ── */
.foerder-highlight {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl); padding: 3.25rem; color: white; text-align: center;
  position: relative; overflow: hidden;
}
.foerder-highlight::before {
  content: ''; position: absolute; top: -50%; left: -10%; width: 50vw; height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); pointer-events: none;
}
.foerder-highlight .fh-pct { font-family: var(--font-serif); font-size: clamp(3.5rem, 9vw, 5.5rem); font-weight: 700; line-height: 1; color: white; }
.foerder-highlight h3 { color: white; margin: 0.5rem 0 0.75rem; }
.foerder-highlight p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 1.75rem; }
.fh-stats { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; position: relative; }
.fh-stat { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); padding: 1.1rem 1.6rem; min-width: 150px; }
.fh-stat strong { display: block; font-family: var(--font-serif); font-size: 1.9rem; color: white; line-height: 1.1; }
.fh-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

/* ── Gestaltungsfeld cards ── */
.gf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gf-card {
  background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 2rem; transition: all var(--transition); display: flex; flex-direction: column;
}
.gf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.gf-num {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--green-700);
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; flex-shrink: 0;
}
.gf-card h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.gf-card p { font-size: 0.875rem; line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.gf-examples { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gf-tag { font-size: 0.7rem; font-weight: 600; padding: 0.24rem 0.7rem; background: var(--green-50); color: var(--green-700); border-radius: var(--radius-full); border: 1px solid var(--green-100); }

/* ── Eligibility check card ── */
.check-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.check-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.95rem; color: var(--text-700); line-height: 1.5; }
.check-item .ci-mark {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.check-item strong { color: var(--text-900); font-weight: 600; }

/* ── Problem / pain cards ── */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pain-card { background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.75rem 1.5rem; transition: all var(--transition); }
.pain-card:hover { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.pain-icon { font-size: 1.7rem; margin-bottom: 0.8rem; display: block; }
.pain-card h4 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.pain-card p { font-size: 0.83rem; line-height: 1.6; }

/* ── Authority / coach block ── */
.coach-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center; }
.coach-visual { position: relative; }
.coach-img-wrap { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(145deg, var(--green-100), var(--cream-dark)); box-shadow: var(--shadow-md); }
.coach-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.coach-cred-card { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--green-700); color: white; border-radius: var(--radius-md); padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg); max-width: 220px; }
.coach-cred-card strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.25; margin-bottom: 0.2rem; }
.coach-cred-card span { font-size: 0.74rem; opacity: 0.85; }
.coach-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.coach-point { display: flex; gap: 1rem; align-items: flex-start; }
.coach-point .cp-ic { width: 46px; height: 46px; background: var(--green-100); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.coach-point strong { display: block; font-size: 0.95rem; color: var(--text-900); margin-bottom: 0.2rem; }
.coach-point span { font-size: 0.86rem; color: var(--text-500); line-height: 1.55; }

/* ── Numbered step cards (vertical, detailed) ── */
.step-cards { display: flex; flex-direction: column; gap: 1.25rem; max-width: 820px; margin: 0 auto; }
.step-row { display: flex; gap: 1.5rem; align-items: flex-start; background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1.75rem 2rem; transition: all var(--transition); }
.step-row:hover { box-shadow: var(--shadow-sm); border-color: var(--green-300); }
.step-row .sr-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-700); color: white;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px var(--green-100);
}
.step-row .sr-body h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step-row .sr-body p { font-size: 0.9rem; line-height: 1.65; }
.step-row .sr-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-600); margin-bottom: 0.5rem; }

/* ── Sticky mobile CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--green-700); color: white; padding: 0.7rem 1rem;
  display: none; align-items: center; justify-content: space-between; gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
.sticky-cta .sc-text { font-size: 0.82rem; font-weight: 600; line-height: 1.25; }
.sticky-cta .sc-text small { display: block; font-weight: 400; opacity: 0.8; font-size: 0.72rem; }
.sticky-cta .btn { padding: 0.7rem 1.2rem; font-size: 0.88rem; flex-shrink: 0; }

/* ── INQA responsive ── */
@media (max-width: 1024px) {
  .inqa-hero-grid, .coach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .inqa-hero .foerder-card { max-width: 440px; }
  .gf-grid, .pain-grid { grid-template-columns: 1fr 1fr; }
  .coach-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .coach-cred-card { right: 0; }
}
@media (max-width: 768px) {
  .gf-grid, .pain-grid { grid-template-columns: 1fr; }
  .foerder-highlight { padding: 2.25rem 1.5rem; }
  .fh-stats { gap: 0.75rem; }
  .fh-stat { min-width: 130px; padding: 0.9rem 1.1rem; }
  .step-row { padding: 1.4rem 1.25rem; gap: 1rem; }
  .step-row .sr-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .sticky-cta { display: flex; }
  .foerder-card { padding: 1.75rem 1.5rem; }
}

/* ── Förder-Teaser (Leistungsseiten) ── */
.foerder-teaser {
  display: flex; align-items: center; justify-content: space-between; gap: 1.75rem;
  background: linear-gradient(120deg, var(--green-50), var(--green-100));
  border: 1px solid var(--green-300); border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
}
.foerder-teaser .ft-main { display: flex; align-items: center; gap: 1.1rem; }
.foerder-teaser .ft-icon {
  font-size: 1.7rem; width: 54px; height: 54px; flex-shrink: 0;
  background: white; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.foerder-teaser .ft-badge {
  display: inline-block; background: var(--green-700); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: var(--radius-full); margin-bottom: 0.45rem;
}
.foerder-teaser strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-900); line-height: 1.3; }
.foerder-teaser p { font-size: 0.88rem; color: var(--text-700); margin-top: 0.3rem; max-width: 640px; }
.foerder-teaser p a { color: var(--green-700); font-weight: 600; }
.foerder-teaser p a:hover { text-decoration: underline; }
.foerder-teaser .ft-cta { flex-shrink: 0; }
@media (max-width: 768px) {
  .foerder-teaser { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .foerder-teaser .ft-cta, .foerder-teaser .ft-cta .btn { width: 100%; justify-content: center; }
}

/* ── Credibility-Badges (Digitalisierung-Hero) ── */
.cred-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.25rem; }
.cred-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text-700);
  box-shadow: var(--shadow-sm);
}
.cred-badge .cb-ic { font-size: 1rem; line-height: 1; }

/* ── Profil-Karte mit rundem Foto (Hero rechts) ── */
.profile-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem; box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light); text-align: center; position: relative; overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
}
.profile-avatar {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden;
  margin: 0.5rem auto 1.25rem; border: 5px solid var(--green-100); box-shadow: var(--shadow-md);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.profile-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.profile-role { font-size: 0.85rem; color: var(--green-700); font-weight: 600; margin-bottom: 1rem; }
.profile-bio { font-size: 0.9rem; color: var(--text-500); line-height: 1.7; margin-bottom: 1.5rem; }
.profile-facts { display: flex; justify-content: center; gap: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border-light); }
.profile-fact strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--green-700); line-height: 1; }
.profile-fact span { font-size: 0.7rem; color: var(--text-300); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; display: block; }
@media (max-width: 480px) { .profile-facts { gap: 1.1rem; } .profile-avatar { width: 160px; height: 160px; } }
