/* =========================================================================
   SHINE Express Germany — Design-Studie von EH-Productions
   Eigenständiges Demo-Stylesheet. Markenfarbe Teal #0C7979 (vom Original).
   Headlines: Space Grotesk · Body: Inter (lokal gehostet, fonts/fonts.css)
   ========================================================================= */

:root {
  /* Marke (exakt von shine-germany.de) */
  --teal:        #0c7979;
  --teal-2:      #008181;
  --teal-deep:   #075b5b;
  --teal-night:  #062a2b;   /* dunkle immersive Flächen */
  --teal-night2: #04201f;
  --teal-ink:    #064d4d;   /* teal-Text auf Hell */
  --teal-glow:   #19e0d0;   /* heller Akzent/Glow */

  --ink:    #0d1c1d;        /* Haupttext */
  --ink-2:  #3a4a4a;
  --muted:  #5e7070;        /* Sekundärtext */
  --muted-2:#8aa0a0;

  --bg:      #ffffff;
  --bg-soft: #f3f7f6;       /* sanftes Teal-Grau */
  --bg-tint: #e9f2f1;
  --card:    #ffffff;
  --line:    rgba(13,28,29,.10);
  --line-2:  rgba(13,28,29,.06);

  --white:   #ffffff;
  --on-dark: #eaf5f3;
  --on-dark-muted: #9cc4c0;

  --shadow-sm: 0 2px 10px rgba(6,42,43,.06);
  --shadow:    0 18px 50px -22px rgba(6,42,43,.28);
  --shadow-lg: 0 40px 90px -30px rgba(6,42,43,.42);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --pill: 999px;

  --container: min(1240px, 92vw);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

::selection { background: var(--teal); color: #fff; }

:focus-visible { outline: 3px solid var(--teal-2); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--teal); color: #fff; padding: 10px 18px; border-radius: var(--pill);
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.h-xl { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.h-md { font-size: clamp(1.6rem, 3vw, 2.3rem); }

p { text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-2); line-height: 1.55; }
strong { font-weight: 700; }
.accent { color: var(--teal); }
.italic { font-style: italic; }

/* Kicker (Sektions-Label) */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-ink);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--teal); border-radius: 2px;
}
.kicker--light { color: var(--teal-glow); }
.kicker--light::before { background: var(--teal-glow); }
.kicker--center { justify-content: center; }

/* ---------- Layout ---------- */
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-680 { max-width: 680px; }
.maxw-760 { max-width: 760px; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .lead { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--teal);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
}
.btn svg { width: 19px; height: 19px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 12px 30px -12px rgba(12,121,121,.7); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(12,121,121,.85); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--teal-deep); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--lg { padding: 18px 32px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; color: var(--teal);
}
.textlink svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- Status / Trust marquee ---------- */
.topbar {
  background: var(--teal-night); color: var(--on-dark);
  font-size: .8rem; letter-spacing: .04em; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 38s linear infinite;
}
.topbar__track span {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 26px;
  white-space: nowrap; color: var(--on-dark-muted);
}
.topbar__track b { color: #fff; font-weight: 600; }
.topbar__track i { color: var(--teal-glow); font-style: normal; }
.topbar:hover .topbar__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .topbar__track { animation: none; } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .3s var(--ease), background .3s;
}
.nav.is-scrolled { box-shadow: 0 8px 30px -18px rgba(6,42,43,.4); }
.nav__drop > button.is-active { color: var(--teal); }
@media (max-width: 1000px) { .nav { background: rgba(255,255,255,.96); backdrop-filter: none; -webkit-backdrop-filter: none; } }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: baseline; gap: 8px; margin-right: auto; }
.brand__mark { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.03em; font-style: italic; color: var(--teal); line-height: 1; }
.brand__sub { font-family: var(--font-body); font-weight: 500; font-size: .82rem; letter-spacing: .02em; color: var(--ink-2); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 9px 14px; border-radius: var(--pill);
  font-size: .96rem; font-weight: 500; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--teal); background: var(--bg-tint); }
