/* ===== True North Consulting — Stylesheet (v2 - pixel accurate) ===== */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=Kaisei+Decol:wght@400;500;700&family=Manrope:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  /* Backgrounds */
  --bg-dark: rgb(5, 5, 5);            /* nur noch fuer Einzelelemente */
  --navy-900: #001724;
  --navy-800: #002c45;
  --navy-700: #003c5e;
  --near-black: #050505;
  --bg-section-dark: linear-gradient(180deg, #001724 0%, #050505 100%);
  --bg-white: #ffffff;
  --bg-card-navy: radial-gradient(75% 32.8% at -5.7% -5%, #024a73 0%, #001724 100%);
  --bg-card-navy-top: radial-gradient(46% 31% at 50% 0%, #003c5e 0%, #001724 100%);
  --bg-card-olive: linear-gradient(180deg, #3d3116 0%, #212121 100%);
  --bg-card-gold: radial-gradient(57% 65% at 50% 50%, rgba(186,150,41,0.47) 0%, #001724 100%);
  --bg-stats-strip: linear-gradient(0deg, rgba(17,17,17,0) 0%, #3d3d3d 23.972%, #3d3d3d 75.8258%, rgba(17,17,17,0) 100%);
  --bg-footer-card: linear-gradient(140deg, #033f63 0%, #001c2c 55%, #020e16 100%);
  --bg-hero-glow: radial-gradient(68% 69% at 18% 16%, #002c45 47%, #001724 100%);

  /* Accents */
  --orange-450: #ffbf00;
  --orange-600: #c6a030;
  --orange-text: #e87811;
  --orange-text-2: #e46f03;
  --gold: #ba9629;
  --gold-light: #e3c059;

  /* Text on dark */
  --t-white: #ffffff;
  --t-light: #e6e6e6;
  --t-card: #d4d4d4;
  --t-body-dark: #afafaf;
  --t-label-dark: #858585;

  /* Text on white */
  --t-dark: rgb(38, 38, 38);
  --t-body-light: #5e5e5e;
  --t-label-light: #858585;

  /* Borders */
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --border-btn: rgba(33, 33, 33, 0.93);

  /* Fonts */
  --font-heading: 'Satoshi', 'Inter', sans-serif;
  --font-body: 'Manrope', 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --font-logo: 'Kaisei Decol', serif;

  /* Radius */
  --r-card: 23px;
  --r-card-sm: 22px;
  --r-btn: 7px;
  --r-pill: 33px;
  --r-nav: 40px;

  /* Layout */
  --maxw: 1218px;
  --sec-pad: 90px 60px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--t-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Typography presets ===== */
.h1 { font-family: var(--font-heading); font-size: 60px; font-weight: 500; letter-spacing: -1px; line-height: 1.25em; }
.h2 { font-family: var(--font-heading); font-size: 44px; font-weight: 500; letter-spacing: -1px; line-height: 1.25em; }
.h3 { font-family: var(--font-heading); font-size: 38px; font-weight: 500; letter-spacing: -1px; line-height: 1.25em; }
.h4 { font-family: var(--font-heading); font-size: 26px; font-weight: 500; letter-spacing: -1px; line-height: 1.25em; }
.h5 { font-family: var(--font-heading); font-size: 18px; font-weight: 500; letter-spacing: -1px; line-height: 1.25em; }
.body-text { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.6em; }
.label-text { font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 1em; }

@media (max-width: 1199px) and (min-width: 810px) {
  .h1 { font-size: 48px; }
  .h2 { font-size: 36px; }
  .h3 { font-size: 32px; }
}
@media (max-width: 809px) {
  .h1 { font-size: 36px; }
  .h2 { font-size: 28px; }
  .h3 { font-size: 24px; }
  .h4 { font-size: 22px; }
}

/* Colors */
.c-white { color: var(--t-white); }
.c-light { color: var(--t-light); }
.c-card { color: var(--t-card); }
.c-dark { color: var(--t-dark); }
.c-body-dark { color: var(--t-body-dark); }
.c-body-light { color: var(--t-body-light); }
.c-label { color: var(--t-label-dark); }
.c-orange { color: var(--orange-text); }
.c-orange-2 { color: var(--orange-text-2); }
.c-gold { color: var(--gold); }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 60px; }

/* Sections */
.section-white { background: var(--bg-white); padding: var(--sec-pad); display: flex; flex-direction: column; align-items: center; gap: 26px; scroll-margin-top: 100px; position: relative; }
.section-white.gap-60 { gap: 60px; }
.section-white.gap-80 { gap: 80px; }
.section-white.gap-71 { gap: 71px; }
.section-white.pad-top-0 { padding: 90px 60px 0; }
.section-white.pad-0 { padding: 0; }
.section-white.overflow-hidden { overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 500; font-size: 16px;
  padding: 14px 28px; border-radius: var(--r-btn); cursor: pointer;
  border: 1px solid var(--border-btn);
  background: radial-gradient(66% 93% at 48% 0%, var(--orange-450) 0%, var(--orange-600) 76%);
  color: rgb(26, 26, 26);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none; white-space: nowrap;
  letter-spacing: -0.3px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 191, 0, 0.3); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-pill {
  border-radius: var(--r-pill);
  background: var(--bg-dark);
  color: var(--t-label-dark);
  border: none;
  padding: 8px 18px 8px 14px;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-pill .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgb(19, 199, 26);
  box-shadow: 0 0 8px rgba(19,199,26,0.5);
}
.btn-pill .pulse-dot::after {
  content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(19,199,26,0.3); animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100;
  background: linear-gradient(180deg, #3d3116 0%, rgba(33,33,33,0.4) 100%);
  border-radius: var(--r-nav);
  padding: 10px 14px 10px 24px;
  display: flex; align-items: center; gap: 24px;
  max-width: calc(100% - 40px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-logo);
  font-size: 18.4px;
  font-weight: 400;
  letter-spacing: -0.07px;
  color: #bd9a30;
  transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  /* Als Flex-Item schrumpfte das Logo unter seine Inhaltsbreite und brach
     auf drei Zeilen um - auch wenn in der Nav reichlich Platz war. */
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo:hover { color: #c6a030; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-family: var(--font-body); font-size: 14px; color: var(--t-label-dark); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--t-white); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; color: var(--t-white); cursor: pointer; padding: 4px; font-size: 20px; }

/* ===== Hero ===== */
.hero {
  background: var(--bg-hero-glow);
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 194px 60px 90px; position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 50% at 50% 30%, rgba(0, 78, 122, 0.45) 0%, rgba(0, 23, 36, 0) 70%);
}
.hero-oval {
  position: absolute; border-radius: 50%; opacity: 0.4; filter: blur(0px); pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0) 1px, var(--navy-900) 1px);
  background-size: 9px 9px;
  backdrop-filter: blur(58px);
}
/* Der eigentliche Dunkelblau->Fast-Schwarz-Verlauf des Hero.
   Liegt ueber dem navy Punkteraster und blendet nach unten aus, so wie
   auf der Framer-Referenz (dort ca. 68% der Hero-Hoehe). */
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 68%;
  background: linear-gradient(180deg, rgba(0,23,36,0) 0%, rgba(2,14,21,0.75) 55%, var(--near-black) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 28px; max-width: 900px; }
.hero-top-btn { margin-bottom: 8px; }
.hero h1 { max-width: 800px; }
.hero-sub { font-family: var(--font-body); font-size: 16px; color: var(--t-body-dark); max-width: 500px; line-height: 1.6em; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--t-label-dark);
}


/* ===== Section heading block ===== */
.sec-head { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 650px; text-align: center; }
.sec-head.wide { max-width: 800px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--t-label-dark);
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.06);
}
.sec-head p { font-family: var(--font-body); font-size: 16px; color: var(--t-body-light); line-height: 1.6em; max-width: 600px; }

/* ===== Clients strip ===== */
.clients-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.clients-row img { height: 36px; width: auto; opacity: 0.55; filter: grayscale(1) brightness(0.3); transition: all 0.3s; }
.clients-row img:hover { opacity: 0.8; filter: grayscale(0.5) brightness(0.5); }

/* ===== Why Us cards ===== */
.cards-3 { display: flex; flex-direction: row; gap: 24px; width: 100%; max-width: 1100px; flex-wrap: wrap; justify-content: center; }
.card-dark {
  background: var(--bg-card-olive); border-radius: var(--r-card);
  padding: 32px; flex: 1 0 300px; max-width: 360px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid rgba(186,150,41,0.15);
  transition: transform 0.4s var(--ease);
}
.card-dark:hover { transform: translateY(-6px); }
.card-icon-bg {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(186,150,41,0.12); border: 1px solid rgba(186,150,41,0.2);
  display: flex; align-items: center; justify-content: center;
}
.card-icon-bg img { width: 26px; height: 26px; }
.card-dark h4 { color: var(--t-card); }
.card-dark p { color: var(--t-body-dark); font-size: 15px; line-height: 1.6em; }

/* ===== Works / Tabs ===== */
.tabs-row { display: flex; gap: 0; width: 100%; max-width: 1100px; border-bottom: 1px solid var(--border-light); }
.tab {
  padding: 16px 28px; cursor: pointer; font-family: var(--font-heading); font-weight: 500; font-size: 18px;
  color: var(--t-label-light); border-bottom: 2px solid transparent; transition: all 0.25s; letter-spacing: -1px;
}
.tab.active { color: var(--t-dark); border-color: var(--orange-text); }
.tab:hover { color: var(--t-dark); }
.tab-panel { display: none; width: 100%; max-width: 1100px; }
.tab-panel.active { display: flex; flex-direction: row; gap: 40px; align-items: center; }
.tab-img { flex: 1; border-radius: var(--r-card-sm); overflow: hidden; background: var(--bg-card-navy); aspect-ratio: 4/3; position: relative; border: 1px solid rgba(0,0,0,0.06); }
.tab-img img { width: 100%; height: 100%; object-fit: cover; }
.tab-img .logo-overlay { position: absolute; top: 20px; left: 20px; height: 28px; filter: brightness(0) invert(1); opacity: 0.8; }
.tab-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.tab-text h3 { color: var(--t-dark); }
.tab-text p { color: var(--t-body-light); font-size: 16px; line-height: 1.6em; }

/* ===== Statistics (dark gradient strip) ===== */
.section-stats {
  background: var(--bg-stats-strip);
  padding: 0; display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 64px; width: 100%; height: 147px; position: relative; overflow: hidden;
}
.stats-row { display: flex; gap: 64px; width: 100%; max-width: 1100px; flex-wrap: wrap; justify-content: center; }
.stat-card {
  flex: 1 0 220px; max-width: 280px; padding: 0; text-align: center;
  background: transparent; border-radius: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.stat-card .num { font-family: var(--font-heading); font-size: 56px; font-weight: 500; color: var(--orange-450); letter-spacing: -2px; line-height: 1; }
.stat-card .lbl { font-family: var(--font-body); font-size: 15px; color: var(--t-body-dark); }

/* ===== Services ===== */
.svc-grid { display: flex; flex-direction: row; gap: 24px; width: 100%; max-width: 1100px; flex-wrap: wrap; justify-content: center; }
.svc-card {
  background: var(--bg-card-navy); border-radius: var(--r-card-sm);
  padding: 32px; flex: 1 0 300px; max-width: 360px; min-height: 420px;
  display: flex; flex-direction: column; gap: 20px;
}
.svc-card h4 { color: var(--t-card); }
.svc-card p { color: var(--t-body-dark); font-size: 15px; line-height: 1.6em; }
.svc-visual { margin-top: auto; }
.svc-visual img { width: 100%; border-radius: 10px; }

/* Code block */
.code-block {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  padding: 18px; font-family: var(--font-mono); font-size: 13px; color: var(--t-body-dark);
  line-height: 1.8; min-height: 200px; white-space: pre; overflow: hidden;
}
.code-block .kw { color: var(--orange-450); }
.code-block .ty { color: #7ec; }
.code-block .cm { color: #555; }
.code-block .ln { color: #444; user-select: none; display: inline-block; width: 20px; }

/* Flow */
.flow { display: flex; flex-direction: column; gap: 8px; }
.flow-node {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; color: var(--t-card); display: flex; align-items: center; gap: 10px;
}
.flow-node .ic { width: 22px; height: 22px; border-radius: 6px; background: rgba(255,191,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.flow-arrow { text-align: center; color: var(--t-label-dark); font-size: 14px; }

/* ===== Feature list ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px; width: 100%; max-width: 1000px; }
.feature {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  border: 1px solid var(--border-light); border-radius: 12px; background: #fafafa;
  font-family: var(--font-body); font-size: 15px; color: var(--t-dark); font-weight: 500;
  transition: all 0.25s;
}
.feature:hover { border-color: rgba(232,120,17,0.3); transform: translateX(4px); }
.feature img { width: 20px; height: 20px; }

/* ===== Pricing ===== */
.price-grid { display: flex; gap: 24px; width: 100%; max-width: 1100px; flex-wrap: wrap; justify-content: center; }
.price-card {
  background: var(--bg-card-navy); border-radius: var(--r-card-sm);
  padding: 36px 30px; flex: 1 0 280px; max-width: 340px;
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid rgba(2,74,115,0.3);
  transition: transform 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: var(--orange-450); background: var(--bg-card-gold); }
.price-card h4 { color: var(--t-card); }
.price-card .sub { color: var(--t-label-dark); font-size: 14px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; color: var(--t-body-dark); font-size: 15px; line-height: 1.5em; }
.price-card li::before { content: '✦'; color: var(--orange-450); font-size: 13px; margin-top: 1px; flex-shrink: 0; }

/* ===== Testimonials ===== */
.testi-featured {
  background: var(--bg-card-navy-top); border-radius: var(--r-card);
  padding: 40px; display: flex; gap: 40px; align-items: center; width: 100%; max-width: 1100px;
}
.testi-featured blockquote { font-family: var(--font-heading); font-size: 24px; line-height: 1.35em; color: var(--t-white); font-weight: 400; letter-spacing: -0.5px; }
.testi-profile { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.testi-profile .avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-profile .name { font-family: var(--font-heading); font-weight: 500; font-size: 16px; color: var(--t-card); letter-spacing: -0.3px; }
.testi-profile .role { font-family: var(--font-body); color: var(--t-label-dark); font-size: 14px; }
.testi-img { flex-shrink: 0; width: 200px; height: 200px; border-radius: var(--r-card-sm); overflow: hidden; }
.testi-img img { width: 100%; height: 100%; object-fit: cover; }
.testi-brand { margin-top: 16px; height: 24px; }
.testi-mini-stats { display: flex; gap: 30px; margin-top: 20px; }
.testi-mini-stats .ms .n { font-family: var(--font-heading); font-size: 32px; color: var(--orange-450); font-weight: 500; letter-spacing: -1px; }
.testi-mini-stats .ms .l { font-family: var(--font-body); font-size: 13px; color: var(--t-label-dark); }

.testi-cards { display: flex; gap: 24px; width: 100%; max-width: 1100px; flex-wrap: wrap; }
.testi-card {
  background: var(--bg-card-navy-top); border-radius: var(--r-card-sm);
  padding: 30px; flex: 1 0 300px; display: flex; flex-direction: column; gap: 20px;
}
.testi-card blockquote { color: var(--t-card); font-size: 15px; line-height: 1.6em; font-family: var(--font-body); }
.testi-stars { color: var(--orange-450); font-size: 20px; letter-spacing: 2px; }

/* ===== Team ===== */
.team-grid { display: flex; gap: 24px; width: 100%; max-width: 900px; flex-wrap: wrap; justify-content: center; }
.team-card {
  background: #f5f5f5; border-radius: var(--r-card); overflow: hidden; flex: 1 0 340px; max-width: 440px;
  transition: transform 0.35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); }
.team-card .photo { aspect-ratio: 1; overflow: hidden; background: #eee; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .photo img { transform: scale(1.04); }
.team-card .info { padding: 26px; display: flex; flex-direction: column; gap: 8px; }
.team-card .info h4 { color: var(--t-dark); }
.team-card .info .role { font-family: var(--font-body); color: var(--t-body-light); font-size: 15px; }

/* ===== Certificates (dark section) ===== */
.section-dark {
  background: var(--bg-section-dark); padding: 90px 60px; display: flex; flex-direction: column; align-items: center; gap: 26px;
  position: relative; scroll-margin-top: 100px;
}
.section-dark.gap-60 { gap: 60px; }
.section-dark.gap-36 { gap: 36px; }
.section-dark .sec-label { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
.section-dark .sec-head h2, .section-dark .sec-head h3 { color: var(--t-white); }
.section-dark .sec-head p { color: var(--t-body-dark); }
.cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: 100%; max-width: 1000px; }
.cert { aspect-ratio: 3/4; border-radius: var(--r-card-sm); overflow: hidden; background: #1a1a1a; border: 1px solid var(--border-dark); transition: transform 0.3s; }
.cert:hover { transform: translateY(-5px); }
.cert img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Process ===== */
.process { display: flex; gap: 24px; width: 100%; max-width: 1100px; flex-wrap: wrap; justify-content: center; }
.step {
  flex: 1 0 220px; max-width: 280px; padding: 32px 26px;
  background: var(--bg-card-navy-top); border-radius: var(--r-card-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.step .num { font-family: var(--font-heading); font-size: 36px; color: var(--orange-450); font-weight: 500; letter-spacing: -1px; }
.step p { color: var(--t-body-dark); font-size: 15px; line-height: 1.5em; }

/* ===== Contact (transparent with white pill card) ===== */
.section-contact {
  background: transparent; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 20px;
  position: relative;
}
.contact-pill {
  background: #fff; border-radius: 116px; width: 100%; max-width: 1100px;
  padding: 40px 60px; display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.contact-grid { display: flex; gap: 64px; width: 100%; flex-wrap: wrap; justify-content: center; }
.contact-card {
  flex: 1 0 200px; max-width: 300px; padding: 0;
  background: transparent; border: none;
  display: flex; flex-direction: column; gap: 10px;
}
.contact-card .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(232,120,17,0.1); display: flex; align-items: center; justify-content: center; }
.contact-card .ic img { width: 22px; height: 22px; }
.contact-card .lbl { font-family: var(--font-body); color: var(--t-label-light); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card .val { font-family: var(--font-heading); font-size: 17px; color: var(--t-dark); font-weight: 500; letter-spacing: -0.3px; }

/* ===== Podcast ===== */
.podcast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; max-width: 1000px; }
.pod-card {
  background: #f5f5f5; border: 1px solid var(--border-light); border-radius: var(--r-card-sm);
  padding: 24px; display: flex; align-items: center; gap: 16px; transition: all 0.3s; cursor: pointer;
}
.pod-card:hover { border-color: rgba(232,120,17,0.3); transform: translateY(-3px); }
.pod-card .play {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(66% 93% at 48% 0%, var(--orange-450) 0%, var(--orange-600) 76%);
  color: rgb(26,26,26); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px;
}
.pod-card .num { font-family: var(--font-body); color: var(--t-label-light); font-size: 13px; }
.pod-card .title { font-family: var(--font-heading); font-weight: 500; font-size: 15px; color: var(--t-dark); margin-top: 2px; letter-spacing: -0.3px; }

/* ===== Footer ===== */
.footer { background: var(--bg-section-dark); padding: 80px 60px 30px; display: flex; flex-direction: column; align-items: center; gap: 50px; overflow: hidden; }
.footer-cta-card {
  background: var(--bg-footer-card); border-radius: 40px; padding: 60px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; max-width: 800px; width: 100%;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-cta-card h2 { color: var(--t-white); }
.footer-cta-card p { color: var(--t-body-dark); font-size: 16px; line-height: 1.6em; max-width: 500px; }
.footer-divider { width: 100%; max-width: 1100px; height: 1px; background: linear-gradient(90deg, #3d3d3d 0%, #3d3d3d 75%, transparent 100%); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1100px; flex-wrap: wrap; gap: 16px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-family: var(--font-body); color: var(--t-label-dark); font-size: 14px; }
.footer-nav a:hover { color: var(--t-white); }
.footer-logo {
  font-family: var(--font-logo); font-size: 18.4px; font-weight: 400; letter-spacing: -0.07px;
  color: #bd9a30; transition: color 0.3s;
}
.footer-logo:hover { color: #c6a030; }
.footer-copy { font-family: var(--font-body); color: var(--t-label-dark); font-size: 13px; }

/* =====================================================================
   MOTION SYSTEM  (Stufe 1-3)
   Stufe 1: Fundament + Bugfixes + prefers-reduced-motion
   Stufe 2: Bewegungs-Vokabular pro Sektion
   Stufe 3: Scroll-Driven Animations (nativ, mit Fallback)
   ===================================================================== */

:root {
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.40, 0.64, 1);
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.35s;
  --dur:      0.62s;
  --dur-slow: 0.9s;
  --stagger:  70ms;
  --mq-gap:   56px;
}

/* ---------------------------------------------------------------------
   1. Reveal-Engine
   Ein Attribut steuert die Geste, --i steuert die Staffelung.
   Delays laufen ueber CSS statt setTimeout -> abbrechbar + a11y-fest.
   ------------------------------------------------------------------ */
[data-anim] {
  opacity: 0;
  transition:
    opacity   var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    filter    var(--dur) var(--ease-out);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}
[data-anim].in { opacity: 1; transform: none; filter: none; }

[data-anim="up"]     { transform: translateY(22px); }
[data-anim="up-lg"]  { transform: translateY(46px); }
[data-anim="left"]   { transform: translateX(-34px); }
[data-anim="right"]  { transform: translateX(34px); }
[data-anim="scale"]  { transform: scale(0.94); }
[data-anim="blur"]   { transform: translateY(16px); filter: blur(12px); }
[data-anim="tilt"]   { transform: perspective(1200px) rotateX(9deg) translateY(40px); transform-origin: 50% 100%; }
[data-anim="none"]   { opacity: 1; }

/* Legacy-Aliase: bestehendes Markup bleibt funktionsfaehig */
.anim-up, .anim-up-15 { opacity: 0; transform: translateY(20px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.anim-up-45 { opacity: 0; transform: translateY(45px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.anim-blur { opacity: 0; filter: blur(10px); transform: translateY(15px); transition: opacity var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.anim-scale { opacity: 0; transform: scale(0.92); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.anim-left  { opacity: 0; transform: translateX(-30px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.anim-right { opacity: 0; transform: translateX(30px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.anim-up.in, .anim-up-15.in, .anim-up-45.in, .anim-blur.in, .anim-scale.in, .anim-left.in, .anim-right.in { opacity: 1; transform: none; filter: none; }
.anim-d1 { transition-delay: 0.08s; } .anim-d2 { transition-delay: 0.16s; }
.anim-d3 { transition-delay: 0.24s; } .anim-d4 { transition-delay: 0.32s; }
.anim-d5 { transition-delay: 0.40s; } .anim-d6 { transition-delay: 0.48s; }

/* Wort-Reveal: Delay jetzt ueber --i statt setTimeout */
.word-reveal {
  display: inline-block;
  opacity: 0.001;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), filter var(--dur) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 55ms);
}
/* Blur nur auf grossen Headlines - auf jedem Wort ist es mobil zu teuer.
   Muss VOR der .in-Regel stehen: gleiche Spezifitaet, die spaetere gewinnt. */
.h1 .word-reveal, .h2 .word-reveal { filter: blur(10px); }
.word-reveal.in, .in .word-reveal { opacity: 1; transform: none; filter: none; }

/* ---------------------------------------------------------------------
   2. Hero: Float + Parallax ohne Konflikt
   Frueher hat der Scroll-Handler style.transform gesetzt und damit die
   Keyframe-Animation ueberschrieben -> Float stand nach dem 1. Scroll.
   Jetzt: rotate/translate sind eigene Properties, transform bleibt frei
   fuer die Keyframes, --py kommt vom Scroll.
   ------------------------------------------------------------------ */
.hero-oval {
  rotate: var(--rot, 0deg);
  translate: 0 var(--py, 0px);
  animation: float-slow var(--float-dur, 9s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform, translate;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0)     scale(1);    }
  50%      { transform: translateY(-22px) scale(1.03); }
}

/* Hero-Badge / Pill-Dot: pulse-ring braucht einen positionierten Anker.
   Ohne position:relative hat sich der Ring am Viewport orientiert. */
.pulse-dot { position: relative; display: inline-block; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(2.6); opacity: 0; } }

/* ---------------------------------------------------------------------
   3. Clients: Endlos-Marquee statt statischer Reihe
   ------------------------------------------------------------------ */
.marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex; align-items: center; gap: var(--mq-gap); width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-group { display: flex; align-items: center; gap: var(--mq-gap); }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img {
  height: 36px; width: auto; opacity: 0.5;
  filter: grayscale(1) brightness(0.35);
  transition: opacity var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-spring);
}
.marquee img:hover { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1.1); }
@keyframes marquee { to { transform: translateX(calc(-50% - var(--mq-gap) / 2)); } }

/* ---------------------------------------------------------------------
   4. Karten: Pointer-Glow + Icon-Reaktion
   ------------------------------------------------------------------ */
[data-glow] { position: relative; overflow: hidden; isolation: isolate; }
[data-glow]::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,191,0,0.13), transparent 45%);
  opacity: 0; transition: opacity var(--dur-fast) var(--ease-out);
}
[data-glow]:hover::after { opacity: 1; }
[data-glow] > * { position: relative; z-index: 1; }

.card-icon-bg {
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-out);
}
.card-dark:hover .card-icon-bg {
  background: rgba(186,150,41,0.24); border-color: rgba(186,150,41,0.55);
  transform: translateY(-3px) scale(1.07); box-shadow: 0 10px 26px rgba(186,150,41,0.28);
}

/* ---------------------------------------------------------------------
   5. Stats: Odometer (Ziffern rollen hoch)
   ------------------------------------------------------------------ */
.odo { display: inline-flex; align-items: baseline; }
.odo-static { display: inline-block; }
.odo-d { display: inline-block; height: 1em; overflow: hidden; vertical-align: bottom; }
.odo-reel {
  display: flex; flex-direction: column;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.odo-reel span { height: 1em; line-height: 1em; display: block; }

/* ---------------------------------------------------------------------
   6. Ansatz: Flow-Sequenz (Node -> Pfeil zeichnet -> Node)
   ------------------------------------------------------------------ */
.flow-node {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background 0.45s var(--ease-out);
}
.flow-arrow {
  opacity: 0; transform: scaleY(0); transform-origin: top center;
  transition: opacity 0.3s var(--ease-out), transform 0.35s var(--ease-out);
}
.in .flow-node, .in .flow-arrow { opacity: 1; transform: none; }
.in .flow > *:nth-child(1) { transition-delay: 0.10s; }
.in .flow > *:nth-child(2) { transition-delay: 0.32s; }
.in .flow > *:nth-child(3) { transition-delay: 0.48s; }
.in .flow > *:nth-child(4) { transition-delay: 0.70s; }
.in .flow > *:nth-child(5) { transition-delay: 0.86s; }
.in .flow-node:last-child { border-color: rgba(255,191,0,0.35); background: rgba(255,191,0,0.07); }
.flow-node .ic { transition: transform 0.4s var(--ease-spring); }
.svc-card:hover .flow-node .ic { transform: scale(1.12) rotate(-6deg); }

/* ---------------------------------------------------------------------
   7. Projekt-Tabs: gleitender Indikator + Crossfade
   ------------------------------------------------------------------ */
.tabs-row { position: relative; }
.tab.active { border-color: transparent; }
.tab-indicator {
  position: absolute; bottom: -1px; left: 0; height: 2px; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-450), var(--orange-text));
  transform: translateX(0);
  transition: transform 0.45s var(--ease-out), width 0.45s var(--ease-out);
  pointer-events: none;
}
@keyframes panel-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.tab-panel.active { animation: panel-in 0.5s var(--ease-out) both; }
.tab-panel.active .tab-img  { animation: panel-in 0.55s var(--ease-out) 0.06s both; }
.tab-panel.active .tab-text { animation: panel-in 0.55s var(--ease-out) 0.14s both; }
.tab-img img { transition: transform 0.7s var(--ease-out); }
.tab-img:hover img { transform: scale(1.04); }

/* ---------------------------------------------------------------------
   8. Prozess: Verbindungslinie zeichnet sich
   ------------------------------------------------------------------ */
.process { position: relative; }
.process::before {
  content: ""; position: absolute; top: 60px; left: 8%; right: 8%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--orange-450) 15%, var(--orange-450) 85%, transparent);
  opacity: 0.45; transform: scaleX(0); transform-origin: left center;
  transition: transform 1.3s var(--ease-inout) 0.2s;
}
.process.in::before { transform: scaleX(1); }
/* Sobald die Schritte umbrechen oder stapeln, ergibt eine durchgehende
   waagerechte Linie keinen Sinn mehr. */
@media (max-width: 1199px) { .process::before { display: none; } }
.process .step { position: relative; z-index: 1; transition: transform var(--dur-fast) var(--ease-out); }
.process .step:hover { transform: translateY(-5px); }
.step .num { display: inline-block; transition: transform var(--dur-fast) var(--ease-spring); }
.step:hover .num { transform: scale(1.12); }

/* ---------------------------------------------------------------------
   9. Buttons: Shimmer + magnetischer Hover
   ------------------------------------------------------------------ */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  background-size: 200% 100%; background-position: -200% 0;
  opacity: 0;
}
.btn:hover::before { opacity: 1; animation: shimmer 0.9s var(--ease-inout); }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.btn > * { position: relative; z-index: 1; }
[data-magnetic] { transition: transform 0.35s var(--ease-spring), box-shadow var(--dur-fast) var(--ease-out); }
[data-magnetic].is-pulled { transition: transform 0.12s linear, box-shadow var(--dur-fast) var(--ease-out); }

/* ---------------------------------------------------------------------
   10. Scroll-Fortschritt + Nav-Zustand
   ------------------------------------------------------------------ */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 200;
  background: linear-gradient(90deg, var(--orange-450), var(--orange-text));
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* Nav-Zustand jetzt ueber Klasse statt Inline-Style */
.nav { transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out); }
.nav.scrolled { transform: translateX(-50%) scale(0.97); box-shadow: 0 10px 34px rgba(0,0,0,0.34); }

/* Zertifikate + Podcast: feineres Hover */
.cert img { transition: transform 0.6s var(--ease-out); }
.cert:hover img { transform: scale(1.06); }
.pod-card .play { transition: transform var(--dur-fast) var(--ease-spring); }
.pod-card:hover .play { transform: scale(1.12); }

/* ---------------------------------------------------------------------
   11. STUFE 3 - Scroll-Driven Animations (nativ, ohne Library)
   Laeuft nur wenn der Browser es kann; sonst greift die IO-Fallback-
   Logik aus main.js (html.no-sdt).
   ------------------------------------------------------------------ */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {

    /* Fortschrittsbalken komplett ohne JS */
    html.sdt .scroll-progress { animation: sp-grow linear both; animation-timeline: scroll(root block); }
    @keyframes sp-grow { to { transform: scaleX(1); } }

    /* Hero-Ovale driften scroll-gebunden auseinander - Float laeuft weiter */
    html.sdt .hero-oval {
      animation: float-slow var(--float-dur, 9s) ease-in-out infinite, oval-drift linear both;
      animation-timeline: auto, scroll(root block);
      animation-range: normal, 0 100vh;
    }
    @keyframes oval-drift {
      to { translate: calc(var(--dx, 0) * 90px) calc(var(--dy, 1) * 260px); opacity: 0; }
    }

    /* Hero-Inhalt zieht sich beim Wegscrollen zurueck */
    html.sdt .hero-content { animation: hero-recede linear both; animation-timeline: view(); animation-range: exit -20% exit 90%; }
    @keyframes hero-recede { to { opacity: 0; transform: translateY(-40px) scale(0.96); filter: blur(6px); } }

    /* Zertifikate: echtes Scrubbing statt 10x identischem Fade */
    html.sdt .cert { animation: cert-scrub linear both; animation-timeline: view(); animation-range: entry 5% cover 32%; }
    @keyframes cert-scrub { from { opacity: 0; transform: translateY(46px) scale(0.92); } to { opacity: 1; transform: none; } }

    /* Feature-Kacheln scrubben ebenfalls ein */
    html.sdt .feature { animation: feat-scrub linear both; animation-timeline: view(); animation-range: entry 0% cover 25%; }
    @keyframes feat-scrub { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

    /* Team-Fotos: sanfter Bild-Parallax im Rahmen */
    html.sdt .team-card .photo img { animation: photo-pan linear both; animation-timeline: view(); animation-range: cover 0% cover 100%; }
    @keyframes photo-pan { from { transform: scale(1.12) translateY(-2%); } to { transform: scale(1.12) translateY(2%); } }

    /* Statistik-Strip setzt sich beim Durchscrollen */
    html.sdt .section-stats .stats-row { animation: stats-settle linear both; animation-timeline: view(); animation-range: entry 20% cover 45%; }
    @keyframes stats-settle { from { opacity: 0.25; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  }
}


/* ---------------------------------------------------------------------
   12. prefers-reduced-motion - vollstaendig
   Bewegung aus, Inhalt bleibt sichtbar. Nichts darf haengen bleiben.
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  [data-anim], .word-reveal,
  .anim-up, .anim-up-15, .anim-up-45, .anim-blur, .anim-scale, .anim-left, .anim-right,
  .flow-node, .flow-arrow, .cert, .feature {
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none !important; transform: none !important; flex-wrap: wrap; justify-content: center; width: 100%; }
  .marquee-group:nth-child(2) { display: none; }
  .process::before { transform: scaleX(1) !important; }
  .scroll-progress { display: none; }
  .hero-oval { animation: none !important; translate: none !important; }
  .hero-content { opacity: 1 !important; transform: none !important; filter: none !important; }
  .btn:hover::before { animation: none !important; opacity: 0 !important; }
}

/* Pointer-Glow ergibt auf Touch keinen Sinn */
@media (hover: none) {
  [data-glow]::after { display: none; }
}

/* ===== Impressum ===== */
.legal { background: var(--bg-white); padding: 120px 60px 80px; min-height: 100vh; }
.legal .container { max-width: 860px; }
.legal h1 { color: var(--t-dark); margin-bottom: 12px; }
.legal .lead-sm { color: var(--t-label-light); margin-bottom: 50px; }
.legal h2 { font-family: var(--font-heading); font-size: 28px; margin: 44px 0 16px; color: var(--t-dark); font-weight: 500; letter-spacing: -1px; }
.legal h3 { font-family: var(--font-heading); font-size: 20px; margin: 26px 0 10px; color: var(--t-dark); font-weight: 500; letter-spacing: -0.5px; }
.legal p { font-family: var(--font-body); color: var(--t-body-light); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.legal a { color: var(--orange-text); }
.legal ul.bullets { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal ul.bullets li { color: var(--t-body-light); font-size: 15px; margin-bottom: 6px; font-family: var(--font-body); }

/* ===== Responsive ===== */
@media (max-width: 1199px) and (min-width: 810px) {
  .container { padding: 0 40px; }
  .section-white { padding: 60px 40px; }
  .hero { padding: 100px 40px 60px; }
  .cards-3, .svc-grid, .price-grid, .stats-row, .process { gap: 16px; }
  .cert-grid { grid-template-columns: repeat(4, 1fr); }
  .tab-panel.active { flex-direction: column; }
  .testi-featured { flex-direction: column; }
  .testi-img { width: 100%; max-width: 300px; }
}

@media (max-width: 809px) {
  .section-white { padding: 50px 22px; }
  .hero { padding: 100px 22px 50px; }
  .footer { padding: 50px 22px 25px; }
  .nav { gap: 12px; padding: 8px 12px 8px 18px; max-width: calc(100% - 20px); }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #1a1a1a; padding: 20px; border-radius: 20px; flex-direction: column; gap: 16px; margin-top: 8px; border: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta .btn-sm { display: none; }
  .cards-3, .svc-grid, .price-grid, .team-grid, .contact-grid, .testi-cards, .process, .stats-row { flex-direction: column; }
  .card-dark, .svc-card, .price-card, .team-card, .contact-card, .step, .stat-card { max-width: 100%; flex: 1 0 auto; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
  .tab-panel.active { flex-direction: column; }
  .testi-featured { flex-direction: column; padding: 28px; }
  .testi-img { width: 100%; max-width: 280px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .legal { padding: 100px 22px 60px; }
}

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