/* =============================================
   T-NOLEGIE – Hauptstylesheet
   ============================================= */

:root {
  --color-bg:        #0a0a0a;
  --color-bg-alt:    #0f0f0f;
  --color-surface:   #141414;
  --color-surface-2: #1a1a1a;
  --color-border:    rgba(255, 107, 0, 0.14);
  --color-accent:    #ff6b00;
  --color-accent-dim:#cc5500;
  --color-accent-glow: rgba(255, 107, 0, 0.15);
  --color-text:      #f0f0f0;
  --color-text-muted:#b0b0b0;
  --color-text-dim:  #686868;
  --color-white:     #ffffff;
  --font:            'Inter', system-ui, sans-serif;
  --radius:          6px;
  --radius-lg:       10px;
  --transition:      0.22s ease;
  --shadow-card:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-accent:   0 0 40px rgba(255, 107, 0, 0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}
/* ---- Scroll Progress Bar ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #ff9a45);
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,107,0,0.6);
}

/* ---- Typed Text ---- */
.hero * { cursor: default; }
.hero a, .hero button { cursor: pointer; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-white); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-accent-dim); border-radius: 3px; }

/* ---- Container ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: #ff8c2a;
  color: var(--color-bg);
  box-shadow: 0 0 28px rgba(255,107,0,0.5), 0 4px 16px rgba(255,107,0,0.25);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-ghost:hover {
  background: rgba(255,107,0,0.1);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(255,107,0,0.2);
  transform: translateY(-2px) scale(1.03);
}
.btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

.btn-full { width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,107,0,0.22);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}


.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 0;
}

@media (max-width: 768px) {
  .nav-inner {
    justify-content: space-between;
  }
  .nav-logo {
    margin-right: 0;
    order: 1;
  }
  #burger {
    order: 2;
    margin-left: auto;
    margin-right: 12px;
  }
  .nav-cta {
    order: 3;
    margin-left: 0;
  }
}

.nav-logo {
  flex-shrink: 0;
  margin-right: 32px;
}

.nav-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-links li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-links li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 107, 0, 0.22);
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 4px 18px;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA Buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-accent);
  color: #0a0a0a;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-nav-primary:hover {
  background: #ff8c33;
  color: #0a0a0a;
  box-shadow: 0 0 18px rgba(255,107,0,0.4);
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,107,0,0.45);
  color: var(--color-text);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-nav-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* ---- Hero Canvas ---- */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 55% 40%, rgba(255, 107, 0, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(180, 60, 0, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(100, 30, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: heroPulse 6s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* Subtile Vignettte */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 3px;
  padding: 6px 18px;
  margin-bottom: 28px;
  font-family: 'Courier New', monospace;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.65s both;
}

.hero-label {
  animation: fadeSlideUp 0.8s ease 0s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.accent {
  color: var(--color-accent);
  position: relative;
}

/* Blinkender Cursor nach dem Akzent-Wort */
.accent::after {
  content: '_';
  color: var(--color-accent);
  animation: cursorBlink 1.1s step-end infinite;
  margin-left: 2px;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 2;
}

.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--color-bg-alt);
  position: relative;
}

/* Subtile Leiterplatten-Linien im Hintergrund der Alt-Sections */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.section-alt > .container { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: 'Courier New', monospace;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

/* Leuchtendes Prefix vor Sektionsüberschriften */
.section-header h2::before {
  content: '> ';
  color: var(--color-accent);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  opacity: 0.7;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- Hero Pillars ---- */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
  animation: fadeSlideUp 0.8s ease 0.85s both;
}

.pillar-card {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: var(--radius);
  padding: 20px 20px 22px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  will-change: transform;
}

.pillar-card:hover {
  border-color: rgba(255, 107, 0, 0.55);
  background: rgba(255, 107, 0, 0.12);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,107,0,0.14);
}

.pillar-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.04em;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-pillars {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ÜBER UNS – TEAM
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.team-card:hover {
  border-color: rgba(255,107,0,0.55);
  box-shadow: 0 20px 60px rgba(255,107,0,0.18), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-10px) scale(1.02);
}
.team-card:hover::after { opacity: 1; }

.team-avatar {
  width: 120px; height: 120px;
  border-radius: 14px;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 16px rgba(255,107,0,0.15), inset 0 0 16px rgba(255,107,0,0.04);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card:hover .team-avatar {
  transform: scale(1.15);
  animation: pulse-ring 1.2s ease-out;
  box-shadow: 0 0 32px rgba(255,107,0,0.4), inset 0 0 16px rgba(255,107,0,0.08);
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.team-card p {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--color-surface);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
}
.stat-item:hover {
  background: var(--color-surface-2);
}
.stat-item:hover .stat-number {
  text-shadow: 0 0 40px rgba(255,107,0,0.6);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 20px rgba(255,107,0,0.3);
  unicode-bidi: bidi-override;
  direction: ltr;
}

.stat-number--lt::before {
  content: '\003C';
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* =============================================
   DIENSTLEISTUNGEN
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.06), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(255,107,0,0.55);
  box-shadow: 0 20px 60px rgba(255,107,0,0.18), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-10px) scale(1.02);
}
.service-card:hover::after {
  left: 150%;
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-accent);
  position: relative;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .service-icon {
  background: rgba(255, 107, 0, 0.18);
  box-shadow: 0 0 28px rgba(255,107,0,0.4);
  transform: scale(1.12) rotate(6deg);
}
.service-icon::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
}
.service-icon::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 10px; height: 10px;
  border-bottom: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   PREISE
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,107,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pricing-card:hover {
  border-color: rgba(255,107,0,0.55);
  box-shadow: 0 20px 60px rgba(255,107,0,0.18), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-10px) scale(1.02);
}
.pricing-card:hover::before { opacity: 1; }

