@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fafafc;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #e3e3e8;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --dark: #000000;
  --dark-text: #f5f5f7;
  --dark-muted: #a1a1a6;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.topbar {
  width: min(1200px, 94%);
  margin: 0.9rem auto 0;
  padding: 0.78rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  position: sticky;
  top: 0.85rem;
  z-index: 20;
}

.brand {
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-sub {
  font-weight: 500;
  color: #6e6e73;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.86rem;
  color: #3a3a3c;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a.is-active {
  color: #1d1d1f;
  background: #f1f2f5;
  box-shadow: 0 5px 16px rgba(60, 60, 67, 0.24);
}

@media (min-width: 981px) {
  .topbar {
    justify-content: center;
    position: sticky;
    min-height: 64px;
  }

  .brand {
    position: absolute;
    left: 1.55rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    left: calc(50% + clamp(18px, 2.6vw, 54px));
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    white-space: nowrap;
  }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  min-width: 40px;
  min-height: 36px;
  border-radius: 999px;
  cursor: pointer;
}

main {
  width: min(1200px, 94%);
  margin: 1rem auto 3.5rem;
  display: grid;
  gap: 0.95rem;
  overflow-x: clip;
}

main > * {
  min-width: 0;
}

.hero {
  background: var(--dark);
  color: var(--dark-text);
  border-radius: 34px;
  padding: clamp(1.5rem, 5vw, 4.3rem);
  text-align: center;
  min-height: min(76vh, 860px);
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid #1f1f1f;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-home {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 113, 227, 0.22), transparent 42%),
    radial-gradient(circle at 84% 18%, rgba(175, 120, 255, 0.2), transparent 46%),
    radial-gradient(circle at 52% 85%, rgba(0, 210, 180, 0.15), transparent 48%),
    linear-gradient(160deg, #080a13, #0f1424 58%, #0a0f1d);
  border-color: #263148;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
}

.hero-home::before {
  background:
    radial-gradient(circle at 22% 22%, rgba(75, 172, 255, 0.24), transparent 40%),
    radial-gradient(circle at 78% 28%, rgba(170, 110, 255, 0.2), transparent 45%);
  filter: blur(18px);
  animation: heroGlowDrift 16s ease-in-out infinite alternate;
}

.hero-home::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 28%, rgba(0, 113, 227, 0.07) 55%, transparent 72%);
  mix-blend-mode: screen;
  animation: heroSheen 12s linear infinite;
}

.hero-catalog {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 139, 226, 0.2), transparent 40%),
    radial-gradient(circle at 86% 15%, rgba(86, 120, 255, 0.18), transparent 42%),
    radial-gradient(circle at 60% 88%, rgba(70, 220, 190, 0.12), transparent 48%),
    linear-gradient(160deg, #070a14, #0b1120 58%, #0a1321);
  border-color: #233656;
}

.hero-catalog::before,
.hero-catalog::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.hero-catalog::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(90, 164, 255, 0.2), transparent 40%),
    radial-gradient(circle at 78% 24%, rgba(120, 108, 255, 0.16), transparent 44%);
  filter: blur(16px);
  animation: heroGlowDrift 18s ease-in-out infinite alternate;
}

.hero-catalog::after {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(64, 164, 255, 0.06) 56%, transparent 76%);
  mix-blend-mode: screen;
  animation: heroSheen 14s linear infinite;
}

.hero-experiences {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 152, 255, 0.28), transparent 40%),
    radial-gradient(circle at 84% 14%, rgba(130, 110, 255, 0.26), transparent 44%),
    radial-gradient(circle at 54% 86%, rgba(58, 210, 188, 0.17), transparent 48%),
    linear-gradient(160deg, #070a14, #0c1324 56%, #0a111e);
  border-color: #2a3450;
}

.hero-experiences::before,
.hero-experiences::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.hero-experiences::before {
  background:
    radial-gradient(circle at 20% 22%, rgba(90, 175, 255, 0.2), transparent 40%),
    radial-gradient(circle at 76% 28%, rgba(142, 120, 255, 0.16), transparent 45%);
  filter: blur(16px);
  animation: heroGlowDrift 17s ease-in-out infinite alternate;
}

.hero-experiences::after {
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(84, 176, 255, 0.06) 54%, transparent 74%);
  mix-blend-mode: screen;
  animation: heroSheen 13s linear infinite;
}

