﻿.his-open-section {
  background: #f5f6f8;
  padding: 72px 0;
}

.his-open-heading {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #111111;
  margin: 8px 0 12px 0;
}

.his-open-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(2,6,23,0.55);
  margin: 0 0 32px 0;
}

.his-open-list {
  display: flex;
  flex-direction: column;
}

.his-open-row {
  display: grid;
  grid-template-columns: 1fr 2fr 32px;
  align-items: center;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  border-radius: 6px;
}

.his-open-list a:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.his-open-row:hover {
  background: rgba(27,79,255,0.04);
}

.his-open-name {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #111111;
}

.his-open-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(2,6,23,0.55);
}

.his-open-arrow {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1b4fff;
  text-align: right;
  transition: transform 0.15s;
}

.his-open-row:hover .his-open-arrow {
  transform: translateX(4px);
}

.his-portal-section {
  background: #ffffff;
  padding: 72px 0;
}

.his-portal-heading {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #111111;
  margin: 8px 0 12px 0;
}

.his-portal-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(2,6,23,0.55);
  margin: 0 0 40px 0;
}

.his-portal-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: start;
  gap: 0 16px;
}

.his-portal-card {
  border-radius: 16px;
  padding: 28px 28px 24px 28px;
  border: 1.5px solid transparent;
}

.his-portal-card--blue {
  background: #f0f4ff;
  border-color: rgba(27,79,255,0.15);
}

.his-portal-card--green {
  background: #f0faf6;
  border-color: rgba(16,185,129,0.15);
}

.his-portal-card-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px 0;
}

.his-portal-card--blue .his-portal-card-kicker {
  color: #1b4fff;
}

.his-portal-card--green .his-portal-card-kicker {
  color: #10b981;
}

.his-portal-card-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #111111;
  margin: 0 0 8px 0;
}

.his-portal-card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(2,6,23,0.55);
  margin: 0 0 20px 0;
}

.his-portal-rows {
  display: flex;
  flex-direction: column;
}

.his-portal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(27,79,255,0.1);
  text-decoration: none;
  color: #111111;
  transition: background 0.15s;
  border-radius: 4px;
}

.his-portal-row:first-child {
  border-top: 1px solid rgba(27,79,255,0.1);
}

.his-portal-row:hover {
  background: rgba(27,79,255,0.05);
}

.his-portal-row--green {
  border-bottom-color: rgba(16,185,129,0.15);
}

.his-portal-row--green:first-child {
  border-top-color: rgba(16,185,129,0.15);
}

.his-portal-row--green:hover {
  background: rgba(16,185,129,0.05);
}

.his-portal-row-name {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: #111111;
}

.his-portal-row-arrow {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: #1b4fff;
  transition: transform 0.15s;
}

.his-portal-row--green .his-portal-row-arrow {
  color: #10b981;
}

.his-portal-row:hover .his-portal-row-arrow {
  transform: translateX(4px);
}

.his-portal-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

.his-portal-connector-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .his-portal-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .his-portal-connector {
    padding-top: 0;
  }
  .his-open-row {
    grid-template-columns: 1fr 32px;
    grid-template-rows: auto auto;
  }
  .his-open-desc {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .his-open-arrow {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
  }
}

