:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --ink: #121212;
  --muted: #6a6a68;
  --line: #e8e8e5;
  --accent: #1d3f2f;
  --accent-2: #244a38;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(9, 16, 12, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Avenir Next", "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.entry-intro-active {
  overflow: hidden;
}

.entry-intro {
  --entry-duration: 5050ms;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  overflow: hidden;
  color: #111111;
  background: #020202;
  pointer-events: none;
  will-change: opacity, transform, filter;
}

body.entry-intro-active .entry-intro {
  display: grid;
  animation: entry-intro-exit var(--entry-duration) cubic-bezier(0.83, 0, 0.17, 1) forwards;
}

.entry-intro::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0;
  background:
    linear-gradient(90deg, rgba(247, 247, 245, 0.94) 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, rgba(247, 247, 245, 0.94) 100%),
    radial-gradient(circle at 50% 50%, #ffffff 0%, #f8f8f6 58%, #ededeb 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: entry-canvas-open 940ms cubic-bezier(0.86, 0, 0.07, 1) 140ms forwards;
}

.entry-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#020202 0 12.5%, transparent 12.5% 87.5%, #020202 87.5% 100%);
  opacity: 0;
  animation: entry-bars-arrive 420ms ease 210ms forwards;
}

.entry-intro-glow {
  position: absolute;
  inset: 12.5% 13.8%;
  z-index: 2;
  background:
    linear-gradient(#020202 0 0) top / 100% 1px no-repeat,
    linear-gradient(#020202 0 0) bottom / 100% 1px no-repeat;
  opacity: 0;
  transform: scaleX(0.94);
  animation: entry-frame-settle 820ms ease 300ms forwards;
}

.entry-intro-words {
  position: relative;
  z-index: 4;
  width: min(92vw, 1180px);
  height: clamp(5rem, 16vw, 14rem);
  text-align: center;
  font-family: "Avenir Next", "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(3.6rem, 11vw, 11.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.105em;
  opacity: 0;
  animation: entry-copy-ready 1ms linear 980ms forwards;
}

.entry-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  white-space: nowrap;
  animation: entry-word-window 740ms ease var(--word-delay) forwards;
}

.entry-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.36em) scaleY(0.76);
  transform-origin: 50% 100%;
  filter: blur(7px);
  animation: entry-letter-rise 300ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--word-delay, 0ms) + var(--i) * 18ms) forwards;
}

.entry-intro p {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: flex;
  margin: 0;
  color: #111111;
  font-family: "Avenir Next", "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(4.1rem, 12.5vw, 13rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.115em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: entry-brand-window 1300ms ease 3100ms forwards;
}

.entry-intro p .entry-letter {
  animation-duration: 260ms;
  animation-delay: calc(3100ms + var(--i) * 14ms);
}

@keyframes entry-canvas-open {
  0% {
    top: 50%;
    height: 0;
  }

  100% {
    top: 12.5%;
    height: 75%;
    transform: translateY(0);
  }
}

@keyframes entry-bars-arrive {
  to {
    opacity: 1;
  }
}

@keyframes entry-frame-settle {
  0% {
    opacity: 0;
    transform: scaleX(0.94);
  }

  100% {
    opacity: 0.96;
    transform: scaleX(1);
  }
}

@keyframes entry-copy-ready {
  to {
    opacity: 1;
  }
}

@keyframes entry-word-window {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  72% {
    opacity: 1;
  }
}

@keyframes entry-letter-rise {
  0% {
    opacity: 0;
    transform: translateY(0.36em) scaleY(0.76);
    filter: blur(7px);
  }

  78%,
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
  }
}

@keyframes entry-brand-window {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  92% {
    opacity: 1;
  }
}

@keyframes entry-intro-exit {
  0%,
  84% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    visibility: visible;
  }

  92% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-1.2rem) scale(0.985);
    filter: blur(8px);
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-intro {
    display: none !important;
  }

  body.entry-intro-active {
    overflow: auto;
  }
}

@media (max-width: 760px) {
  .entry-intro::before {
    animation-name: entry-canvas-open-mobile;
  }

  .entry-intro::after {
    background: linear-gradient(#020202 0 14%, transparent 14% 86%, #020202 86% 100%);
  }

  .entry-intro-glow {
    top: 14%;
    bottom: 14%;
  }

  .entry-intro-words {
    font-size: clamp(3.1rem, 15vw, 6.4rem);
    letter-spacing: -0.09em;
  }

  .entry-intro p {
    font-size: clamp(3.4rem, 15vw, 6.8rem);
  }
}

@keyframes entry-canvas-open-mobile {
  0% {
    top: 50%;
    height: 0;
  }

  100% {
    top: 14%;
    height: 72%;
    transform: translateY(0);
  }
}
h1,
h2,
h3,
.logo {
  font-family: "Optima", "Iowan Old Style", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #efefee;
  border-bottom: 1px solid #e3e3e1;
}

.topbar-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: lowercase;
  white-space: nowrap;
}

.nav {
  position: relative;
  width: 860px;
  height: 56px;
  max-width: 100%;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid #d8ddd8;
  border-radius: 999px;
  background: #ffffff;
  color: #1f3f2f;
  font: inherit;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 30, 22, 0.06);
}

.menu-shell {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 0.35rem 0.45rem;
  border-radius: 14px;
  background: #f5f5f3;
  border: 1px solid #ddddda;
}

.outline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rect {
  stroke-dashoffset: 5;
  stroke-dasharray: 0 0 10 40 10 40;
  transition: 0.5s;
  stroke: #294f3c;
}

.menu-shell:hover .outline .rect {
  transition: 999999s;
  stroke-dashoffset: 1;
  stroke-dasharray: 0;
}

.menu-btn {
  padding: 0.48em 0.88em;
  color: #2a2a28;
  font-size: 0.86rem;
  border-radius: 8px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.menu-btn:hover {
  background: rgba(36, 74, 56, 0.12);
  color: #173627;
  transform: translateY(-2px);
}

.menu-btn:nth-child(1):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 1 11 77 11 0;
}

.menu-btn:nth-child(2):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 14 11 64 11 0;
}

.menu-btn:nth-child(3):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 27 11 51 11 0;
}

.menu-btn:nth-child(4):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 40 11 38 11 0;
}

.menu-btn:nth-child(5):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 53 11 25 11 0;
}

.menu-btn:nth-child(6):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 66 11 12 11 0;
}

.menu-btn:nth-child(7):hover ~ svg .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 79 11 0 11 0;
}