.hero-companion {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 150, 255, 0.24), transparent 40%),
    radial-gradient(circle at 84% 14%, rgba(165, 120, 255, 0.24), transparent 44%),
    radial-gradient(circle at 52% 86%, rgba(78, 210, 176, 0.16), transparent 48%),
    linear-gradient(160deg, #080b16, #0d1425 56%, #0b1322);
  border-color: #2a3550;
}

.hero-companion::before,
.hero-companion::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.hero-companion::before {
  background:
    radial-gradient(circle at 22% 22%, rgba(92, 176, 255, 0.22), transparent 40%),
    radial-gradient(circle at 76% 24%, rgba(176, 124, 255, 0.18), transparent 45%);
  filter: blur(16px);
  animation: heroGlowDrift 17s ease-in-out infinite alternate;
}

.hero-companion::after {
  background: linear-gradient(126deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(90, 176, 255, 0.07) 54%, transparent 74%);
  mix-blend-mode: screen;
  animation: heroSheen 13.5s linear infinite;
}

.kicker {
  color: var(--dark-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.2rem, 7vw, 5.2rem);
  line-height: 1.04;
  max-width: 17ch;
  letter-spacing: -0.03em;
  width: 100%;
  margin-inline: auto;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.subtitle {
  margin-top: 0.85rem;
  max-width: 64ch;
  width: min(100%, 64ch);
  margin-inline: auto;
  color: var(--dark-muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-xl {
  margin-top: 0.85rem;
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-secondary {
  background: transparent;
  border-color: #c8c8ce;
  color: var(--text);
}

.hero .btn-secondary {
  border-color: #3a3a3c;
  color: var(--dark-text);
}

.hero.hero-compact {
  min-height: auto;
  padding: clamp(1.2rem, 3vw, 2.4rem);
}

.hero.hero-compact h1 {
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  max-width: 18ch;
  justify-self: center;
}

.hero.hero-compact .subtitle {
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
}

.profile-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(160deg, #0b0b0f, #11131a 55%, #0b0d12);
}

.profile-meta {
  color: #cfd3dd;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.blog-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 113, 227, 0.25), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(160, 90, 255, 0.18), transparent 45%),
    var(--dark);
}

.reviews-hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 113, 227, 0.2), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(104, 114, 255, 0.16), transparent 50%),
    var(--dark);
}

.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.2vw, 2rem);
  box-shadow: var(--shadow);
  min-width: 0;
}

.section.scroll-focus {
  animation: sectionFocus 650ms ease;
}

@keyframes sectionFocus {
  0% {
    transform: translateY(8px);
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.18);
  }
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }
}

@keyframes heroGlowDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-1%, 1%, 0) scale(1.02);
  }
}

@keyframes heroSheen {
  0% {
    transform: translateX(-22%);
    opacity: 0.36;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(22%);
    opacity: 0.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home::before,
  .hero-home::after,
  .hero-catalog::before,
  .hero-catalog::after,
  .hero-experiences::before,
  .hero-experiences::after,
  .hero-companion::before,
  .hero-companion::after {
    animation: none;
  }
}

.section h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.45rem);
}

#warum-vermittlung .why-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6d7380;
}

#warum-vermittlung h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

#warum-vermittlung .why-lead {
  margin-top: 0.35rem;
  font-size: clamp(1.24rem, 2.25vw, 1.58rem);
  line-height: 1.42;
  color: #4a4f59;
  max-width: 30ch;
}

#warum-vermittlung .why-subtitle {
  margin: 1.1rem 0 0.35rem;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #17191f;
}

#warum-vermittlung p {
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  line-height: 1.66;
  color: #5d616b;
  max-width: 66ch;
}

#warum-vermittlung .why-closing {
  margin-top: 1.1rem;
  font-size: clamp(1.16rem, 1.85vw, 1.34rem);
  line-height: 1.55;
  color: #3f4450;
  font-weight: 500;
}

.section-cta {
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 113, 227, 0.08), transparent 45%),
    var(--surface);
}

.section > p,
.card p,
.profile-card p,
.inquiry-target-note,
.profile-modal-grid p,
.profile-modal-summary,
.profile-modal-fulltext {
  color: var(--muted);
  line-height: 1.6;
}