/* === HIS ECO SECTION === */
.his-eco-section {
  background: #f5f6f8;
  padding: 72px 0 56px 0;
}
.his-eco-heading {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: #111111;
  margin: 8px 0 16px 0;
}
.his-eco-intro {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(2,6,23,0.6);
  max-width: 620px;
  margin: 0 0 40px 0;
  line-height: 1.6;
}
.his-eco-grid {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 40px;
}
.his-eco-side {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 28px 24px 28px;
  border: 1.5px solid transparent;
}
.his-eco-side--blue {
  border-color: rgba(27,79,255,0.15);
}
.his-eco-side--green {
  border-color: rgba(16,185,129,0.15);
}
.his-eco-side-label {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px 0;
}
.his-eco-side--blue .his-eco-side-label { color: #1b4fff; }
.his-eco-side--green .his-eco-side-label { color: #10b981; }
.his-eco-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.his-eco-side-list li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(2,6,23,0.75);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.his-eco-side-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.3;
}
.his-eco-side--blue .his-eco-side-list li::before { color: #1b4fff; }
.his-eco-side--green .his-eco-side-list li::before { color: #10b981; }
.his-eco-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}
.his-eco-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.his-eco-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.his-eco-arrow-right,
.his-eco-arrow-left {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(2,6,23,0.25);
}
.his-eco-shared {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.his-eco-shared-label {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(2,6,23,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  white-space: nowrap;
}
.his-eco-shared-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.his-eco-shared-item {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  color: rgba(2,6,23,0.55);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  transition: color 0.15s, border-color 0.15s;
}
.his-eco-shared-item:hover {
  color: #1b4fff;
  border-color: rgba(27,79,255,0.3);
}

/* === HIS PORTALS SECTION === */
.his-portals-section {
  background: #ffffff;
  padding: 72px 0;
}
.his-portals-heading {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #111111;
  margin: 8px 0 40px 0;
}
.his-portals-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 16px;
  align-items: start;
}
.his-portals-card {
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid transparent;
}
.his-portals-card--blue {
  background: #f0f4ff;
  border-color: rgba(27,79,255,0.15);
}
.his-portals-card--green {
  background: #f0faf6;
  border-color: rgba(16,185,129,0.15);
}
.his-portals-card-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px 0;
}
.his-portals-card--blue .his-portals-card-kicker { color: #1b4fff; }
.his-portals-card--green .his-portals-card-kicker { color: #10b981; }
.his-portals-card-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: #111111;
  margin: 0 0 8px 0;
}
.his-portals-card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(2,6,23,0.55);
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.his-portals-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.his-portals-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.his-portals-card-features li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(2,6,23,0.65);
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}
.his-portals-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 0.75rem;
}
.his-portals-card--blue .his-portals-card-features li::before { color: #1b4fff; }
.his-portals-card--green .his-portals-card-features li::before { color: #10b981; }
.his-portals-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
}
.his-portals-divider-line {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.12);
}
.his-portals-divider-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-green {
  background: #10b981;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-green:hover { background: #0ea370; }

/* === HIS SERVICES SECTION === */
.his-services-section {
  background: #f5f6f8;
  padding: 64px 0;
}
.his-services-heading {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: #111111;
  margin: 8px 0 28px 0;
}
.his-services-list {
  display: flex;
  flex-direction: column;
}
.his-services-row {
  display: grid;
  grid-template-columns: 180px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: background 0.15s;
}
.his-services-list a:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}
.his-services-row:hover {
  background: rgba(27,79,255,0.04);
}
.his-services-name {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #111111;
}
.his-services-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(2,6,23,0.5);
}
.his-services-arrow {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1b4fff;
  text-align: right;
  transition: transform 0.15s;
}
.his-services-row:hover .his-services-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .his-eco-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  .his-eco-center {
    padding-top: 0;
    padding-bottom: 8px;
  }
  .his-eco-arrows {
    flex-direction: row;
    gap: 12px;
  }
  .his-portals-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  .his-portals-divider {
    flex-direction: row;
    padding-top: 0;
  }
  .his-portals-divider-line {
    width: 32px;
    height: 1px;
  }
  .his-services-row {
    grid-template-columns: 1fr 28px;
    grid-template-rows: auto auto;
  }
  .his-services-desc {
    grid-column: 1 / 2;
  }
  .his-services-arrow {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
  }
}

/* === ANIMATION 1 — HERO ENTRANCE === */
.his-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.his-page-ready .his-reveal {
  opacity: 1;
  transform: translateY(0);
}

.his-page-ready .his-reveal:nth-child(1) { transition-delay: 0.05s; }
.his-page-ready .his-reveal:nth-child(2) { transition-delay: 0.15s; }
.his-page-ready .his-reveal:nth-child(3) { transition-delay: 0.25s; }
.his-page-ready .his-reveal:nth-child(4) { transition-delay: 0.38s; }

/* === ANIMATION 2 — ÖKO CARDS SLIDE-IN === */
.his-eco-side--blue,
.his-eco-center,
.his-eco-side--green {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.his-eco-side--blue {
  transform: translateX(-40px);
}

.his-eco-center {
  transform: scale(0.7);
}

.his-eco-side--green {
  transform: translateX(40px);
}

.his-eco-side--blue.his-eco-visible,
.his-eco-center.his-eco-visible,
.his-eco-side--green.his-eco-visible {
  opacity: 1;
  transform: none;
}

.his-eco-center.his-eco-visible {
  transition-delay: 0.18s;
}

.his-eco-side--green.his-eco-visible {
  transition-delay: 0.09s;
}

/* === ABSTÄNDE VERRINGERT === */
.his-eco-section      { padding: 48px 0 20px 0; }
.his-portals-section  { padding: 24px 0 48px 0; }
.his-services-section { padding: 44px 0; }

.his-page .page-root > .page-inner { padding-bottom: 40px; }

.his-portals-heading  { margin-top: 0; }

/* =============================================
   HIS SPLIT HERO
   ============================================= */

.his-split {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  grid-template-rows: 1fr auto;
  height: auto;
  position: relative;
  overflow: hidden;
}

.his-split-side {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 28px 40px;
  transition: filter 0.25s ease;
  grid-row: 1;
}

.his-split-side--blue {
  background: #0f2d99;
}

.his-split-side--green {
  background: #0a7a56;
}

.his-split-side:hover {
  filter: brightness(1.1);
}

.his-split-inner {
  max-width: 340px;
}

.his-split-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 12px 0;
}

