/* ═══════════════════════════════════════════════════════
   TransferFleet, Site-Shell-CSS v2 (Intercon-inspiriert)
   Editorial Layout + Tech-Brand (Cyan/Blue)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Syncopate:wght@400;700&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elev: #0d0d15;
  --bg-soft: #0d0d15;
  --bg-card: #14141d;
  --card: #111118;
  --card-border: #1f1f2e;
  --line: #1f1f2e;
  --line-strong: #2a2a3d;
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --text: #e2e8f0;
  --ink: #e2e8f0;
  --ink-soft: #94a3b8;
  --ink-mute: #64748b;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #06b6d4;
  --accent-strong: #3b82f6;
  --accent-soft: rgba(6, 182, 212, 0.12);
  --accent-ink: #ffffff;
  --gradient: linear-gradient(135deg, #06b6d4, #3b82f6);
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #06060a;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ─── ANIMATED BACKGROUND BLOBS ─── */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
body::before {
  top: -10%; left: -5%;
  width: 500px; height: 500px;
  background: var(--cyan);
  animation: blob-1 22s ease-in-out infinite;
}
body::after {
  bottom: -10%; right: -5%;
  width: 600px; height: 600px;
  background: var(--blue);
  animation: blob-2 26s ease-in-out infinite;
}
@keyframes blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40vw, 20vh) scale(1.1); }
  66% { transform: translate(-10vw, 50vh) scale(0.9); }
}
@keyframes blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30vw, -20vh) scale(1.15); }
  66% { transform: translate(10vw, -40vh) scale(0.95); }
}
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

::selection { background: var(--cyan); color: #000; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.02; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.2; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-muted); }
a { color: inherit; text-decoration: none; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent { color: var(--cyan); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* ─── EYEBROW (Syncopate, Section Intro) ─── */
.eyebrow {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--cyan);
}

/* ─── WRAPPERS ─── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(80px, 12vw, 140px) 0; }
.section-tight { padding: clamp(60px, 8vw, 100px) 0; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
}
.nav-cta-secondary {
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--cyan) !important;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  background: rgba(6, 182, 212, 0.06);
  transition: all .2s var(--ease);
}
.nav-cta-secondary:hover {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.14);
  color: #fff !important;
}

.hamburger {
  display: none;
  background: transparent; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: space-around;
  padding: 8px 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed; top: 64px; right: 0; left: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  padding: 32px 24px; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); padding: 18px 8px;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--cyan); }

/* ─── PAGE HERO (echter großer Hero) ─── */
.page-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 10vw, 100px);
  position: relative;
}
.page-hero-grad {
  background:
    radial-gradient(circle at 20% 0%, rgba(6,182,212,0.08), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(59,130,246,0.06), transparent 50%);
}
.page-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.page-hero .lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin-top: 28px;
  line-height: 1.55;
}
.page-hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px;
}
.page-hero-tags {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.tag.accent {
  background: var(--accent-soft);
  color: var(--cyan);
  border-color: rgba(6, 182, 212, 0.35);
}

/* Hero Image-Band (großes visuelles Element) */
.hero-image-band {
  aspect-ratio: 21/9;
  border-radius: var(--radius-xl);
  margin-top: 56px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 30% 50%, rgba(6,182,212,0.18), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(59,130,246,0.14), transparent 60%),
    linear-gradient(135deg, #0d0d18 0%, #14141d 100%);
  position: relative;
  overflow: hidden;
}
.hero-image-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(6, 182, 212, 0.42);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ─── ARTICLE BODY ─── */
.article {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px 80px;
  font-size: 17px;
  line-height: 1.78;
}
.article h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 72px 0 24px;
  letter-spacing: -0.02em;
}
.article h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  margin: 40px 0 16px;
  font-weight: 600;
}
.article p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.article p strong { color: var(--text); font-weight: 600; }
.article ul, .article ol {
  margin: 0 0 28px 28px;
  color: var(--text-muted);
}
.article li { margin-bottom: 12px; }
.article li strong { color: var(--text); }
.article a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(6,182,212,0.4);
}
.article a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.article blockquote {
  border-left: 3px solid var(--cyan);
  padding: 24px 28px;
  margin: 40px 0;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.article-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 65ch;
}