.nav__links a.is-active { color: var(--teal); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.nav__cta {
  margin-left: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff !important;
  padding: 11px 20px !important; border-radius: var(--pill);
  font-family: var(--font-display); font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
  box-shadow: 0 10px 24px -12px rgba(12,121,121,.7);
}
.nav__cta:hover { background: var(--teal-deep) !important; transform: translateY(-2px); }
.nav__cta svg { width: 16px; height: 16px; }

/* Nav Dropdown (Leistungen) */
.nav__drop { position: relative; }
.nav__drop > button {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: var(--pill);
  font-size: .96rem; font-weight: 500; color: var(--ink-2); transition: color .2s, background .2s;
}
.nav__drop > button:hover, .nav__drop:focus-within > button { color: var(--teal); background: var(--bg-tint); }
.nav__drop > button svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav__drop:hover > button svg, .nav__drop:focus-within > button svg, .nav__drop.is-open > button svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu, .nav__drop.is-open .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 11px;
  font-size: .95rem; font-weight: 500; color: var(--ink-2);
}
.nav__menu a:hover { background: var(--bg-tint); color: var(--teal); }
.nav__menu a::after { display: none; }
.nav__menu a span.ic { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-tint); color: var(--teal); display: grid; place-items: center; flex: none; transition: background .2s, color .2s; }
.nav__menu a:hover span.ic { background: var(--teal); color: #fff; }
.nav__menu a span.ic svg { width: 17px; height: 17px; }
.nav__menu a small { display: block; color: var(--muted); font-weight: 400; font-size: .78rem; }

@media (max-width: 1000px) {
  .nav__drop { position: static; }
  .nav__drop > button { width: 100%; justify-content: space-between; padding: 14px 16px; font-size: 1.1rem; border-radius: 12px; }
  .nav__menu {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 14px; padding: 2px 0; min-width: 0;
  }
  .nav__menu a small { display: none; }
  .nav__menu a span.ic { width: 26px; height: 26px; }
}

.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 100px 22px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); visibility: hidden;
    transition: transform .4s var(--ease-out), visibility 0s linear .4s;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); visibility: visible; transition: transform .4s var(--ease-out), visibility 0s; }
  .nav__links a { padding: 14px 16px; font-size: 1.1rem; border-radius: 12px; }
  .nav__links a.is-active::after { display: none; }
  .nav__cta { margin: 10px 0 0; justify-content: center; padding: 15px !important; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(6,28,28,.45); z-index: 80;
    opacity: 0; visibility: hidden; transition: opacity .3s;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(560px, 90vh, 900px); display: grid; align-items: center; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.8) 32%, rgba(255,255,255,.28) 62%, rgba(255,255,255,0) 85%),
    linear-gradient(0deg, rgba(255,255,255,.6), rgba(255,255,255,0) 40%);
}
@media (max-width: 760px) {
  .hero__media::after {
    background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.5) 100%);
  }
}
.hero__inner { padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 112px); }
.hero__copy { max-width: 660px; }
.hero h1 { margin: 18px 0 0; }
.hero__sub { margin-top: 22px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
}
@media (min-width: 720px) { .hero__trust { flex-wrap: nowrap; } }
.hero__trust-item { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.hero__trust-item svg { width: 17px; height: 17px; color: var(--teal); flex: none; }
.iata-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 6px 11px; box-shadow: var(--shadow-sm); flex: none;
}
.iata-badge svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.iata-badge b { font-family: var(--font-display); font-size: .78rem; letter-spacing: .02em; color: var(--ink); white-space: nowrap; }
.iata-badge span { font-size: .67rem; color: var(--muted); display: block; line-height: 1; white-space: nowrap; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.svc-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r); background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card__media { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(6,42,43,.34)); }
.svc-card__num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--teal); font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  backdrop-filter: blur(4px);
}
.svc-card__num svg { width: 20px; height: 20px; }
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 1.42rem; }
.svc-card__body p { color: var(--muted); font-size: .98rem; margin-top: 10px; flex: 1; }
.svc-card__link { margin-top: 20px; align-self: flex-start; }