.menu-btn:hover ~ .outline .rect {
  stroke-dashoffset: 0;
  stroke-dasharray: 0 0 10 40 10 40;
  transition: 0.5s !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

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

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

.btn-ghost {
  border-color: var(--line);
}

.button {
  --main-size: 1.05rem;
  --color-text: #ffffff;
  --color-background: #111319;
  --color-background-hover: #1a1e26;
  --color-outline: #11131940;
  --color-shadow: #00000040;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  border-radius: calc(var(--main-size) * 100);
  padding: 0.52em 0.8em 0.52em 1.1em;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: var(--main-size);
  color: var(--color-text);
  background: var(--color-background);
  box-shadow: 0 0 0.2em 0 var(--color-background);
  transition: 1s;
}

.button:active {
  transform: scale(0.95);
}

.button:hover {
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 1em 0 var(--color-background);
  animation: ripple 1s linear infinite, colorize 1s infinite;
  transition: 0.5s;
}

.button span {
  margin-right: 0.5em;
  transition: 0.5s;
}

.button:hover span {
  text-shadow: 5px 5px 5px var(--color-shadow);
}

.button:active span {
  text-shadow: none;
}

.button svg {
  height: 0.8em;
  fill: var(--color-text);
  margin-right: -0.16em;
  position: relative;
  transition: 0.5s;
}

.button:hover svg {
  margin-right: 0.66em;
  transition: 0.5s;
  filter: drop-shadow(5px 5px 2.5px var(--color-shadow));
}

.button:active svg {
  filter: none;
}

.button svg polygon:nth-child(1) {
  transition: 0.4s;
  transform: translateX(-60%);
}

.button svg polygon:nth-child(2) {
  transition: 0.5s;
  transform: translateX(-30%);
}

.button:hover svg polygon:nth-child(1) {
  transform: translateX(0%);
  animation: opacity 1s infinite 0.6s;
}

.button:hover svg polygon:nth-child(2) {
  transform: translateX(0%);
  animation: opacity 1s infinite 0.4s;
}

.button:hover svg polygon:nth-child(3) {
  animation: opacity 1s infinite 0.2s;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes colorize {
  0% {
    background: var(--color-background);
  }
  50% {
    background: var(--color-background-hover);
  }
  100% {
    background: var(--color-background);
  }
}

@keyframes ripple {
  0% {
    outline: 0em solid transparent;
    outline-offset: -0.1em;
  }
  50% {
    outline: 0.2em solid var(--color-outline);
    outline-offset: 0.2em;
  }
  100% {
    outline: 0.4em solid transparent;
    outline-offset: 0.4em;
  }
}

.floating-actions {
  position: fixed;
  right: 10px;
  bottom: 14px;
  z-index: 60;
  display: grid;
  gap: 0.45rem;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.Btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s;
}

@media (min-width: 1021px) {
  .floating-actions {
    right: 18px;
    bottom: 18px;
    gap: 0.6rem;
    opacity: 1;
    transform: none;
  }

  .Btn {
    width: 48px;
    height: 48px;
  }
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0);
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.BG {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.wa-btn .BG {
  background: #075e54;
}

.phone-btn .BG {
  background: #1d3f2f;
}

.Btn:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.466);
  backdrop-filter: blur(4px);
}

.quick-label {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: 6.6rem 0 7.4rem;
  background:
    radial-gradient(circle at 82% 10%, rgba(31, 74, 54, 0.18), transparent 30%),
    radial-gradient(circle at 8% 72%, rgba(213, 221, 211, 0.8), transparent 34%),
    linear-gradient(180deg, #f5f4ef 0%, #ffffff 92%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -11vw;
  bottom: -14vw;
  width: clamp(280px, 48vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: clamp(36px, 7vw, 92px) solid rgba(31, 74, 54, 0.045);
  pointer-events: none;
}

.hero::after {
  content: "BRIGHTENUP";
  position: absolute;
  z-index: 0;
  left: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 2.2rem);
  color: rgba(18, 18, 18, 0.12);
  font-size: clamp(3.4rem, 14vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  pointer-events: none;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  max-width: 19ch;
}

.hero-center {
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
}

.hero-title {
  max-width: 10.6ch;
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 8.6rem);
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 52ch;
  margin: 1.2rem 0 0;
  color: #343835;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.3rem 0 0;
}

.hero-actions-centered {
  justify-content: center;
}

.hero-proof {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-proof li {
  border: 1px solid #d8dfd8;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  color: #25362d;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-note {
  max-width: 38ch;
  margin: 1.1rem 0 0;
  color: #627067;
  font-size: 0.92rem;
}

.hero-metrics {
  width: min(100%, 420px);
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 74, 54, 0.18);
}

.hero-metrics strong {
  font-family: "Optima", "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-metrics span {
  color: #39433d;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.hero-photo-stack {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 0.9rem;
  align-items: end;
  height: 430px;
  transform: rotate(-1.2deg);
}

.hero-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(25, 40, 32, 0.12);
  box-shadow: 0 24px 50px rgba(16, 24, 18, 0.14);
}

.hero-photo-stack img:first-child {
  height: 78%;
  filter: saturate(0.8) contrast(0.95);
  opacity: 0.86;
}

.analysis-card {
  position: relative;
  z-index: 2;
  margin: -4.8rem clamp(0.8rem, 5vw, 3rem) 0;
  border-radius: 24px;
  padding: 1.3rem;
  color: #f3f7f4;
  background: rgba(19, 31, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 44px rgba(11, 18, 13, 0.28);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.analysis-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 0.8rem;
}

.analysis-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #dbe7df;
  display: grid;
  gap: 0.3rem;
}

.emotion-band {
  padding: 2.2rem 0;
  background: #111a15;
  border-top: 1px solid #22342a;
  border-bottom: 1px solid #22342a;
}

.emotion-card {
  --emotion-bg: #111a15;
  width: min(100%, 980px);
  margin: 0 auto;
  background: var(--emotion-bg);
  border: 1px solid rgba(236, 244, 238, 0.14);
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.emotion-loader {
  color: #d7ddd8;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  box-sizing: content-box;
  height: 40px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.emotion-loader p {
  margin: 0;
  white-space: nowrap;
}

.emotion-words {
  overflow: hidden;
  position: relative;
  height: 40px;
  min-width: 0;
}

.emotion-words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--emotion-bg) 12%,
    transparent 32%,
    transparent 68%,
    var(--emotion-bg) 88%
  );
  z-index: 2;
}

.emotion-word {
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 8px;
  color: #a8d8bd;
  animation: emotion-spin 6s infinite;
  white-space: nowrap;
}