.article-meta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.article-meta .category {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ─── TABLES ─── */
.article table,
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  font-size: 15px;
}
.article th,
.pricing-table th {
  text-align: left;
  padding: 18px 22px;
  background: rgba(6, 182, 212, 0.06);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--cyan);
  border-bottom: 1px solid var(--line-strong);
}
.article td,
.pricing-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}
.article tr:last-child td,
.pricing-table tr:last-child td { border-bottom: none; }
.article td strong,
.pricing-table td strong { color: var(--text); }

/* ─── INFO BOX ─── */
.info-box {
  padding: 24px 28px;
  border-radius: 14px;
  margin: 32px 0;
  background: rgba(6, 182, 212, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-left: 3px solid var(--cyan);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.info-box strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.info-box.blue {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.18);
  border-left-color: var(--blue);
}
.info-box.blue strong { color: var(--blue); }
.info-box a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* ─── CHECK LIST ─── */
.check-list { list-style: none; padding: 0 !important; margin: 28px 0 !important; }
.check-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px; height: 24px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.check-list li strong { color: var(--text); }

/* ─── ARTICLE CTA ─── */
.article-cta {
  margin: 72px 0;
  padding: 48px 40px;
  background:
    radial-gradient(circle at 30% 30%, rgba(6,182,212,0.18) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(59,130,246,0.14) 0%, transparent 60%),
    rgba(20, 20, 29, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(6,182,212,0.6) 50%, transparent 100%);
}
.article-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.article-cta p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta .btn {
  display: inline-flex;
  background: var(--gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}
.article-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(6, 182, 212, 0.42);
}

/* ─── STEP-LAYOUT (Intercon-Style) ─── */
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 28px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  min-width: 90px;
  letter-spacing: -0.04em;
}
.step-body h3 { margin-bottom: 12px; }
.step-body p { max-width: 60ch; }
.step-time {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .step-num { font-size: 2.6rem; min-width: auto; }
}

/* ─── FEATURE-GRID (4-Card mit Icons) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.feature-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}
.feature-card svg, .feature-card .icon {
  color: var(--cyan);
  margin-bottom: 18px;
  width: 32px; height: 32px;
}
.feature-card h4 {
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.feature-card.highlight {
  background: linear-gradient(165deg, rgba(6,182,212,0.18) 0%, rgba(59,130,246,0.08) 100%);
  border: 1px solid rgba(6,182,212,0.45);
  box-shadow: 0 12px 40px -12px rgba(6,182,212,0.4);
}
.hl-flag {
  position: absolute;
  top: -10px; left: 24px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Syncopate', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
@media (max-width: 1120px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ─── FAQ (details/summary) ─── */
.faq-section {
  background: var(--bg-elev);
  padding: clamp(80px, 12vw, 140px) 0;
  border-block: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq details[open] summary { color: var(--cyan); }
.faq summary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s var(--ease);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--cyan); }
.faq details p {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ─── SECTION CONTAINERS ─── */
.section-container {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 28px;
}
.section-title-block {
  max-width: 720px;
  margin: 0 0 56px;
}
.section-title-block.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title-block h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}
.section-title-block p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ─── CARDS-GRID (allgemein) ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: block;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(6,182,212,0.15);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-link {
  font-size: 14px;
  color: var(--cyan);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  padding: 80px 28px 32px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Syncopate', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--cyan);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--cyan);
  text-decoration: none;
}

