/* =============================================
   püttr. — styles.css
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-optical-sizing: auto;
  background-color: #FFFFFF;
  color: #0A0A0A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- CSS Variables --- */
:root {
  --bg: #FFFFFF;
  --text: #0A0A0A;
  --text-muted: #333333;
  --accent: #1A6BCC;
  --border: #EBEBEB;
  --alt-bg: #E6EDF8;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px;
  --max-width-narrow: 720px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  font-size: 18px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 120px 24px;
}

.section-alt {
  background-color: #EEF1F7;
}

/* Fade-in handled by Motion JS */

/* --- Navigation --- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease;
  color: var(--text);
}

#nav .nav-logo {
  color: var(--text);
  transition: color 0.5s ease;
}

#nav .hamburger {
  color: var(--text);
  transition: color 0.5s ease;
}

/* Dark mode — when scrolled into the dark hero */
#nav.dark {
  background: rgba(10, 10, 10, 0.8);
  color: #FFFFFF;
}

#nav.dark .nav-logo {
  color: #FFFFFF;
}

#nav.dark .hamburger {
  color: #FFFFFF;
}

#nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

#nav.dark.scrolled {
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  border: 1px solid rgba(10,10,10,0.25);
  background: transparent;
  color: var(--text);
  letter-spacing: 0.01em;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-nav {
  font-size: 0.875rem;
  padding: 9px 20px;
}

.btn-primary {
  background: var(--text);
  color: #FFFFFF;
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* --- Hero --- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  color: #FFFFFF;
  z-index: 2; /* slides over sticky #intro-text */
}

/* Animated grain texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  animation: grainShift 0.25s steps(1) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3px, 2px); }
  40%  { transform: translate(2px, -3px); }
  60%  { transform: translate(-2px, -2px); }
  80%  { transform: translate(3px, 1px); }
  100% { transform: translate(0, 0); }
}

/* Floating ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,106,0,0.18) 0%, transparent 70%);
  top: -80px;
  right: -40px;
  animation: orbFloat1 11s ease-in-out infinite;
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,106,0,0.1) 0%, transparent 70%);
  bottom: 60px;
  left: -60px;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,140,50,0.07) 0%, transparent 70%);
  top: 45%;
  left: 38%;
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(-28px, 36px) scale(1.06); }
  75%       { transform: translate(18px, -24px) scale(0.94); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(44px, -52px) scale(1.12); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-22px, 28px); }
  66%       { transform: translate(28px, -18px); }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.8s ease;
  z-index: 0;
}

#hero:hover #hero-canvas {
  opacity: 1;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  transition: transform 0.1s ease-out;
  will-change: transform;
  position: relative;
  z-index: 2;
}

/* Dark hero — text/element overrides */
#hero .hero-sub {
  color: rgba(255,255,255,0.48);
}

#hero .hero-stats {
  border-top-color: rgba(255,255,255,0.1);
}

#hero .hero-stat-num {
  color: #FFFFFF;
}

#hero .hero-stat-label {
  color: rgba(255,255,255,0.38);
}

#hero .hero-stat-divider {
  background: rgba(255,255,255,0.1);
}

#hero .hero-scroll-hint {
  z-index: 2;
}

#hero .hero-scroll-hint span {
  color: rgba(255,255,255,0.28);
}

#hero .scroll-line {
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), transparent);
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 32px;
  transition-delay: 0.1s;
}

.hero-headline .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.6;
  transition-delay: 0.2s;
}

#hero .btn {
  transition-delay: 0.3s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 1s 1.2s forwards;
}

.hero-scroll-hint span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Section Labels & Headlines --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  transition-delay: 0.1s;
}

.section-sub {
  font-size: 18px;
  color: rgba(10,10,10,0.45);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
  transition-delay: 0.2s;
}

/* --- Leistung two-col layout --- */
#leistung {
  padding-top: 72px;
  padding-bottom: 72px;
}

.leistung-headline {
  margin-bottom: 16px;
}

.leistung-headline-light {
  color: #FFFFFF;
}

.leistung-intro {
  font-size: 18px;
  color: rgba(10,10,10,0.45);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
}

.leistung-intro-light {
  color: rgba(255,255,255,0.4);
}