@keyframes emotion-spin {
  10% {
    transform: translateY(-102%);
  }

  25% {
    transform: translateY(-100%);
  }

  35% {
    transform: translateY(-202%);
  }

  50% {
    transform: translateY(-200%);
  }

  60% {
    transform: translateY(-302%);
  }

  75% {
    transform: translateY(-300%);
  }

  85% {
    transform: translateY(-402%);
  }

  100% {
    transform: translateY(-400%);
  }
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.section-soft {
  background: var(--bg-soft);
}

.section-trust-system {
  background:
    radial-gradient(circle at 82% 12%, rgba(191, 232, 204, 0.34), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f4 100%);
  padding-top: clamp(4.2rem, 8vw, 7rem);
}

.trust-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
}

.trust-system-copy {
  position: sticky;
  top: 7rem;
}

.trust-system-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 6.5vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.trust-system-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: #4a514d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

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

.proof-panel {
  min-height: 260px;
  border: 1px solid #d7e1d9;
  border-radius: 30px;
  padding: clamp(1rem, 2.6vw, 1.45rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 242, 0.9));
  box-shadow: 0 22px 60px rgba(16, 28, 20, 0.08);
}

.proof-panel:nth-child(2),
.proof-panel:nth-child(4) {
  margin-top: 2.2rem;
}

.proof-panel span {
  display: inline-flex;
  margin-bottom: 1.8rem;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  background: #1f4a36;
  color: #f5fbf7;
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-panel h3 {
  max-width: 12ch;
  color: #142219;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.proof-panel p {
  margin: 0.9rem 0 0;
  color: #4f5a53;
  line-height: 1.65;
}

.section h2 {
  font-size: clamp(1.8rem, 4.4vw, 3.3rem);
  letter-spacing: -0.045em;
  max-width: 24ch;
  margin-bottom: 1.8rem;
}

.section-lead {
  max-width: 62ch;
  margin: -0.7rem 0 2rem;
  color: #4a514d;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

/* Adapted from the weather-card idea: reusable ambient orb for all UI containers */
.card,
.trust-strip li,
.faq-list details {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.card::before,
.trust-strip li::before,
.faq-list details::before {
  width: clamp(70px, 22%, 120px);
  aspect-ratio: 1 / 1;
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  right: 10%;
  top: 12%;
  background: radial-gradient(circle, rgba(31, 74, 54, 0.12), rgba(31, 74, 54, 0));
  transition: transform 900ms ease, opacity 420ms ease;
  opacity: 0.65;
}

.card:hover,
.trust-strip li:hover,
.faq-list details:hover {
  transform: translateY(-2px);
  border-color: #d7dce7;
  box-shadow: 0 12px 28px rgba(17, 21, 31, 0.08);
}

.faq-list summary,
.article-faq summary {
  list-style: none;
}

.faq-list summary::-webkit-details-marker,
.article-faq summary::-webkit-details-marker {
  display: none;
}

.card:hover::before,
.trust-strip li:hover::before,
.faq-list details:hover::before {
  transform: translate(-28px, 26px) scale(1.08);
  opacity: 0.9;
}

.section-problem .container > h2,
.section-leistungen .container > h2 {
  max-width: 20ch;
}

.section-problem {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8f4 56%, #ffffff 100%);
}

.section-problem .section-lead {
  max-width: 58ch;
}

.problem-grid.cards.three {
  grid-template-columns: 1.35fr 0.82fr;
  grid-template-rows: repeat(2, minmax(170px, auto));
  align-items: stretch;
}

.problem-grid .card:nth-child(1) {
  min-height: 360px;
  background:
    radial-gradient(circle at 88% 10%, rgba(190, 239, 207, 0.3), transparent 30%),
    linear-gradient(135deg, #0d1510 0%, #183123 52%, #28553f 100%);
  color: #f5faf6;
  grid-row: 1 / span 2;
  border-color: transparent;
  box-shadow: 0 34px 80px rgba(15, 35, 24, 0.22);
}

.problem-grid .card:nth-child(2) {
  margin-top: 0;
}

.problem-grid .card:nth-child(3) {
  margin-top: 0;
}

.problem-grid .card {
  min-height: 170px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-card-main h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.055em;
}

.problem-card-main p {
  max-width: 42ch;
  color: #d9e5de;
  font-size: 1.04rem;
}

.card-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #eef4f0;
  color: #183123;
  font-weight: 900;
  font-size: 0.8rem;
}

.goal-grid.cards.three {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.goal-grid .card {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 126px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8faf7);
}

.goal-grid .card::after {
  content: "0" counter(goal-step);
}

.goal-grid {
  counter-reset: goal-step;
}

.goal-grid .card {
  counter-increment: goal-step;
}

.goal-grid .card::after {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #cfd8d2;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #274837;
  background: #eef4f0;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.goal-grid .card h3,
.goal-grid .card p {
  grid-column: 2;
}

.service-grid.cards.three {
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  align-items: stretch;
}

.service-grid .card {
  min-height: 260px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f5 100%);
  border-radius: 26px;
}

.service-grid .card:first-child {
  min-height: 360px;
  background:
    radial-gradient(circle at 88% 12%, rgba(190, 239, 207, 0.28), transparent 30%),
    linear-gradient(135deg, #101712 0%, #1f4a36 100%);
  color: #f6fbf7;
  border-color: transparent;
  box-shadow: 0 30px 70px rgba(15, 35, 24, 0.18);
}

.service-grid .card:first-child p,
.service-grid .card:first-child .service-points {
  color: #dcebe2;
}

.service-points {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: #313633;
  display: grid;
  gap: 0.25rem;
}

.service-points li {
  font-size: 0.92rem;
  line-height: 1.4;
}

.section-process {
  background:
    linear-gradient(90deg, rgba(31, 74, 54, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f7f8f6);
  background-size: 44px 44px, auto;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid #cfd8d2;
}

.process-step {
  min-height: 128px;
  display: grid;
  grid-template-columns: 90px minmax(170px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 2.6rem);
  border-bottom: 1px solid #cfd8d2;
  border-radius: 0;
  padding: 1.25rem 0;
  background: transparent;
  box-shadow: none;
  transition: color 220ms ease, background 220ms ease, padding 220ms ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.72);
  padding-left: 1rem;
  padding-right: 1rem;
}

.process-step span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #cfd8d2;
  color: #1f4a36;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.process-step p {
  margin: 0;
  color: #3f4641;
}

.section-spotlight {
  background: #101712;
  color: #f4f7f4;
  border-top: 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.spotlight-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 6.2vw, 5.8rem);
  letter-spacing: -0.065em;
}

.spotlight-copy p {
  max-width: 52ch;
  color: #c7d4cc;
}

.premium-proof-line {
  margin-top: 1.1rem;
  border-left: 3px solid #bfe8cc;
  padding: 0.8rem 0 0.85rem 1rem;
  color: #f3faf5 !important;
  font-weight: 850;
  background: linear-gradient(90deg, rgba(191, 232, 204, 0.16), transparent);
}

.spotlight-image {
  margin: 0;
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}

.spotlight-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(10, 18, 13, 0.72);
  color: #ecf4ee;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.branchen-grid.cards.three {
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.branchen-grid .card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.6fr;
  align-items: center;
  min-height: 132px;
}

.branchen-grid .card h3 {
  margin-bottom: 0;
}

.area-panel {
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #f4f7f4;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #12251b, #244a38);
}

.area-panel h2 {
  max-width: 18ch;
}

.area-panel p {
  max-width: 72ch;
  color: #dce7df;
}

.section-bilder {
  background: #0e1410;
  color: #f5f8f4;
}

.section-bilder .container > h2 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 7.5vw, 6.4rem);
  letter-spacing: -0.07em;
}

