@charset "UTF-8";
/* ============================================================
   GLIMT — Webdesign & Branding Studio
   Stil: dunkel, bold, mit Bewegung
   ============================================================ */

:root {
  --bg:        #08080c;
  --bg-soft:   #101017;
  --bg-card:   #14141d;
  --line:      #232334;
  --text:      #f3f3f7;
  --muted:     #8d8da3;
  --accent:    #c9ff3b;          /* Electric Lime — der "Blitz" */
  --accent-dim:#a4d62f;
  --radius:    18px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,1,.36,1);

  /* Typografie — zentral steuerbar */
  --font-display: "Syne", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.accent { color: var(--accent); }

/* ============================================================
   Cursor-Lichtblitz + Grain
   ============================================================ */
.glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  margin: -300px 0 0 -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,255,59,.16) 0%, rgba(201,255,59,0) 60%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .4s ease;
  will-change: transform;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: padding .3s var(--ease), background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(8,8,12,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.logo__text { display: inline-flex; align-items: baseline; gap: .32em; }
.logo__name { font-weight: 700; }
.logo__sep { font-weight: 400; color: var(--muted); }
.logo__sub { font-weight: 400; letter-spacing: .02em; }
.logo__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px 2px var(--accent);
  animation: pulse 2.4s infinite var(--ease);
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.5); opacity: .55; }
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color .25s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201,255,59,.35);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s ease;
}
.nav.open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.open .nav__burger span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  z-index: 3;
}
.hero__eyebrow {
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 7.2rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 34px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--xl { font-size: clamp(4.5rem, 15vw, 11rem); font-weight: 800; line-height: .88; }
.hero__title .line--lead { font-size: clamp(1.5rem, 3.8vw, 3rem); font-weight: 600; line-height: 1.1; }
.hero__title .line--lead:first-of-type { margin-top: .45em; }
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease) forwards;
}
.hero__title .line:nth-child(1) .word { animation-delay: .15s; }
.hero__title .line:nth-child(2) .word { animation-delay: .28s; }
.hero__title .line:nth-child(3) .word { animation-delay: .42s; }
.hero__title .accent { position: relative; }
.hero__title .accent::after {
  content: "";
  position: absolute; left: 0; bottom: .08em;
  width: 100%; height: .09em;
  background: var(--accent);
  box-shadow: 0 0 22px 3px var(--accent);
  transform: scaleX(0); transform-origin: left;
  animation: sweep .8s var(--ease) 1s forwards;
}
@keyframes rise  { to { transform: translateY(0); } }
@keyframes sweep { to { transform: scaleX(1); } }

.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__sub--quote { font-style: italic; color: var(--text); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(201,255,59,.4);
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.04);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(255,255,255,.05);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   Laufband (Marquee)
   ============================================================ */