.cards,
.catalog-grid,
.articles-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.card,
.profile-card,
.articles-grid a,
.form,
.catalog-toolbar,
.inquiry-target {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.card,
.profile-card,
.form,
.inquiry-target,
.catalog-toolbar,
.articles-grid a {
  padding: 0.95rem;
}

.card h3,
.profile-card h3 {
  font-size: 1.2rem;
}

.profile-badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.13rem 0.42rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.14);
  border: 1px solid rgba(0, 113, 227, 0.35);
  color: #0a63c9;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.profile-joined {
  margin-top: 0.2rem;
  margin-bottom: 0.42rem;
  font-size: 0.8rem;
  color: #707684;
  letter-spacing: 0.01em;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.profile-back-row {
  display: flex;
  justify-content: flex-start;
}

.profile-back-row-bottom {
  justify-content: center;
}

.profile-column-main,
.profile-column-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
}

.profile-column-main h2,
.profile-column-side h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

#profilePageFullText {
  white-space: normal;
}

#profilePageFullText p {
  margin: 0.55rem 0 1rem;
  line-height: 1.65;
}

#profilePageFullText .profile-story-title {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e73;
  font-weight: 700;
}

.profile-facts {
  display: grid;
  gap: 0.65rem;
}

.profile-facts p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  background: #fafafc;
}

.profile-facts strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.22rem;
}

label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.72rem;
}

label span,
.toolbar-field span,
.inquiry-target-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d2d2d7;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.7rem 0.75rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #8bb8ea;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-feedback {
  min-height: 1.2em;
  font-size: 0.92rem;
  color: var(--text);
}

.catalog-toolbar {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1.3fr repeat(2, minmax(170px, 1fr));
  gap: 0.65rem;
  align-items: end;
}

.toolbar-field {
  display: grid;
  gap: 0.32rem;
  margin: 0;
}

.toolbar-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
}

.toolbar-result {
  font-size: 0.84rem;
  color: var(--muted);
}