.pricing-card-featured {
  border-color: rgba(0, 188, 255, 0.4);
  box-shadow: 0 0 60px rgba(0, 188, 255, 0.1);
  background: var(--color-surface-2);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 32px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  padding-bottom: 5px;
}

.price-period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-bottom: 4px;
  margin-left: 4px;
}

.pricing-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '>';
  position: absolute;
  left: 0; top: 0;
  color: var(--color-accent);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

/* =============================================
   KONTAKT
   ============================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.booking-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.booking-info-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ---- Booking Widget ---- */
.booking-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  justify-content: space-between;
  height: 100%;
}

/* Honeypot: für Bots unsichtbar machen */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  justify-content: space-between;
}

.booking-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.booking-header p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.booking-step { display: flex; flex-direction: column; gap: 16px; }
.booking-step.hidden { display: none; }

/* Calendar nav */
.cal-nav {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 4px;
}

.cal-month-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
}
.cal-month-label:hover {
  color: var(--color-accent);
}

/* Month picker popup */
.cal-month-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 8px;
}
.cal-month-picker[hidden] { display: none; }
.cal-month-option {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  padding: 6px 4px;
  cursor: pointer;
  text-align: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-family: var(--font);
}
.cal-month-option:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.cal-month-option.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 5px 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color var(--transition), color var(--transition);
}
.cal-nav-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  min-height: 228px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.83rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  user-select: none;
}
.cal-day:not(.empty):not(.weekend):not(.past):not(.no-slots):hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.3);
  color: var(--color-white);
}
.cal-day.today {
  border-color: rgba(255,107,0,0.4);
  color: var(--color-accent);
}
.cal-day.selected {
  background: var(--color-accent);
  color: #0a0a0a;
  font-weight: 700;
  border-color: var(--color-accent);
}
.cal-day.empty { cursor: default; }
.cal-day.past {
  color: var(--color-text-dim);
  opacity: 0.22;
  cursor: default;
  pointer-events: none;
}
.cal-day.weekend {
  color: var(--color-text-muted);
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.cal-day.no-slots { opacity: .22; cursor: not-allowed; pointer-events: none; }
.cal-day.today.no-slots { opacity: 1; }
.cal-day.has-slots {
  color: var(--color-white);
  font-weight: 600;
}
.cal-day.has-slots:hover {
  background: rgba(255,107,0,0.12);
  border-color: rgba(255,107,0,0.35);
}
.cal-day.loading-slots {
  opacity: 0.5;
}

/* Time slots */
.step-back {
  display: flex;
  align-items: center;
  gap: 16px;
}
.selected-date-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  font-family: 'Courier New', monospace;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 6px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  font-family: 'Courier New', monospace;
}
.time-slot:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.4);
  color: var(--color-white);
}
.time-slot.selected {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0a0a0a;
  font-weight: 700;
}

