/* =========================================================
   BEYOND STEPS — Erfahrung V0.1
   Vertrauensanker: Erfahrungsfelder, Kontexte, Projektbeispiele
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3/source-sans-3-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bruno Ace SC";
  src: url("../assets/fonts/bruno-ace-sc/bruno-ace-sc-v7-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Michroma";
  src: url("../assets/fonts/michroma/michroma-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-brand: "Bruno Ace SC", sans-serif;
  --font-brand-sub: "Michroma", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-ui: "Inter", sans-serif;

  --color-bg: #02060a;
  --color-text-main: #c9edf3;
  --color-text-strong: #e6f8fb;
  --color-text-soft: rgba(201, 237, 243, 0.84);
  --color-text-faint: rgba(159, 203, 213, 0.68);
  --color-gold: rgba(209, 171, 97, 0.86);
  --color-gold-soft: rgba(209, 171, 97, 0.38);
  --color-gold-faint: rgba(209, 171, 97, 0.12);
  --color-cyan-soft: rgba(73, 181, 199, 0.18);
  --color-link-hover: rgba(240, 221, 171, 0.96);

  --page-padding-x: 54px;
  --page-padding-y: 38px;
  --page-width: 1320px;
  --section-gap: 126px;
  --panel-radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text-main);
  background: var(--color-bg);
  font-family: var(--font-body);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.erfahrung-page {
  position: relative;
  min-height: 100svh;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.26) 68%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 24% 32%, rgba(73, 181, 199, 0.14) 0%, rgba(73, 181, 199, 0) 42%),
    radial-gradient(circle at 74% 18%, rgba(209, 171, 97, 0.08) 0%, rgba(209, 171, 97, 0) 36%),
    url("../assets/img/backgrounds/bg-general-hd.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.76) saturate(0.98);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.84) 100%),
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 74%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: var(--page-padding-y) var(--page-padding-x) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.site-logo {
  width: 66px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.legal-nav a {
  color: rgba(163, 222, 232, 0.78);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--color-link-hover);
  text-shadow: 0 0 12px rgba(220, 194, 136, 0.20);
}

.site-nav a[aria-current="page"] {
  color: var(--color-link-hover);
  text-shadow: 0 0 12px rgba(220, 194, 136, 0.18);
}

.site-logo-link:focus-visible,
.site-nav a:focus-visible,
.legal-nav a:focus-visible,
.erfahrung-cta__button:focus-visible {
  outline: 1px solid rgba(220, 194, 136, 0.72);
  outline-offset: 4px;
}

.erfahrung-hero,
.erfahrung-section,
.erfahrung-cta {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}

.erfahrung-hero {
  min-height: calc(100svh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
  padding-top: 70px;
  padding-bottom: 102px;
}

.erfahrung-kicker,
.erfahrung-cta__kicker {
  margin: 0 0 15px;
  color: rgba(218, 188, 126, 0.86);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.erfahrung-hero__title,
.section-heading__title,
.erfahrung-cta h2 {
  margin: 0;
  color: var(--color-text-strong);
  font-family: var(--font-brand);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.erfahrung-hero__title {
  max-width: 860px;
  font-size: clamp(2rem, 5vw, 4.85rem);
}

.erfahrung-line {
  display: block;
  width: min(360px, 76%);
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, rgba(216, 193, 138, 0.9), rgba(216, 193, 138, 0.38), rgba(216, 193, 138, 0));
}

.erfahrung-hero__lead {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--color-text-strong);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.9rem, 1.3vw, 1.18rem);
  line-height: 1.58;
  letter-spacing: 0.035em;
}

.erfahrung-hero__text,
.section-heading__subline,
.experience-item__body p,
.field-card p,
.erfahrung-cta p {
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.erfahrung-hero__text {
  max-width: 760px;
  margin: 22px 0 0;
}

.erfahrung-hero__proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.proof-card {
  min-height: 132px;
  padding: 20px 19px;
  border: 1px solid rgba(216, 193, 138, 0.16);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(145deg, rgba(7, 22, 28, 0.64), rgba(6, 12, 16, 0.38)),
    radial-gradient(circle at 12% 0%, rgba(73, 181, 199, 0.12), rgba(73, 181, 199, 0));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.proof-card--large {
  grid-column: span 2;
  min-height: 160px;
  background:
    linear-gradient(145deg, rgba(13, 32, 38, 0.76), rgba(7, 13, 18, 0.42)),
    radial-gradient(circle at 16% 8%, rgba(209, 171, 97, 0.18), rgba(209, 171, 97, 0));
}

.proof-card span {
  display: block;
  color: var(--color-text-strong);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.1rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.proof-card:not(.proof-card--large) span {
  font-size: clamp(0.94rem, 1.25vw, 1.24rem);
  line-height: 1.28;
  letter-spacing: 0.035em;
}

.proof-card p {
  margin: 15px 0 0;
  color: var(--color-text-faint);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.erfahrung-section {
  padding-top: 0;
  padding-bottom: var(--section-gap);
}

.section-heading {
  max-width: 860px;
}

.section-heading__title {
  font-size: clamp(1.55rem, 3vw, 2.72rem);
}

.section-heading__subline {
  max-width: 760px;
  margin: 24px 0 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.field-card {
  min-height: 216px;
  padding: 26px 25px 28px;
  border: 1px solid rgba(216, 193, 138, 0.14);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(145deg, rgba(8, 20, 26, 0.66), rgba(5, 9, 13, 0.34)),
    radial-gradient(circle at 12% 4%, rgba(73, 181, 199, 0.10), rgba(73, 181, 199, 0));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.field-card h3,
.experience-item__body h3 {
  margin: 0;
  color: var(--color-text-strong);
  font-family: var(--font-brand-sub);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.045em;
}

.field-card p {
  margin: 18px 0 0;
  font-size: 0.96rem;
}

.system-depth {
  margin-top: 30px;
  padding: 26px 28px;
  border: 1px solid rgba(216, 193, 138, 0.15);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(8, 20, 26, 0.66), rgba(5, 9, 13, 0.36)),
    radial-gradient(circle at 8% 0%, rgba(209, 171, 97, 0.12), rgba(209, 171, 97, 0));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.system-depth__label {
  color: rgba(218, 188, 126, 0.84);
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-depth__methods {
  margin: 16px 0 0;
  color: var(--color-text-strong);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.78rem, 1.05vw, 0.96rem);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.system-depth__text {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.experience-list {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.experience-item {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 34px;
  padding: 26px 28px;
  border: 1px solid rgba(216, 193, 138, 0.14);
  border-radius: var(--panel-radius);
  background: linear-gradient(135deg, rgba(7, 20, 26, 0.68), rgba(4, 8, 12, 0.38));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.experience-item__meta {
  border-left: 1px solid rgba(216, 193, 138, 0.44);
  padding-left: 18px;
}

.experience-item__meta span,
.experience-item__meta strong {
  display: block;
}

.experience-item__meta span {
  color: var(--color-text-faint);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-item__meta strong {
  margin-top: 9px;
  color: rgba(238, 224, 188, 0.92);
  font-family: var(--font-brand-sub);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.035em;
}

.experience-item__body p {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.company-strip {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid rgba(216, 193, 138, 0.13);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(7, 18, 24, 0.56), rgba(4, 8, 12, 0.32)),
    radial-gradient(circle at 8% 0%, rgba(209, 171, 97, 0.09), rgba(209, 171, 97, 0));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.company-strip__label {
  margin: 0 0 12px;
  color: rgba(218, 188, 126, 0.80);
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-strip__names {
  margin: 0;
  color: rgba(210, 236, 241, 0.82);
  font-family: var(--font-ui);
  font-size: 0.80rem;
  line-height: 1.75;
  letter-spacing: 0.035em;
}
.result-panel {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(216, 193, 138, 0.16);
  border-radius: calc(var(--panel-radius) + 4px);
  background:
    linear-gradient(145deg, rgba(7, 20, 27, 0.72), rgba(4, 9, 13, 0.42)),
    radial-gradient(circle at 12% 8%, rgba(209, 171, 97, 0.13), rgba(209, 171, 97, 0));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.result-grid p {
  margin: 0;
  padding: 18px 18px;
  border-top: 1px solid rgba(216, 193, 138, 0.20);
  color: var(--color-text-soft);
  font-family: var(--font-brand-sub);
  font-size: 0.82rem;
  line-height: 1.52;
  letter-spacing: 0.035em;
}

.erfahrung-cta {
  padding-bottom: 110px;
  text-align: center;
}

.erfahrung-cta h2 {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}

.erfahrung-cta p {
  margin: 22px auto 0;
}

.erfahrung-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 13px 22px;
  border: 1px solid rgba(216, 193, 138, 0.62);
  border-radius: 999px;
  color: rgba(240, 221, 171, 0.96);
  background: linear-gradient(135deg, rgba(11, 28, 35, 0.72), rgba(3, 8, 12, 0.48));
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.erfahrung-cta__button:hover,
.erfahrung-cta__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 221, 171, 0.88);
  box-shadow: 0 0 18px rgba(209, 171, 97, 0.12);
}

.site-footer {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 0 var(--page-padding-x) 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.privacy-note {
  margin: 0;
  color: rgba(165, 194, 201, 0.72);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 1120px) {
  :root {
    --page-padding-x: 18px;
    --page-padding-y: 20px;
    --section-gap: 82px;
  }

  .page-bg {
    background-position: 74% center;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-logo {
    width: 34px;
  }

  .site-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .erfahrung-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 55px;
    padding-bottom: 78px;
  }

  .erfahrung-hero__title {
    font-size: clamp(1.65rem, 8.6vw, 2.55rem);
  }

  .erfahrung-hero__lead {
    font-size: 0.83rem;
    line-height: 1.62;
  }

  .erfahrung-hero__text,
  .section-heading__subline,
  .experience-item__body p,
  .field-card p,
  .erfahrung-cta p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .erfahrung-hero__proof,
  .field-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .proof-card--large {
    grid-column: auto;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 23px 20px;
  }

  .field-card {
    min-height: auto;
    padding: 23px 20px;
  }

  .system-depth {
    padding: 23px 20px;
  }

  .system-depth__text {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .result-panel {
    padding: 28px 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