.profile-glance {
  margin-top: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.feature-article {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(160deg, #f0f7ff, #ffffff 55%);
  display: grid;
  gap: 0.55rem;
}

.feature-article h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.articles-grid a {
  text-decoration: none;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  background: linear-gradient(165deg, #ffffff, #f7f8fc 62%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-height: 280px;
}

.articles-grid a strong {
  font-size: 1.03rem;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

.articles-grid a small {
  color: #666873;
  line-height: 1.45;
}

.article-meta {
  font-weight: 600;
  color: #5e6270;
}

.article-teaser {
  margin: 0;
  color: #4f5362;
  line-height: 1.65;
  font-size: 0.95rem;
}

.articles-grid a:hover {
  transform: translateY(-2px);
  border-color: #c8d7ee;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.feature-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a66c2;
  font-weight: 700;
}

.topic-chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.8rem;
  background: #fff;
  color: #3a3a3c;
}

.reviews-marquee {
  margin-top: 0.95rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fbfbfd, #f2f2f7);
  padding: 0.6rem 0;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-gutter: stable both-edges;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 290px;
  gap: 0.7rem;
  width: max-content;
  padding: 0.2rem 0.7rem;
}

.review-card {
  min-width: 290px;
  max-width: 290px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.review-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.review-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.experience-stats {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.experience-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.9rem;
}

.experience-stats .value {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #0a66c2;
}

.experience-stats .label {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.experience-journey {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.experience-journey article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.9rem;
}

.experience-journey h3 {
  font-size: 1rem;
}

.experience-journey p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.review-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-quote {
  background: linear-gradient(180deg, #ffffff, #fbfbff);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 22, 33, 0.08);
  border-color: #c7ccda;
}

.review-quote h3 {
  font-size: 1.05rem;
}

.review-quote p {
  margin-top: 0.45rem;
}

.review-meta {
  margin-top: 0.65rem;
  font-size: 0.86rem;
  color: #7c7c82;
  font-weight: 600;
}

.review-date {
  margin-top: 0.25rem;
  font-size: 0.76rem;
  color: #8a8f9e;
  letter-spacing: 0.02em;
}

.review-section-note {
  margin-top: 0.28rem;
  color: #6f7481;
}

.review-section-actions {
  margin-top: 0.55rem;
  margin-bottom: 0.1rem;
}

.reviews-marquee::-webkit-scrollbar {
  height: 8px;
}

.reviews-marquee::-webkit-scrollbar-thumb {
  background: #c7c7cf;
  border-radius: 999px;
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.profile-modal.hidden {
  display: none;
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.profile-modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.05rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.profile-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #555;
  cursor: pointer;
}

.profile-modal-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.profile-modal-fulltext {
  margin-top: 0.85rem;
}

.inquiry-target {
  margin-bottom: 0.8rem;
}

.inquiry-target.is-active {
  border-color: #8bb8ea;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.inquiry-target-name {
  margin-top: 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
}

#profileInquirySubmit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.65);
}

.language-modal.hidden {
  display: none;
}

.language-card {
  width: min(620px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #2b2b2e;
  background: #111;
  color: #fff;
  padding: 1.15rem;
}

.language-card p {
  color: #a1a1a6;
}

.language-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-options {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.language-btn {
  border: 1px solid #2f2f33;
  background: #1b1b1f;
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.72rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.language-btn:hover {
  border-color: #4b4b52;
}

footer {
  width: min(1200px, 94%);
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

footer a {
  color: #4a4a50;
  text-decoration: none;
}

footer a:hover {
  color: #1d1d1f;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .split,
  .cards,
  .catalog-grid,
  .articles-grid,
  .profile-modal-grid,
  .catalog-toolbar,
  .experience-stats,
  .experience-journey,
  .review-wall {
    grid-template-columns: 1fr;
  }

  .hero {
    border-radius: 26px;
    min-height: auto;
    padding: 2rem 1.1rem;
  }

  .hero.hero-compact h1 {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  #warum-vermittlung h2 {
    font-size: clamp(1.86rem, 9vw, 2.34rem);
  }

  #warum-vermittlung .why-lead {
    font-size: clamp(1.12rem, 5.8vw, 1.3rem);
  }

  #warum-vermittlung p {
    font-size: clamp(1.02rem, 4.6vw, 1.16rem);
  }

  .topbar {
    border-radius: 16px;
    position: static;
    padding: 0.68rem 0.8rem;
    flex-wrap: wrap;
    z-index: 80;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 91;
    font-size: 1.3rem;
    line-height: 1;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
  }

  .nav-links {
    display: flex;
    position: fixed;
    inset: 0.75rem;
    padding: 5.6rem 1.4rem 1.4rem;
    border-radius: 20px;
    background:
      radial-gradient(circle at 18% 14%, rgba(80, 160, 255, 0.18), transparent 40%),
      radial-gradient(circle at 85% 10%, rgba(164, 110, 255, 0.14), transparent 42%),
      linear-gradient(165deg, rgba(11, 14, 24, 0.96), rgba(9, 11, 20, 0.94));
    border: 1px solid rgba(95, 121, 170, 0.32);
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px) scale(0.985);
    transition:
      opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    z-index: 90;
    will-change: opacity, transform;
  }

  .topbar.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    width: 100%;
    padding: 0.62rem 0.1rem;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.12;
    color: #f5f5f7;
    letter-spacing: -0.02em;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      color 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease;
  }

  .nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }

  .topbar.is-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .topbar.is-open .nav-links a:nth-child(1) { transition-delay: 35ms; }
  .topbar.is-open .nav-links a:nth-child(2) { transition-delay: 70ms; }
  .topbar.is-open .nav-links a:nth-child(3) { transition-delay: 105ms; }
  .topbar.is-open .nav-links a:nth-child(4) { transition-delay: 140ms; }
  .topbar.is-open .nav-links a:nth-child(5) { transition-delay: 175ms; }
  .topbar.is-open .nav-links a:nth-child(6) { transition-delay: 210ms; }
  .topbar.is-open .nav-links a:nth-child(7) { transition-delay: 245ms; }
  .topbar.is-open .nav-links a:nth-child(8) { transition-delay: 280ms; }
  .topbar.is-open .nav-links a:nth-child(9) { transition-delay: 315ms; }

  .topbar.is-open .nav-toggle {
    transform: rotate(90deg) scale(1.03);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(72, 103, 155, 0.55);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  }

  .nav-links a.is-active {
    color: #ffffff;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.95);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.18em;
    text-decoration-skip-ink: none;
  }

  .topbar.is-open .brand {
    color: #f5f5f7;
    position: relative;
    z-index: 91;
  }

  .topbar.is-open .brand-sub {
    color: #b7bcc8;
  }

body.menu-open {
  overflow: hidden;
}

.scroll-top-btn {
  position: fixed;
  right: clamp(0.8rem, 2.3vw, 1.35rem);
  bottom: clamp(0.8rem, 2.6vw, 1.5rem);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(120, 127, 145, 0.5);
  background: rgba(20, 24, 34, 0.88);
  color: #f7f8fb;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.scroll-top-btn:hover {
  background: rgba(28, 34, 48, 0.95);
  border-color: rgba(163, 174, 205, 0.62);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

  .toolbar-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}
