/* ==========================================================
   decker & co — Karriere-Landingpage
   Modern & seriös. Rot + Silbergrau. Inter.
   ========================================================== */

:root {
  --red: #DC0A1E;
  --red-700: #B30817;
  --red-50: #FFF1F2;
  --red-100: #FFD9DD;

  --ink: #0E1218;
  --ink-2: #1A1F27;
  --slate-700: #2A3038;
  --slate-600: #4A525C;
  --slate-500: #6B7280;
  --slate-400: #9CA3AF;
  --slate-300: #C9CED6;

  --line: #E5E7EB;
  --line-soft: #EEF0F3;
  --bg-soft: #F5F6F8;
  --bg-soft-2: #FAFBFC;
  --bg-dark: #0E1218;
  --white: #FFFFFF;

  --maxw: 1240px;
  --gutter: 24px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(14,18,24,.04), 0 1px 1px rgba(14,18,24,.04);
  --shadow-md: 0 2px 4px rgba(14,18,24,.04), 0 8px 24px rgba(14,18,24,.06);
  --shadow-lg: 0 4px 8px rgba(14,18,24,.05), 0 24px 60px rgba(14,18,24,.10);

  --t: 220ms cubic-bezier(.4,.0,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- shared layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 110px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #C8CDD5; }

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__h {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  margin: 14px 0 16px;
}
.section__h--light { color: var(--white); }
.section__lede { font-size: 18px; color: var(--slate-500); max-width: 640px; }
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }
.section__lede--light { color: #A2A8B3; }

.accent { color: var(--red); }
.accent--light { color: #FF6E7B; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-600);
  white-space: nowrap;
}
.eyebrow__txt { white-space: normal; }
.eyebrow--light { color: #B6BCC6; }
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(220,10,30,.12);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(220,10,30,.12); }
  50%      { box-shadow: 0 0 0 8px rgba(220,10,30,.04); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(220,10,30,.25); }
.btn--primary:hover { background: var(--red-700); }
.btn--ghost { color: var(--ink); border-color: var(--line); background: var(--white); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: #F1F2F4; }

/* ---------- topstrip ---------- */
.topstrip {
  background: var(--bg-dark);
  color: #B6BCC6;
  font-size: 13px;
  border-bottom: 1px solid #1A1F27;
}
.topstrip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 20px;
}
.topstrip__left, .topstrip__right { display: flex; gap: 22px; align-items: center; }
.topstrip__link, .topstrip__loc {
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t);
}
.topstrip__link:hover { color: #fff; }
.topstrip__link svg, .topstrip__loc svg { width: 14px; height: 14px; }
.topstrip__lang strong { color: #fff; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 32px;
  height: 88px;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 72px;
  width: auto;
}
.logo--footer img { height: 60px; filter: brightness(0) invert(1) drop-shadow(0 0 0 transparent); opacity: 0.95; }
/* footer variant: keep brand colors by using a different approach — actually let it render in original colors so the red stays */
.logo--footer img { filter: none; opacity: 1; }

.nav { display: flex; gap: 28px; margin-left: 12px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
  transition: color var(--t);
  white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { margin-left: auto; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(1100px 600px at 100% 0%, rgba(220,10,30,.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft-2) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(700px 400px at 10% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 400px at 10% 30%, #000 30%, transparent 75%);
  opacity: .55;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__h {
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 22px 0 24px;
  text-wrap: balance;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate-600);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 28px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--slate-600); font-weight: 500;
}
.trust__item svg { width: 18px; height: 18px; color: var(--red); }

.hero__visual { position: relative; aspect-ratio: 4 / 5; }
.hero__visual image-slot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.hero__chip--top { top: 28px; left: -28px; }
.hero__chip--bot { bottom: 32px; right: -28px; }
.hero__chip svg { width: 28px; height: 28px; color: var(--red); }
.chip__big { font-size: 36px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.chip__mid { font-size: 16px; font-weight: 700; color: var(--ink); }
.chip__small { font-size: 12px; font-weight: 600; line-height: 1.25; color: var(--slate-700); }
.chip__small--muted { font-size: 11px; color: var(--slate-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.benefit:nth-child(5) { grid-column: span 6; }
.benefit:nth-child(5) .benefit__t { max-width: 760px; }
.benefit {
  grid-column: span 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px 30px;
  position: relative;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.benefit--wide { grid-column: span 6; }
.benefit--wide .benefit__t { max-width: 720px; }
.benefit:hover { border-color: var(--slate-300); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefit::before {
  content: ''; position: absolute; top: 32px; left: 0;
  width: 4px; height: 36px; background: var(--red); border-radius: 0 4px 4px 0;
}
.benefit__ico {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--red-50);
  color: var(--red);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit__ico svg { width: 26px; height: 26px; }
.benefit__h {
  font-size: 20px; font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.benefit__t { font-size: 15.5px; color: var(--slate-600); line-height: 1.6; }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1A1F27;
  border: 1px solid #1A1F27;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg-dark);
  padding: 36px 32px 32px;
  position: relative;
}
.stat--wide { grid-column: 1 / -1; }
.stat__ico { width: 28px; height: 28px; color: #FF6E7B; margin-bottom: 24px; }
.stat__num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 14px;
}
.stat__num--text { font-size: 28px; letter-spacing: -0.02em; color: #fff; }
.stat__plus { color: var(--red); font-weight: 800; }
.stat__unit { font-size: 28px; font-weight: 600; color: #9CA3AF; margin-left: 4px; letter-spacing: 0; }
.stat__label { font-size: 14.5px; color: #A2A8B3; line-height: 1.5; }
.stat__label strong { color: #fff; font-weight: 600; }
.stat--wide .stat__label { font-size: 16px; max-width: 720px; }

/* ---------- über uns ---------- */
.ueber__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.ueber__copy { max-width: 560px; }
.ueber__p {
  font-size: 17px; color: var(--slate-600); line-height: 1.7;
  margin-bottom: 18px;
}
.ueber__p strong { color: var(--ink); font-weight: 600; }

.ueber__pillars {
  display: flex; align-items: stretch;
  margin-top: 36px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  gap: 28px;
}
.pillar { flex: 1; }
.pillar__year {
  font-size: 32px; font-weight: 800; color: var(--red);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px;
}
.pillar__txt { font-size: 14px; color: var(--slate-600); line-height: 1.5; }
.pillar__sep { width: 1px; background: var(--line); }

.ueber__visual { aspect-ratio: 4 / 5; }
.ueber__visual image-slot {
  display: block; width: 100%; height: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ---------- jobs ---------- */
.jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.job {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.job::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.job:hover { border-color: var(--slate-300); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.job:hover::after { transform: scaleX(1); }
.job__top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.job__ico {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
}
.job__ico svg { width: 24px; height: 24px; }
.job__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-600);
  padding: 5px 10px;
  background: var(--bg-soft);
  border-radius: 4px;
}
.job__h {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.job__meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.job__meta li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--slate-600);
  flex-wrap: wrap;
}
.job__meta svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.job__meta strong { color: var(--ink); font-weight: 600; }
.job__deal {
  font-size: 14.5px; color: var(--slate-600); line-height: 1.6;
  padding: 14px 16px; background: var(--bg-soft); border-radius: var(--r-sm);
  margin-bottom: 20px;
}
.job__deal strong { color: var(--ink); font-weight: 600; }
.job__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--red); font-size: 15px;
}
.job__cta svg { width: 18px; height: 18px; transition: transform var(--t); }
.job:hover .job__cta svg { transform: translateX(4px); }

.stellen__hint {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--slate-500); font-size: 14.5px;
  padding: 18px;
}
.stellen__hint svg { width: 18px; height: 18px; color: var(--red); }

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head .btn { margin-top: 24px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq__item[open] { border-color: var(--slate-300); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 24px;
  font-weight: 600; font-size: 16.5px; color: var(--ink);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: background var(--t), border-color var(--t);
}
.faq__toggle::before, .faq__toggle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform var(--t), background var(--t);
}
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__toggle { background: var(--red); border-color: var(--red); }
.faq__item[open] .faq__toggle::before,
.faq__item[open] .faq__toggle::after { background: #fff; }
.faq__item[open] .faq__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item p {
  padding: 0 24px 24px;
  color: var(--slate-600);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------- contacts ---------- */
.contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid; grid-template-columns: 96px 1fr; gap: 24px;
  align-items: center;
  transition: border-color var(--t), box-shadow var(--t);
}
.contact:hover { border-color: var(--slate-300); box-shadow: var(--shadow-md); }
.contact__photo image-slot {
  display: block; width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg-soft);
  overflow: hidden;
}
.contact__role {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: var(--red); margin-bottom: 4px;
}
.contact__name {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.contact__links { display: flex; flex-direction: column; gap: 8px; }
.contact__links a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--slate-600);
  transition: color var(--t);
}
.contact__links a:hover { color: var(--ink); }
.contact__links svg { width: 16px; height: 16px; color: var(--red); }

/* ---------- final CTA ---------- */
.finalcta {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 100% 50%, rgba(220,10,30,.25), transparent 60%);
}
.finalcta__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 72px 0;
  flex-wrap: wrap;
}
.finalcta__h {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 14px;
  max-width: 640px;
}

/* ---------- footer ---------- */
.footer {
  background: #07090C;
  color: #8C939E;
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer__brand .logo { color: #fff; margin-bottom: 18px; }
.footer__brand .logo__d, .footer__brand .logo__co { color: #fff; }
.footer__addr { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer__col h4 {
  color: #fff; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px; font-weight: 600;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; color: #8C939E; transition: color var(--t); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid #1A1F27;
  padding: 22px 0;
  font-size: 13px;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom a { color: #8C939E; transition: color var(--t); }
.footer__bottom a:hover { color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit, .benefit--wide { grid-column: span 1; }
  .benefits .benefit:nth-child(5) { grid-column: span 2; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .jobs { grid-template-columns: 1fr 1fr; }
  .jobs .job:nth-child(3) { grid-column: 1 / -1; }

  .hero__grid { gap: 40px; }
  .ueber__grid { gap: 48px; }
  .faq__grid { gap: 48px; }
  .faq__head { position: static; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 64px; }
  .header__inner { height: 64px; gap: 16px; }
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 4/3; }
  .hero__chip { display: none; }
  .benefits { grid-template-columns: 1fr; }
  .benefits .benefit:nth-child(1),
  .benefits .benefit:nth-child(5) { grid-column: 1; }
  .stats { grid-template-columns: 1fr; }
  .stat--wide { grid-column: 1; }
  .ueber__grid { grid-template-columns: 1fr; }
  .jobs { grid-template-columns: 1fr; }
  .jobs .job:nth-child(3) { grid-column: 1; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .contacts { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 80px 1fr; padding: 24px; }
  .contact__photo image-slot { width: 80px; height: 80px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .topstrip__loc, .topstrip__lang { display: none; }
}