/* Feature/benefit cards (Service-Detailseiten) */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feat {
  position: relative; padding: 30px 28px 32px; border-radius: var(--r);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .3s;
  overflow: hidden;
}
.feat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--teal), var(--teal-2)); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feat:hover::before { transform: scaleY(1); }
.feat__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal), var(--teal-2)); color: #fff; margin-bottom: 20px;
  box-shadow: 0 12px 26px -12px rgba(12,121,121,.6);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.feat:hover .feat__icon { transform: scale(1.06) rotate(-5deg); }
.feat__icon svg { width: 26px; height: 26px; }
.feat__kicker { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-ink); }
.feat h3 { font-size: 1.28rem; margin: 6px 0 12px; }
.feat p { color: var(--muted); font-size: .96rem; }

/* ---------- Dark immersive: globales Netzwerk ---------- */
.netz {
  position: relative; isolation: isolate; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 10%, var(--teal-night) 0%, var(--teal-night2) 60%, #021615 100%);
  color: var(--on-dark);
}
.netz::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(25,224,208,.10) 1px, transparent 1px);
  background-size: 30px 30px; mask-image: radial-gradient(120% 100% at 70% 30%, #000 0%, transparent 75%);
}
.netz h2, .netz h3 { color: #fff; }
.netz .lead { color: var(--on-dark-muted); }
.netz__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
@media (max-width: 900px) { .netz__grid { grid-template-columns: 1fr; } }

.globe { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 540px; margin-inline: auto; }
.globe svg { width: 100%; height: 100%; overflow: visible; }
.globe__ring { fill: none; stroke: rgba(25,224,208,.22); stroke-width: 1; }
.globe__route { fill: none; stroke: url(#routeGrad); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len); }
.is-revealed .globe__route { animation: draw 2.4s var(--ease) forwards; }
.globe__route--2 { animation-delay: .35s !important; }
.globe__route--3 { animation-delay: .7s !important; }
.globe__route--4 { animation-delay: 1.05s !important; }
.globe__route--5 { animation-delay: 1.4s !important; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.globe__node { fill: var(--teal-glow); }
.globe__node--hub { fill: #fff; }
.globe__pulse { fill: none; stroke: var(--teal-glow); transform-box: fill-box; transform-origin: center; }
.is-revealed .globe__pulse { animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { r: 4; opacity: .9; } 100% { r: 26px; opacity: 0; } }
.globe__label { font-family: var(--font-display); font-size: 13px; fill: var(--on-dark); font-weight: 500; letter-spacing: .04em; }
@media (max-width: 620px) { .globe__label { display: none; } }
.globe__label--hub { fill: #fff; font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .globe__route { stroke-dashoffset: 0; animation: none; }
  .globe__pulse { animation: none; opacity: .4; }
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--r); overflow: hidden; }
@media (max-width: 430px) { .stats { grid-template-columns: 1fr; } }
.stat { background: rgba(4,32,31,.5); padding: 28px 26px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.1rem); color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat__num i { color: var(--teal-glow); font-style: normal; }
.stat__label { margin-top: 10px; color: var(--on-dark-muted); font-size: .92rem; }

/* ---------- Why us — numbered list ---------- */
.why-list { display: grid; gap: 0; }
.why-row {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  padding: 30px 0; border-top: 1px solid var(--line);
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row__num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--teal);
  width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.why-row:hover .why-row__num { background: var(--teal); color: #fff; border-color: var(--teal); transform: scale(1.05); }
.why-row__text { font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--ink); line-height: 1.4; font-weight: 500; padding-top: 8px; }
.why-row__text b { color: var(--teal-ink); }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3/3.4; }
.split__badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: center;
}
.split__badge .n { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--teal); line-height: 1; }
.split__badge .t { font-size: .82rem; color: var(--muted); line-height: 1.3; }

.prose p { color: var(--ink-2); margin-top: 16px; }
.prose p:first-child { margin-top: 0; }

/* checklist */
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; color: var(--ink-2); }
.checklist svg { width: 24px; height: 24px; color: var(--teal); flex: none; margin-top: 1px; }
.checklist b { color: var(--ink); font-weight: 600; }

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(120deg, var(--teal-deep), var(--teal) 55%, var(--teal-2));
  color: #fff; border-radius: var(--r-lg);
  padding: clamp(46px, 6vw, 76px) clamp(28px, 5vw, 70px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 480px; height: 480px; z-index: -1;
  background: radial-gradient(circle, rgba(25,224,208,.5), transparent 65%); opacity: .55;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 600px; margin: 16px auto 0; }