/* Confirm step */
/* Meeting-Typ Toggle */
.meeting-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.meeting-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.meeting-type-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.meeting-type-btn:hover {
  border-color: rgba(255,107,0,0.5);
  color: var(--color-text);
}

.meeting-type-btn.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(255,107,0,0.07);
}

.confirm-summary {
  background: rgba(255,107,0,0.07);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.88rem;
  color: var(--color-accent);
  line-height: 1.8;
}

/* Success */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 0;
}
.booking-success svg {
  width: 48px; height: 48px;
  color: #2ecc71;
  stroke-width: 1.5;
}
.booking-success h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}
.booking-success p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ---- Custom Dropdown ---- */
.custom-select {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.custom-select-trigger svg {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-trigger span.has-value {
  color: var(--color-text);
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--color-surface);
  border: 1.5px solid var(--color-accent);
  border-top: none;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  z-index: 50;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-options li {
  padding: 11px 16px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition), padding var(--transition);
  font-family: var(--font);
}

.custom-select-options li:last-child {
  border-bottom: none;
}

.custom-select-options li:hover {
  background: rgba(255,107,0,0.08);
  color: var(--color-white);
  padding-left: 22px;
}

.custom-select-options li.selected {
  color: var(--color-accent);
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- Floating Label deaktiviert: Labels klassisch über dem Feld ---- */
.form-float {
  position: static;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.form-float input,
.form-float textarea {
  padding-top: 12px;
  padding-bottom: 12px;
}
.form-float label {
  position: static;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  pointer-events: none;
  letter-spacing: 0.04em;
}
.form-float input:focus ~ label,
.form-float input:not(:placeholder-shown) ~ label,
.form-float textarea:focus ~ label,
.form-float textarea:not(:placeholder-shown) ~ label {
  top: unset;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--color-text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

.form-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255,107,0,0.04);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--color-text-dim);
  line-height: 1.5;
}
.form-dsgvo svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent);
}
.form-dsgvo a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contact Info */
.contact-info {
  padding-top: 8px;
}

.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item svg {
  width: 20px; height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.contact-item a {
  font-size: 0.97rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-item a:hover { color: var(--color-accent); }

/* =============================================
   IMPRESSUM
   ============================================= */
.impressum-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}

.impressum-left {
  background: var(--color-surface);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.impressum-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 32px;
  border-bottom: 1px solid var(--color-border);
}
.impressum-row:last-child { border-bottom: none; }

.impressum-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: 'Courier New', monospace;
  padding-top: 2px;
}

.impressum-val {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.impressum-val a { color: var(--color-text-muted); }
.impressum-val a:hover { color: var(--color-accent); }

.impressum-right {
  background: var(--color-surface);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impressum-right h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: 'Courier New', monospace;
  margin-bottom: 8px;
}

.impressum-right p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .impressum-wrapper { grid-template-columns: 1fr; }
  .impressum-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =============================================
   REFERENZEN
   ============================================= */
/* ── Referenzen Featured Panel ── */
.ref-featured-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}

/* Featured Main Card */
.ref-featured-main {
  position: relative;
  min-height: 320px;
}
.ref-featured-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.42s cubic-bezier(0.4,0,0.2,1), transform 0.42s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  overflow: hidden;
  height: fit-content;
}
.ref-featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,107,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ref-featured-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.ref-feat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.ref-feat-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ref-feat-logo-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ref-feat-logo-wrap .ref-logo-img,
.ref-feat-logo-wrap .ref-logo-placeholder {
  width: 54px !important;
  height: 54px !important;
  font-size: 1.15rem !important;
}
.ref-featured-card .ref-logo-img {
  filter: grayscale(0%) !important;
}
.ref-feat-quote {
  font-size: 5rem;
  line-height: 0.7;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.25;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  user-select: none;
}
.ref-featured-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  line-height: 1.35;
}
.ref-featured-card p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Preview Column */
.ref-preview-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ref-preview-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.ref-preview-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.22s;
}
.ref-preview-card:hover {
  border-color: rgba(255,107,0,0.25);
  background: rgba(255,107,0,0.04);
}
.ref-preview-card.active {
  border-color: rgba(255,107,0,0.45);
  background: rgba(255,107,0,0.07);
  box-shadow: 0 4px 24px rgba(255,107,0,0.1);
}
.ref-preview-card.active::before {
  opacity: 1;
}
.ref-preview-logo {
  flex-shrink: 0;
}
.ref-preview-logo .ref-logo-img,
.ref-preview-logo .ref-logo-placeholder {
  width: 38px !important;
  height: 38px !important;
  font-size: 0.85rem !important;
}
.ref-preview-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ref-preview-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ref-preview-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  opacity: 0.75;
}
.ref-preview-arrow {
  color: var(--color-text-dim);
  flex-shrink: 0;
  transition: color 0.22s, transform 0.22s;
}
.ref-preview-card.active .ref-preview-arrow,
.ref-preview-card:hover .ref-preview-arrow {
  color: var(--color-accent);
  transform: translateX(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .ref-featured-panel {
    grid-template-columns: 1fr;
  }
  .ref-preview-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ref-preview-card {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }
  .ref-preview-arrow { display: none; }
}
@media (max-width: 580px) {
  .ref-preview-card { flex: 1 1 100%; }
  .ref-featured-card { padding: 28px 22px 24px; }
}

.ref-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
}
.ref-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.06), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.ref-card:hover {
  border-color: rgba(255,107,0,0.55);
  box-shadow: 0 20px 60px rgba(255,107,0,0.18), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-8px) scale(1.02);
}
.ref-card:hover::after { left: 150%; }

