/* ============================================================
   ORGENIC WEBSITE — Main Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --accent:       #00bebe;
  --accent-hover: #009e9e;
  --black:        #000000;
  --white:        #ffffff;
  --gray-text:    #717182;
  --gray-light:   #f9fafb;
  --gray-medium:  #6b7280;
  --gray-dark:    #374151;
  --border:       rgba(0, 0, 0, 0.10);
  --border-white: rgba(255, 255, 255, 0.10);
  --container:    1280px;
  --radius:       0.625rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #030213;
  background: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--border-white);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 5rem;
}
@media (min-width: 1024px) {
  .nav__inner { padding: 0 2rem; }
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-left: -0.5rem;
}
.nav__logo svg {
  height: 2rem;
  width: auto;
}

.nav__links {
  display: none;
  margin-left: auto;
  gap: 3rem;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav__link:hover,
.nav__link.active { color: var(--accent); }

.nav__hamburger {
  display: flex;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}

.nav__mobile {
  display: none;
  background: var(--black);
  border-top: 1px solid var(--border-white);
}
.nav__mobile.open { display: block; }
.nav__mobile-inner {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s, background 0.2s;
}
.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-white);
  padding: 3rem 1.5rem;
}
@media (min-width: 1024px) {
  .footer { padding: 3rem 2rem; }
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

.footer__heading {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer__text {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.75;
}
.footer__text p { margin-bottom: 0.5rem; }
.footer__text strong { color: var(--white); }

.footer__link {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: block;
}
.footer__link:hover { color: var(--accent); }

.footer__copy {
  border-top: 1px solid var(--border-white);
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  padding: 1rem 3rem;
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background: var(--accent-hover); }

.btn--primary-lg {
  padding: 1.25rem 3rem;
  background: var(--accent);
  color: var(--white);
}
.btn--primary-lg:hover { background: var(--accent-hover); }

.btn--secondary {
  padding: 1rem 3rem;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn--link {
  color: var(--black);
  background: none;
  padding: 0;
  font-size: 0.875rem;
}
.btn--link:hover { color: var(--accent); }

.btn--link-orange {
  color: var(--accent);
  background: none;
  padding: 0;
  font-size: 0.875rem;
}
.btn--link-orange:hover { color: var(--accent-hover); }

/* Arrow icon */
.arrow {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.arrow-sm {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--accent {
  background: var(--accent);
}

/* ============================================================
   STAR ICON (section headings)
   ============================================================ */
.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.section-heading__star {
  font-size: 2.25rem;
  color: var(--black);
  line-height: 1;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: calc((clamp(2rem, 4vw, 3rem) * 1.2 - 2.25rem) / 2);
}
.section-heading__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
}
.section-heading--white .section-heading__star,
.section-heading--white .section-heading__title { color: var(--white); }

/* Star in lists */
.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-right: 1rem;
  margin-top: 0.2rem;
}
.star-list-item {
  display: flex;
  align-items: flex-start;
}
.star-list-item + .star-list-item { margin-top: 1rem; }
.star-list-item span { font-size: 1.125rem; color: #374151; line-height: 1.6; }

/* ============================================================
   PAGE HEADER (black sections at top of inner pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: var(--black);
  background-image: url('../assets/images/cf2d48a0e4776dd69c30df316462d745d77881f3.jpg');
  background-size: cover;
  background-position: center 30%;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 0;
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; }
@media (min-width: 1024px) {
  .page-header { padding-left: 2rem; padding-right: 2rem; }
}

.page-header__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.page-header__content {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.page-header__title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-header__subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .section { padding: 6rem 2rem; }
}
.section--gray { background: var(--gray-light); }
.section--black { background: var(--black); }
.section--white { background: var(--white); }

/* Orange underline accent */
.orange-underline {
  width: 6rem;
  height: 0.25rem;
  background: var(--accent);
  margin-top: 1rem;
}

/* Orange left border accent */
.orange-border {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-2--thirds { grid-template-columns: 1fr 2fr; }
}

.grid-3 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   IMAGE HELPERS
   ============================================================ */
.img-cover {
  width: 100%;
  object-fit: cover;
  display: block;
}
/* .img-grayscale entfernt — alle Fotos werden in Farbe angezeigt */

/* ============================================================
   CARDS (service, article, job, project)
   ============================================================ */
.card {
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  overflow: hidden;
}
.card:hover { border-color: var(--accent); }
.card--dark { border-color: rgba(255,255,255,0.2); }

/* ============================================================
   HOME — HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: var(--black);
  overflow: hidden;
  min-height: 600px;
}
@media (min-width: 1024px) {
  .hero { padding-left: 2rem; padding-right: 2rem; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: auto 100%;
  background-position: calc(50% + 400px) center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, transparent 70%);
}

.hero__content {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero__text { max-width: 56rem; }

.hero__label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__tagline {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 3rem;
  max-width: 42rem;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; }
}

/* Hero Carousel */
.hero--carousel { padding: 0; }

.hero-carousel__track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-carousel__slide {
  flex: 0 0 100%;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-height: 600px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-carousel__slide { padding-left: 2rem; padding-right: 2rem; }
}

.hero__bg--rising-digital {
  background: linear-gradient(to bottom, #FF0086 0%, #BD34A5 45%, #00C8FF 100%);
  background-size: cover;
  background-position: center;
}

.hero-carousel__rocket {
  position: absolute;
  right: 3%;
  top: 44%;
  transform: translateY(-50%) rotate(-22deg);
  height: 78%;
  width: auto;
  z-index: 5;
  pointer-events: none;
}

.hero-carousel__rocket svg {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .hero-carousel__rocket { display: none; }
}

.hero-carousel__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  z-index: 20;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.hero-carousel__dot--active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.25);
}