.leistung-rows {
  display: flex;
  flex-direction: column;
}

.leistung-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 40px 0;
}

.lr-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(10,10,10,0.08);
  flex-shrink: 0;
  width: 38%;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.lr-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lr-word {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #0A0A0A;
  position: relative;
}

.lr-desc {
  font-size: 15px;
  color: rgba(10,10,10,0.45);
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* --- Leistung animated dividers --- */
.lr-divider {
  height: 1px;
  background: rgba(10, 10, 10, 0.10);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Leistung hover: number accent glow */
.leistung-row:hover .lr-num {
  color: #0A0A0A;
}

/* Leistung hover: word sliding underline */
.lr-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #0A0A0A;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.leistung-row:hover .lr-word::after {
  width: 100%;
}

/* --- Leistung divider label --- */
.leistung-divider-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  margin-top: 72px;
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
  margin-bottom: 72px;
  transition-delay: 0.3s;
}

.problem-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color var(--transition);
}

.problem-card:hover {
  border-color: var(--accent);
}

.problem-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.problem-card p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Leistung two-col --- */
.leistung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.leistung-left .section-sub {
  margin-bottom: 0;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  align-self: center;
  margin-bottom: 30px;
  transition-delay: 0.2s;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  cursor: default;
}

.feature-list li:first-child {
  border-top: 1px solid var(--border);
}

.feature-list li:hover {
  color: var(--accent);
}

.feature-list li:hover .feature-dot {
  transform: scale(1.5);
}

.feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.tagline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  transition-delay: 0.4s;
}

/* --- Add-ons --- */
.section-dark {
  background: #0A0A0A;
  color: #FFFFFF;
}

.section-label-light {
  color: rgba(255,255,255,0.5);
}

.addons-headline {
  margin-bottom: 56px;
}

.addon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.addon-card {
  border: 1.5px solid rgba(10,10,10,0.1);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  cursor: default;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.addon-card:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.addon-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 40px;
  color: var(--accent);
  transition: color 0.35s ease;
}

.addon-card-icon svg {
  width: 100%;
  height: 100%;
}

.addon-card:hover .addon-card-icon { color: #FFFFFF; }

.addon-card-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  margin-bottom: 12px;
  transition: color 0.35s ease;
}

.addon-card:hover .addon-card-title { color: #FFFFFF; }

.addon-card-desc {
  font-size: 16px;
  color: rgba(10,10,10,0.45);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 32px;
  transition: color 0.35s ease;
}

.addon-card:hover .addon-card-desc { color: rgba(255,255,255,0.65); }

.addon-card-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid rgba(10,10,10,0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.35);
  align-self: flex-start;
  transition: border-color 0.35s ease, color 0.35s ease;
}

.addon-card:hover .addon-card-tag {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  transition-delay: 0.3s;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-indicator {
  position: absolute;
  left: 20px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, 0);
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.timeline-step {
  position: relative;
  padding-left: 64px;
  max-width: 480px;
}

.tl-right {
  align-self: flex-end;
  padding-left: 64px;
}

.tl-indent {
  margin-left: 80px;
}

.tl-far {
  align-self: flex-end;
  margin-right: 40px;
}

.tl-num {
  display: block;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  color: rgba(10,10,10,0.12);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.timeline-step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.timeline-step p {
  font-size: 18px;
  color: rgba(10,10,10,0.45);
  line-height: 1.75;
  max-width: 340px;
}

/* --- Timeline active step --- */
.timeline-step .tl-num {
  transition: color 0.4s ease;
  position: relative;
}

.timeline-step .tl-num::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #0A0A0A;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step h3 {
  transition: color 0.4s ease;
}

.timeline-step p {
  transition: color 0.4s ease;
}

.timeline-step.active .tl-num {
  color: #0A0A0A;
}

.timeline-step.active .tl-num::after {
  width: 100%;
}

.timeline-step.active h3 {
  color: #0A0A0A;
}

.timeline-step.active p {
  color: #0A0A0A;
}

/* --- Pitch --- */
.pitch-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transition-delay: 0.3s;
}