.ref-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ref-logo-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 10px;
  background: #181818;
  border: 1px solid rgba(255,255,255,0.07);
  filter: grayscale(15%);
  transition: filter 0.3s ease;
  display: block;
  flex-shrink: 0;
}
.ref-card:hover .ref-logo-img {
  filter: grayscale(0%);
}
.ref-logo-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,0,0.18) 0%, rgba(255,107,0,0.06) 100%);
  border: 1px solid rgba(255,107,0,0.35);
  box-shadow: 0 0 12px rgba(255,107,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ref-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.ref-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.ref-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ref-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ref-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-dim);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: 'Courier New', monospace;
}

.ref-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ref-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-dim);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: 'Courier New', monospace;
}

.ref-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 5px 12px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.ref-website-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.ref-website-btn:hover {
  background: rgba(255,107,0,0.1);
  border-color: var(--color-accent);
  color: var(--color-white);
}

@media (max-width: 600px) {
  .ref-feat-top {
    flex-wrap: wrap;
  }
  .ref-website-btn {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* Stat "Keine" kleiner darstellen damit es passt */
.stat-item:last-child .stat-number {
  font-size: 1.5rem;
  letter-spacing: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 1; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-accent); }

.footer-nav-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-nav-legal a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-legal a:hover { color: var(--color-accent); }

.footer-legal-divider {
  color: #333;
  font-size: 0.75rem;
  user-select: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: 8px;
}

/* =============================================
   WARUM T-NOLEGIE
   ============================================= */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reason-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.06), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.reason-card:hover {
  border-color: rgba(255,107,0,0.55);
  box-shadow: 0 20px 60px rgba(255,107,0,0.18), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-8px) scale(1.02);
}
.reason-card:hover::before { left: 150%; }

.reason-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.reason-card:hover .reason-icon {
  background: rgba(255,107,0,0.2);
  box-shadow: 0 0 20px rgba(255,107,0,0.35);
  transform: scale(1.15) rotate(-6deg);
}

.reason-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover,
.faq-item.open {
  border-color: rgba(255,107,0,0.45);
  box-shadow: 0 4px 24px rgba(255,107,0,0.08);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-white);
  background: transparent;
  border: none;
  font-family: var(--font);
  text-align: left;
  gap: 16px;
  user-select: none;
}
.faq-summary::after {
  content: '+';
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  line-height: 1;
}
.faq-item.open .faq-summary::after {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-body p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* ---- Mobile Touch Feedback ---- */
@media (hover: none) {
  .service-card:active,
  .team-card:active,
  .pricing-card:active,
  .reason-card:active,
  .pillar-card:active {
    transform: scale(0.97);
    border-color: rgba(255,107,0,0.55);
    box-shadow: 0 8px 32px rgba(255,107,0,0.15);
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 32px;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }

  .nav-links li:last-child a { border-bottom: none; }
  .nav-links li + li::before { display: none; }

  .burger { display: flex; }
  .nav-cta { display: flex; }
  .nav-cta .btn-nav-outline { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 24px; }

  .section { padding: 72px 0; }

  .reasons-grid { grid-template-columns: 1fr; }

  .pricing-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
