/* ============================================================
   Prompt Puls People GmbH – Website Styles
   Farbpalette aus dem Firmenlogo: #F42F32 (Rot), #A0080B (Dunkelrot)
   ============================================================ */

:root {
  --red: #F42F32;
  --red-dark: #A0080B;
  --red-deeper: #7C0507;
  --ink: #201717;
  --muted: #6E6060;
  --bg: #FFFFFF;
  --bg-soft: #FBF6F5;
  --bg-tint: #FDEDED;
  --line: #F1E3E2;
  --dark: #1A1111;
  --dark-2: #251616;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(160, 8, 11, 0.09);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-weight: 800; letter-spacing: 0.06em; font-size: 16px;
  color: var(--red); text-transform: uppercase;
}
.brand-sub { font-size: 11.5px; color: var(--muted); letter-spacing: 0.02em; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a.nav-link {
  color: var(--ink); font-weight: 600; font-size: 15px;
}
.main-nav a.nav-link:hover { color: var(--red); text-decoration: none; }
.main-nav a.nav-link[aria-current="page"] {
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; font-size: 22px; line-height: 1;
  padding: 6px 10px; cursor: pointer; color: var(--ink);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; text-decoration: none !important;
  transition: all 0.18s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: var(--bg-tint); }
.btn-light { background: #fff; color: var(--red-dark); }
.btn-light:hover { transform: translateY(-1px); }
.btn-ghost-light { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn-nav { padding: 10px 20px; font-size: 14.5px; }

/* ---------------- Hero (Startseite, dunkel) ---------------- */
.hero-dark {
  background:
    radial-gradient(900px 420px at 78% -10%, rgba(244, 47, 50, 0.32), transparent 62%),
    radial-gradient(700px 380px at -8% 110%, rgba(160, 8, 11, 0.35), transparent 60%),
    var(--dark);
  color: #fff;
  padding: 92px 0 84px;
}
.hero-kicker {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #FF9C9E;
  background: rgba(244, 47, 50, 0.14); border: 1px solid rgba(244, 47, 50, 0.4);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-dark h1 {
  font-size: clamp(38px, 5.4vw, 60px); line-height: 1.06;
  font-weight: 800; letter-spacing: -0.015em; max-width: 780px;
}
.hero-dark h1 .accent { color: var(--red); }
.hero-sub {
  margin-top: 20px; font-size: clamp(17px, 2vw, 20px);
  color: #E8D9D9; max-width: 640px;
}
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-facts { margin-top: 42px; display: flex; gap: 10px; flex-wrap: wrap; }
.fact-chip {
  font-size: 13.5px; font-weight: 600; color: #F6E9E9;
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  padding: 7px 15px; background: rgba(255, 255, 255, 0.06);
}

/* ---------------- Hero (Unterseiten, hell) ---------------- */
.hero-sub-page {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
  padding: 64px 0 46px; border-bottom: 1px solid var(--line);
}
.hero-sub-page h1 {
  font-size: clamp(30px, 4vw, 44px); line-height: 1.12;
  font-weight: 800; letter-spacing: -0.01em; max-width: 760px;
}
.hero-sub-page .lead { margin-top: 14px; font-size: 18px; color: var(--muted); max-width: 680px; }

/* ---------------- Sections ---------------- */
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-kicker {
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15;
  font-weight: 800; margin-top: 8px; letter-spacing: -0.01em;
}
.section-head p { margin-top: 12px; color: var(--muted); font-size: 17px; }

/* ---------------- Cards & Grids ---------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
}
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card ul { margin: 14px 0 0 18px; color: var(--ink); font-size: 15.5px; }
.card ul li { margin-bottom: 7px; }
.card .card-link { display: inline-block; margin-top: 18px; font-weight: 700; color: var(--red); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--bg-tint);
  color: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; font-weight: 800;
}
.card-audience { border-top: 4px solid var(--red); }

/* ---------------- Chips (Rollen) ---------------- */
.chip-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff; border: 1.5px solid var(--line); color: var(--ink);
  font-weight: 600; font-size: 14.5px; padding: 9px 18px; border-radius: 999px;
}
.chip-red { background: var(--bg-tint); border-color: #F8C9CA; color: var(--red-dark); }

/* ---------------- Prozess-Schritte ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red);
  color: #fff; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------------- Kandidaten-Profil-Karte ---------------- */
.profile-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red);
  border-radius: var(--radius); padding: 34px 34px; box-shadow: var(--shadow);
}
.profile-tag {
  display: inline-block; background: var(--bg-tint); color: var(--red-dark);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 999px; padding: 5px 13px; margin-bottom: 14px;
}
.profile-card h3 { font-size: 22px; font-weight: 800; }
.profile-card .ref { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.profile-card .desc { margin-top: 14px; color: var(--muted); font-size: 15.5px; }
.profile-facts { list-style: none; margin-top: 6px; }
.profile-facts li {
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px;
  display: flex; justify-content: space-between; gap: 12px;
}
.profile-facts li:last-child { border-bottom: none; }
.profile-facts b { font-weight: 700; }

/* ---------------- CTA-Band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 78%, var(--red-deeper) 100%);
  color: #fff; padding: 64px 0;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.01em; max-width: 640px; }
.cta-band p { margin-top: 10px; color: #FFE3E3; font-size: 17px; max-width: 560px; }
.cta-band .hero-ctas { margin-top: 28px; }

/* ---------------- FAQ ---------------- */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px; margin-bottom: 12px;
}
.faq summary { font-weight: 700; cursor: pointer; font-size: 16px; }
.faq details p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }

/* ---------------- Formular ---------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 14px; display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-family: var(--font); font-size: 15.5px;
  background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(244, 47, 50, 0.14);
}
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

.contact-tile { text-align: left; }
.contact-tile .card-icon { margin-bottom: 12px; }
.contact-tile b { display: block; font-size: 16px; margin-bottom: 4px; }
.contact-tile a { font-weight: 700; }

/* ---------------- Rechtstexte ---------------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 34px 0 10px; }
.legal h3 { font-size: 17px; font-weight: 700; margin: 22px 0 8px; }
.legal p, .legal li { color: #453B3B; font-size: 15.5px; }
.legal ul { margin: 10px 0 10px 20px; }
.legal .placeholder { background: #FFF3C4; padding: 2px 6px; border-radius: 5px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--dark); color: #E9DCDC; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
  padding: 56px 22px 40px;
}
.site-footer .brand-name { color: var(--red); }
.site-footer .brand-sub { color: #B9A6A6; }
.footer-title { font-weight: 800; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: #D8C7C7; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 22px; font-size: 13.5px; color: #B9A6A6;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-brand-desc { margin-top: 14px; max-width: 300px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr 1fr; }
  .profile-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 660px) {
  .grid-2, .grid-3, .grid-4, .steps, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 22px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav a.nav-link { padding: 10px 0; font-size: 16px; }
  .hero-dark { padding: 64px 0 58px; }
  .section { padding: 52px 0; }
}