.marquee {
  position: relative; z-index: 3;
  border-block: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.marquee__track {
  display: flex; align-items: center; gap: 30px;
  width: max-content;
  animation: scrollX 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
}
.marquee__track .star { color: var(--accent); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   Sections
   ============================================================ */
.section { position: relative; z-index: 3; padding: 120px 0; }
.section--alt { background: var(--bg-soft); }

.section__head { max-width: 640px; margin-bottom: 64px; }
.section__tag {
  display: inline-block;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section__lead { color: var(--muted); font-size: 1.1rem; }

/* ---------- Leistungen ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px 44px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s ease;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%),
              rgba(201,255,59,.10), transparent 60%);
  opacity: 0; transition: opacity .4s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--accent-dim); }
.card:hover::before { opacity: 1; }
.card__num {
  font-family: var(--font-display);
  font-size: .95rem; color: var(--accent); font-weight: 600;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  margin: 16px 0 14px;
}
.card__text { color: var(--muted); }

/* ---------- Warum GLIMT ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.why__item {
  border-top: 2px solid var(--accent);
  padding-top: 26px;
}
.why__item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.why__item p { color: var(--muted); }

/* ---------- Preise ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--accent-dim); }
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201,255,59,.07), var(--bg-card));
}
.price-card__badge {
  position: absolute; top: -13px; left: 32px;
  background: var(--accent); color: var(--bg);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; margin-bottom: 8px;
}
.price-card__desc { color: var(--muted); font-size: .94rem; margin-bottom: 22px; min-height: 44px; }
.price-card__price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.price-card__from { color: var(--muted); font-size: 1rem; font-weight: 500; }
.price-card__amount {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700; line-height: 1;
}
.price-card__cur {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; color: var(--accent);
}
.price-card__note { color: var(--muted); font-size: .84rem; margin-bottom: 26px; }
.price-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 30px; flex: 1;
}
.price-card__features li { position: relative; padding-left: 27px; font-size: .94rem; }
.price-card__features li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.price-card__hint { color: var(--muted); font-size: .8rem; line-height: 1.5; margin: -8px 0 20px; }
.price-card .btn { width: 100%; justify-content: center; }

/* SEO-Texte Zusatz-Option */
.price-card__addon {
  display: flex; align-items: center; gap: 11px;
  margin-bottom: 24px; cursor: pointer; user-select: none;
  font-size: .9rem; color: var(--muted);
}
.price-card__addon input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.price-card__addon-box {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.42); background: var(--bg);
  box-shadow: 0 2px 8px rgba(255,255,255,.07);
  display: grid; place-items: center;
  transition: border-color .25s ease, background .25s ease;
}
.price-card__addon-box::after {
  content: "\2713"; font-size: .82rem; font-weight: 700; color: var(--bg);
  opacity: 0; transform: scale(.5); transition: opacity .2s ease, transform .2s ease;
}
.price-card__addon:hover .price-card__addon-box { border-color: var(--accent-dim); }
.price-card__addon input:checked + .price-card__addon-box { background: var(--accent); border-color: var(--accent); }
.price-card__addon input:checked + .price-card__addon-box::after { opacity: 1; transform: scale(1); }
.price-card__addon input:focus-visible + .price-card__addon-box { outline: 2px solid var(--accent); outline-offset: 2px; }
.price-card__addon-price { color: var(--accent); font-weight: 600; }

.pricing__note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 30px; line-height: 1.65; max-width: 760px; margin-inline: auto; }
.pricing__note strong { color: var(--text); font-weight: 600; }

.pricing-fineprint {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line);
}
.pricing-fineprint__item h4 {
  font-size: .95rem; font-weight: 600; margin-bottom: 8px;
  padding-left: 16px; position: relative;
}
.pricing-fineprint__item h4::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700; font-size: .9rem;
}
.pricing-fineprint__item p { color: var(--muted); font-size: .86rem; line-height: 1.6; }
.pricing-fineprint__item strong { color: var(--text); font-weight: 600; }

/* Ablauf / Änderungswünsche */
.pricing-process {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 38px;
}
.pricing-process__intro { text-align: center; margin-bottom: 36px; }
.pricing-process__intro h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 6px;
}
.pricing-process__intro p { color: var(--muted); font-size: .95rem; }
.pricing-process__steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.pricing-process__step-num {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,255,59,.1); color: var(--accent);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 15px;
}
.pricing-process__steps h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 7px; }
.pricing-process__steps p { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.pricing-process__hint {
  margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line);
  text-align: center; color: var(--muted); font-size: .92rem; line-height: 1.65;
  max-width: 720px; margin-inline: auto;
}
.pricing-process__hint strong { color: var(--text); font-weight: 600; }

/* ---------- Arbeiten ---------- */
.work-group { margin-top: 56px; }
.work-group:first-of-type { margin-top: 44px; }
.work-group__label {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.work-group__label::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work__item { display: block; cursor: pointer; }
.work__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s ease;
}
.work__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .5s var(--ease);
}
.work__media::after {
  content: "\2922";
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(8,8,12,.6); backdrop-filter: blur(4px);
  font-size: 1.1rem; color: var(--accent);
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease, transform .35s var(--ease);
}
.work__item:hover .work__media {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
}
.work__item:hover .work__media img { transform: scale(1.05); }
.work__item:hover .work__media::after { opacity: 1; transform: translateY(0); }
.work__meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-top: 16px;
}
.work__meta h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.work__meta span { color: var(--muted); font-size: .86rem; text-align: right; flex: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  background: rgba(4,4,8,.86); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__figure {
  margin: 0; max-width: 880px; width: 100%;
  transform: scale(.96); transition: transform .3s var(--ease);
}
.lightbox.open .lightbox__figure { transform: scale(1); }
.lightbox__img {
  width: 100%; height: auto; max-height: 78vh; object-fit: contain;
  border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__caption { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 16px; }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--line); color: var(--text);
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.lightbox__close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }

/* ---------- Studio / Über ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  padding: 14px;                 /* Rahmenbreite */
  /* Schwarzer Rahmen — schwebend mit sehr leichtem weißen Schatten */
  background-color: #000;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 30px 55px -14px rgba(255,255,255,.10);
  margin: 0;
}
.about__photo-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 13px;
  overflow: hidden;
}
.about__photo-ph {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: .12em;
  background: var(--bg-card);
}
.about__photo img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  transition: transform .8s var(--ease), filter .6s ease;
}
.about__photo-inner::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(201,255,59,.16), transparent 50%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none;
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo:hover .about__photo-inner::after { opacity: 1; }

