/* =========================================================
   Jobcenter Insights — One-Page Landingpage
   Stil: moderne SaaS-/Enterprise-Seite, angelehnt an App-Design
========================================================= */

:root {
  --primary: #93ce18;
  --primary-hover: #7ab012;
  --gradient-start: #93ce18;
  --gradient-end: #64b400;
  --brand-gradient: linear-gradient(135deg, #93ce18 0%, #64b400 100%);

  --success: #43e97b;
  --warning: #feca57;
  --error: #ff6348;
  --info: #4facfe;

  --bg-page: #f5f5f5;
  --bg-card: #ffffff;
  --bg-soft: #fafafa;
  --text: #333333;
  --text-2: #666666;
  --text-3: #999999;
  --on-color: #ffffff;
  --border: #e0e0e0;
  --border-soft: #f0f0f0;

  --dark: #122015;
  --dark-2: #1a2a1d;
  --dark-card: rgba(255,255,255,0.08);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-xl: 0 8px 32px rgba(0,0,0,0.20);

  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --container: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-xl { padding: 112px 0; }
.section-lg { padding: 88px 0; }
.section-md { padding: 64px 0; }

/* =========================================================
   PASSWORT-OVERLAY TEMPORÄR
========================================================= */
.pw-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(147,206,24,0.24), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(79,172,254,0.16), transparent 34%),
    rgba(10, 20, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.5s ease;
}
.pw-overlay.hidden { opacity: 0; pointer-events: none; }
.pw-card {
  width: min(430px, 90vw);
  padding: 52px 46px 42px;
  text-align: center;
  border-radius: 26px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 24px 90px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.pw-logo { height: 72px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pw-logo img { max-height: 72px; width: auto; }
.pw-logo-fallback { font-weight: 700; font-size: 28px; color: #fff; }
.pw-badge {
  display: inline-flex; align-items: center; gap: 7px;
  color: #dfffc4; background: rgba(147,206,24,0.16); border: 1px solid rgba(147,206,24,0.35);
  padding: 5px 13px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 20px;
}
.pw-badge-dot { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 5px rgba(147,206,24,0.18); }
.pw-card h2 { color: #fff; font-size: 23px; margin-bottom: 8px; }
.pw-card p { color: rgba(255,255,255,0.62); font-size: 14px; margin-bottom: 30px; }
.pw-input-wrap { position: relative; margin-bottom: 14px; }
.pw-input-wrap input {
  width: 100%; padding: 14px 48px 14px 18px;
  border-radius: 13px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff; outline: none;
  transition: border-color .2s, background .2s;
}
.pw-input-wrap input::placeholder { color: rgba(255,255,255,0.38); }
.pw-input-wrap input:focus { border-color: rgba(147,206,24,0.7); background: rgba(255,255,255,0.14); }
.pw-input-wrap input.error { border-color: rgba(255,99,72,0.75); animation: shake .35s ease; }
.pw-toggle {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(255,255,255,0.48); cursor: pointer; padding: 4px; display: flex;
}
.pw-toggle:hover { color: #fff; }
.pw-toggle svg { width: 19px; height: 19px; }
.pw-error-msg { min-height: 21px; color: #ff9b90 !important; font-size: 13px !important; margin-bottom: 14px !important; }
.pw-error-msg.hidden { opacity: 0; }
.pw-btn {
  width: 100%; border: 0; cursor: pointer;
  padding: 14px 18px; border-radius: 13px;
  background: var(--brand-gradient); color: #fff; font-weight: 700;
  box-shadow: 0 8px 24px rgba(147,206,24,0.28);
  transition: transform .18s, filter .18s;
}
.pw-btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.pw-footer-note { margin-top: 20px !important; margin-bottom: 0 !important; font-size: 12px !important; color: rgba(255,255,255,0.32) !important; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224,224,224,0.74);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { background: rgba(255,255,255,0.94); box-shadow: 0 6px 28px rgba(0,0,0,0.08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; min-width: 190px; }
.brand img { height: 48px; width: auto; object-fit: contain; }
.brand-fallback { color: var(--dark); font-weight: 800; font-size: 20px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--text-2); transition: color .2s; }
.main-nav a:hover { color: var(--primary-hover); }
.nav-login {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  border: 1px solid var(--border); color: var(--text); background: #fff;
  padding: 9px 18px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.nav-login svg { width: 15px; height: 15px; }
.nav-login:hover { border-color: var(--primary); color: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.mobile-nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border: 0; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); cursor: pointer; }
.mobile-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 5px auto; border-radius: 5px; }

/* =========================================================
   BUTTONS / TYPO
========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn-primary { color: #fff; background: var(--brand-gradient); box-shadow: 0 10px 26px rgba(147,206,24,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(147,206,24,0.34); }
.btn-ghost { color: var(--text); background: #fff; border-color: var(--border); }
.btn-ghost:hover { color: var(--primary-hover); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.section-label {
  color: var(--primary-hover);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-label.light { color: #d8ff9e; }
.section-heading h2, .module-text h2, .security-copy h2, .contact-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-heading p:not(.section-label) { color: var(--text-2); max-width: 680px; margin: 0 auto; font-size: 18px; }
.section-heading.center { text-align: center; max-width: 820px; margin: 0 auto 56px; }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 64px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf2 58%, #f5f5f5 100%);
}
.hero-bg-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.hero-orb-a { width: 620px; height: 620px; top: 90px; right: -180px; background: radial-gradient(circle, rgba(147,206,24,0.22), transparent 68%); }
.hero-orb-b { width: 420px; height: 420px; bottom: 0; left: -160px; background: radial-gradient(circle, rgba(79,172,254,0.10), transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 54px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: var(--radius-pill);
  background: rgba(147,206,24,0.12); border: 1px solid rgba(147,206,24,0.26);
  color: var(--primary-hover); font-size: 13px; font-weight: 700;
  margin-bottom: 26px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(147,206,24,0.18); }
.hero h1 { font-size: clamp(42px, 5vw, 72px); line-height: 1.04; letter-spacing: -0.06em; color: var(--dark); margin-bottom: 26px; }
.hero-subline { font-size: clamp(17px, 1.35vw, 20px); color: var(--text-2); max-width: 690px; margin-bottom: 20px; }
.hero-tagline { display: inline-block; font-size: 18px; font-weight: 800; color: var(--dark); background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-pill); padding: 8px 16px; box-shadow: var(--shadow-sm); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof span { color: var(--text-2); font-size: 13px; font-weight: 700; background: rgba(255,255,255,0.72); border: 1px solid var(--border-soft); border-radius: var(--radius-pill); padding: 6px 12px; }
.hero-visual { position: relative; }
.hero-screenshot { transform: rotate(-1.2deg); }
.screenshot-shell, .module-visual, .tool-card {
  position: relative;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none !important;
  perspective: none !important;
}

.hero-visual img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  transform: none !important;
  rotate: 0deg !important;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.18));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 2%;
  background: linear-gradient(135deg, rgba(147, 206, 24, 0.18), rgba(100, 180, 0, 0.04));
  border-radius: 40px;
  filter: blur(30px);
  z-index: -1;
}
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-3); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint::after { content: ''; width: 1px; height: 34px; background: var(--brand-gradient); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* =========================================================
   MOCKUPS (shots.so-Stil — reines CSS)
========================================================= */
.shot {
  position: relative; display: block; border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid rgba(16,32,20,.07);
  box-shadow: 0 1px 2px rgba(16,32,20,.07), 0 14px 30px -10px rgba(16,32,20,.22), 0 54px 88px -30px rgba(16,32,20,.50);
  transition: transform .4s ease, box-shadow .4s ease;
}
.shot img { display: block; width: 100%; height: auto; max-width: none; filter: none; transform: none; rotate: 0deg; }
.shot-bar { height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 16px;
  background: linear-gradient(180deg, #f6f8f2, #eef1ea); border-bottom: 1px solid rgba(16,32,20,.07); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cfd6cc; }
.shot-bar i:nth-child(1) { background: #e3aaa2; }
.shot-bar i:nth-child(2) { background: #ecd6a0; }
.shot-bar i:nth-child(3) { background: #bcd99a; }

/* schwebend mit dezenter 3D-Neigung */
.shot--tilt { transform: perspective(1600px) rotateY(-9deg) rotateX(4deg); }
.shot--tilt:hover { transform: perspective(1600px) rotateY(-5deg) rotateX(2deg) translateY(-5px); }

/* freigestellt/schwebend mit Akzent-Schatten (ohne Browser-Leiste) */
.shot--float {
  border: none; border-radius: 20px;
  box-shadow: 0 10px 26px -10px rgba(100,180,0,.32), 0 46px 80px -32px rgba(16,32,20,.46);
}
.shot--float:hover { transform: translateY(-6px); }

/* Modal-/Dialog-Darstellung: heller Dialog über abgedunkeltem App-Hintergrund */
.shot--modal { position: relative; border: none; overflow: hidden; }
.shot--modal .shot-bg { display: block; width: 100%; height: auto; filter: brightness(.55) saturate(.85) blur(1px); }
.shot-dialog { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 74%; border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid rgba(16,32,20,.08); box-shadow: 0 26px 60px -14px rgba(0,0,0,.55); }
.shot-dialog img, .shot-dialog .pin-frames { display: block; width: 100%; }
.shot--modal:hover { transform: translateY(-4px); }

/* Größenbegrenzung im Hero (Bild würde sonst volle Pixelbreite annehmen) */
.hero-visual .shot { width: 100%; max-width: 620px; margin-inline: auto; }

/* gestapelt: erstes .shot ist Hauptbild, weitere versetzt dahinter */
.shot-stack { position: relative; }
.shot-stack > .shot + .shot { position: absolute; top: 0; left: 0; width: 100%; }
.shot-stack > .shot:nth-child(2) { transform: translate(6%, 8%) scale(.94); z-index: -1; opacity: .96; }
.shot-stack > .shot:nth-child(3) { transform: translate(12%, 16%) scale(.88); z-index: -2; opacity: .9; }

@media (max-width: 1100px) { .shot--tilt { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .shot, .shot--tilt, .shot--tilt:hover { transition: none; transform: none; }
}

/* =========================================================
   PINNED-SCROLLYTELLING
========================================================= */
.pin-section { position: relative; height: 300vh; }
#egl.pin-section { height: 360vh; }   /* 5 Schritte → etwas mehr Scroll-Raum */
#wissen.pin-section, #organisation.pin-section { height: 360vh; }   /* je 4 Schritte */
.pin-stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.pin-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: center; width: 100%; }
.pin-progress { height: 4px; background: var(--border-soft); border-radius: 999px; overflow: hidden; margin: 20px 0 4px; max-width: 440px; }
.pin-progress-fill { display: block; height: 100%; width: calc(var(--p, 0) * 100%); background: var(--brand-gradient); transition: width .08s linear; }
.pin-steps { margin-top: 12px; display: flex; flex-direction: column; gap: 2px; }
.pin-step { display: flex; gap: 14px; align-items: flex-start; opacity: .45; transition: opacity .3s ease; padding: 11px 0; }
.pin-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; background: var(--border-soft); color: var(--text-2); transition: color .3s ease, transform .3s ease; }
.pin-step.active { opacity: 1; }
.pin-step.active .pin-num { background-image: var(--brand-gradient); color: #fff; transform: scale(1.1); }
.pin-step h3 { margin: 0 0 3px; font-size: 17px; color: var(--text); }
.pin-step p { margin: 0; color: var(--text-2); font-size: 14.5px; }
.pin-visual .shot { width: 100%; max-width: 780px; margin-inline: auto; }
.pin-frames { position: relative; width: 100%; aspect-ratio: 16 / 10; background: #fff; }
.pin-frame { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; }
.pin-frame.active { opacity: 1; }
img.pin-frame { width: 100%; height: 100%; object-fit: cover; }
/* Szenen-Modus: jeder Schritt mit eigener Anzeigeart (Rahmen/Modal/freischwebend) */
.pin-frames--scenes { aspect-ratio: 16 / 11; background: none; }
.pin-frames--scenes .pin-frame { display: grid; place-items: center; }
.pin-frames--scenes .pin-frame > * { width: 100%; max-width: 780px; }
@media (max-width: 920px) {
  .pin-section { height: auto; }
  .pin-stage { position: static; height: auto; display: block; padding: 72px 0; }
  .pin-grid { grid-template-columns: 1fr; gap: 28px; }
  .pin-step { opacity: 1; }
  .pin-progress { display: none; }
  .pin-frames { aspect-ratio: auto; }
  .pin-frame { position: relative; display: none; opacity: 1; }
  .pin-frame:first-of-type { display: block; }
  .pin-frames--scenes { aspect-ratio: auto; }
  .pin-frames--scenes .pin-frame:first-of-type { display: grid; }
}
@media (prefers-reduced-motion: reduce) { .pin-frame, .pin-progress-fill { transition: none; } }

/* =========================================================
   TRUST / INTRO
========================================================= */
.trust-band { margin-top: -22px; position: relative; z-index: 3; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl);
  padding: 26px 24px; box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trust-card img { width: 42px; height: 42px; object-fit: contain; margin-bottom: 18px; }
.trust-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.trust-card p { color: var(--text-2); font-size: 14px; }
.intro-section { background: var(--bg-page); }
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.intro-copy { color: var(--text-2); font-size: 18px; }
.intro-copy p + p { margin-top: 18px; }

/* =========================================================
   FEATURE OVERVIEW
========================================================= */
.feature-overview { background: #fff; }
.feature-link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-link {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  color: var(--dark); font-weight: 800;
  transition: transform .22s, box-shadow .22s, border-color .22s, background .22s;
}
.feature-link img { width: 34px; height: 34px; object-fit: contain; }
.feature-link:hover { transform: translateY(-4px); border-color: rgba(147,206,24,0.55); background: #fff; box-shadow: var(--shadow-md); }

/* =========================================================
   MODULES
========================================================= */
.module-section { background: #fff; overflow: hidden; }
.module-section.soft { background: linear-gradient(180deg, #f8faf5 0%, #f5f5f5 100%); }
.module-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 76px; align-items: center; }
.module-grid.reverse { grid-template-columns: 1.18fr 0.82fr; }
.module-grid.reverse .module-text { order: 2; }
.module-grid.reverse .module-visual { order: 1; }
.module-text { max-width: 540px; }
.module-icon {
  width: 58px; height: 58px; border-radius: 18px; background: rgba(147,206,24,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.module-icon img { width: 36px; height: 36px; object-fit: contain; }
.module-text p:not(.section-label) { color: var(--text-2); font-size: 18px; margin-bottom: 22px; }
.check-list { list-style: none; display: grid; gap: 12px; margin-top: 26px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text); font-weight: 600; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: rgba(147,206,24,0.16); color: var(--primary-hover);
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900;
}
.module-visual { display: flex; justify-content: center; perspective: 1700px; }
.module-visual > img {
  width: min(100%, 760px); height: auto; border-radius: 16px;
  border: 1px solid rgba(16,32,20,.07);
  box-shadow: 0 1px 2px rgba(16,32,20,.07), 0 14px 30px -10px rgba(16,32,20,.20), 0 50px 82px -30px rgba(16,32,20,.44);
  transform: rotateY(-7deg) rotateX(2.5deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.module-grid.reverse .module-visual > img { transform: rotateY(7deg) rotateX(2.5deg); }
.module-visual:hover > img { transform: rotateY(-3deg) rotateX(1.5deg) translateY(-5px); }
.module-grid.reverse .module-visual:hover > img { transform: rotateY(3deg) rotateX(1.5deg) translateY(-5px); }
.module-visual > .shot, .module-visual > .shot-stack { width: min(100%, 700px); margin-inline: auto; }
@media (max-width: 1100px) { .module-visual > img { transform: none; } }
@media (prefers-reduced-motion: reduce) { .module-visual > img { transform: none; transition: none; } }

/* Statement-Trenner (Hintergrundbild) */
.statement-band { position: relative; padding: 130px 0; background-color: #0e1f3a; background-position: center; background-size: cover; background-repeat: no-repeat; color: #fff; text-align: center; }
.statement-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,26,50,.82), rgba(18,55,38,.62)); }
.statement-band .container { position: relative; z-index: 1; }
.statement-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin: 0 0 14px; }
.statement-band p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto; font-size: 18px; }
/* Hintergrundbild je Band (in der CSS-Datei → ../img/ eindeutig) */
.statement-band.sb-1 { background-image: url('../img/header_1.jpg'); }
.statement-band.sb-2 { background-image: url('../img/header.jpg'); }
.statement-band.sb-3 { background-image: url('../img/header_2.jpg'); }

/* Online-Angebote (Karten mit Link, ohne sichtbare Domain) */
.online-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.online-card { display: flex; align-items: center; gap: 18px; padding: 26px 28px; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); text-decoration: none; color: var(--text); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.online-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #cfe39a; }
.online-card > img { width: 46px; height: 46px; object-fit: contain; flex: 0 0 auto; }
.online-card b { display: block; font-size: 18px; }
.online-card span { color: var(--text-2); font-size: 14px; }
.online-card .arrow { margin-left: auto; color: #64b400; font-weight: 800; font-size: 18px; }
@media (max-width: 760px) { .online-grid { grid-template-columns: 1fr; } }
.wide-shot img { width: min(100%, 820px); }
.tablet-shot img { width: min(100%, 620px); }
.compact-shot-grid { grid-template-columns: 0.9fr 1.1fr; }
.compact-shot-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }

/* =========================================================
   TOOLS
========================================================= */
.tools-section { background: #fff; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.tool-card {
  display: grid; grid-template-columns: 0.9fr 0.85fr; align-items: center; gap: 28px;
  overflow: hidden; min-height: 520px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fbf2 100%);
  border: 1px solid var(--border-soft); border-radius: 30px; padding: 38px;
  box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s;
}
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tool-copy img { width: 48px; height: 48px; margin-bottom: 18px; object-fit: contain; }
.tool-copy h3 { font-size: 28px; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.tool-copy p { color: var(--text-2); font-size: 16px; }
.tool-shot { max-height: 430px; width: auto; justify-self: center; }

/* =========================================================
   SECURITY / NUMBERS / CONTACT
========================================================= */
.security-section {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(147,206,24,0.28), transparent 34%),
    linear-gradient(135deg, #122015 0%, #1d321c 58%, #243f18 100%);
  overflow: hidden;
}
.security-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; }
.security-copy h2 { color: #fff; }
.security-copy p { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 720px; }
.security-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.security-points div, .security-card {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-xl); backdrop-filter: blur(14px);
}
.security-points div { padding: 18px; }
.security-points strong { display: block; color: #fff; margin-bottom: 4px; }
.security-points span { color: rgba(255,255,255,0.64); font-size: 14px; }
.security-card { padding: 42px; box-shadow: 0 26px 80px rgba(0,0,0,0.25); }
.security-card img { width: 72px; height: 72px; margin-bottom: 24px; }
.security-card h3 { font-size: 32px; margin-bottom: 14px; }
.security-card p { color: rgba(255,255,255,0.70); font-size: 17px; }

.numbers-section { background: #fff; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.number-card { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 24px; padding: 30px 24px; text-align: center; }
.number-card strong { display: block; font-size: clamp(34px, 4vw, 56px); line-height: 1; color: var(--primary-hover); margin-bottom: 10px; letter-spacing: -0.05em; }
.number-card span { color: var(--text-2); font-weight: 700; }

.contact-section { background: var(--bg-page); }
.contact-box {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  background: #fff; border: 1px solid var(--border-soft); border-radius: 34px; padding: 56px;
  box-shadow: var(--shadow-lg);
}
.contact-copy p:not(.section-label) { color: var(--text-2); font-size: 18px; max-width: 760px; }
.contact-actions { display: flex; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; color: var(--text); }
.contact-form input, .contact-form textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px; font: inherit; color: var(--text); background: #fff; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(147,206,24,.14); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.form-msg { border-radius: 12px; padding: 12px 16px; font-weight: 600; font-size: 14px; }
.form-msg.ok { background: #e3f8e9; color: #1b7a3d; border: 1px solid #b5e6c4; }
.form-msg.err { background: #ffe3de; color: #c0392b; border: 1px solid #f3b6ad; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer { background: #122015; color: rgba(255,255,255,0.66); padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.6fr 0.6fr; gap: 40px; }
.footer-brand img { max-height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: rgba(255,255,255,0.56); }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer-col a { display: block; color: rgba(255,255,255,0.58); margin-bottom: 9px; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.38); }

/* =========================================================
   ANIMATIONEN
========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .hero-grid, .module-grid, .module-grid.reverse, .intro-grid, .security-grid, .contact-box { grid-template-columns: 1fr; }
  .module-grid.reverse .module-text, .module-grid.reverse .module-visual { order: initial; }
  .hero-content, .module-text { max-width: 760px; }
  .hero-visual { max-width: 760px; margin: 0 auto; }
  .trust-grid, .feature-link-grid, .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 840px) {
  :root { --header-h: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section-xl { padding: 78px 0; }
  .section-lg { padding: 68px 0; }
  .mobile-nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: calc(var(--header-h) + 8px); right: 14px; left: 14px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.96); border: 1px solid var(--border-soft); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 10px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; border-radius: 12px; }
  .main-nav a:hover { background: var(--bg-soft); }
  .nav-login { display: none; }
  .brand { min-width: 0; }
  .brand img { height: 42px; }
  .hero { padding-top: calc(var(--header-h) + 44px); }
  .hero h1 { font-size: clamp(38px, 10vw, 58px); }
  .trust-grid, .feature-link-grid, .numbers-grid, .security-points { grid-template-columns: 1fr; }
  .tool-card { grid-template-columns: 1fr; min-height: auto; }
  .tool-shot { max-height: 360px; }
  .contact-box { padding: 34px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-proof { display: none; }
  .pw-card { padding: 38px 24px 30px; }
  .module-text h2, .section-heading h2, .security-copy h2, .contact-copy h2 { font-size: 32px; }
}
