/* =========================================================================
   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;
  text-rendering: optimizeLegibility;
  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;
  will-change: transform;
}
.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(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  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__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 { 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 { 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%); transition: transform .4s var(--ease-out);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .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; }
.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,.97) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.35) 60%, rgba(255,255,255,0) 82%),
    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(70px, 12vw, 150px) 0 clamp(60px, 9vw, 120px); }
.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: 14px 26px;
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line);
}
.hero__trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero__trust-item svg { width: 19px; height: 19px; color: var(--teal); flex: none; }
.iata-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 13px; box-shadow: var(--shadow-sm);
}
.iata-badge svg { width: 22px; height: 22px; color: var(--teal); }
.iata-badge b { font-family: var(--font-display); font-size: .82rem; letter-spacing: .02em; color: var(--ink); }
.iata-badge span { font-size: .72rem; color: var(--muted); display: block; line-height: 1; }

/* ---------- 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__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: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--teal); margin-bottom: 20px;
  transition: background .3s, color .3s, transform .3s;
}
.feat:hover .feat__icon { background: var(--teal); color: #fff; transform: rotate(-6deg); }
.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: 11px; fill: var(--on-dark); font-weight: 500; letter-spacing: .04em; }
.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; }
.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,.1); }
.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: 3px; width: 18px; height: 18px; accent-color: var(--teal); flex: none; }

.map-embed { 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); }

/* ---------- Legal prose ---------- */
.legal { max-width: 820px; }
.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; }
.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); }

/* ---------- Hevea (Naturlatex) accent ---------- */
.hevea-mark { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--pill);
  background: var(--bg-tint); color: var(--teal-ink); font-weight: 600; font-size: .9rem;
}
.pill svg { width: 16px; height: 16px; }

/* product chips */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-top: 8px; }
.prod {
  padding: 20px; border-radius: var(--r-sm); background: var(--card); border: 1px solid var(--line);
  text-align: center; transition: transform .3s, box-shadow .3s;
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.prod__name { font-family: var(--font-display); font-weight: 700; color: var(--teal); font-size: 1.05rem; }
.prod__cat { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* Subbrand-Band (kompakter Hevea-Hinweis auf der Startseite) */
.subbrand { display: grid; grid-template-columns: 340px 1fr; align-items: stretch; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s; }
.subbrand:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.subbrand__media { position: relative; overflow: hidden; }
.subbrand__media img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; transition: transform .8s var(--ease-out); }
.subbrand:hover .subbrand__media img { transform: scale(1.05); }
.subbrand__body { padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.subbrand__body h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); margin: 12px 0 8px; }
.subbrand__body p { color: var(--muted); max-width: 52ch; }
.subbrand__body .textlink { margin-top: 18px; }
@media (max-width: 680px) { .subbrand { grid-template-columns: 1fr; } .subbrand__media img { min-height: 190px; } }

/* ---------- 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 h4 { 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; }

/* ---------- Demo flag ---------- */
.demo-flag {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(13,28,29,.9); color: #fff; backdrop-filter: blur(8px);
  padding: 9px 15px; border-radius: var(--pill); font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s var(--ease);
}
.demo-flag:hover { transform: translateY(-3px); }
.demo-flag strong { color: var(--teal-glow); font-weight: 700; }
.demo-flag__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-glow); box-shadow: 0 0 0 0 rgba(25,224,208,.6); animation: dot 2s infinite; }
@keyframes dot { 0% { box-shadow: 0 0 0 0 rgba(25,224,208,.55); } 70% { box-shadow: 0 0 0 9px rgba(25,224,208,0); } 100% { box-shadow: 0 0 0 0 rgba(25,224,208,0); } }
@media (max-width: 520px) { .demo-flag span.demo-flag__txt { display: none; } }

/* ---------- 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 { 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; } }
