/* ── FORCE LIGHT MODE everywhere ── */
:root { color-scheme: light; }
html { color-scheme: light only; }

/* ── TOKENS ── */
:root {
  --N: #0B1628;      /* Navy */
  --NL: #162A52;     /* Navy light */
  --W: #FFFFFF;      /* White */
  --F: #F0F3F7;      /* Off-white / field bg */
  --G: #374151;      /* Grey text */
  --GL: #6B7280;     /* Grey light */
  --BD: #C9D0DB;     /* Border */
  --A: #1841B0;      /* Accent blue */
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: #ffffff !important;
  color: #0B1628 !important;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* scrollbar */
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-thumb { background: var(--N); }

/* ── PROGRESS ── */
#prog { position:fixed;top:0;left:0;height:3px;background:var(--N);z-index:999;width:0%; }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:800;
  height: 62px;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 48px;
  background: #ffffff;
  border-bottom: 2px solid #0B1628;
}

.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-svg { width:30px; height:30px; }
.logo-type { font-size:17px; font-weight:800; color:#0B1628; letter-spacing:.08em; }
.logo-type span { color: var(--A); }

.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { font-size:12px; font-weight:500; color:#374151; text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:#0B1628; }

.nav-cta {
  padding: 9px 22px;
  background: #0B1628; color: #ffffff;
  font-size: 12px; font-weight: 700;
  border: none; cursor: pointer;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 48px 60px;
  background: #ffffff;
}

.hero-tag {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .45em; text-transform: uppercase;
  color: var(--A);
  margin-bottom: 28px;
}

.hero-h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800; line-height: .97;
  color: #0B1628;
  margin-bottom: 24px; letter-spacing: -.025em;
}

.hero-desc {
  font-size: 15px; color: #374151;
  line-height: 1.8; max-width: 460px;
  margin-bottom: 36px; font-weight: 400;
}

.hero-btns { display:flex; gap:12px; flex-wrap:wrap; }

.btn-dark {
  padding: 13px 30px;
  background: #0B1628; color: #ffffff;
  font-size: 13px; font-weight: 700;
  border: none; cursor:pointer;
  text-decoration: none; display:inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-dark:hover { background: #162A52; }

.btn-outline {
  padding: 12px 30px;
  background: #ffffff; color: #0B1628;
  font-size: 13px; font-weight: 600;
  border: 2px solid #0B1628; cursor:pointer;
  text-decoration: none; display:inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover { background: #F0F3F7; }

/* Hero right — stat cards */
.hero-stats { display:flex; flex-direction:column; gap:3px; }

.hstat {
  background: #F0F3F7;
  padding: 26px 28px;
  border-left: 4px solid #0B1628;
}
.hstat-val {
  font-size: 44px; font-weight: 800;
  color: #0B1628; line-height: 1;
  margin-bottom: 5px;
}
.hstat-label {
  font-size: 12px; color: #374151;
  line-height: 1.55; font-weight: 400;
}

/* ═══════════════════════════════
   SECTION WRAPPER
═══════════════════════════════ */
.sec { padding: 80px 48px; background: #ffffff; }
.sec-alt { padding: 80px 48px; background: #F0F3F7; }

.sec-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .45em; text-transform: uppercase;
  color: var(--A); margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: #0B1628;
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 10px;
}
.sec-sub {
  font-size: 14px; color: #374151;
  line-height: 1.8; max-width: 600px;
  margin-bottom: 48px; font-weight: 400;
}

/* ═══════════════════════════════
   PACKAGES (Einmalig)
═══════════════════════════════ */
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }

.pkg {
  background: #F0F3F7;
  padding: 36px 28px;
  border: 2px solid #C9D0DB;
  position: relative;
  display: flex; flex-direction:column;
}
.pkg.hot {
  background: #ffffff;
  border: 2px solid #0B1628;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(11,22,40,.15);
}

.pkg-badge {
  position: absolute; top: -2px; left:50%; transform: translateX(-50%);
  background: #0B1628; color: #ffffff;
  font-size: 9px; font-weight: 800; letter-spacing:.2em;
  padding: 5px 18px; text-transform: uppercase; white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pkg-tier { font-size:10px; font-weight:700; letter-spacing:.35em; text-transform:uppercase; color:var(--A); margin-bottom:6px; display:block; }
.pkg-name { font-size:22px; font-weight:800; color:#0B1628; margin-bottom:18px; }
.pkg-price { font-size:48px; font-weight:800; color:#0B1628; line-height:1; }
.pkg-per { font-size:12px; color:#374151; margin-bottom:24px; font-weight:400; }

.pkg-list { list-style:none; flex:1; display:flex; flex-direction:column; gap:9px; margin-bottom:28px; }
.pkg-list li {
  font-size: 13px; color: #374151;
  display:flex; gap:10px; font-weight:400;
  line-height: 1.5;
}
.pkg-list li::before { content:'✓'; color:#0B1628; font-weight:800; flex-shrink:0; }

.pkg-btn {
  width:100%; padding:13px;
  font-size:12px; font-weight:700; letter-spacing:.05em;
  border: 2px solid #0B1628;
  background: #ffffff; color: #0B1628;
  cursor:pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pkg.hot .pkg-btn { background:#0B1628; color:#ffffff; }
.pkg-btn:hover { background:#F0F3F7; }
.pkg.hot .pkg-btn:hover { background:#162A52; }

/* Quickstart add-on */
.quickstart {
  margin-top: 20px;
  background: #ffffff;
  border: 2px solid #0B1628;
  padding: 28px 32px;
  display: flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap; gap:16px;
}
.qs-left {}
.qs-title { font-size:15px; font-weight:700; color:#0B1628; margin-bottom:4px; }
.qs-desc { font-size:12px; color:#374151; line-height:1.6; }
.qs-price { font-size:28px; font-weight:800; color:#0B1628; white-space:nowrap; }
.qs-per { font-size:11px; color:#374151; }

/* Payment terms strip */
.payment-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap:2px; margin-top:12px;
}
.pay-item {
  background: #F0F3F7;
  padding: 20px 24px;
  border: 1px solid #C9D0DB;
  text-align: center;
}
.pay-val { font-size:14px; font-weight:700; color:#0B1628; margin-bottom:4px; }
.pay-label { font-size:11px; color:#374151; }

/* ═══════════════════════════════
   MONTHLY MAINTENANCE
═══════════════════════════════ */
.maint-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; }
.mcard {
  background: #ffffff;
  padding: 32px 22px;
  border: 2px solid #C9D0DB;
  text-align: center;
}
.mcard.hot { border-color: #0B1628; background: #0B1628; color: #ffffff; }
.mcard-name { font-size:13px; font-weight:700; color:#0B1628; margin-bottom:12px; }
.mcard.hot .mcard-name { color:#ffffff; }
.mcard-price { font-size:36px; font-weight:800; color:#0B1628; line-height:1; margin-bottom:4px; }
.mcard.hot .mcard-price { color:#ffffff; }
.mcard-per { font-size:10px; color:#374151; margin-bottom:16px; }
.mcard.hot .mcard-per { color:rgba(255,255,255,.7); }
.mcard-feat { list-style:none; display:flex; flex-direction:column; gap:7px; text-align:left; }
.mcard-feat li { font-size:11px; color:#374151; display:flex; gap:8px; }
.mcard.hot .mcard-feat li { color:rgba(255,255,255,.85); }
.mcard-feat li::before { content:'·'; font-weight:800; flex-shrink:0; color:#0B1628; }
.mcard.hot .mcard-feat li::before { color:rgba(255,255,255,.6); }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.svc {
  background: #ffffff;
  padding: 32px 26px;
  border: 2px solid #C9D0DB;
}
.svc-icon { font-size:26px; margin-bottom:14px; }
.svc-tag { font-size:9px; font-weight:700; letter-spacing:.35em; text-transform:uppercase; color:var(--A); margin-bottom:7px; display:block; }
.svc-title { font-size:16px; font-weight:700; color:#0B1628; margin-bottom:9px; }
.svc-desc { font-size:12px; color:#374151; line-height:1.75; margin-bottom:14px; font-weight:400; }
.svc-list { list-style:none; display:flex; flex-direction:column; gap:5px; }
.svc-list li { font-size:11px; color:#374151; display:flex; gap:7px; }
.svc-list li::before { content:'→'; color:#0B1628; font-weight:700; flex-shrink:0; }

/* ═══════════════════════════════
   COMPARE
═══════════════════════════════ */
.compare-wrap {
  padding: 80px 48px; background: #ffffff;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
}
.cmp-h { font-size:clamp(26px,3vw,40px); font-weight:800; color:#0B1628; margin-bottom:14px; line-height:1.1; }
.cmp-p { font-size:14px; color:#374151; line-height:1.8; margin-bottom:28px; font-weight:400; }

.tbl { width:100%; border-collapse:collapse; }
.tbl th { font-size:10px; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:#0B1628; padding:11px 10px; text-align:left; border-bottom:2px solid #0B1628; }
.tbl td { padding:11px 10px; font-size:13px; border-bottom:1px solid #C9D0DB; color:#0B1628; font-weight:400; }
.tbl td:first-child { color:#374151; }
.tbl .bad { color:#DC2626; font-weight:600; }
.tbl .good { color:#0B1628; font-weight:700; }

.feat-stack { display:flex; flex-direction:column; gap:3px; }
.feat {
  display:flex; gap:14px; padding:18px 20px;
  background:#F0F3F7; border:1px solid #C9D0DB;
  flex: 1;
  align-items: center;
}
.feat-icon { font-size:20px; flex-shrink:0; }
.feat-title { font-size:13px; font-weight:700; color:#0B1628; margin-bottom:3px; }
.feat-text { font-size:12px; color:#374151; line-height:1.65; font-weight:400; }

/* ═══════════════════════════════
   RESULTS
═══════════════════════════════ */
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; margin-bottom:40px; }
.stat {
  background: #F0F3F7; padding:28px 20px; text-align:center;
  border: 2px solid #C9D0DB; border-top: 4px solid #0B1628;
}
.stat-val { font-size:44px; font-weight:800; color:#0B1628; line-height:1; margin-bottom:6px; }
.stat-label { font-size:11px; color:#374151; line-height:1.55; font-weight:400; }

.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.testi { background:#F0F3F7; padding:26px 22px; border:2px solid #C9D0DB; }
.testi-q { font-family:'Libre Baskerville',serif; font-style:italic; font-size:14px; line-height:1.8; color:#0B1628; margin-bottom:14px; }
.testi-stars { color:#0B1628; font-size:12px; margin-bottom:10px; letter-spacing:2px; }
.testi-who { font-size:11px; color:#374151; }
.testi-who strong { color:#0B1628; font-weight:700; }

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.cta {
  padding: 80px 48px; text-align:center;
  background: #0B1628; color: #ffffff;
}
.cta h2 { font-size:clamp(28px,4.5vw,52px); font-weight:800; line-height:1.05; margin-bottom:14px; color:#ffffff; }
.cta p { font-size:15px; color:rgba(255,255,255,.8); max-width:500px; margin:0 auto 36px; line-height:1.8; font-weight:400; }
.cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-light { padding:12px 30px; background:#ffffff; color:#0B1628; font-size:13px; font-weight:700; border:none; cursor:pointer; text-decoration:none; font-family:'Plus Jakarta Sans',sans-serif; }
.btn-light:hover { background:#F0F3F7; }
.btn-light-ghost { padding:11px 30px; background:transparent; border:2px solid rgba(255,255,255,.5); color:#ffffff; font-size:13px; font-weight:600; cursor:pointer; text-decoration:none; font-family:'Plus Jakarta Sans',sans-serif; }
.btn-light-ghost:hover { border-color:#ffffff; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #0B1628; color:#ffffff;
  padding: 56px 48px 32px;
  border-top: 1px solid #162A52;
}
.foot-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.foot-logo { font-size:18px; font-weight:800; letter-spacing:.08em; color:#ffffff; margin-bottom:10px; }
.foot-logo span { color: var(--A); }
.foot-desc { font-size:12px; color:rgba(255,255,255,.65); line-height:1.8; max-width:240px; margin-bottom:12px; font-weight:400; }
.foot-owner { font-size:10px; color:rgba(255,255,255,.4); padding-top:10px; border-top:1px solid rgba(255,255,255,.1); }
.foot-owner a { color:rgba(255,255,255,.7); text-decoration:none; }
.foot-owner a:hover { color:#ffffff; }

.foot-h { font-size:10px; font-weight:700; letter-spacing:.35em; text-transform:uppercase; color:var(--A); margin-bottom:16px; }
.foot-links { list-style:none; display:flex; flex-direction:column; gap:9px; }
.foot-links a { font-size:12px; color:rgba(255,255,255,.65); text-decoration:none; transition:color .2s; font-weight:400; }
.foot-links a:hover { color:#ffffff; }

.foot-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px; border-top:1px solid rgba(255,255,255,.1);
  font-size:10px; color:rgba(255,255,255,.45);
}
.foot-bottom-r { display:flex; gap:20px; }

/* ═══════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════ */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .55s ease, transform .55s ease; }
.reveal.on { opacity:1; transform:none; }

/* ═══════════════════════════════
   MOBILE
═══════════════════════════════ */
@media(max-width:880px) {
  nav { padding:0 16px; height:56px; }
  .nav-links { display:none; }
  .logo-type { font-size:15px; }
  .nav-cta { padding:7px 16px; font-size:11px; }

  /* HERO — compact, breathing room */
  .hero { grid-template-columns:1fr; padding:80px 16px 40px; min-height:auto; gap:0; }
  .hero-tag { font-size:8px; letter-spacing:.35em; margin-bottom:20px; }
  .hero-h1 { font-size:36px; margin-bottom:16px; }
  .hero-desc { font-size:14px; line-height:1.7; margin-bottom:28px; }
  .hero-btns { gap:8px; }
  .btn-dark, .btn-outline { padding:11px 24px; font-size:12px; }
  .hero-stats { display:flex; flex-direction:row; gap:2px; margin-top:32px; overflow-x:auto; }
  .hstat { padding:16px 16px; min-width:0; flex:1; border-left-width:3px; }
  .hstat-val { font-size:28px; }
  .hstat-label { font-size:10px; }

  /* SECTIONS — less padding, smaller type */
  .sec, .sec-alt, .compare-wrap, .cta { padding:40px 16px; }
  footer { padding:36px 16px 24px; }
  .sec-label { font-size:9px; letter-spacing:.35em; margin-bottom:8px; }
  .sec-title { font-size:24px; margin-bottom:8px; }
  .sec-sub { font-size:13px; margin-bottom:32px; }

  /* PACKAGES — 1 col, compact cards */
  .pkg-grid { grid-template-columns:1fr; gap:12px; }
  .pkg { padding:24px 20px; border-width:1.5px; }
  .pkg.hot { transform:none; box-shadow:0 4px 20px rgba(0,0,0,.1); }
  .pkg-name { font-size:18px; }
  .pkg-price { font-size:36px; }
  .pkg-list li { font-size:12px; }
  .pkg-btn { padding:12px; font-size:11px; }

  /* QUICKSTART */
  .quickstart { flex-direction:column; gap:12px; padding:20px; }
  .qs-price { font-size:22px; }

  /* PAYMENT */
  .payment-strip { grid-template-columns:1fr; gap:4px; }

  /* MAINTENANCE — 2 cols on mobile */
  .maint-grid { grid-template-columns:1fr 1fr; gap:6px; }
  .mcard { padding:20px 14px; }
  .mcard-price { font-size:24px; }
  .mcard-feat li { font-size:10px; }

  /* SERVICES — 1 col */
  .svc-grid { grid-template-columns:1fr; gap:8px; }
  .svc { padding:24px 20px; border-width:1.5px; }
  .svc-title { font-size:15px; }

  /* COMPARE */
  .compare-wrap { grid-template-columns:1fr; gap:32px; }
  .cmp-h { font-size:22px; }
  .tbl td, .tbl th { padding:8px 6px; font-size:11px; }
  .feat { padding:14px 16px; gap:12px; }
  .feat-title { font-size:12px; }
  .feat-text { font-size:11px; }

  /* STATS — 2×2 */
  .stat-grid { grid-template-columns:1fr 1fr; gap:4px; }
  .stat { padding:20px 14px; }
  .stat-val { font-size:32px; }
  .stat-label { font-size:10px; }

  /* TESTIMONIALS — 1 col */
  .testi-grid { grid-template-columns:1fr; gap:8px; }
  .testi { padding:20px 18px; }
  .testi-q { font-size:13px; }

  /* CTA */
  .cta h2 { font-size:26px; }
  .cta p { font-size:13px; }

  /* FOOTER */
  .foot-grid { grid-template-columns:1fr 1fr; gap:20px; }
  .foot-logo { font-size:16px; }
  .foot-bottom { flex-direction:column; gap:8px; text-align:center; font-size:9px; }
}
/* ═══════════════════════════════
   ACCESSIBILITY
═══════════════════════════════ */
.skip-link {
  position:absolute; top:-100px; left:16px;
  background:#0B1628; color:#fff;
  padding:10px 20px; font-size:13px; font-weight:700;
  z-index:9999; transition:top .2s;
}
.skip-link:focus { top:8px; }

*:focus-visible {
  outline:3px solid #1841B0;
  outline-offset:2px;
}

/* Karriereportal section */
.karriere-grid { display:grid; grid-template-columns:1fr 1fr; gap:3px; }
.karriere-card {
  background:#F0F3F7; border:2px solid #C9D0DB;
  padding:24px 22px;
}
.karriere-card-icon { margin-bottom:12px; }
.karriere-card-title { font-size:15px; font-weight:700; color:#0B1628; margin-bottom:6px; }
.karriere-card-text { font-size:12px; color:#374151; line-height:1.7; }
.karriere-highlight {
  background:#0B1628; color:#fff;
  padding:28px 24px; grid-column:1/-1;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; text-align:center;
}
.kh-stat { font-size:32px; font-weight:800; line-height:1; margin-bottom:4px; }
.kh-label { font-size:10px; color:rgba(255,255,255,.7); line-height:1.4; }

@media(max-width:880px) {
  .karriere-grid { grid-template-columns:1fr; }
  .karriere-highlight { grid-template-columns:1fr; gap:16px; }
}