.section-bilder .section-lead {
  color: #c7d5cc;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 300px;
  gap: clamp(0.8rem, 2vw, 1.25rem);
  align-items: stretch;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.image-grid > .flip-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.image-grid > .compare-card {
  grid-row: span 2;
}

.compare-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #cfd8d2;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f0f4f1;
}

.compare-image {
  position: relative;
  overflow: hidden;
}

.compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-label {
  position: absolute;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(16, 30, 24, 0.72);
  color: #f2f8f4;
}

.gallery-caption,
.compare-caption,
.single-after-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  border-radius: 12px;
  padding: 0.45rem 0.6rem;
  background: rgba(16, 30, 24, 0.78);
  color: #f2f8f4;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

.compare-caption,
.single-after-caption {
  text-align: center;
}

.split-left {
  left: 10px;
}

.split-right {
  right: 10px;
}

.single-after-card {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #cfd8d2;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
  position: relative;
  background: #f0f4f1;
}

.single-after-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-after-label {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(16, 30, 24, 0.72);
  color: #f2f8f4;
}

.split-result-card .single-after-photo {
  object-position: center;
}

.flip-card .title {
  font-size: 1.35em;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid #cfd8d2;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
}

.flip-card-front {
  background: #f1f4f2;
  color: #1a2c24;
}

.flip-card-back {
  background: #1f4a36;
  color: #f2f8f4;
  transform: rotateY(180deg);
}

.flip-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-label {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(16, 30, 24, 0.72);
  color: #f2f8f4;
}

.cards .card:nth-child(even)::before,
.trust-strip li:nth-child(even)::before,
.faq-list details:nth-child(even)::before {
  right: auto;
  left: 10%;
}

.cards .card:nth-child(even):hover::before,
.trust-strip li:nth-child(even):hover::before,
.faq-list details:nth-child(even):hover::before {
  transform: translate(28px, 26px) scale(1.08);
}

.card h3 {
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: #363634;
}

.problem-grid .problem-card-main h3 {
  color: #f8fbf7;
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 5.2vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.problem-grid .problem-card-main p {
  color: #dcebe2;
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.problem-grid .problem-card-main .card-index {
  background: #bfe8cc;
  color: #102017;
}

.problem-grid .card:not(.problem-card-main) {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
  border-color: #d6dfd8;
  box-shadow: 0 18px 44px rgba(16, 28, 20, 0.08);
}

.problem-grid .card:not(.problem-card-main) h3 {
  color: #142219;
}

.problem-grid .card:not(.problem-card-main) p {
  color: #3d4540;
}

.problem-grid .card:not(.problem-card-main) .card-index {
  background: #e8f1eb;
  color: #173627;
}

.trust-strip {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: proof-item;
  border-top: 1px solid #d5ddd7;
  border-bottom: 1px solid #d5ddd7;
  gap: 0;
}

.trust-strip li {
  counter-increment: proof-item;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  border: 0;
  border-right: 1px solid #d5ddd7;
  border-radius: 0;
  padding: 1rem 1.05rem 1.15rem;
  text-align: left;
  background: transparent;
  color: #252524;
  font-weight: 800;
  min-height: 104px;
}

.trust-strip li:last-child {
  border-right: 0;
}

.trust-strip li::after {
  content: "0" counter(proof-item);
  display: block;
  margin-bottom: 0.72rem;
  color: #1f4a36;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.trust-strip li::before {
  display: none;
}

.trust-strip li:hover {
  transform: none;
  box-shadow: none;
  background: #f7faf7;
  border-color: #d5ddd7;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 900px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 0.7rem 0 0;
  color: #3c3c3a;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

label {
  font-size: 0.86rem;
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  border: 1px solid #d8d8d5;
  border-radius: 10px;
  padding: 0.68rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #d7e4dc;
  border-color: #b7d2c4;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1c1f1d;
  font-weight: 600;
}

.legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-links a:hover {
  color: #0f2f21;
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f8f6, #ffffff 28%);
  padding: 2.2rem 0 3rem;
}

.legal-content {
  max-width: 920px;
  background: #fff;
  border: 1px solid #dfe5df;
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 12px 24px rgba(17, 21, 31, 0.06);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin-top: 1.1rem;
}

.legal-content a {
  color: #1f4a36;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-reviews {
  border-top: 1px solid #e2e5e1;
}

.reviews-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #dfe5df;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
}

.review-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-cards article {
  border: 1px solid #dfe5df;
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 21, 31, 0.05);
}

.review-cards .review-quote {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 26px;
  padding: clamp(1.05rem, 2.2vw, 1.4rem);
  background:
    radial-gradient(circle at 92% 0%, rgba(191, 232, 204, 0.42), transparent 34%),
    #ffffff;
}

.review-cards span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  background: #edf4ef;
  color: #1f4a36;
  font-weight: 800;
  font-size: 0.78rem;
}

.review-cards p {
  margin: 0;
  color: #2f3431;
}

.review-cards .review-quote h3 {
  margin: 0.2rem 0 1rem;
  color: #142219;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.review-cards .review-quote p {
  color: #3d4540;
  font-size: 0.98rem;
  line-height: 1.72;
}

#kontakt {
  min-height: 92svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(191, 232, 204, 0.18), transparent 28%),
    linear-gradient(135deg, #101712 0%, #1b2d22 100%);
  color: #f5f8f4;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(1.4rem, 6vw, 5rem);
  align-items: center;
}

.contact-wrap > div:first-child h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 7vw, 6rem);
  letter-spacing: -0.065em;
}