/* ─── MOBILE BAR (Anrufen / Anfrage) ─── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 198;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 12px env(safe-area-inset-bottom, 10px);
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-bar .mb-call {
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.mobile-bar .mb-write {
  background: var(--gradient);
  color: #fff;
}

/* ─── BENTO GRID (asymmetrische Karten-Layouts) ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin: 56px 0;
}
.bento-card {
  background: rgba(20, 20, 29, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(6,182,212,0.4) 50%, transparent 100%);
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.3);
}
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.row-2 { grid-row: span 2; }

.bento-card .bento-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(6,182,212,0.18), rgba(59,130,246,0.12));
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--cyan);
}
.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.bento-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.bento-card .bento-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 8px 0;
  letter-spacing: -0.02em;
}
.bento-card.featured {
  background:
    radial-gradient(circle at top right, rgba(6,182,212,0.18) 0%, rgba(20,20,29,0.6) 50%),
    rgba(20, 20, 29, 0.6);
  border-color: rgba(6, 182, 212, 0.35);
}

@media (max-width: 880px) {
  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-card.span-3, .bento-card.span-4, .bento-card.span-2, .bento-card.span-6 { grid-column: span 1; }
}

/* ─── GLASSMORPHISM CARDS (general) ─── */
.glass-card {
  background: rgba(20, 20, 29, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Glow-Effects auf wichtigen Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  filter: blur(16px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s var(--ease);
  border-radius: inherit;
}
.btn-primary:hover::after {
  opacity: 0.6;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.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; }

/* ─── MOBILE ─── */
@media (max-width: 880px) {
  body { font-size: 15px; }
  #navbar { padding: 12px 18px; }
  .nav-logo img { height: 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .page-hero { padding: 110px 0 50px; }
  .article { padding: 0 18px 60px; }
  .article h2 { margin-top: 56px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ─── BRANCHE-HERO · sauber, viel Atem ─── */
.branche-hero {
  padding: clamp(160px, 18vw, 220px) 28px clamp(80px, 10vw, 120px);
  position: relative;
  z-index: 1;
}
.branche-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.branche-hero-content {
  min-width: 0;
}
.branche-hero-content .eyebrow {
  display: inline-block;
  font-family: 'Syncopate', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 32px;
}
.branche-hero-content h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 0 0 28px;
  font-weight: 700;
  hyphens: manual;
  overflow-wrap: normal;
}
.branche-hero-content h1 .accent {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.branche-hero-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-muted, #94a3b8);
  line-height: 1.65;
  margin: 0 0 40px;
  max-width: 520px;
}
.branche-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}

.branche-hero-visual {
  position: relative;
  isolation: isolate;
}
.branche-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 50px 100px -20px rgba(6, 182, 212, 0.22),
    0 28px 70px -16px rgba(59, 130, 246, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.5);
  display: block;
  position: relative;
  z-index: 1;
}

/* ─── STATS-STRIP: Glaubwürdigkeit unter Hero ─── */
.branche-stats {
  padding: 0 28px clamp(72px, 8vw, 96px);
  position: relative;
  z-index: 1;
}
.branche-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
}
.stat-card {
  background: rgba(15,18,28,0.85);
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-number {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted, #94a3b8);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .branche-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .branche-hero-content { text-align: center; }
  .branche-hero-lead { margin-left: auto; margin-right: auto; }
  .branche-hero-actions { justify-content: center; }
  .branche-stats-inner { grid-template-columns: 1fr; }
}

/* ─── PAGE-HERO-CLEAN · Reusable Hero für Subpages ohne Composite-Visual ─── */
.page-hero-clean {
  padding: clamp(160px, 18vw, 220px) 28px clamp(80px, 10vw, 120px);
  position: relative;
  z-index: 1;
}
.page-hero-clean-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-clean .eyebrow {
  display: inline-block;
  font-family: 'Syncopate', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 32px;
}
.page-hero-clean h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  font-weight: 700;
  hyphens: manual;
}
.page-hero-clean h1 .accent {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-clean-lead {
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  color: var(--text-muted, #94a3b8);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 40px;
}
.page-hero-clean-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── HERO-BACK · Zurück zur Startseite Link ─── */
.hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.6);
  text-decoration: none;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: color .2s, border-color .2s, background .2s, transform .15s;
}
.hero-back:hover {
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.06);
  transform: translateX(-2px);
}
.hero-back .back-arrow {
  display: inline-block;
  transition: transform .15s;
}
.hero-back:hover .back-arrow {
  transform: translateX(-2px);
}

/* ─── PAGE-TRANSITIONS · Cross-Document View Transitions API ─── */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: tf-page-out 240ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
::view-transition-new(root) {
  animation: tf-page-in 320ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes tf-page-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}
@keyframes tf-page-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fallback für Browser ohne View-Transitions-API (Firefox aktuell) */
@supports not (view-transition-name: none) {
  body {
    animation: tf-body-fade-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes tf-body-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
  @supports not (view-transition-name: none) {
    body { animation: none !important; }
  }
}



/* ─── PAGE-TRANSITION · Top Progress Bar (YouTube/GitHub-style) ─── */
.tf-page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 70%, #06b6d4 100%);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.7), 0 0 4px rgba(59, 130, 246, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: width 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 220ms ease;
  will-change: width, opacity;
}
.tf-page-progress-active {
  opacity: 1;
  width: 68%;
}
.tf-page-progress-done {
  opacity: 0;
  width: 100%;
  transition: width 220ms ease, opacity 360ms ease 120ms;
}
@media (prefers-reduced-motion: reduce) {
  .tf-page-progress { display: none; }
}
