.homepage-ergonomics-section {
  padding: 90px 20px;
  background-color: var(--hp-bg, #ffffff);
  overflow: hidden;
}

.ergonomics-container {
  max-width: var(--hp-maxw, 1140px);
  margin: 0 auto;
}

/* Grid: Εικόνα αριστερά, Κείμενο δεξιά */
.ergonomics-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

/* --- Εικόνα --- */
.ergonomics-image-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  border-radius: var(--hp-radius, 16px);
  overflow: visible;
}

.logo-panel {
  /* background-color: var(--hp-brand, #1a3a52); */
  /* border-radius: var(--hp-radius, 16px); */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  width: 100%;
  /* box-shadow: var(--hp-shadow-lg, 0 20px 50px rgba(20, 50, 45, 0.14)); */
}

.about-logo {
  /* width: 60%;
  max-width: 300px; */
  height: auto;
  display: block;
  /* filter: brightness(0) invert(1); */
}

.image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--hp-brand-dark, #0f2438);
  color: #ffffff;
  border-radius: var(--hp-radius, 16px);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--hp-shadow, 0 10px 30px rgba(20, 50, 45, 0.08));
}

.badge-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
  opacity: 0.85;
  white-space: nowrap;
}

/* --- Header --- */
.ergonomics-header {
  margin-bottom: 18px;
}

.ergonomics-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--hp-ink, #1a2b2a);
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.title-sub {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--hp-ink-soft, #4a5d5b);
  display: block;
  margin-top: 4px;
}

/* --- Κείμενο --- */
.ergonomics-text-content {
  color: var(--hp-ink-soft, #4a5d5b);
  line-height: 1.65;
}

.ergonomics-mission {
  font-size: 1.05rem;
  color: var(--hp-ink-soft, #4a5d5b);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* --- Approach Block --- */
.approach-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  padding: 22px 24px;
  border-radius: var(--hp-radius, 16px);
  box-shadow: var(--hp-shadow, 0 10px 30px rgba(20, 50, 45, 0.08));
  border-left: 5px solid var(--hp-brand, #1a3a52);
  margin-bottom: 30px;
}

.approach-icon {
  color: var(--hp-brand, #1a3a52);
  flex-shrink: 0;
  margin-top: 2px;
}

.approach-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hp-brand, #1a3a52);
  margin-bottom: 6px;
}

.approach-desc {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* --- Benefits --- */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--hp-ink, #1a2b2a);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background-color: var(--hp-brand-light, #d5e3f0);
  color: var(--hp-brand-dark, #0f2438);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}

/* --- Stat Highlight --- */

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--hp-brand, #1a3a52);
  white-space: nowrap;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--hp-ink-soft, #4a5d5b);
  line-height: 1.5;
}

/* --- Button --- */
.ergonomics-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--hp-brand, #1a3a52);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.ergonomics-btn:hover {
  background-color: var(--hp-accent, #d4a860);
  transform: translateY(-2px);
  color: #ffffff;
}

.ergonomics-btn:hover svg {
  transform: translateX(4px);
}

.ergonomics-btn svg {
  transition: transform 0.3s ease;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .ergonomics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ergonomics-image-content {
    max-width: 420px;
    margin: 0 auto;
  }

  .logo-panel {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .homepage-ergonomics-section {
    padding: 64px 20px;
  }

  .ergonomics-btn {
    width: 100%;
    justify-content: center;
  }

  .logo-panel {
    height: 260px;
  }
}