.contact-wrap > div:first-child p:not(.eyebrow) {
  max-width: 48ch;
  color: #cfdbd3;
}

.lead-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: rgba(255, 255, 255, 0.94);
  color: #17251d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.lead-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #e4e9e4;
  padding-bottom: 0.9rem;
}

.lead-form-head span {
  color: #607066;
  font-size: 0.82rem;
}

.lead-form-head strong {
  font-family: "Optima", "Iowan Old Style", Georgia, serif;
  font-size: 1.45rem;
}

.lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.lead-fields label {
  display: grid;
  gap: 0.35rem;
  color: #24352c;
  font-weight: 800;
}

.lead-fields label:nth-child(4),
.lead-fields label:nth-child(8) {
  grid-column: 1 / -1;
}

.lead-fields input,
.lead-fields select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8e1da;
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  background: #fff;
  color: #17251d;
  font: inherit;
  font-weight: 600;
}

.lead-fields input:focus,
.lead-fields select:focus {
  outline: 3px solid rgba(31, 74, 54, 0.12);
  border-color: #1f4a36;
}

.lead-actions {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 0.55rem;
}

.lead-actions button {
  min-height: 46px;
  border: 1px solid #d8e1da;
  border-radius: 999px;
  background: #fff;
  color: #1f4a36;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.lead-actions button:first-child {
  background: #111319;
  color: #fff;
  border-color: #111319;
}

.lead-actions button:hover {
  transform: translateY(-1px);
  background: #1f4a36;
  border-color: #1f4a36;
  color: #fff;
}

.lead-actions #passbutton {
  border-radius: 999px;
  justify-content: center;
  padding: 0 0.7rem;
}

.reviews-left {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: #2b2e2c;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  font-size: 0.72rem;
  border: 1px solid #d3dbd4;
  color: #1f4a36;
  background: #edf4ef;
}

.reviews-cta {
  --main-size: 0.92rem;
  padding: 0.42em 0.72em 0.42em 0.95em;
  white-space: nowrap;
}


.case-page {
  background: linear-gradient(180deg, #f7f8f6, #ffffff 38%);
}

.case-hero {
  padding: clamp(5.2rem, 10vw, 8rem) 0 clamp(3.2rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 82% 10%, rgba(191, 232, 204, 0.32), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f4 100%);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.case-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7.6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 1.2rem;
}

.case-hero-copy p:not(.eyebrow) {
  max-width: 55ch;
  color: #3f4641;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.case-facts li {
  border: 1px solid #d8dfd8;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.74);
  color: #25362d;
  font-size: 0.84rem;
  font-weight: 780;
}

.case-hero-visual {
  position: relative;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #111a14;
  box-shadow: 0 34px 90px rgba(16, 28, 20, 0.22);
}

.case-hero-visual img {
  width: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.case-hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(10, 18, 13, 0.76);
  color: #eef7f0;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.case-narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.case-narrative-grid h2,
.case-gallery-section h2,
.case-result-panel h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5.4vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.case-narrative-copy {
  display: grid;
  gap: 1rem;
  color: #4a514d;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.78;
}

.case-gallery-section {
  background: #0e1410;
  color: #f5f8f4;
}

.case-gallery-section .eyebrow,
.case-gallery-section h2 {
  color: #f5f8f4;
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-top: 2rem;
}

.case-photo-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  border: 1px solid rgba(223, 229, 223, 0.2);
  border-radius: 26px;
  overflow: hidden;
  background: #172018;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.case-photo-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 690px;
}

.case-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.case-photo-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 16px;
  padding: 0.65rem 0.8rem;
  background: rgba(10, 18, 13, 0.78);
  color: #f2f8f4;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.32;
  backdrop-filter: blur(12px);
}

.case-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.case-process-grid article {
  min-height: 245px;
  border: 1px solid #d7e1d9;
  border-radius: 26px;
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 28, 20, 0.07);
}

.case-process-grid span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  background: #1f4a36;
  color: #f5fbf7;
  font-size: 0.78rem;
  font-weight: 850;
}

.case-process-grid h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.case-process-grid p {
  color: #4f5a53;
  line-height: 1.65;
}

.case-result-panel {
  border: 1px solid #cfdcd2;
  border-radius: 34px;
  padding: clamp(1.35rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(191, 232, 204, 0.5), transparent 34%),
    linear-gradient(145deg, #ffffff, #f4f8f4);
  box-shadow: 0 28px 80px rgba(16, 28, 20, 0.1);
}

.case-result-panel p:not(.eyebrow) {
  max-width: 72ch;
  color: #4a514d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.case-result-panel .button {
  width: fit-content;
  margin-top: 1rem;
  --main-size: 0.98rem;
}

.case-home-cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.2rem 0 2rem;
  flex-wrap: wrap;
}

.case-home-cta-note {
  color: #c7d5cc;
  font-size: 0.93rem;
  font-weight: 750;
}

.case-home-cta-wrap .button {
  --main-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  
.case-page {
  background: linear-gradient(180deg, #f7f8f6, #ffffff 38%);
}

.case-hero {
  padding: clamp(5.2rem, 10vw, 8rem) 0 clamp(3.2rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 82% 10%, rgba(191, 232, 204, 0.32), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f4 100%);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.case-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7.6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 1.2rem;
}

.case-hero-copy p:not(.eyebrow) {
  max-width: 55ch;
  color: #3f4641;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.case-facts li {
  border: 1px solid #d8dfd8;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.74);
  color: #25362d;
  font-size: 0.84rem;
  font-weight: 780;
}

.case-hero-visual {
  position: relative;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #111a14;
  box-shadow: 0 34px 90px rgba(16, 28, 20, 0.22);
}

.case-hero-visual img {
  width: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.case-hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(10, 18, 13, 0.76);
  color: #eef7f0;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.case-narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.case-narrative-grid h2,
.case-gallery-section h2,
.case-result-panel h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5.4vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.case-narrative-copy {
  display: grid;
  gap: 1rem;
  color: #4a514d;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.78;
}

.case-gallery-section {
  background: #0e1410;
  color: #f5f8f4;
}

.case-gallery-section .eyebrow,
.case-gallery-section h2 {
  color: #f5f8f4;
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-top: 2rem;
}

.case-photo-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  border: 1px solid rgba(223, 229, 223, 0.2);
  border-radius: 26px;
  overflow: hidden;
  background: #172018;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.case-photo-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 690px;
}

.case-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.case-photo-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 16px;
  padding: 0.65rem 0.8rem;
  background: rgba(10, 18, 13, 0.78);
  color: #f2f8f4;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.32;
  backdrop-filter: blur(12px);
}

.case-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.case-process-grid article {
  min-height: 245px;
  border: 1px solid #d7e1d9;
  border-radius: 26px;
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 28, 20, 0.07);
}

