﻿/* ═══════════════════════════════════════════
   WEBWALKER4U (HELL) – Light / Navy Blue Design
   Globale Styles für alle Unterseiten
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0c1f3f;
  --navy-dark:   #081529;
  --navy-mid:    #122848;
  --blue:        #1a56db;
  --blue-lt:     #3b82f6;
  --blue-pale:   #dbeafe;
  --blue-border: #bfdbfe;

  --bg:          #f3f5f8;
  --bg2:         #eaecf0;
  --white:       #ffffff;
  --border:      #dde2ea;
  --border-dk:   #c8cfdb;

  --text-dark:   #0c1f3f;
  --text:        #2d3a52;
  --muted:       #64748b;
  --light:       #94a3b8;

  --r:           14px;
  --rs:          8px;
  --ease:        0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:   0 1px 4px rgba(12,31,63,0.07), 0 4px 16px rgba(12,31,63,0.05);
  --shadow:      0 4px 24px rgba(12,31,63,0.1), 0 12px 40px rgba(12,31,63,0.07);
  --shadow-lg:   0 8px 40px rgba(12,31,63,0.14), 0 24px 64px rgba(12,31,63,0.08);
  --glow:        0 0 32px rgba(26,86,219,0.18), 0 0 72px rgba(26,86,219,0.07);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(2.1rem, 4.8vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); font-size: 0.97rem; }
a  { color: inherit; text-decoration: none; }
svg { fill: currentColor; }

.grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head p { margin-top: 12px; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.section-more { text-align: center; margin-top: 40px; }

.tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid var(--blue-border);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── Buttons ── */
.btn-primary, .btn-ghost, .btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: none;
  transition: var(--ease);
  white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 14px rgba(12,31,63,0.28);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26,86,219,0.35); }

.btn-ghost {
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--border-dk);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-nav {
  background: var(--blue); color: var(--white);
  padding: 9px 20px; font-size: 0.84rem;
  box-shadow: 0 2px 10px rgba(26,86,219,0.3);
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--navy); }

.w100 { width: 100%; justify-content: center; border-radius: var(--rs); }