.his-split-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.15;
}

.his-split-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.his-split-list li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.his-split-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}

.his-split-cta {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: #ffffff;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.his-split-side:hover .his-split-cta {
  border-color: #ffffff;
}

.his-split-center {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  gap: 10px;
  z-index: 2;
  box-shadow: 0 0 32px rgba(0,0,0,0.18);
}

.his-split-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.his-split-center-label {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: 0.6875rem;
  color: rgba(2,6,23,0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.his-split-bar {
  grid-column: 1 / -1;
  grid-row: 2;
  background: #f5f6f8;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  flex-wrap: wrap;
}

.his-split-bar-label {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(2,6,23,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.his-split-bar-link {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  color: rgba(2,6,23,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.his-split-bar-link:hover {
  color: #1b4fff;
}

.his-split-bar-sep {
  font-family: "Inter", sans-serif;
  color: rgba(2,6,23,0.2);
  font-size: 0.75rem;
}

.his-split-side--blue {
  animation: his-slide-from-left 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.his-split-side--green {
  animation: his-slide-from-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
}

.his-split-center {
  animation: his-fade-in 0.5s ease both;
  animation-delay: 0.3s;
}

.his-split-bar {
  animation: his-fade-in 0.5s ease both;
  animation-delay: 0.45s;
}

@keyframes his-slide-from-left {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes his-slide-from-right {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes his-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 768px) {
  .his-split {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr auto auto;
    height: auto;
  }
  .his-split-side--blue {
    grid-row: 1;
    padding: 24px 24px;
  }
  .his-split-side--green {
    grid-row: 2;
    padding: 24px 24px;
  }
  .his-split-center {
    grid-row: 3;
    grid-column: 1;
    flex-direction: row;
    padding: 12px 24px;
    justify-content: center;
    box-shadow: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .his-split-bar {
    grid-row: 4;
    grid-column: 1;
  }
  .his-split-side--blue,
  .his-split-side--green {
    animation: his-fade-in 0.6s ease both;
  }
}

/* =============================================
   HIS UNIFIED SECTION (replaced by his-yy below)
   ============================================= */

.his-unified {
  display: flex;
  flex-direction: column;
}

/* Band */
.his-unified-band {
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 32px;
  flex-wrap: wrap;
  animation: his-fade-in 0.5s ease both;
  animation-delay: 0.1s;
}

.his-unified-band-icon {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.4);
}

.his-unified-band-text {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  letter-spacing: -0.01em;
}

.his-unified-band-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* Cards row */
.his-unified-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

.his-unified-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 48px 56px;
  transition: filter 0.2s ease;
  animation: his-fade-in 0.6s ease both;
}

.his-unified-card:nth-child(1) { animation-delay: 0.18s; }
.his-unified-card:nth-child(2) { animation-delay: 0.28s; }

.his-unified-card--blue {
  background: #0f2d99;
}

.his-unified-card--green {
  background: #0a7a56;
}

.his-unified-card:hover {
  filter: brightness(1.08);
}

.his-unified-card-top {
  margin-bottom: 32px;
}

.his-unified-card-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px 0;
}

.his-unified-card-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
}

.his-unified-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.his-unified-card-list li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.his-unified-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  top: 0.1em;
}

.his-unified-card-footer {
  margin-top: 36px;
}

.his-unified-card-cta {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.his-unified-card:hover .his-unified-card-cta {
  border-color: #ffffff;
}

/* Bottom bar */
.his-unified-bar {
  background: #f5f6f8;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  flex-wrap: wrap;
  animation: his-fade-in 0.5s ease both;
  animation-delay: 0.4s;
}

.his-unified-bar-label {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(2,6,23,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.his-unified-bar-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(2,6,23,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.his-unified-bar-link:hover {
  color: #1b4fff;
}

.his-unified-bar-sep {
  color: rgba(2,6,23,0.2);
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .his-unified-cards {
    grid-template-columns: 1fr;
  }

  .his-unified-card {
    padding: 36px 24px;
  }

  .his-unified-band {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 20px 24px;
  }

  .his-unified-band-sub {
    display: none;
  }
}

/* =============================================
   HIS YIN-YANG SECTION (SUIT/JACKET DESIGN)
   ============================================= */

.his-yy {
  display: flex;
  flex-direction: column;
}

/* BAND */
.his-yy-band {
  background: #0B1F3A;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 52px;
  flex-wrap: wrap;
}
.his-yy-band-icon {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}
.his-yy-band-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}
.his-yy-band-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  margin-left: auto;
}

/* CARD WRAPPER */
.his-yy-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 52px 36px;
}

/* LEFT CARD: Unternehmen */
.his-yy-side--blue {
  background:
    radial-gradient(ellipse 90% 80% at 10% 20%, rgba(27,79,255,.18), transparent 60%),
    #e8eeff;
  display: flex;
  align-items: flex-start;
  padding: 36px 36px 32px;
  border-radius: 18px;
  border: 1.5px solid rgba(27,79,255,0.14);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* RIGHT CARD: Fachkräfte */
.his-yy-side--green {
  background:
    radial-gradient(ellipse 90% 80% at 90% 80%, rgba(16,185,129,.18), transparent 60%),
    #e4f9f2;
  display: flex;
  align-items: flex-start;
  padding: 36px 36px 32px;
  border-radius: 18px;
  border: 1.5px solid rgba(16,185,129,0.2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* CONTENT */
.his-yy-content {
  width: 100%;
}

.his-yy-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px 0;
}

.his-yy-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  color: #0b0f19;
  margin: 0 0 20px 0;
  line-height: 1.12;
}

.his-yy-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.his-yy-list li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(11,15,25,.72);
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}

.his-yy-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 0.65rem;
  color: rgba(11,15,25,.25);
  top: 3px;
}

.his-yy-cta {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.65;
  padding-bottom: 2px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.his-yy-cta:hover { opacity: 1; }

.his-yy-side--blue .his-yy-kicker { color: #1b4fff; }
.his-yy-side--blue .his-yy-list li::before { color: rgba(27,79,255,.35); }
.his-yy-side--blue .his-yy-cta { color: #1b4fff; }

.his-yy-side--green .his-yy-kicker { color: #10b981; }
.his-yy-side--green .his-yy-list li::before { color: rgba(16,185,129,.5); }
.his-yy-side--green .his-yy-cta { color: #10b981; }

/* SERVICES BAR */
.his-yy-bar {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 52px;
  flex-wrap: wrap;
}
.his-yy-bar-label {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.his-yy-bar-link {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.his-yy-bar-link:hover { color: #ffffff; }
.his-yy-bar-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
}

/* ANIMATIONS */
.his-yy-band {
  animation: hisyy-down 0.5s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.05s;
}
.his-yy-side--blue {
  animation: hisyy-left 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.15s;
}
.his-yy-side--green {
  animation: hisyy-right 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.22s;
}
.his-yy-shirt {
  animation: hisyy-fadein 0.5s ease both;
  animation-delay: 0.45s;
}
.his-yy-bar {
  animation: hisyy-up 0.4s ease both;
  animation-delay: 0.5s;
}

@keyframes hisyy-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hisyy-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hisyy-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hisyy-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hisyy-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .his-yy-wrap {
    grid-template-columns: 1fr;
    padding: 20px 24px 28px;
  }
  .his-yy-side--blue,
  .his-yy-side--green {
    padding: 28px 24px;
  }
  .his-yy-band { padding: 14px 24px; }
  .his-yy-band-sub { display: none; }
}

/* =============================================
   HIS OPEN SERVICES SECTION
   ============================================= */

.his-svc-section {
  background: #f8f9fc;
  padding: 72px 0 80px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.his-svc-inner {
  padding: 0 clamp(24px, 5vw, 80px);
}

.his-svc-head {
  margin-bottom: 44px;
}

.his-svc-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1b4fff;
  margin: 0 0 10px 0;
}

.his-svc-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #0b0f19;
  margin: 0 0 14px 0;
  line-height: 1.12;
}

.his-svc-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(2,6,23,0.55);
  margin: 0;
  white-space: nowrap;
  line-height: 1.6;
}

.his-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.his-svc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.his-svc-card:hover {
  border-color: rgba(27,79,255,0.28);
  box-shadow: 0 4px 20px rgba(27,79,255,0.08);
  transform: translateY(-2px);
}

.his-svc-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(27,79,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1b4fff;
}

.his-svc-icon-wrap svg {
  width: 21px;
  height: 21px;
}

.his-svc-name {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: #0b0f19;
  line-height: 1.2;
}

.his-svc-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(2,6,23,0.55);
  line-height: 1.5;
  flex: 1;
}

.his-svc-arrow {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: #1b4fff;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 4px;
}

.his-svc-card:hover .his-svc-arrow {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .his-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .his-svc-section {
    padding: 52px 0 60px;
  }
}

@media (max-width: 360px) {
  .his-svc-grid {
    grid-template-columns: 1fr;
  }
}