.case-process-grid span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  background: #1f4a36;
  color: #f5fbf7;
  font-size: 0.78rem;
  font-weight: 850;
}

.case-process-grid h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.case-process-grid p {
  color: #4f5a53;
  line-height: 1.65;
}

.case-result-panel {
  border: 1px solid #cfdcd2;
  border-radius: 34px;
  padding: clamp(1.35rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(191, 232, 204, 0.5), transparent 34%),
    linear-gradient(145deg, #ffffff, #f4f8f4);
  box-shadow: 0 28px 80px rgba(16, 28, 20, 0.1);
}

.case-result-panel p:not(.eyebrow) {
  max-width: 72ch;
  color: #4a514d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.case-result-panel .button {
  width: fit-content;
  margin-top: 1rem;
  --main-size: 0.98rem;
}

.case-home-cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.2rem 0 2rem;
  flex-wrap: wrap;
}

.case-home-cta-note {
  color: #c7d5cc;
  font-size: 0.93rem;
  font-weight: 750;
}

.case-home-cta-wrap .button {
  --main-size: 0.92rem;
}

[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1020px) {
  .topbar-wrap {
    min-height: 64px;
    position: relative;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    left: 4vw;
    right: 4vw;
    width: auto;
    height: auto;
    z-index: 80;
  }

  .nav.is-open {
    display: block;
  }

  .menu-shell {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.7rem;
    border-radius: 16px;
    background: rgba(245, 245, 243, 0.96);
    box-shadow: 0 18px 34px rgba(18, 24, 20, 0.14);
    backdrop-filter: blur(16px);
  }

  .menu-btn {
    display: block;
    padding: 0.75rem 0.85rem;
  }

  .outline {
    display: none;
  }

  .floating-actions {
    right: 10px;
    bottom: 14px;
    gap: 0.45rem;
    opacity: 0.72;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .floating-actions:focus-within,
  .floating-actions:hover {
    opacity: 1;
    transform: translateX(-2px);
  }

  .Btn {
    width: 40px;
    height: 40px;
  }

	  .problem-grid.cards.three,
	  .service-grid.cards.three {
	    grid-template-columns: 1fr 1fr;
	  }

  .problem-grid.cards.three {
    grid-template-rows: auto;
  }

  .problem-grid .card:nth-child(1) {
    grid-row: auto;
  }

  .problem-grid .problem-card-main h3 {
    font-size: clamp(2.15rem, 5.8vw, 3.4rem);
  }

  .problem-grid .card:nth-child(2),
  .problem-grid .card:nth-child(3) {
    margin-top: 0;
  }

  .goal-grid .card,
  .branchen-grid .card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo-stack {
    height: 360px;
  }

  .trust-system-grid {
    grid-template-columns: 1fr;
  }

  .trust-system-copy {
    position: static;
  }

	  .process-grid,
	  .review-cards {
	    grid-template-columns: 1fr 1fr;
	  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 76px 1fr;
  }

  .process-step p {
    grid-column: 2;
  }

  .service-grid .card:first-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .cards.four,
  .cards.three,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip li {
    border-right: 0;
    border-bottom: 1px solid #d5ddd7;
    min-height: auto;
  }

  .trust-strip li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .topbar-wrap {
    min-height: 54px;
  }

  .hero {
    padding: 3.5rem 0 4.2rem;
  }

  .hero-title {
    max-width: 12ch;
  }

  .button {
    --main-size: 0.95rem;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    padding-right: 60px;
  }

  .trust-system-cards {
    grid-template-columns: 1fr;
  }

  .proof-panel,
  .proof-panel:nth-child(2),
  .proof-panel:nth-child(4) {
    min-height: auto;
    margin-top: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo-stack {
    height: 310px;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .hero-photo-stack img {
    border-radius: 18px;
  }

  .analysis-card {
    margin: -3.2rem 0 0;
    padding: 1rem;
    border-radius: 18px;
  }

  .section {
    padding: 3.4rem 0;
  }

  .cards.four,
  .cards.three,
  .problem-grid.cards.three,
  .service-grid.cards.three,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .problem-grid .card,
  .service-grid .card {
    min-height: auto;
  }

  .problem-grid .problem-card-main h3 {
    max-width: 11.5ch;
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .problem-grid .problem-card-main p {
    font-size: 1rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-grid > .flip-card:first-child,
  .image-grid > .compare-card {
    grid-column: auto;
    grid-row: auto;
  }

	  .process-grid,
	  .review-cards {
	    grid-template-columns: 1fr;
	  }

  .spotlight-image,
  .spotlight-image img {
    min-height: 360px;
  }

  .process-step {
    min-height: auto;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
  }

  .process-step span {
    width: 54px;
    height: 54px;
  }

  .flip-card {
    width: 100%;
    max-width: 420px;
  }

  .flip-card::after {
    content: "Tippen für Nachher";
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    background: rgba(16, 30, 24, 0.72);
    color: #f2f8f4;
    font-size: 0.72rem;
    font-weight: 700;
    pointer-events: none;
  }

  .flip-card.is-flipped::after {
    content: "Tippen für Vorher";
  }

  .compare-card {
    width: 100%;
    max-width: 420px;
  }

  .single-after-card {
    width: 100%;
    max-width: 420px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: center;
  }

  .footer-wrap > span:first-child {
    color: #17251d;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .legal-links {
    justify-content: center;
  }

  .emotion-loader {
    font-size: 1rem;
    height: auto;
    min-height: 76px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.45rem 0.2rem;
    text-align: center;
  }

  .emotion-card {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .emotion-words {
    width: 100%;
    height: 30px;
  }

  .emotion-word {
    height: 30px;
    line-height: 30px;
    padding-left: 0;
    font-size: clamp(0.9rem, 4.5vw, 1rem);
    white-space: nowrap;
  }

  .floating-actions {
    left: auto;
    right: 10px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0.72;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .floating-actions:focus-within,
  .floating-actions:hover {
    opacity: 1;
    transform: translateX(-2px);
  }

  .floating-actions.is-quiet:not(:focus-within):not(:hover) {
    opacity: 0.36;
    transform: translateX(0) scale(0.94);
  }

  body {
    padding-bottom: 24px;
  }

  .Btn {
    width: 40px;
    height: 40px;
    color: #fff;
    font-weight: 800;
  }

  .Btn .BG {
    transform: none !important;
  }

  .svgContainer {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
  }

  .quick-label {
    display: none;
  }

  .lead-form {
    max-width: 100%;
    border-radius: 20px;
  }

  .lead-form-head,
  .lead-fields,
  .lead-actions {
    grid-template-columns: 1fr;
  }

  .lead-form-head {
    display: grid;
  }

  .lead-fields label,
  .lead-fields label:nth-child(4),
  .lead-fields label:nth-child(8) {
    grid-column: 1;
  }

  .lead-actions #passbutton {
    border-radius: 999px;
    justify-content: center;
    padding: 0;
  }

  .reviews-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile quick-contact hard fix: keep buttons fully inside the viewport. */
@media (max-width: 1020px) {
  .floating-actions {
    right: 22px !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    opacity: 0.86 !important;
    transform: none !important;
  }

  .floating-actions:hover,
  .floating-actions:focus-within,
  .floating-actions.is-quiet:not(:focus-within):not(:hover) {
    right: 22px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .floating-actions .Btn {
    width: 38px !important;
    height: 38px !important;
  }
}

/* Brighti: ein frecher hellblauer Tropfen-Gag, kein KI-Assistent. */
.glanzfreund {
  --friend-x: 28px;
  --friend-y: max(26px, env(safe-area-inset-bottom));
  position: fixed;
  left: var(--friend-left, var(--friend-x));
  bottom: var(--friend-bottom, var(--friend-y));
  z-index: 57;
  display: flex;
  align-items: flex-end;
  gap: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-170px, 64px) rotate(-18deg) scale(0.82);
  transition:
    opacity 240ms ease,
    transform 760ms cubic-bezier(0.2, 1.2, 0.22, 1);
}

.glanzfreund.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-170px, 64px) rotate(-18deg) scale(0.82);
}

.glanzfreund.is-intro,
.glanzfreund.is-peeking,
.glanzfreund.is-flying-left,
.glanzfreund.is-flying-right {
  opacity: 1;
}

.glanzfreund.is-intro {
  left: 50%;
  bottom: 46%;
  pointer-events: auto;
  transform: translate(-50%, 50%) rotate(-3deg) scale(1.08);
}

.glanzfreund.is-peeking {
  pointer-events: auto;
  transform: translate(0, 0) rotate(-4deg) scale(1);
}

.glanzfreund.is-flying-right {
  pointer-events: none;
  transform: translate(calc(100vw + 180px), -20vh) rotate(28deg) scale(0.9);
  transition:
    opacity 220ms ease,
    transform 1180ms cubic-bezier(0.62, -0.02, 0.8, 0.46);
}

.glanzfreund.is-flying-left {
  pointer-events: none;
  transform: translate(-230px, -17vh) rotate(-30deg) scale(0.9);
  transition:
    opacity 220ms ease,
    transform 1180ms cubic-bezier(0.62, -0.02, 0.8, 0.46);
}

.glanzfreund.is-speaking .glanzfreund-character {
  animation: brightiDropBob 1.85s ease-in-out infinite;
}

.glanzfreund-character {
  position: relative;
  width: 76px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: 50% 88%;
}

.glanzfreund-character:hover {
  transform: translateY(-5px) rotate(4deg);
}

.glanzfreund-shadow {
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: rgba(41, 96, 122, 0.17);
  filter: blur(5px);
  transform: translateX(-50%);
}

.glanzfreund-body {
  position: relative;
  width: 56px;
  height: 66px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 58% 58% 64% 64% / 48% 48% 72% 72%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.98), transparent 26%),
    radial-gradient(circle at 64% 78%, rgba(80, 177, 218, 0.45), transparent 48%),
    linear-gradient(145deg, rgba(226, 249, 255, 0.98), rgba(155, 222, 247, 0.94) 52%, rgba(89, 180, 220, 0.86));
  box-shadow:
    0 22px 62px rgba(40, 126, 164, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset -10px -16px 24px rgba(53, 148, 190, 0.18);
  backdrop-filter: blur(16px);
  transform: rotate(45deg);
}

.glanzfreund-body::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -9px;
  width: 39px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  filter: blur(2px);
}

.glanzfreund-sparkle {
  position: absolute;
  right: 12px;
  top: 11px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 9px 10px 0 -3px rgba(255, 255, 255, 0.76);
}

.glanzfreund-face {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 31px;
  height: 23px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform 140ms ease;
}

.glanzfreund-eye {
  position: absolute;
  top: 2px;
  width: 5px;
  height: 7px;
  border-radius: 999px;
  background: #104e69;
  animation: brightiBlink 5.4s infinite;
}

.glanzfreund-eye:first-child {
  left: 6px;
}

.glanzfreund-eye:nth-child(2) {
  right: 6px;
  animation-delay: 0.06s;
}

.glanzfreund-mouth {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 15px;
  height: 7px;
  border-bottom: 2px solid rgba(16, 78, 105, 0.5);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.glanzfreund-cloth {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 29px;
  height: 15px;
  border-radius: 999px;
  background: rgba(232, 251, 255, 0.58);
  transform: rotate(-45deg);
}

.glanzfreund-bubble {
  width: max-content;
  max-width: min(310px, calc(100vw - 124px));
  margin: 0 0 0.45rem;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(213, 245, 255, 0.86);
  border-radius: 22px 22px 22px 8px;
  background: rgba(242, 252, 255, 0.9);
  color: #123849;
  box-shadow: 0 24px 70px rgba(33, 98, 126, 0.17);
  backdrop-filter: blur(18px);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.32;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.glanzfreund.is-speaking .glanzfreund-bubble,
.glanzfreund:hover .glanzfreund-bubble,
.glanzfreund:focus-within .glanzfreund-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.glanzfreund.is-intro .glanzfreund-bubble {
  order: 2;
  border-radius: 24px;
  text-align: center;
}

@keyframes brightiDropBob {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  45% {
    transform: translateY(-7px) rotate(4deg);
  }
  70% {
    transform: translateY(-2px) rotate(-5deg);
  }
}

@keyframes brightiBlink {
  0%, 92%, 100% {
    transform: scaleY(1);
  }
  94% {
    transform: scaleY(0.12);
  }
}

@media (max-width: 760px) {
  .glanzfreund {
    --friend-x: 10px;
    --friend-y: max(18px, env(safe-area-inset-bottom));
    left: var(--friend-x);
    bottom: var(--friend-y);
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 0.48rem;
  }

  .glanzfreund.is-intro {
    left: 50%;
    bottom: 42%;
    transform: translate(-50%, 50%) rotate(-3deg) scale(0.92);
  }

  .glanzfreund.is-flying-right {
    transform: translate(calc(100vw + 125px), -12vh) rotate(24deg) scale(0.82);
  }

  .glanzfreund.is-flying-left {
    transform: translate(-175px, -12vh) rotate(-25deg) scale(0.82);
  }

  .glanzfreund-character {
    width: 58px;
    height: 62px;
  }

  .glanzfreund-body {
    width: 43px;
    height: 51px;
  }

  .glanzfreund-face {
    width: 26px;
    height: 19px;
  }

  .glanzfreund-bubble {
    max-width: min(236px, calc(100vw - 92px));
    padding: 0.74rem 0.86rem;
    border-radius: 22px 22px 8px 22px;
    font-size: 0.78rem;
  }

  .glanzfreund.is-intro .glanzfreund-bubble {
    max-width: min(280px, 88vw);
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glanzfreund,
  .glanzfreund-character,
  .glanzfreund-eye {
    animation: none !important;
    transition: none !important;
  }
}

/* Blog */
.blog-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 225, 213, 0.72), transparent 34%),
    linear-gradient(180deg, #f6f7f4 0%, #ffffff 82%);
  padding: 6.8rem 0 4.5rem;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.blog-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin-bottom: 1.3rem;
}

.blog-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.blog-note {
  display: grid;
  gap: 0.7rem;
  border: 1px solid #dfe6df;
  border-radius: 28px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(18, 32, 24, 0.1);
  backdrop-filter: blur(18px);
}

.blog-note strong {
  font-size: 1.05rem;
}

.blog-note span {
  color: var(--muted);
  font-weight: 700;
}

.blog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.blog-small-cta {
  --main-size: 0.92rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
}

.blog-card {
  min-height: 310px;
  border: 1px solid #dfe6df;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(18, 32, 24, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #b9cfc2;
  box-shadow: 0 34px 80px rgba(18, 32, 24, 0.12);
}

.blog-card > a,
.blog-placeholder-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.featured-blog-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(198, 230, 216, 0.7), transparent 35%),
    linear-gradient(145deg, #ffffff, #f4f8f4);
}

.blog-category {
  width: fit-content;
  border: 1px solid #d7e0d8;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  color: #284b39;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h2 {
  font-size: clamp(1.7rem, 3.5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #6c746f;
  font-size: 0.88rem;
  font-weight: 750;
}

.blog-meta span,
.blog-meta time {
  border-radius: 999px;
  background: #f2f5f2;
  padding: 0.38rem 0.68rem;
}

.article-page {
  background: linear-gradient(180deg, #f7f8f6, #ffffff 36%);
  padding: 4.5rem 0 5rem;
}

.article-shell {
  max-width: 880px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: #284b39;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-header {
  border: 1px solid #dfe6df;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0 30px 80px rgba(18, 32, 24, 0.09);
}

.article-header h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 1.2rem;
}

.article-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-content {
  padding: clamp(1.2rem, 4vw, 2.3rem) 0 0;
}

.article-media {
  margin: 1.2rem 0 0;
  border: 1px solid #dfe6df;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(183, 217, 203, 0.48), transparent 32%),
    linear-gradient(145deg, #ffffff, #f3f7f4);
  box-shadow: 0 32px 90px rgba(18, 32, 24, 0.11);
}

.article-media img {
  width: 100%;
  display: block;
}

.article-media figcaption {
  border-top: 1px solid rgba(18, 32, 24, 0.08);
  padding: 0.85rem 1.2rem 1rem;
  color: #69736d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.article-content h2 {
  margin: 2.1rem 0 0.7rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
}

.article-content h3 {
  margin: 1.6rem 0 0.65rem;
  color: #20342a;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  letter-spacing: -0.025em;
}

.article-content p {
  color: #5d655f;
  font-size: 1.03rem;
  line-height: 1.82;
}

.article-content ul {
  display: grid;
  gap: 0.58rem;
  margin: 0.8rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.article-content ol {
  display: grid;
  gap: 0.58rem;
  margin: 0.8rem 0 1.2rem;
  padding: 0;
  list-style: none;
  counter-reset: article-step;
}

.article-content li {
  position: relative;
  padding-left: 1.3rem;
  color: #5d655f;
  line-height: 1.7;
}

.article-content li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #6fb08a;
  box-shadow: 0 0 0 5px rgba(111, 176, 138, 0.13);
}

.article-content ol li {
  padding-left: 2rem;
}

.article-content ol li::before {
  content: counter(article-step);
  counter-increment: article-step;
  top: 0.1rem;
  display: grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  color: #ffffff;
  background: #2b5a42;
  box-shadow: none;
  font-size: 0.75rem;
  font-weight: 800;
}

.article-keypoints {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.8rem 0 2rem;
}

.article-keypoints span {
  min-height: 110px;
  border: 1px solid #dfe6df;
  border-radius: 24px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: #20342a;
  font-weight: 850;
  line-height: 1.45;
  box-shadow: 0 18px 48px rgba(18, 32, 24, 0.07);
}

.article-faq {
  margin-top: 2.4rem;
}

.article-faq details {
  border: 1px solid #dfe6df;
  border-radius: 22px;
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(18, 32, 24, 0.06);
}

.article-faq summary {
  cursor: pointer;
  color: #20342a;
  font-weight: 850;
}

.article-faq p {
  margin-top: 0.75rem;
}

.article-cta {
  margin-top: 2.5rem;
  border: 1px solid #cfdcd2;
  border-radius: 30px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(198, 230, 216, 0.7), transparent 34%),
    #f7faf7;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .button {
  width: fit-content;
  margin-top: 1rem;
  --main-size: 0.98rem;
}

.article-sources {
  margin-top: 2rem;
  border-top: 1px solid #dfe6df;
  padding-top: 1.3rem;
}

.article-sources h2 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.article-sources a {
  color: #284b39;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .blog-hero-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-keypoints {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .case-hero-grid,
  .case-narrative-grid {
    grid-template-columns: 1fr;
  }

  .case-hero-copy h1 {
    max-width: 13ch;
  }

  .case-gallery-grid,
  .case-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-photo-card-featured {
    grid-column: 1 / -1;
    min-height: 540px;
  }
}

@media (max-width: 700px) {
  .case-hero {
    padding: 3.8rem 0 3rem;
  }

  .case-hero-copy h1 {
    max-width: 11ch;
  }

  .case-hero-visual img {
    min-height: 360px;
  }

  .case-hero-visual figcaption {
    position: static;
    border-radius: 0;
  }

  .case-gallery-grid,
  .case-process-grid {
    grid-template-columns: 1fr;
  }

  .case-photo-card,
  .case-photo-card-featured {
    min-height: 360px;
  }

  .case-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-home-cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