.tag {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Über uns / Founder --- */
.founder {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  transition-delay: 0.3s;
}

.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--text);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.founder-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- CTA / Kontakt --- */
.cta-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  transition-delay: 0.1s;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  transition-delay: 0.3s;
}

.cta-email {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.cta-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-email {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--accent);
}

/* =============================================
   Legal Pages (Datenschutz / AGB)
   ============================================= */

.legal-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: var(--bg);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 16px;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-block h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-block p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-block ul li {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-block a {
  color: var(--accent);
  border-bottom: 1px solid rgba(26,107,204,0.3);
  transition: border-color var(--transition);
}

.legal-block a:hover {
  border-color: var(--accent);
}

/* Footer links */
.footer-links {
  display: flex;
  gap: 24px;
}

/* =============================================
   Anfragen Page
   ============================================= */

.anfragen-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  background: #EEF1F7;
}

.anfragen-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-rows: 1fr auto;
  gap: 80px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px;
  width: 100%;
  max-width: 1040px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.07);
  position: relative;
}

.anfragen-logo {
  grid-column: 1;
  align-self: end;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: -48px;
}

/* Left info column */
.anfragen-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.anfragen-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.anfragen-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.anfragen-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.anfragen-meta-item:last-child {
  border-bottom: none;
}

.anfragen-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.anfragen-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Form */
.anfragen-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--alt-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BCBCBC;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--accent);
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.checkbox-item:has(input:checked) {
  border-color: var(--accent);
  background: rgba(26, 107, 204, 0.04);
}

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 28px;
  font-size: 1rem;
  margin-top: 8px;
  width: 100%;
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 107, 204, 0.25);
  border-radius: 8px;
  background: rgba(26, 107, 204, 0.04);
}

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

.form-error {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #c0392b;
  padding: 14px 18px;
  border: 1.5px solid rgba(192, 57, 43, 0.25);
  border-radius: 8px;
  background: rgba(192, 57, 43, 0.04);
}

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

/* Anfragen footer links */
.anfragen-footer-links {
  grid-column: 1;
  display: flex;
  gap: 20px;
  margin-top: -36px;
  margin-bottom: 8px;
}

.anfragen-footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.anfragen-footer-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* --- Hamburger Button --- */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  color: var(--text);
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  transform-origin: center;
}

/* gap: 6px + height: 1px → center-to-center: 7px → move each 3.5px */
.hamburger.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* --- Slide-in Menu Overlay --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}

.menu-overlay.open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.55);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(500px, 90vw);
  background: #EEF1F7;
  border-left: 1px solid rgba(0,0,0,0.06);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 56px 56px;
  z-index: 200;
  overflow-y: auto;
}

.menu-overlay.open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s, background 0.3s ease;
}

.menu-overlay.open .menu-close {
  opacity: 1;
  transform: scale(1);
}

.menu-close:hover {
  background: transparent;
}

.menu-close svg {
  width: 18px;
  height: 18px;
  stroke: rgba(10,10,10,0.6);
}