.hero-carousel__dot:hover:not(.hero-carousel__dot--active) {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.8);
}

/* ============================================================
   HOME — ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 6rem 1.5rem;
  background: var(--white);
}
@media (min-width: 1024px) {
  .about-section { padding: 6rem 2rem; }
}

.about__image-wrap {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .about__image-wrap { display: block; }
}

.about__image-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  border: 4px solid var(--accent);
  z-index: -1;
}

/* ============================================================
   HOME — SERVICE CARDS (2x2)
   ============================================================ */
.service-card {
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s;
  cursor: default;
}
.service-card:hover { border-color: var(--accent); }
.service-card:hover .service-card__num { color: var(--accent); }

.service-card__num {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  transition: color 0.2s;
  line-height: 1;
}

.service-card__title {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: #4b5563;
  font-size: 1.125rem;
}

/* ============================================================
   HOME — PROJECT CARDS (3er Grid)
   ============================================================ */
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.project-card:hover { border-color: var(--accent); }

.project-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.project-card__body { margin-top: 2rem; }

.project-card__title {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.project-card__client {
  color: #374151;
  margin-bottom: 1rem;
}

.project-card__desc {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.project-card__kpi {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.project-card__kpi-text {
  color: var(--black);
  font-weight: 700;
}

.project-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  padding: 0;
}
.project-card--link .project-card__badge { top: 0.75rem; right: 0.75rem; }
.project-card--link .project-card__body  { padding: 1.5rem; margin-top: 0; }
.project-card--link:hover { border-color: var(--accent); }
.project-card--link:hover .project-card__title { color: var(--accent); }
.project-card--padded { padding: 2rem; }

.project-card__img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HOME — VALUES SECTION
   ============================================================ */
.values {
  position: relative;
  background: var(--black);
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .values { padding: 6rem 2rem; }
}

.values__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.values__content {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.values__inner { max-width: 42rem; }

.values__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 3rem;
}

.values__list { display: flex; flex-direction: column; gap: 2rem; }

.value-item {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.value-item__title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.value-item__text { color: #d1d5db; font-size: 1.125rem; }

/* ============================================================
   ARTICLE CARD
   ============================================================ */
.article-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card:hover { border-color: var(--accent); }
.article-card:hover .article-card__title { color: var(--accent); }
.article-card:hover .article-card__more { color: var(--accent); }

.article-card__img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.article-card--lg .article-card__img  { height: 16rem; }
.article-card--lg .article-card__title { font-size: 1.5rem; }
.article-card--lg .article-card__excerpt { -webkit-line-clamp: unset; display: block; overflow: visible; }

.article-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.article-card__meta .badge {
  flex-basis: 100%;
  margin-bottom: 0;
}

.article-card__meta-text {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-card__title {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  line-height: 1.4;
}

.article-card__excerpt {
  color: #4b5563;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  margin-top: auto;
}

/* ============================================================
   SERVICES PAGE — Detail Blocks
   ============================================================ */
.service-detail {
  margin-bottom: 4rem;
}
.service-detail + .service-detail {
  padding-top: 4rem;
}

.service-detail__num {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-detail__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 0.75rem;
}

.service-detail__tagline {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-detail__desc {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 66%;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .service-detail__desc { max-width: 100%; }
}

.service-detail__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .service-detail__grid { grid-template-columns: 5fr 7fr; }
}

/* Related articles in service page */
.related-articles {
  margin-top: 3rem;
}

.related-articles__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.related-articles__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .related-articles__grid { grid-template-columns: repeat(2, 1fr); }
}

.related-article-card {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
  height: 100%;
}
.related-article-card:hover { border-color: var(--accent); }
.related-article-card:hover .related-article-card__title { color: var(--accent); }
.related-article-card:hover .related-article-card__more { color: var(--accent); }

.related-article-card__img {
  width: 7rem;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  align-self: stretch;
}

.related-article-card__body {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.related-article-card__body .badge {
  margin-bottom: 0.5rem;
}

.related-article-card__cat {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.related-article-card__title {
  font-size: 0.875rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.related-article-card__more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  transition: color 0.2s;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Section title — replaces repeated inline h2 styles */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 1rem;
}
.section-title--white    { color: var(--white); }
.section-title--centered { text-align: center; margin-bottom: 4rem; }

/* Grid alignment modifier */
.grid-2--center { align-items: center; }

/* Mission image */
.mission-img { height: 37.5rem; }

/* Prose text block */
.prose {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: var(--gray-dark);
  line-height: 1.75;
}
.prose--narrow { max-width: 48rem; }

/* Expertise card */
.expertise-card {
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 2rem;
}

/* Expertise subheadings */
.expertise-heading {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

/* Star list container */
.star-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principles-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .principles-grid { grid-template-columns: repeat(4, 1fr); }
}

.principle {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.principle__num {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.principle__title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.principle__text { color: #d1d5db; font-size: 1.125rem; }

/* Team cards */
.team-card {
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}

.team-card__img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
}

.team-card__body { padding: 1.5rem; }

.team-card__name {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card__role {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.team-card__bio { color: #d1d5db; margin-bottom: 1rem; }

.team-card__prev { font-size: 0.875rem; color: #9ca3af; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.project-showcase {
  display: grid;
  gap: 3rem;
  margin-bottom: 6rem;
}
@media (min-width: 1024px) {
  .project-showcase { grid-template-columns: repeat(2, 1fr); align-items: start; }
}

.project-showcase__img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  display: block;
}

.project-showcase__industry {
  margin-bottom: 1.5rem;
}

.project-showcase__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.project-showcase__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.project-showcase__text {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* ============================================================
   JOBS PAGE
   ============================================================ */
.job-listing {
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .job-listing { padding: 3rem; }
}
.job-listing:hover { border-color: var(--accent); }

.job-listing__header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.job-listing__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-listing__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.job-listing__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.job-listing__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-listing__meta-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.job-listing__desc {
  font-size: 1.125rem;
  color: #374151;
}

.job-listing__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .job-listing__grid { grid-template-columns: repeat(3, 1fr); }
}

.job-listing__col-title {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.job-listing__apply {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-item {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.contact-info-item + .contact-info-item { margin-top: 2rem; }

.contact-info-item__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-info-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.contact-info-item__label {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info-item__value {
  font-size: 1.25rem;
  color: var(--black);
  transition: color 0.2s;
}
.contact-info-item__value:hover { color: var(--accent); }

.contact-person {
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-person__grid {
  display: grid;
}
@media (min-width: 768px) {
  .contact-person__grid { grid-template-columns: 2fr 3fr; }
}

.contact-person__img {
  width: 100%;
  min-height: 25rem;
  object-fit: cover;
  display: block;
}

.contact-person__body {
  padding: 2rem;
  background: var(--white);
}
@media (min-width: 1024px) {
  .contact-person__body { padding: 3rem; }
}

.contact-person__name {
  font-size: 1.875rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.contact-person__role {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.contact-person__intro {
  font-size: 1.125rem;
  color: #374151;
  margin: 2rem 0;
}

.contact-person__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-person__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--black);
  transition: color 0.2s;
}
.contact-person__link:hover { color: var(--accent); }

.contact-person__link-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   ARTICLE DETAIL PAGE
   ============================================================ */
.article-hero {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: var(--black);
  background-image: url('../assets/images/cf2d48a0e4776dd69c30df316462d745d77881f3.jpg');
  background-size: cover;
  background-position: center 30%;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .article-hero { padding-left: 2rem; padding-right: 2rem; }
}

.article-hero__inner { max-width: 56rem; margin: 0 auto; position: relative; z-index: 1; }

.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.article-hero__back:hover { color: var(--accent-hover); }

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-hero__meta-text {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.article-hero__excerpt {
  font-size: 1.25rem;
  color: #d1d5db;
}

.article-image-section {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-top: -5rem;
}
@media (min-width: 1024px) {
  .article-image-section { padding-left: 2rem; padding-right: 2rem; }
}

.article-image-section__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.article-image-section__img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  display: block;
}

.article-content {
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .article-content { padding: 6rem 2rem; }
}

.article-content__inner { max-width: 48rem; margin: 0 auto; }

.article-content__intro {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 500;
}

.article-content__section { margin-bottom: 3rem; }

.article-content__section-title {
  font-size: 1.875rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.article-content__paragraph {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-content__conclusion {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--black);
}

.article-content__conclusion p {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.7;
  font-weight: 500;
}

/* Next article */
.next-article-section {
  padding: 6rem 1.5rem;
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .next-article-section { padding: 6rem 2rem; }
}

.next-article-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.next-article-card {
  display: grid;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  overflow: hidden;
}
@media (min-width: 768px) {
  .next-article-card { grid-template-columns: repeat(2, 1fr); }
}
.next-article-card:hover { border-color: var(--accent); }
.next-article-card:hover .next-article-card__title { color: var(--accent); }
.next-article-card:hover .next-article-card__more { color: var(--accent); }

.next-article-card__img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}

.next-article-card__body { padding: 2rem; }

.next-article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.next-article-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.next-article-card__excerpt { color: #4b5563; margin-bottom: 1rem; }

.next-article-card__more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

/* ============================================================
   IMPRINT PAGE
   ============================================================ */
.legal-content {
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .legal-content { padding: 6rem 2rem; }
}

.legal-content__inner { max-width: 56rem; margin: 0 auto; }

.legal-section { margin-bottom: 4rem; }

.legal-section--divider {
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.legal-section__title {
  font-size: 1.875rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.legal-block { margin-bottom: 2rem; }

.legal-block__title {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-block__text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
}

.legal-block__text p { margin-bottom: 0.5rem; }
.legal-block__text strong { color: var(--black); }

.legal-block__text ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.legal-block__text ul li { margin-bottom: 0.25rem; }

.legal-link {
  color: var(--accent);
  transition: color 0.2s;
}
.legal-link:hover { color: var(--accent-hover); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  padding: 6rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-section { padding: 6rem 2rem; }
}
.cta-section--white { background: var(--white); border-top: 1px solid var(--border); }
.cta-section--black { background: var(--black); }

.cta-section__inner { max-width: 56rem; margin: 0 auto; }

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 1.5rem;
}
.cta-section--black .cta-section__title { color: var(--white); }

.cta-section__subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 3rem;
}
.cta-section--black .cta-section__subtitle { color: #d1d5db; }

/* ============================================================
   UTILITY
   ============================================================ */
.block           { display: block; }
.text-center     { text-align: center; }
.section--no-top { padding-top: 0; }
.pt-2            { padding-top: 0.5rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }

.text-orange     { color: var(--accent); }
.text-gray       { color: #4b5563; }
.text-gray-dark  { color: var(--gray-dark); }
.text-white      { color: var(--white); }
.text-black      { color: var(--black); }

.font-bold    { font-weight: 700; }
.uppercase    { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }

/* Footer email link override */
.footer__link--inline { display: inline; }

/* Conciso logo constraint */
.img-conciso { max-width: 280px; width: 100%; }

/* Error page (404) */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  min-height: 60vh;
}
.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 1rem;
}
.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}
.error-page__text {
  color: #4b5563;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.error-page__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Icon size helpers */
.icon-sm { width: 1rem;    height: 1rem;    flex-shrink: 0; }
.icon-xs { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }

/* Button size modifier */
.btn--sm { font-size: 0.875rem; }

.btn--outline-sm {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
  font-size: 0.75rem;
  margin-top: 1rem;
}
.btn--outline-sm:hover {
  background: var(--white);
  color: var(--black);
}

/* Back button in article/legal pages */
.btn--back {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Grid variants */
.grid-auto-fit {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.grid-2--start { align-items: start; }

/* Container variant */
.container--sm { max-width: 56rem; margin: 0 auto; }

/* Image size helpers */
.about-img   { height: 28rem; }
.contact-img { height: 31.25rem; }

/* ============================================================
   Podcast Links (innovation-unter-schwierigen-bedingungen)
   ============================================================ */
.podcast-links {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: #f9fafb;
  border-top: 4px solid var(--accent);
}
.podcast-links__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.podcast-links__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.podcast-links__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.podcast-link { text-decoration: none; }

/* About section paragraph styles (index.html) */
.about-lead {
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.about-text {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Job preview card text (index.html jobs section) */
.job-location {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.text-clamp {
  color: #4b5563;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dark-section prose variants */
.prose--light { color: #d1d5db; }
.flex-stack   { display: flex; flex-direction: column; gap: 1.5rem; }

/* Item-level headings on dark backgrounds (jobs.html) */
.item-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.item-title--white { color: var(--white); }

/* Content headings — smaller than .section-title (kontakt.html) */
.content-title {
  font-size: 1.875rem;
  color: var(--black);
  margin-bottom: 2rem;
}
.content-title--centered { text-align: center; margin-bottom: 3rem; }

/* ============================================================
   ARTICLE DETAIL — Additional aliases and components
   ============================================================ */

/* Date/readtime text inside article hero meta */
.article-hero__date,
.article-hero__readtime {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Image below the hero — same width as article body content */
.article-image-full {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0;
  max-height: 32rem;
  overflow: hidden;
}

.article-image-full__img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  display: block;
}

/* Article content width: alle Elemente mit Inhaltsbezug in Artikeln verwenden diese Breite.
   Kein eigenes Padding — die umgebende section trägt das seitliche Padding. */
.article-content-width {
  max-width: 48rem;
  margin: 0 auto;
}

/* Article body section */
.article-body {
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .article-body { padding: 6rem 2rem; }
}

.article-body__inner {
  max-width: 48rem;
  margin: 0 auto;
}

/* Inline links within article body always use orange */
.article-body__inner a:not([class]) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body__inner a:not([class]):hover {
  color: var(--accent-hover);
}

/* Intro paragraph */
.article-intro {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Content section */
.article-section {
  margin-bottom: 3rem;
}

.article-section__title {
  font-size: 1.875rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.article-section p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Conclusion box */
.article-conclusion {
  margin-top: 4rem;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  background-color: var(--black);
  background-image: url('../assets/images/cf2d48a0e4776dd69c30df316462d745d77881f3.jpg');
  background-size: cover;
  background-position: center 40%;
  border-left: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.article-conclusion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 0;
}
.article-conclusion p {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.7;
  font-weight: 400;
}

/* Next article section */
.next-article {
  padding: 6rem 1.5rem;
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .next-article { padding: 6rem 2rem; }
}

.next-article__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.next-article__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.next-article__card {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
  max-width: 48rem;
}
.next-article__card:hover { border-color: var(--accent); }
.next-article__card:hover .next-article__card-title { color: var(--accent); }
.next-article__card:hover .next-article__card-link { color: var(--accent); }

.next-article__card-img {
  width: 10rem;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  align-self: stretch;
}

.next-article__card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.next-article__card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.next-article__card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--black);
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.next-article__card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  transition: color 0.2s;
}
