/* ============================================================
   IKB-TECH — Inner Pages CSS
   ============================================================ */

.page-hero {
  padding: 160px 0 80px;
  text-align: left;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}

/* Leistungen Page */
.leistungen-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.leistung-full-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.leistung-full-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.leistung-full-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.leistung-full-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.leistung-full-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Karriere Page */
.karriere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.career-value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--transition);
}

.career-value-card:hover { border-color: var(--gold); }

.career-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.career-value-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.job-listing {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all var(--transition);
}

.job-listing:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.job-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  background: var(--off-white);
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Unternehmen Page */
.team-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* 404 Page */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: var(--navy-deep);
}

.not-found .big-num {
  font-size: clamp(6rem, 20vw, 16rem);
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.not-found h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.not-found p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 400px;
}