.pulse { position: relative; }
.pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  background: var(--navy); animation: pulse-ring 2.4s ease-out infinite; z-index: -1;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: perspective(600px) translateY(26px) rotateX(3deg);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25,0.8,0.25,1);
}
.reveal.visible { opacity: 1; transform: perspective(600px) translateY(0) rotateX(0deg); }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 32px; transition: background 0.35s, box-shadow 0.35s;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(8,21,41,0.94);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; height: 70px; gap: 4px;
}
.logo {
  font-size: 1.9rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.03em;
  flex-shrink: 0; display: flex; align-items: center;
  margin-right: auto;
}
.logo .logo-mark { width: 62px; height: 62px; border-radius: 10px; margin-right: 12px; display: block; flex-shrink: 0; }
.logo .hi { color: #60a5fa; }

.nav-links {
  display: flex; list-style: none; gap: 2px;
  margin-right: 16px;
}
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 8px;
  font-size: 0.86rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.burger {
  display: none; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 9px;
  width: 40px; height: 40px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex-shrink: 0;
}
.burger-line { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.burger.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open .burger-line:nth-child(2) { opacity: 0; }
.burger.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  #navbar { padding: 0 20px; }
  .btn-nav { display: none; }
  .burger  { display: flex; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  }
  .nav-links.open { max-height: 420px; opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 13px 20px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links li:nth-child(6) a { color: #60a5fa; font-weight: 600; }
}

/* ════════════════════════════════════════
   PAGE HERO (Unterseiten)
   ════════════════════════════════════════ */
.page-hero {
  background: var(--navy-dark);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.32) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .tag { display: inline-block; margin-bottom: 14px; }
.page-hero h1 { color: var(--white); }
.page-hero > .container > p,
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 14px; font-size: 1.05rem; }

/* ════════════════════════════════════════
   HERO (Startseite)
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a1c34 0%, #0c2038 55%, #142a2a 100%);
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; }
.orb1 {
  width: 720px; height: 720px; top: -220px; right: -120px;
  background: radial-gradient(circle, rgba(59,130,246,0.28) 0%, transparent 70%);
  animation: orb-drift 13s ease-in-out infinite alternate;
}
.orb2 {
  width: 420px; height: 420px; bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(251,191,36,0.14) 0%, transparent 70%);
  animation: orb-drift 17s ease-in-out infinite alternate-reverse;
}
.orb3 {
  width: 260px; height: 260px; top: 38%; left: 28%;
  background: radial-gradient(circle, rgba(74,222,128,0.09) 0%, transparent 70%);
  animation: orb-drift 11s ease-in-out infinite alternate;
}
@keyframes orb-drift { from { transform: translate(0,0) scale(1); } to { transform: translate(22px,-26px) scale(1.07); } }

.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-inner {
  max-width: 1220px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1.15fr;
  grid-template-areas: "top visual" "bottom visual";
  align-items: center; gap: 56px;
  position: relative; z-index: 1;
}
.hero-top { grid-area: top; display: flex; flex-direction: column; gap: 20px; }
.hero-bottom { grid-area: bottom; display: flex; flex-direction: column; gap: 20px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,191,36,0.14); border: 1px solid rgba(251,191,36,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: #fcd34d;
  width: fit-content;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 6px #4ade80;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 { color: var(--white); }
.hero h1 .grad { font-size: 0.82em; }
.hero-sub { font-size: 1.05rem; max-width: 520px; color: rgba(255,255,255,0.72); line-height: 1.74; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero .btn-primary { background: var(--blue); box-shadow: 0 4px 18px rgba(26,86,219,0.4); }
.hero .btn-primary:hover { background: #1d4ed8; }
.hero .pulse::after { background: var(--blue); }
.hero .btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); box-shadow: none; }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); }

.hero-stats {
  display: flex; align-items: center;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { padding: 0 22px; text-align: center; }
.stat:first-child { padding-left: 0; }
.stat strong { display: block; font-size: 1.45rem; font-weight: 800; color: var(--white); line-height: 1.15; }
.stat span   { font-size: 0.74rem; color: rgba(255,255,255,0.46); }
.stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

.hero-visual { grid-area: visual; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  position: relative; width: 100%; max-width: 620px;
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.5s ease;
}
.hero-img-wrap:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0.3deg); }
.hero-scene-img {
  width: 100%; display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 0 40px rgba(251,191,36,0.08), var(--glow);
}
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 52px;
  background: linear-gradient(to top, #0c2038 0%, transparent 100%);
  border-radius: 0 0 22px 22px; pointer-events: none;
}
.hero-img-badge {
  position: absolute; bottom: 16px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,21,41,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(96,165,250,0.3);
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: #93c5fd; z-index: 2;
}

/* ════════════════════════════════════════
   WAS WIR MACHEN
   ════════════════════════════════════════ */
.was-section { background: var(--bg); }
.was-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.was-text h2 { margin-bottom: 14px; }
.was-text > p { margin-bottom: 22px; line-height: 1.78; }

.was-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 30px;
}
.was-list li {
  font-size: 0.9rem; color: var(--text);
  padding: 9px 14px; background: var(--white);
  border-radius: var(--rs);
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}

.browser-mock {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 32px 80px rgba(12,31,63,0.13), var(--glow);
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.browser-mock:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(0.5deg); }
.browser-bar {
  background: #f0f2f5; padding: 10px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.bdot { width: 10px; height: 10px; border-radius: 50%; }
.bdot.r { background: #ff5f57; } .bdot.y { background: #ffbd2e; } .bdot.g { background: #28c840; }
.browser-url {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 10px;
  font-size: 0.72rem; color: var(--muted); margin-left: 8px;
}
.browser-real-img { width: 100%; display: block; max-height: 280px; object-fit: cover; object-position: top; }

/* ════════════════════════════════════════
   WARUM WIR
   ════════════════════════════════════════ */
.why-section { background: var(--white); }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: var(--ease);
}
.why-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card:hover h3 { color: var(--blue); }
.why-card-img-wrap {
  position: relative;
  height: 200px; overflow: hidden;
  border-bottom: 1px solid var(--border); background: var(--bg2);
}
.why-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }

.ai-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(12,31,63,0.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 4px 9px; border-radius: 100px; pointer-events: none;
}
.why-card:hover .why-card-img { transform: scale(1.05); }
.why-card-body { padding: 26px 26px 30px; }
.why-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; transition: color 0.2s; }
.why-card-body p { font-size: 0.97rem; line-height: 1.68; }