.about__text p { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }
.about__name strong { color: var(--accent); }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700; line-height: 1;
}
.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--accent); font-weight: 600;
}
.stat__label { display: block; color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ---------- Kontakt ---------- */
.section--contact { padding-block: 140px; }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-top: 18px;
  margin-bottom: 24px;
}
.contact__text { color: var(--muted); font-size: 1.05rem; max-width: 42ch; margin-bottom: 34px; }
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .35s ease, transform .35s var(--ease), background .35s ease;
}
.contact__link:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--bg-card);
}
.contact__label {
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.contact__value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 600;
}

/* ---------- Projekt-Funnel ---------- */
.funnel {
  background: linear-gradient(180deg, rgba(201,255,59,.05), var(--bg-card));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 30px 28px;
  display: flex; flex-direction: column;
  scroll-margin-top: 90px;
  box-shadow: 0 32px 70px -16px rgba(255,255,255,.18), 0 14px 34px rgba(0,0,0,.55);
}
.funnel__head { margin-bottom: 24px; }
.funnel__progress { height: 5px; border-radius: 100px; background: var(--line); overflow: hidden; }
.funnel__progress-bar {
  display: block; height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 100px; transition: width .45s var(--ease);
}
.funnel__step-label {
  display: block; margin-top: 11px;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.funnel__body { min-height: 268px; }
.funnel__step { display: none; }
.funnel__step.is-active { display: block; animation: funnelIn .42s var(--ease); }
@keyframes funnelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.funnel__q {
  font-family: var(--font-display);
  font-size: 1.32rem; font-weight: 600; line-height: 1.25; margin-bottom: 20px;
}
.funnel__options { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; grid-auto-rows: 1fr; }
.funnel__options--list { grid-template-columns: 1fr; }
.funnel__opt {
  text-align: left; font: inherit; color: var(--text); cursor: pointer;
  background: var(--bg); border: 1px solid rgba(255,255,255,.15); border-radius: 12px;
  padding: 14px 16px; font-size: .92rem; font-weight: 500; min-height: 66px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: 0 4px 14px rgba(255,255,255,.04);
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.funnel__opt:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.funnel__opt.is-selected { border-color: var(--accent); background: rgba(201,255,59,.09); }
.funnel__opt-price { color: var(--accent); font-weight: 600; font-size: .9rem; flex: none; }
.funnel__addon {
  display: flex; align-items: center; gap: 11px; margin-top: 16px;
  cursor: pointer; user-select: none; font-size: .92rem; color: var(--muted);
}
.funnel__addon input { position: absolute; opacity: 0; width: 0; height: 0; }
.funnel__addon-box {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.42); background: var(--bg);
  box-shadow: 0 2px 8px rgba(255,255,255,.07);
  display: grid; place-items: center; transition: border-color .25s ease, background .25s ease;
}
.funnel__addon-box::after {
  content: "\2713"; font-size: .8rem; font-weight: 700; color: var(--bg);
  opacity: 0; transform: scale(.5); transition: opacity .2s ease, transform .2s ease;
}
.funnel__addon input:checked + .funnel__addon-box { background: var(--accent); border-color: var(--accent); }
.funnel__addon input:checked + .funnel__addon-box::after { opacity: 1; transform: scale(1); }
.funnel__fields { display: flex; flex-direction: column; gap: 12px; }
.funnel__fields input, .funnel__fields textarea {
  font: inherit; color: var(--text); background: var(--bg); width: 100%;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  transition: border-color .25s ease; resize: vertical;
}
.funnel__fields input::placeholder, .funnel__fields textarea::placeholder { color: #5e5e72; }
.funnel__fields input:focus, .funnel__fields textarea:focus { outline: none; border-color: var(--accent); }
.funnel__fields .has-error { border-color: #ff6b6b; }
.funnel__nav { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.funnel__back {
  font: inherit; color: var(--muted); background: none; border: none;
  cursor: pointer; padding: 8px 4px; font-size: .92rem; transition: color .2s ease;
}
.funnel__back:hover { color: var(--text); }
.funnel__next { margin-left: auto; }
.funnel__next:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.funnel__success { text-align: center; padding: 24px 0; }
.funnel__check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 1.8rem; font-weight: 700;
  color: var(--bg); background: var(--accent);
}
.funnel__success p { color: var(--muted); margin-top: 8px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { position: relative; z-index: 3; border-top: 1px solid var(--line); padding: 60px 0 50px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.footer__brand p { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.footer__addr { color: var(--muted); font-size: .9rem; font-style: normal; margin-top: 6px; }
.footer__nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer__nav a { color: var(--muted); font-size: .92rem; transition: color .25s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__copy { color: var(--muted); font-size: .88rem; text-align: right; }

/* ============================================================
   Rechtstexte (Impressum / Datenschutz)
   ============================================================ */
.legal { padding: 160px 0 100px; position: relative; z-index: 3; }
.legal .container { max-width: 780px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  margin: 40px 0 14px;
}
.legal p, .legal address {
  color: var(--muted); font-style: normal; margin-bottom: 14px;
}
.legal a { color: var(--accent); }
.legal .todo {
  display: inline-block;
  background: rgba(201,255,59,.12);
  color: var(--accent);
  padding: 1px 8px; border-radius: 5px;
  font-size: .9em; font-weight: 600;
}
.legal__back {
  display: inline-block; margin-bottom: 40px;
  color: var(--muted); font-size: .95rem;
}
.legal__back:hover { color: var(--accent); }

/* ============================================================
   Scroll-Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  /* Texte gut lesbar: knallweiß statt gedämpftem Grau */
  :root { --muted: #ffffff; }

  /* Hero höher ansetzen statt vertikal zentriert */
  .hero { justify-content: flex-start; min-height: auto; padding: 116px 0 70px; }
  .hero__scroll { display: none; }
  .hero__eyebrow { font-size: .72rem; letter-spacing: .2em; margin-bottom: 20px; }
  .hero__sub { font-size: .95rem; }
  /* zweiter Hero-Button ebenfalls grün, beide etwas kleiner */
  .hero__actions .btn { padding: 12px 24px; font-size: .9rem; }
  .hero__actions .btn--ghost { background: var(--accent); color: var(--bg); border-color: var(--accent); }
  .hero__actions .btn--ghost:hover { color: var(--bg); border-color: var(--accent); }

  .cards, .work { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 44px; }

  /* Warum GLIMT: schicke Boxen untereinander statt enger 3-Spalten */
  .why { grid-template-columns: 1fr; gap: 16px; }
  .why__item {
    border: 1px solid var(--line); border-top: 3px solid var(--accent);
    border-radius: var(--radius); background: var(--bg-card);
    padding: 28px 24px;
  }
  .why__item h3 { font-size: 1.4rem; }

  .pricing, .pricing-extra { grid-template-columns: 1fr; }
  .pricing-process__steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .pricing-fineprint { grid-template-columns: 1fr; gap: 20px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { max-width: 420px; }
  .about__stats { margin-top: 40px; }
  .footer__inner { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .footer__copy { text-align: left; }
  .footer__nav { justify-content: flex-start; }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    background: var(--bg-soft);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav.open .nav__links { transform: translateX(0); }
  .nav__burger { display: flex; z-index: 60; }
}

@media (max-width: 480px) {
  .section { padding: 58px 0; }
  .section--contact { padding-block: 72px; }
  .container { padding-inline: 18px; }

  /* Hero-Untertext kleiner & etwa so breit wie „Moin" */
  .hero__sub { font-size: .88rem; max-width: 19rem; }

  /* About: Überschrift & Fließtext kleiner, eleganter */
  .about__text .section__title { font-size: 1.8rem; }
  .about__text p { font-size: .98rem; margin-top: 14px; }

  /* Funnel-Auswahl: Text passt rein */
  .funnel__opt { font-size: .9rem; padding: 12px 14px; }

  /* Leistungen: etwas größer, linksbündig */
  .card { padding: 36px 26px; }
  .card__title { font-size: 1.9rem; }
  .card__text { font-size: 1.04rem; }

  .why__item h3 { font-size: 1.45rem; }
  .why__item p { font-size: 1.02rem; }

  /* Preise: linksbündig */
  .price-card__desc { min-height: 0; }

  /* Arbeiten: Meta linksbündig gestapelt */
  .work__meta { flex-direction: column; align-items: flex-start; text-align: left; gap: 4px; }

  /* Studio: Foto-BOX mittig (Text bleibt links), Stats untereinander */
  .about__media { display: flex; justify-content: center; }
  .about__photo { max-width: 330px; width: 100%; }

  /* Stats: zentriert, große fette Zahlen */
  .about__stats { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .stat { text-align: center; border-top: none; padding-top: 0; }
  .stat__num { font-size: 3.8rem; font-weight: 800; }
  .stat__suffix { font-size: 2rem; }
  .stat__label { margin-top: 10px; }

  /* Kontakt: Boxen linksbündig, Werte größer */
  .contact__link { padding: 24px 22px; }
  .contact__value { font-size: 1.4rem; word-break: break-word; }

  /* Ablauf/Feinprint linksbündig auf dem Handy */
  .pricing-process__intro, .pricing-process__hint { text-align: left; }

  /* Footer: sauber untereinander, linksbündig */
  .footer__nav { flex-direction: column; gap: 14px; align-items: flex-start; }

  .pricing-process { padding: 32px 24px; }
  .pricing-process__steps { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================================
   Reduced Motion (Barrierefreiheit)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .word { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .glow { display: none; }
}