.cta-band .btn { margin-top: 32px; }

/* full-bleed CTA section wrapper */
.cta-wrap { padding: clamp(40px, 6vw, 90px) 0; }

/* ---------- Page hero (Unterseiten) ---------- */
.phero { position: relative; overflow: hidden; isolation: isolate; color: #fff; }
.phero__media { position: absolute; inset: 0; z-index: -2; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__media::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(4,28,28,.62), rgba(4,28,28,.72)), linear-gradient(100deg, rgba(6,42,43,.78), rgba(6,42,43,.25)); }
.phero__inner { padding: clamp(80px, 13vw, 180px) 0 clamp(50px, 7vw, 96px); max-width: 760px; }
.phero h1 { color: #fff; margin-top: 16px; }
.phero p { color: rgba(255,255,255,.86); margin-top: 18px; max-width: 560px; }
.phero .kicker { color: var(--teal-glow); }
.phero .kicker::before { background: var(--teal-glow); }

.crumbs { display: flex; gap: 8px; align-items: center; font-size: .86rem; color: rgba(255,255,255,.7); }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }

/* dark page hero variant (legal) */
.phero--solid { background: var(--teal-night); }
.phero--solid .phero__inner { padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 6vw, 70px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm);
}
.info-row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); align-items: start; }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-tint); color: var(--teal); display: grid; place-items: center; grid-row: span 2; }
.info-row__ic svg { width: 22px; height: 22px; }
.info-row__t { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.info-row__v { font-size: 1.08rem; color: var(--ink); font-weight: 500; margin-top: 2px; }
.info-row__v a:hover { color: var(--teal); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(12,121,121,.32); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 4px 0 18px; }
.form-check input { margin-top: 2px; width: 22px; height: 22px; accent-color: var(--teal); flex: none; }
.form-check a { color: var(--teal); text-decoration: underline; }
.hp-field { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.form-alert { background: #fdeceb; color: #93211c; border: 1px solid #f1c4c1; border-radius: 12px; padding: 12px 16px; margin: 4px 0 18px; font-size: .92rem; }
.form-hint { font-size: .82rem; color: var(--muted); margin: 2px 0 12px; }
.req { color: #c0392b; text-decoration: none; font-weight: 700; }
.field input:user-invalid, .field textarea:user-invalid { border-color: #d6534b; }

/* Anfrage-Formular: Gruppen, Auswahlfelder, Dreier-Reihe */
.form-group { border: 0; padding: 0; margin: 0; min-width: 0; }
.form-group + .form-group { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.form-group > legend {
  font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); padding: 0; margin-bottom: 16px;
}
.form-group__note { font-size: .84rem; color: var(--muted); margin: -8px 0 16px; }
.field select {
  width: 100%; padding: 14px 44px 14px 16px; font: inherit; font-size: .98rem; color: var(--ink);
  background-color: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e7070' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 18px;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.field select:focus { outline: none; border-color: var(--teal); background-color: #fff; box-shadow: 0 0 0 4px rgba(12,121,121,.32); }
.form-group + .form-check { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.field-row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .field-row--3 { grid-template-columns: 1fr; } }

.map-embed { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* ---------- Social-Links ---------- */
.social { display: flex; gap: 10px; }

.social__link {
  --brand: var(--teal);
  --brand-fill: var(--teal);
  position: relative;
  width: 42px; height: 42px; border-radius: var(--pill);
  display: grid; place-items: center; flex: none;
  border: 1px solid var(--line);
  background: var(--bg-tint);
  color: var(--teal-ink);
  transition: color .25s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

/* Die Markenfüllung liegt als eigene Ebene darunter — nur so lässt sich der
   Instagram-Verlauf weich einblenden, Verläufe selbst sind nicht animierbar. */
.social__link::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: var(--brand-fill); opacity: 0;
  transition: opacity .25s var(--ease);
}
.social__link svg { position: relative; width: 19px; height: 19px; fill: currentColor; }

.social__link:hover, .social__link:focus-visible {
  color: #fff; border-color: transparent; transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px var(--brand);
}
.social__link:hover::before, .social__link:focus-visible::before { opacity: 1; }
.social__link:active { transform: translateY(-1px); }
/* Der globale Fokusring setzt border-radius: 4px — am runden Chip sieht das kantig aus. */
.social__link:focus-visible { border-radius: var(--pill); outline-offset: 4px; }

.social__link[href*="instagram"] {
  --brand: #d62976;
  --brand-fill: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 62%, #962fbf 88%);
}
.social__link[href*="facebook"] { --brand: #1877f2; --brand-fill: #1877f2; }
.social__link[href*="linkedin"] { --brand: #0a66c2; --brand-fill: #0a66c2; }

.footer .social { margin-top: 18px; }
.footer .social__link { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: var(--on-dark); }
.footer .social__link:hover, .footer .social__link:focus-visible { color: #fff; border-color: transparent; }

@media (prefers-reduced-motion: reduce) {
  .social__link, .social__link:hover, .social__link:focus-visible, .social__link:active { transform: none; }
}

.contact-social { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); align-items: center; }
.contact-social__t { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.contact-social .social { grid-column: 2; }

/* ---------- 2-Klick-Karte (DSGVO) ---------- */
.map-preview {
  position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end; text-align: left;
  border: 0; background: var(--bg-tint); overflow: hidden;
}
.map-preview__scene { position: absolute; inset: 0; background: radial-gradient(120% 120% at 70% 18%, #eef6f5 0%, #dbeceb 55%, #cbe0de 100%); }
.map-preview__grid { position: absolute; inset: -8%; width: 116%; height: 116%; opacity: .55; }
.map-preview__grid path { stroke: rgba(12,121,121,.22); stroke-width: 2; fill: none; }
.map-preview__grid path.major { stroke: rgba(12,121,121,.36); stroke-width: 4; }
.map-preview__pin {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-100%);
  color: var(--teal); filter: drop-shadow(0 6px 8px rgba(6,42,43,.3));
  animation: mapPinDrop .55s var(--ease) both;
}
.map-preview__pin svg { width: 42px; height: 42px; display: block; }
.map-preview__pin::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 15px; height: 5px; border-radius: 50%; background: rgba(6,42,43,.22); transform: translateX(-50%); }
@keyframes mapPinDrop { from { transform: translate(-50%,-165%); opacity: 0; } to { transform: translate(-50%,-100%); opacity: 1; } }
.map-preview__panel {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  padding: 18px 20px; background: linear-gradient(to top, rgba(255,255,255,.97), rgba(255,255,255,.75) 68%, rgba(255,255,255,0));
}
.map-preview__addr { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.map-preview__btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: #fff; background: var(--teal); padding: 10px 18px; border-radius: var(--pill);
  box-shadow: 0 10px 24px -12px rgba(12,121,121,.8); transition: background .2s, transform .2s;
}
.map-preview:hover .map-preview__btn { background: var(--teal-deep); transform: translateY(-1px); }
.map-preview:focus-visible { outline: 3px solid var(--teal-2); outline-offset: -3px; }
.map-preview__note { font-size: .72rem; line-height: 1.45; color: var(--ink-2); max-width: 40ch; }
.map-ext { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .88rem; font-weight: 500; color: var(--teal-ink); }
.map-ext:hover { color: var(--teal); text-decoration: underline; }

/* ---------- Cookie-Consent ---------- */
.cookie {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(24px);
  z-index: 200; width: min(560px, calc(100vw - 32px));
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  padding: 20px 22px; opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.cookie.is-in { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie__title { padding-right: 34px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.cookie__text { font-size: .88rem; line-height: 1.55; color: var(--ink-2); }
.cookie__text a { color: var(--teal); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.cookie__btn { flex: 1 1 auto; min-width: 150px; display: inline-flex; align-items: center; justify-content: center; text-align: center; padding: 12px 18px; border-radius: var(--pill); font-family: var(--font-display); font-weight: 600; font-size: .92rem; transition: transform .2s, background .2s, border-color .2s, color .2s; }
/* Beide Wahlmoeglichkeiten sind bewusst optisch gleichwertig: eine Einwilligung
   darf nicht durch Gestaltung in eine Richtung geschoben werden. Die Teal-
   Hervorhebung zeigt nur, was gerade eingestellt IST (aria-pressed). */
.cookie__btn { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.cookie__btn:hover { border-color: var(--teal); color: var(--teal); }
.cookie__btn[aria-pressed="true"] { border-color: var(--teal); color: var(--teal); background: rgba(12,121,121,.06); }
.cookie__close { position: absolute; top: 10px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; line-height: 1;
  background: transparent; color: var(--ink-2); transition: background .2s, color .2s; }
.cookie__close:hover { background: var(--line); color: var(--ink); }
.cookie__state { margin-top: 10px; }
@media (max-width: 520px) { .cookie { bottom: 12px; padding: 18px; } .cookie__btn { flex: 1 1 100%; } }

/* ---------- Legal prose ---------- */
.legal { max-width: 680px; }
.legal h2 { font-size: 1.5rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal p { color: var(--ink-2); margin-top: 12px; font-size: .98rem; line-height: 1.7; max-width: 68ch; }
.legal address { font-style: normal; color: var(--ink-2); line-height: 1.8; margin-top: 8px; }
.legal a { color: var(--teal); }
.legal a:hover { text-decoration: underline; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
.legal strong { color: var(--ink); }

/* ---------- Footer ---------- */
.footer {
  background: var(--teal-night); color: var(--on-dark-muted);
  padding: clamp(56px, 7vw, 90px) 0 36px; position: relative;
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand .brand__mark { color: var(--teal-glow); }
.footer__brand .brand__sub { color: var(--on-dark-muted); }
.footer__brand p { margin-top: 16px; font-size: .92rem; max-width: 280px; line-height: 1.65; }
.footer h2 { color: #fff; font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: .94rem; transition: color .2s, padding .2s; }
.footer ul a:hover { color: var(--teal-glow); padding-left: 4px; }
.footer address { font-style: normal; font-size: .94rem; line-height: 1.9; }
.footer address a:hover { color: var(--teal-glow); }
.footer__iata { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 10px 14px; }
.footer__iata svg { width: 24px; height: 24px; color: var(--teal-glow); }
.footer__iata b { color: #fff; font-family: var(--font-display); font-size: .8rem; display: block; }
.footer__iata span { font-size: .72rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 28px; font-size: .85rem; }
.footer__bottom a:hover { color: var(--teal-glow); }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* magnetic wrap helper */
.magnetic:hover, .btn--primary:hover, .nav__cta:hover { will-change: transform; }

/* utility */
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }

/* ============ Warum wir — WOW ============ */

/* Enriched dark hero: network field */
.phero--network { background: radial-gradient(125% 135% at 80% -10%, var(--teal-night) 0%, var(--teal-night2) 55%, #021413 100%); }
.phero--network::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .6;
  background-image: radial-gradient(rgba(25,224,208,.13) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 95% at 76% 18%, #000 0%, transparent 68%);
  mask-image: radial-gradient(120% 95% at 76% 18%, #000 0%, transparent 68%);
}
.phero--network::after {
  content: ""; position: absolute; top: -30%; right: -8%; width: 540px; height: 540px; z-index: -1;
  background: radial-gradient(circle, rgba(25,224,208,.20), transparent 62%);
  pointer-events: none;
}

/* Reasons — immersive bento */
.reasons {
  position: relative; isolation: isolate; overflow: hidden;
  background: radial-gradient(120% 120% at 12% 0%, var(--teal-night) 0%, var(--teal-night2) 58%, #021413 100%);
  color: var(--on-dark);
}
.reasons::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(25,224,208,.10) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(125% 100% at 28% 8%, #000 0%, transparent 72%);
  mask-image: radial-gradient(125% 100% at 28% 8%, #000 0%, transparent 72%);
}
.reasons h2 { color: #fff; }
.reasons .kicker { color: var(--teal-glow); }
.reasons .kicker::before { background: var(--teal-glow); }
.reasons .lead { color: var(--on-dark-muted); }

.reasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(32px, 5vw, 56px); }

.rcard {
  position: relative; overflow: hidden; isolation: isolate; border-radius: var(--r);
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.10);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease-out), border-color .3s, background .3s, box-shadow .4s var(--ease-out);
}
.rcard::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--teal-glow), transparent 72%);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.rcard:hover { transform: translateY(-6px); border-color: rgba(25,224,208,.42); background: rgba(255,255,255,.065); box-shadow: 0 30px 60px -30px rgba(0,0,0,.65); }
.rcard:hover::before { transform: scaleX(1); }
.rcard__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; flex: none;
  background: linear-gradient(140deg, rgba(25,224,208,.22), rgba(12,121,121,.14));
  border: 1px solid rgba(25,224,208,.3); color: var(--teal-glow);
  transition: transform .35s var(--ease);
}
.rcard:hover .rcard__icon { transform: scale(1.06) rotate(-4deg); }
.rcard__icon svg { width: 26px; height: 26px; }
.rcard__title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: -.01em; line-height: 1.12; }
.rcard__text { color: var(--on-dark-muted); font-size: .98rem; line-height: 1.6; }

.rcard--feature { grid-column: span 2; }
.rcard--feature .rcard__title { font-size: clamp(1.5rem, 2.4vw, 2.05rem); }
.rcard--feature .rcard__text { max-width: 46ch; }
.rcard__deco { position: absolute; right: -46px; bottom: -46px; width: 240px; height: 240px; opacity: .55; pointer-events: none; z-index: -1; }
.rcard__deco svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .reasons__grid { grid-template-columns: repeat(2, 1fr); }
  .rcard--feature { grid-column: span 2; }
}
@media (max-width: 620px) {
  .reasons__grid { grid-template-columns: 1fr; }
  .rcard--feature { grid-column: span 1; }
  .rcard { padding: 26px 22px; }
  .rcard__deco { width: 170px; right: -34px; bottom: -34px; }
}

/* Light premium reason cards (Startseite-Teaser) */
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(28px, 4vw, 46px); }
.wcard {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 34px 30px 32px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.wcard::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-glow)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.wcard:hover { transform: translateY(-8px); box-shadow: 0 40px 80px -34px rgba(6,42,43,.4); border-color: transparent; }
.wcard:hover::before { transform: scaleX(1); }
.wcard__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(140deg, var(--teal), var(--teal-2)); color: #fff; box-shadow: 0 12px 26px -12px rgba(12,121,121,.65); transition: transform .35s var(--ease); }
.wcard:hover .wcard__icon { transform: scale(1.06) rotate(-4deg); }
.wcard__icon svg { width: 27px; height: 27px; }
.wcard h3 { font-size: 1.32rem; }
.wcard p { color: var(--muted); font-size: .98rem; line-height: 1.6; }
@media (max-width: 860px) { .why-cards { grid-template-columns: 1fr; } }

/* Service-Chips im Hero */
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__chips a {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--pill);
  background: rgba(255,255,255,.9); border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
  transition: transform .25s var(--ease), border-color .25s, color .25s, background .25s;
}
.hero__chips a svg { width: 17px; height: 17px; color: var(--teal); }
.hero__chips a:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal); background: #fff; }

/* Ghost-Button auf dunklem Grund (reasons-Teaser) */
.reasons .btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,.24); }
.reasons .btn--ghost:hover { color: var(--teal-glow); border-color: var(--teal-glow); background: rgba(25,224,208,.06); transform: translateY(-3px); }

/* ---- Hero-Animationen ---- */
.hero__media img { animation: heroZoom 16s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 600; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll svg { width: 20px; height: 20px; color: var(--teal); animation: heroBounce 1.8s var(--ease) infinite; }
@keyframes heroBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.hero__scroll:hover { color: var(--teal); }
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* ---- Globe-Sparks: Fracht bewegt sich im Netz ---- */
.globe__spark { filter: drop-shadow(0 0 5px rgba(25,224,208,.9)); }

@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
  .hero__scroll svg { animation: none; }
  .globe__spark { display: none; }
}

/* ============ Unterseiten-Heros auf Startseiten-Niveau ============
   Betrifft die fuenf Foto-Heros (Ueber uns + vier Leistungen). Die dunklen
   Rechtstext-Heros (.phero--solid) bleiben bewusst schlicht.
   Alles rein per CSS, damit keine Seite vergessen wird. */

/* Praesenz: der Hero soll tragen, aber die Startseite nicht kopieren (die ist 90vh). */
.phero:not(.phero--solid) {
  min-height: clamp(360px, 54vh, 600px);
  display: grid;
  align-items: center;
}

/* Ken-Burns wie auf der Startseite: das Bild kommt langsam zur Ruhe. */
.phero__media img { animation: heroZoom 16s ease-out both; }

/* Netzfeld ueber dem Foto: dasselbe Punktraster und derselbe Glow wie auf
   "Warum wir", nur schwaecher, damit das Foto fuehrt. z-index -1 = ueber dem
   Farbverlauf aus .phero__media::after, aber unter der Schrift. */
.phero:not(.phero--solid)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .45; pointer-events: none;
  background-image: radial-gradient(rgba(25,224,208,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(115% 90% at 78% 15%, #000 0%, transparent 66%);
  mask-image: radial-gradient(115% 90% at 78% 15%, #000 0%, transparent 66%);
}
.phero:not(.phero--solid)::after {
  content: ""; position: absolute; top: -28%; right: -6%; width: 480px; height: 480px; z-index: -1;
  background: radial-gradient(circle, rgba(25,224,208,.16), transparent 62%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .phero__media img { animation: none; }
}

/* Unterseiten-Ueberschrift: die Startseite darf am lautesten sein.
   Bis 5,6rem sprengte jede H1 den 760px-Textblock, die gesetzten <br> gingen
   unter und aus zwei Zeilen wurden vier (auf den Leistungsseiten rutschte
   dadurch der Anfrage-Knopf unter die Falz). */
.phero h1 { font-size: clamp(2.2rem, 4.6vw, 4.2rem); }
.phero:not(.phero--solid) .phero__inner { max-width: 820px; }

/* Ghost-Button auf dunklem Hero (404-Seite): ohne diese Regel steht dunkler Text
   auf dunklem Grund und der Knopf ist praktisch unsichtbar. */
.phero .btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,.24); }
.phero .btn--ghost:hover { color: var(--teal-glow); border-color: var(--teal-glow); background: rgba(25,224,208,.06); transform: translateY(-3px); }
