:root {
  --rh-primary: #2f6f57;
  --rh-primary-dark: #245742;
  --rh-secondary: #f4efe6;
  --rh-accent: #dca94b;
  --rh-text: #21302a;
  --rh-muted: #6b7b73;
  --rh-border: #dfe7e2;
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33, 48, 42, 0.08);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rh-primary);
}

.btn-primary {
  background-color: var(--rh-primary);
  border-color: var(--rh-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--rh-primary-dark);
  border-color: var(--rh-primary-dark);
}

.btn-outline-primary {
  color: var(--rh-primary);
  border-color: var(--rh-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--rh-primary);
  border-color: var(--rh-primary);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(220, 169, 75, 0.18), transparent 25%),
    linear-gradient(180deg, #f9f5ee 0%, #fcfcfa 100%);
  padding: 7rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 111, 87, 0.08);
  color: var(--rh-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero p.lead {
  max-width: 44rem;
  color: var(--rh-muted);
  font-size: 1.15rem;
}

.hero-card,
.feature-card,
.company-card,
.metric-card,
.cta-card {
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2rem rgba(33, 48, 42, 0.05);

  /* Schutz gegen Textüberlauf */
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  min-width: 0;
}

.metric-card {
  height: auto;
}

.search-card {
  margin-top: 2rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2rem rgba(33, 48, 42, 0.06);
}

.section-eyebrow {
  color: var(--rh-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-copy {
  color: var(--rh-muted);
  max-width: 46rem;
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  background: rgba(47, 111, 87, 0.1);
  color: var(--rh-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-card,
.company-card,
.metric-card,
.cta-card {
  padding: 1.5rem;
  height: 100%;
}

.feature-card h3,
.company-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.company-tag,
.pill {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f4f7f5;
  color: var(--rh-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.metric-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rh-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.profile-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  padding: 1.5rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-placeholder {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--rh-secondary);
  color: var(--rh-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--rh-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rh-primary);
  font-weight: 700;
}

.soft-section {
  background: #f7f5f0;
  border-top: 1px solid rgba(33, 48, 42, 0.05);
  border-bottom: 1px solid rgba(33, 48, 42, 0.05);
}

footer {
  background: #1f2c27;
  color: rgba(255, 255, 255, 0.85);
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.info-panel {
  background: #f7faf8;
  border: 1px solid var(--rh-border);
}