/* Menu navigation links */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.menu-link {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(10,10,10,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition:
    color 0.3s ease,
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.open .menu-link { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-link:nth-child(1) { transition-delay: 0.18s; }
.menu-overlay.open .menu-link:nth-child(2) { transition-delay: 0.23s; }
.menu-overlay.open .menu-link:nth-child(3) { transition-delay: 0.28s; }
.menu-overlay.open .menu-link:nth-child(4) { transition-delay: 0.33s; }

.menu-link:hover {
  color: #0A0A0A;
}

/* Menu bottom — CTA + email */
.menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.38s, transform 0.5s ease 0.38s;
}

.menu-overlay.open .menu-bottom {
  opacity: 1;
  transform: translateY(0);
}

.menu-cta {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.menu-cta:hover {
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.menu-email {
  font-size: 0.85rem;
  color: rgba(10,10,10,0.35);
  transition: color 0.3s ease;
}

.menu-email:hover {
  color: rgba(10,10,10,0.7);
}

/* --- Cover wrap — constrains sticky scope of intro-text --- */
.cover-wrap {
  position: relative;
}

/* --- Intro Text Section (sticky, hero slides over) --- */
#intro-text {
  position: sticky;
  top: 0;
  height: 32vh;
  min-height: 220px;
  z-index: 1;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.intro-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-line {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0A0A0A;
}

.intro-line-main {
  color: #0A0A0A;
}

.intro-line-accent {
  color: #0A0A0A;
}

/* --- Video --- */
#video-placeholder {
  position: relative;
  z-index: 2;
  height: 100vh;
  background: #0A0A0A;
  overflow: hidden;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nav Links (legacy — no longer in nav, kept for compat) */
.nav-links {
  display: none;
}

.nav-link {
  display: none;
}

/* --- Cursor Glow --- */
#cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  left: -9999px;
  top: -9999px;
  transition: left 0.08s linear, top 0.08s linear;
  mix-blend-mode: normal;
}

/* --- Hero Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 16px 7px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,106,0,0.2);
  animation: badgePulse 2.4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,106,0,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(255,106,0,0); }
}

/* --- Hero Stats --- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* --- Marquee Strip --- */
.marquee-strip {
  overflow: hidden;
  background: var(--text);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0 24px;
  transition: color 0.3s ease;
}

.marquee-track span:hover {
  color: rgba(255,255,255,0.9);
}

.marquee-dot {
  color: var(--accent) !important;
  padding: 0 !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Value Props — SVG Puzzle --- */
.value-props {
  width: 100%;
}



/* --- Über uns Grid --- */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.ueber-left .section-headline {
  margin-bottom: 0;
}

.ueber-right {
  padding-top: 0;
}

.ueber-text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ueber-text:last-of-type {
  margin-bottom: 0;
}

.ueber-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.ueber-tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.ueber-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Kontakt / CTA dark --- */
.section-kontakt {
  text-align: left;
}

.section-kontakt .container {
  max-width: var(--max-width);
}

.cta-headline-light {
  color: #FFFFFF;
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-sub-light {
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
  max-width: 440px;
  line-height: 1.7;
}

.cta-email-light {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.cta-email-light:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
}

/* --- Button accent solid (for dark backgrounds) --- */
.btn-accent-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.btn-accent-solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

/* --- Footer dark --- */
.footer-dark {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-dark .nav-logo {
  color: #FFFFFF;
}

.footer-dark .footer-copy {
  color: rgba(255,255,255,0.3);
}

.footer-dark .footer-email {
  color: rgba(255,255,255,0.35);
}

.footer-dark .footer-email:hover {
  color: var(--accent);
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1020px) {
  .anfragen-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 40px;
  }
}

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

  .leistung-row {
    gap: 24px;
  }

  .lr-num {
    width: 30%;
  }

  .addon-cards {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

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

  .tl-right,
  .tl-indent,
  .tl-far {
    align-self: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .anfragen-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 80px 20px;
  }

  #hero {
    padding: 100px 20px 80px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .hero-stat {
    padding: 0 24px 0 0;
  }

  .hero-stat-divider {
    margin-right: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .problem-card {
    padding: 32px 24px;
  }

  .addon-card {
    padding: 32px 24px;
  }

  .leistung-row {
    padding: 28px 0;
    gap: 16px;
  }
}

@media (max-width: 1020px) {
  .anfragen-footer-links {
    margin-top: 16px;
  }
  .anfragen-logo {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .ueber-right {
    padding-top: 0;
  }
  .leistung-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  #video-placeholder {
    height: auto;
  }
  #hero-video {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  p,
  .section-sub,
  .ueber-text,
  .leistung-intro,
  .cta-sub-light,
  .anfragen-sub,
  .timeline-step p,
  .problem-card p,
  .legal-block p {
    font-size: 16px;
  }

  .intro-inner {
    padding: 0;
  }

  #intro-text {
    min-height: 300px;
    height: 40vh;
  }

  .leistung-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lr-num {
    width: auto;
  }

  .menu-panel {
    padding: 80px 28px 40px;
  }

  .legal-page {
    padding: 100px 20px 60px;
  }

  .timeline {
    margin-top: 40px;
    gap: 40px;
  }

  .timeline-step {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leistung-row {
    clip-path: none !important;
    opacity: 1 !important;
  }
  .lr-divider {
    transform: scaleX(1) !important;
  }
  .lr-word::after {
    transition: none;
  }
}
