/* =========================
   HERO SECTIONS
========================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  overflow: hidden;
}

.hero-short {
  min-height: 52vh;
}

/* Background image overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,24,39,0.92) 0%,
    rgba(17,24,39,0.75) 50%,
    rgba(17,24,39,0.6) 100%
  );
  z-index: 1;
}

.hero-overlay-strong {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.78);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(21,128,61,0.15);
  border: 1px solid rgba(21,128,61,0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-content .hero-sub {
  color: #D1D5DB;
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-item {}
.hero-stat-item .stat-number { font-size: 2rem; font-weight: 700; color: var(--white); }
.hero-stat-item .stat-label  { font-size: 0.8rem; color: #6B7280; margin-top: 0.2rem; letter-spacing: 0.04em; }

/* =========================
   INTRO BAND
========================= */
.intro-band {
  background: var(--gray-1);
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}

.intro-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.intro-band-text { flex: 1; }
.intro-band-text p { color: var(--dark-3); font-size: 1.05rem; line-height: 1.75; margin: 0; }
.intro-band-action { flex-shrink: 0; }

/* =========================
   SERVICES (Light Background)
========================= */
.services-section {
  background: var(--white);
}

.service-card-new {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card-new:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(21,128,61,0.12);
  transform: translateY(-3px);
}

.service-card-new h3 {
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card-new p {
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.service-card-new ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card-new ul li {
  font-size: 0.85rem;
  color: var(--dark-3);
  padding-left: 1.25rem;
  position: relative;
}

.service-card-new ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green);
}

/* =========================
   VALUES (Dark Background)
========================= */
.values-section {
  background: var(--dark);
}

.value-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
}

.value-card:hover {
  border-color: var(--green);
  background: var(--dark-3);
}

.value-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.value-card p {
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
  background: var(--gray-1);
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}

.testimonial-card-new {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.testimonial-card-new p {
  color: var(--dark-3);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: #9CA3AF;
}

.stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* =========================
   CERTS / BADGES
========================= */
.certs-section {
  background: var(--white);
}

.cert-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cert-item-new {
  border: 1px solid var(--gray-3);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.cert-item-new:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(21,128,61,0.1);
}

.cert-item-new svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}

.cert-item-new span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

/* =========================
   CTA FINAL
========================= */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21,128,61,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: #9CA3AF;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* =========================
   ABOUT PAGE
========================= */
.about-intro {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 420px;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-intro-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-badge .badge-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.about-intro-badge .badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.about-intro-badge .badge-text span {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* Team */
.team-section { background: var(--gray-1); border-top: 1px solid var(--gray-3); }

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s;
}

.team-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(21,128,61,0.1);
  transform: translateY(-3px);
}

.team-avatar-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--green);
}

.team-avatar-new svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.team-card h4 { color: var(--dark); margin-bottom: 0.25rem; }
.team-card .role { color: var(--green); font-size: 0.85rem; font-weight: 600; }
.team-card .desc { color: #9CA3AF; font-size: 0.825rem; margin-top: 0.5rem; }

/* Quals */
.quals-section { background: var(--dark); }

.qual-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s;
}

.qual-card:hover {
  border-color: var(--green);
}

.qual-card h3 { color: var(--white); margin: 0.75rem 0 0.5rem; font-size: 1.1rem; }
.qual-card p  { color: #9CA3AF; font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* =========================
   SERVICES PAGE
========================= */
.services-page-section { background: var(--white); }

.process-section { background: var(--gray-1); border-top: 1px solid var(--gray-3); border-bottom: 1px solid var(--gray-3); }

.process-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.process-step-new {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.process-step-new:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--gray-3);
  z-index: 0;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step-new h3 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1rem; }
.process-step-new p  { color: #6B7280; font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* Industries */
.industries-section { background: var(--dark); }

.industry-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  transition: all 0.2s;
}

.industry-pill:hover {
  border-color: var(--green);
  background: rgba(21,128,61,0.1);
}

.industry-pill svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.industry-pill span {
  color: #D1D5DB;
  font-weight: 500;
  font-size: 0.9rem;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-sidebar {}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-3);
}

.contact-info-item:first-child { border-top: 1px solid var(--gray-3); }

.contact-info-item .icon-wrap { margin-bottom: 0; }

.contact-info-item h4 { color: var(--dark); font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a {
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
}
.contact-info-item a:hover { color: var(--green); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-box h3 { color: var(--dark); margin-bottom: 0.5rem; }
.contact-form-box .sub { color: #9CA3AF; font-size: 0.875rem; margin-bottom: 2rem; }

.map-section { background: var(--gray-1); border-top: 1px solid var(--gray-3); }

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-3);
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* =========================
   JOBS PAGE
========================= */
.jobs-intro-section { background: var(--white); }
.job-offers-section { background: var(--gray-1); border-top: 1px solid var(--gray-3); }
.benefits-section   { background: var(--white); }
.apply-section      { background: var(--dark); }

.job-card-new {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s;
}

.job-card-new:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(21,128,61,0.1);
  transform: translateY(-3px);
}

.job-card-new h3 { color: var(--dark); margin-bottom: 0.5rem; }
.job-card-new .job-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.job-card-new p { color: #6B7280; font-size: 0.9rem; line-height: 1.65; }

.job-requirements-new {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.job-requirements-new li {
  font-size: 0.85rem;
  color: var(--dark-3);
  padding-left: 1.25rem;
  position: relative;
}

.job-requirements-new li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.benefit-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  transition: all 0.2s;
}

.benefit-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(21,128,61,0.08);
}

.benefit-card h3 { color: var(--dark); margin-bottom: 0.4rem; font-size: 1rem; }
.benefit-card p  { color: #6B7280; font-size: 0.875rem; line-height: 1.6; margin: 0; }

.apply-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}

.apply-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.apply-method:last-child { border-bottom: none; }

.apply-method svg { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
.apply-method h4 { color: var(--white); margin-bottom: 0.2rem; }
.apply-method a  { color: #9CA3AF; font-size: 0.9rem; transition: color 0.2s; }
.apply-method a:hover { color: var(--green); }

/* =========================
   LEGAL PAGE (Impressum/Datenschutz)
========================= */
.legal-section { background: var(--white); }

.legal-inner {
  max-width: 800px;
}

.legal-inner h1 { color: var(--dark); margin-bottom: 2rem; }
.legal-inner h2 {
  color: var(--dark);
  font-size: 1.1rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-3);
}
.legal-inner h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-inner p  { color: #4B5563; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-inner a  { color: var(--green); }
.legal-inner a:hover { text-decoration: underline; }
.legal-note { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-3); color: #9CA3AF; font-size: 0.825rem; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .process-grid-new { grid-template-columns: repeat(2, 1fr); }
  .process-step-new:not(:last-child)::after { display: none; }
  .about-intro-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-content { padding: 4rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .cta-btn,
  .hero-actions .cta-btn-outline { width: 100%; text-align: center; }
  .intro-band-inner { flex-direction: column; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-image { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid-new { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero .hero-content h1 { font-size: 1.8rem; }
  .contact-form-box { padding: 1.5rem; }
  .apply-box { padding: 1.5rem; }
}