/* ── 0 % Risiko-Box ── */
.risk-box {
  background: linear-gradient(135deg, var(--blue-pale) 0%, rgba(219,234,254,0.45) 100%);
  border: 1px solid var(--blue-border); border-radius: var(--r);
  padding: 36px 44px; display: flex; align-items: center; gap: 32px;
  max-width: 820px; margin: 56px auto 0;
}
.risk-badge { flex-shrink: 0; text-align: center; }
.risk-badge strong {
  display: block; font-size: 2.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.03em;
}
.risk-badge span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); opacity: 0.7;
}
.risk-divider { width: 1px; height: 64px; background: var(--blue-border); flex-shrink: 0; }
.risk-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.risk-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.72; }

/* ════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════ */
.portfolio-section { background: var(--bg); }

.demo-hint {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--blue-pale); border: 1px solid var(--blue-border);
  border-radius: 10px; padding: 14px 18px;
  font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 36px;
}
.demo-hint svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.portfolio-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: var(--ease);
}
.portfolio-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.portfolio-img-wrap { position: relative; overflow: hidden; height: 215px; }
.demo-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(8,21,41,0.82); color: #93c5fd;
  border: 1px solid rgba(96,165,250,0.4); backdrop-filter: blur(6px);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 3px 9px; border-radius: 100px; text-transform: uppercase;
}
.portfolio-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(12,31,63,0.74);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-link {
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: 0.88rem;
  padding: 10px 26px; border-radius: 100px; transition: var(--ease);
}
.portfolio-link:hover { background: var(--blue); color: var(--white); }
.portfolio-info { padding: 20px 22px 24px; }
.portfolio-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 10px; }
.ptag {
  display: inline-block; background: var(--bg); color: var(--blue);
  border: 1px solid var(--blue-border); padding: 3px 10px;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700;
}
.ptag.style { background: rgba(139,92,246,0.06); color: #7c3aed; border-color: rgba(139,92,246,0.2); }
.portfolio-info h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.portfolio-info p  { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
/* ════════════════════════════════════════
   ABLAUF
   ════════════════════════════════════════ */
.ablauf-section { background: var(--white); position: relative; min-height: 47.6vw; padding-top: 40px; padding-bottom: 80px; }
.ablauf-section .ablauf-grid { margin-top: 72px; }
.ablauf-mobile-img { display: none; }
.ablauf-section::after {
  content: '';
  position: absolute; inset: 0;
  background: url('img/ablauf-bg-hell.jpg') center -5.6vw / 100% auto no-repeat;
  opacity: 1;
  pointer-events: none; z-index: 0;
}
.ablauf-section .container {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  min-height: calc(47.6vw - 120px);
}
.ablauf-section .section-head .tag {
  background: var(--blue-pale);
  color: var(--blue);
  border-color: var(--blue-border);
}
.ablauf-section .section-head h2 { color: var(--text-dark); text-shadow: none; font-size: clamp(2rem, 3.8vw, 3rem); }
.ablauf-section .section-head p  { color: var(--muted); text-shadow: none; font-size: 1.15rem; }
.ablauf-section .ablauf-grid { margin-top: auto; }

.ablauf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 30px 24px; text-align: center;
  position: relative; z-index: 1; transition: var(--ease);
}
.step-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 4px 14px rgba(26,86,219,0.3);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; }

/* ════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════ */
.cta-section { background: var(--bg); }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r); padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(12,31,63,0.22), 0 24px 64px rgba(12,31,63,0.14);
}
.cta-box::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.38) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { color: var(--white); position: relative; z-index: 1; }
.cta-box p  { color: rgba(255,255,255,0.62); margin: 12px 0 32px; font-size: 1rem; position: relative; z-index: 1; }
.cta-btns   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-box .btn-primary { background: var(--blue); box-shadow: 0 4px 18px rgba(26,86,219,0.4); }
.cta-box .btn-primary:hover { background: #1d4ed8; }
.cta-box .pulse::after { background: var(--blue); }
.cta-box .btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); box-shadow: none; }
.cta-box .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-size: 1.45rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.03em;
  display: flex; align-items: center; margin-bottom: 12px;
}
.footer-logo .logo-mark { width: 38px; height: 38px; border-radius: 9px; margin-right: 11px; }
.footer-logo .hi { color: #60a5fa; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.42); max-width: 260px; line-height: 1.68; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: rgba(255,255,255,0.46); transition: color 0.2s;
}
.footer-contact a:hover { color: #60a5fa; }
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-nav { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin-bottom: 2px; }
.footer-col a { color: rgba(255,255,255,0.44); font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: #60a5fa; }
.footer-bottom { text-align: center; padding: 18px 0; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.26); }

/* ════════════════════════════════════════
   ÜBER UNS – Spezifische Styles
   ════════════════════════════════════════ */
.about-intro-section {
  background: var(--white);
  padding: 72px 0 80px;
}
.about-intro-wrap {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.about-body {
  font-size: 1rem; color: var(--text);
  line-height: 1.85; margin-bottom: 36px;
  text-align: left;
}
.about-body strong { color: var(--text-dark); font-weight: 600; }
.about-body p + p  { margin-top: 18px; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.about-stats { background: var(--bg); padding: 60px 0; }
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.about-stat {
  padding: 0 36px; border-right: 1px solid var(--border);
  text-align: center;
}
.about-stat:first-child { padding-left: 0; }
.about-stat:last-child  { border-right: none; }
.about-stat strong {
  display: block; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-stat span { font-size: 0.8rem; color: var(--muted); line-height: 1.55; display: block; }

.about-why-section { background: var(--white); padding: 80px 0; }
.about-why-section .section-head { margin-bottom: 0; }
.why-list { max-width: 760px; margin: 48px auto 0; }
.why-item {
  display: block; text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num {
  display: block; font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  font-weight: 800; line-height: 1; margin-bottom: 16px; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.why-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-content p  { font-size: 0.95rem; color: var(--muted); line-height: 1.78; max-width: 580px; margin: 0 auto; }

/* ════════════════════════════════════════
   KONTAKT – Spezifische Styles
   ════════════════════════════════════════ */
.kontakt-section { background: var(--bg); }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 52px; align-items: start;
}
.kontakt-visual .kontakt-scene-img {
  width: 100%; border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: block;
}
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
  margin-bottom: 14px; transition: var(--ease);
}
.info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-pale); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
}
.info-icon svg { width: 18px; height: 18px; }
.info-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.info-card a { color: var(--blue); font-size: 0.87rem; }
.info-card p  { font-size: 0.83rem; color: var(--muted); margin-top: 0; }

.form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px; box-shadow: var(--shadow-sm);
}
.form-box h3 { font-size: 1.2rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--rs); font-family: inherit;
  font-size: 0.88rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.form-note a { color: var(--blue); }

.form-feedback {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--rs);
  margin-top: 16px; font-size: 0.88rem; line-height: 1.55;
}
.form-feedback[hidden] { display: none; }
.form-feedback svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.form-success svg { fill: #16a34a; }
.form-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-error svg { fill: #dc2626; }

/* ════════════════════════════════════════
   IMPRESSUM – Spezifische Styles
   ════════════════════════════════════════ */
.impressum-section { background: var(--bg); }
.legal-content {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 48px 52px;
  max-width: 860px; margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { font-size: 1.5rem; color: var(--text-dark); margin: 36px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 24px 0 8px; }
.legal-content p  { font-size: 0.9rem; color: var(--text); line-height: 1.8; margin-bottom: 10px; }
.legal-content ul { margin: 0 0 12px; padding-left: 22px; }
.legal-content li { font-size: 0.9rem; color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.legal-content a  { color: var(--blue); }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 72px 0; }
  .hero { padding: 100px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; grid-template-areas: "top" "visual" "bottom"; gap: 32px; }
  .hero-visual { margin: 4px 0; }
  .was-grid { grid-template-columns: 1fr; gap: 36px; }
  .ablauf-grid { grid-template-columns: repeat(2, 1fr); }
  .ablauf-grid::before { display: none; }
  .about-stat { padding: 0 18px; }
  .about-stat:first-child { padding-left: 0; }

  /* Ablauf: Bild zwischen Überschrift und Boxen */
  .ablauf-section { min-height: auto; padding-top: 52px; padding-bottom: 52px; }
  .ablauf-section::after { display: none; }
  .ablauf-section .container { min-height: auto; display: block; }
  .ablauf-section .ablauf-grid { margin-top: 32px; }
  .ablauf-mobile-img { display: block; width: 100%; height: auto; margin-top: 28px; border-radius: var(--r); }
}
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  {
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-visual .kontakt-scene-img { max-height: 220px; object-fit: cover; }
  .legal-content { padding: 32px 24px; }
  .cta-box { padding: 48px 24px; }
}
@media (max-width: 768px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .about-stat { border-right: none; padding: 0; }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 24px; }
  .why-item { grid-template-columns: 1fr; gap: 6px; }
  .why-num  { padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .ablauf-grid { grid-template-columns: 1fr; }
  .risk-box { flex-direction: column; text-align: center; padding: 28px 20px; gap: 18px; }
  .risk-divider { width: 48px; height: 1px; }
}
@media (max-width: 560px)  { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px)  { .portfolio-grid { grid-template-columns: 1fr; } }

/* ===== DATENSCHUTZ-BANNER ===== */
.privacy-banner {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end;
  pointer-events: none; visibility: hidden;
}
.privacy-banner.show { visibility: visible; pointer-events: auto; }
.privacy-banner-box {
  position: relative; width: 100%;
  background: var(--navy-dark); color: rgba(255, 255, 255, 0.9);
  padding: 1.75rem 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.4);
  border-top: 3px solid var(--blue-lt);
}
.privacy-banner.show .privacy-banner-box { transform: translateY(0); }
.privacy-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.privacy-banner-text { flex: 1; min-width: 280px; }
.privacy-banner-text h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 0.6rem; }
.privacy-banner-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.35rem;
  margin: 0 0 0.7rem; padding: 0; font-size: 0.85rem; line-height: 1.55;
}
.privacy-banner-list strong { color: var(--blue-lt); }
.privacy-banner-text > a { color: rgba(255, 255, 255, 0.75); font-size: 0.82rem; text-decoration: underline; }
.privacy-banner-text > a:hover { color: #fff; }
.privacy-banner-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; flex-shrink: 0; max-width: 100%; }
.privacy-banner-actions .btn-primary { flex: 0 0 auto; white-space: nowrap; }
.privacy-banner-outline {
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; white-space: nowrap;
  padding: 0.75rem 1.4rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  color: rgba(255, 255, 255, 0.85); border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.2s ease;
}
.privacy-banner-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.6); color: #fff; }
@media (max-width: 640px) {
  .privacy-banner-actions { flex-direction: column; align-items: stretch; }
}

/* ════════════════════════════════════════
   FAQ – Akkordeon (Unterseiten)
   ════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-list { max-width: 820px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-weight: 700; color: var(--text-dark); font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--blue);
  flex-shrink: 0; line-height: 1; transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: 0.92rem; line-height: 1.78; color: var(--muted); }
@media (max-width: 640px) {
  .faq-item summary { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer { padding: 0 18px 18px; }
}

/* Honeypot-Feld des Kontaktformulars: fuer echte Nutzer unsichtbar (per CSS
   ausgeblendet, nicht per type="hidden"), fuer blind ausfuellende Bots aber im
   DOM vorhanden. Muss leer bleiben. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
