/**
 * Global blog post closing section — editorial / luxury, theme-aware.
 * CTA buttons use shared PublicPrimaryCta classes; only layout & hierarchy live here.
 */

.BlogPostEnding_root__yNK_Z {
  margin-top: clamp(3.25rem, 8.5vw, 5.5rem);
  padding-top: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

/* Elegant separator above the entire closing region */
.BlogPostEnding_topRule__QcBML {
  display: block;
  width: min(7.5rem, 42%);
  height: 1px;
  margin: 0 auto clamp(2rem, 5vw, 2.75rem);
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--foreground) 28%, transparent) 45%,
    color-mix(in srgb, var(--foreground) 28%, transparent) 55%,
    transparent
  );
}

.BlogPostEnding_conclusion__7y6Zl {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0.5rem, 3vw, 1rem);
  padding-right: clamp(0.5rem, 3vw, 1rem);
}

.BlogPostEnding_conclusionTitle__iWfaC {
  margin: 0 0 1rem;
  font-family: var(--font-hero-serif), var(--font-playfair), ui-serif, Georgia, serif;
  font-size: clamp(1.5rem, 4.2vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--foreground);
}

.BlogPostEnding_conclusionText__ctbQo {
  margin: 0;
  font-family: var(--font-inter), var(--font-sans), system-ui, sans-serif;
  font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: color-mix(in srgb, var(--foreground) 76%, transparent);
}

.BlogPostEnding_nextSteps__gQ_MO {
  margin-top: clamp(2.25rem, 5.5vw, 3.25rem);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.25rem, 4vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--foreground) 14%, var(--background));
  border-radius: 2px;
  background: color-mix(in srgb, var(--foreground) 4.5%, var(--background));
  box-shadow: 0 1px 0 color-mix(in srgb, var(--foreground) 6%, transparent);
}

/* Only CTAs: panel sits directly under the rule */
.BlogPostEnding_nextStepsFlush__vE1JH {
  margin-top: 0;
}

.BlogPostEnding_nextStepsLabel__RjA1N {
  margin: 0 0 1.1rem;
  font-family: var(--font-inter), var(--font-sans), system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 52%, transparent);
}

.BlogPostEnding_ctaRow__NHE0u {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

.BlogPostEnding_footerLink__aqO4N {
  color: var(--foreground);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9375rem;
}

.BlogPostEnding_footerLink__aqO4N:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .BlogPostEnding_ctaRow__NHE0u {
    flex-direction: column;
    align-items: stretch;
  }

  .BlogPostEnding_ctaRow__NHE0u > a {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

/* Model strip: canonical seamless infinite marquee (LEFT→RIGHT).
   - stripViewport: overflow hidden; stripTrack contains exactly TWO copies (loopItems = [...items, ...items]).
   - translateX percentage is of the TRACK width: -50% = one full sequence, so from -50% to 0% = seamless loop.
   - No viewport-based translate; no JS that stops or runs-once. Fixed thumb size so layout is stable. */

.ModelStrip_stripViewport__J82IO {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  height: 72px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.ModelStrip_stripViewportFooter__EpDmF {
  background: #0a0a0a;
}

/* Softer than pure black while waiting for content (footer / lower strip). */
.ModelStrip_stripViewportFooter__EpDmF.ModelStrip_stripViewportAwaiting__DXGkm {
  background: #141414;
}

.ModelStrip_stripViewportPage__vNAua {
  background: var(--public-home-model-strip-bg);
}

/* Slight lift so the row reads as tiles, not a void (page theme). */
.ModelStrip_stripViewportPage__vNAua.ModelStrip_stripViewportAwaiting__DXGkm {
  background: color-mix(in srgb, var(--public-home-model-strip-bg) 88%, #ffffff 12%);
}

@supports not (background: color-mix(in srgb, black, white)) {
  .ModelStrip_stripViewportPage__vNAua.ModelStrip_stripViewportAwaiting__DXGkm {
    background: var(--public-home-model-strip-bg);
  }
}

/* Shared flex row; marquee only when .stripTrackMarquee is applied (after reveal delay). */
.ModelStrip_stripTrack__ryy4u {
  display: flex;
  gap: 12px;
  width: max-content;
  flex-shrink: 0;
  padding: 0 0.5rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ModelStrip_stripTrackMarquee__XmbhR {
  will-change: transform;
  animation: ModelStrip_marqueeL2R__hS8D8 var(--speed, 110s) linear infinite;
  animation-direction: var(--dir, normal);
}

.ModelStrip_stripTrackSlow__K4VUe.ModelStrip_stripTrackMarquee__XmbhR {
  animation-duration: calc(var(--speed, 110s) * 2);
}

.ModelStrip_skeletonTrack__rXTm9 {
  animation: none;
  will-change: auto;
}

/* Placeholder tiles: visible shape, not a dark hole (opacity alone was too faint on #0a0a0a). */
.ModelStrip_thumbPlaceholder__2nVsk.ModelStrip_thumbFooter__lou4d {
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  opacity: 1;
}

.ModelStrip_thumbPlaceholder__2nVsk.ModelStrip_thumbPage__VL0qD {
  opacity: 1;
  background: color-mix(in srgb, var(--public-home-model-strip-thumb-bg) 75%, #ffffff 25%);
  border: 1px solid var(--public-home-model-strip-thumb-border);
}

@supports not (background: color-mix(in srgb, black, white)) {
  .ModelStrip_thumbPlaceholder__2nVsk.ModelStrip_thumbPage__VL0qD {
    background: var(--public-home-model-strip-thumb-bg);
    opacity: 0.85;
  }
}

.ModelStrip_pauseOnHover__6Ar_Q:hover .ModelStrip_stripTrackMarquee__XmbhR {
  animation-play-state: paused;
}

.ModelStrip_thumb__LSrWu {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.ModelStrip_thumbFooter__lou4d {
  background: #111;
}

.ModelStrip_thumbPage__VL0qD {
  background: var(--public-home-model-strip-thumb-bg);
  border: 1px solid var(--public-home-model-strip-thumb-border);
}

.ModelStrip_thumbImg__HlwwU {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 200ms ease-out;
}

.ModelStrip_thumbImgRevealed__h5q4_ {
  opacity: 1;
}

@keyframes ModelStrip_marqueeL2R__hS8D8 {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ModelStrip_stripTrackMarquee__XmbhR {
    animation: none;
  }

  .ModelStrip_thumbImg__HlwwU {
    transition: none;
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .ModelStrip_stripViewport__J82IO {
    height: 88px;
  }

  .ModelStrip_thumb__LSrWu {
    width: 80px;
    height: 80px;
    border-radius: 10px;
  }

  .ModelStrip_stripTrack__ryy4u {
    gap: 14px;
  }
}

/* Circular model strip – loop right → left (content enters from right) */

.ModelCircleStrip_viewport__uw_rZ {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px 0;
  background: var(--public-circle-strip-bg);
}

.ModelCircleStrip_track__jMHAk {
  display: flex;
  gap: 24px;
  width: max-content;
  flex-shrink: 0;
  padding: 0 24px;
  will-change: transform;
  /* Duration controlled via --circle-strip-duration from CMS (default 80s) */
  animation: ModelCircleStrip_marqueeR2L__j8_Dq var(--circle-strip-duration, 80s) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ModelCircleStrip_track__jMHAk {
    animation: none;
  }
}

.ModelCircleStrip_circle__bh4cV {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ModelCircleStrip_circle__bh4cV:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ModelCircleStrip_circleImg__332Hz {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

@keyframes ModelCircleStrip_marqueeR2L__j8_Dq {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 768px) {
  .ModelCircleStrip_circle__bh4cV {
    width: 120px;
    height: 120px;
  }

  .ModelCircleStrip_track__jMHAk {
    gap: 28px;
  }
}

/* Booking in 5 Schritten – luxury 2-column layout, CSS module only */

.BookingStepsSection_section__KoR1r {
  padding: clamp(1.5rem, 4vw, 48px) clamp(1rem, 4vw, 24px) clamp(2rem, 6vw, 64px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  box-sizing: border-box;
}

.BookingStepsSection_section__KoR1r.BookingStepsSection_inView__4T1kx {
  opacity: 1;
  transform: translateY(0);
}

.BookingStepsSection_wrapper__QZmzu {
  max-width: min(1200px, calc(100vw - 2rem));
  margin: 0 auto;
}

.BookingStepsSection_grid__o6v1z {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 24px;
  align-items: start;
}

/* —— Left column: day = dark card, night = white card —— */
.BookingStepsSection_leftCol__iAP2S {
  background: #0c1018;
  border: none;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

html[data-public-theme="dark"] .BookingStepsSection_leftCol__iAP2S {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.BookingStepsSection_imageWrap___EGT8 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
}

html[data-public-theme="dark"] .BookingStepsSection_imageWrap___EGT8 {
  background: #e5e7eb;
}

.BookingStepsSection_image__2GIpQ {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.BookingStepsSection_imageOverlay__Fbcyg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 16, 24, 0.5) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.BookingStepsSection_badges__JJnih {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.BookingStepsSection_badge__P3w7F {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
}

html[data-public-theme="dark"] .BookingStepsSection_badge__P3w7F {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.06);
}

.BookingStepsSection_copy__dHMXb {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

html[data-public-theme="dark"] .BookingStepsSection_copy__dHMXb {
  color: #475569;
}

/* —— Right column: day = light, night = dark —— */
.BookingStepsSection_rightCol__BGOWR {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  box-sizing: border-box;
}

html[data-public-theme="dark"] .BookingStepsSection_rightCol__BGOWR {
  background: #141a22;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.BookingStepsSection_title__VLqDy {
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #0c1018;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

html[data-public-theme="dark"] .BookingStepsSection_title__VLqDy {
  color: #f1f5f9;
}

/* Progress bar */
.BookingStepsSection_progressWrap__XUOv3 {
  margin-bottom: 24px;
}

.BookingStepsSection_progressBg__Ft2Tz {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

html[data-public-theme="dark"] .BookingStepsSection_progressBg__Ft2Tz {
  background: rgba(255, 255, 255, 0.12);
}

.BookingStepsSection_progressFill__JLt7N {
  height: 100%;
  background: #1480e0;
  border-radius: 3px;
  transition: width 300ms ease;
}

/* Accordion */
.BookingStepsSection_accordion__JUV43 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.BookingStepsSection_accordionItem__Wc2xk {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4px;
}

.BookingStepsSection_accordionItem__Wc2xk:last-of-type {
  margin-bottom: 0;
}

.BookingStepsSection_accordionItemOpen__ft0MN .BookingStepsSection_accordionTrigger__i3275 {
  background: #eaf4ff;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionItemOpen__ft0MN .BookingStepsSection_accordionTrigger__i3275 {
  background: rgba(20, 128, 224, 0.18);
}

.BookingStepsSection_accordionTrigger__i3275 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: none;
  background: #f8fafc;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 300ms ease;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionTrigger__i3275 {
  background: rgba(255, 255, 255, 0.06);
}

.BookingStepsSection_accordionTrigger__i3275:hover {
  background: #f1f5f9;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionTrigger__i3275:hover {
  background: rgba(255, 255, 255, 0.1);
}

.BookingStepsSection_accordionItemOpen__ft0MN .BookingStepsSection_accordionTrigger__i3275:hover {
  background: #e0edff;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionItemOpen__ft0MN .BookingStepsSection_accordionTrigger__i3275:hover {
  background: rgba(20, 128, 224, 0.22);
}

/* Day: light circle + dark number | Night: dark circle + light number */
.BookingStepsSection_accordionNum__807sV {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0c1018;
  border: 1px solid #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50%;
  box-sizing: border-box;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionNum__807sV {
  background: #0c1018;
  color: #fff;
  border-color: transparent;
}

.BookingStepsSection_accordionTitle__9fWuQ {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #0c1018;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionTitle__9fWuQ {
  color: #e2e8f0;
}

.BookingStepsSection_accordionChevron__y3m7H {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  color: #64748b;
  transition: transform 300ms ease;
}

.BookingStepsSection_accordionItemOpen__ft0MN .BookingStepsSection_accordionChevron__y3m7H {
  transform: rotate(180deg);
  color: #1480e0;
}

.BookingStepsSection_accordionPanel__1LyHF {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}

.BookingStepsSection_accordionItemOpen__ft0MN .BookingStepsSection_accordionPanel__1LyHF {
  max-height: 280px;
}

.BookingStepsSection_accordionBody__r_ukY {
  padding: 0 20px 16px 56px;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

html[data-public-theme="dark"] .BookingStepsSection_accordionBody__r_ukY {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .BookingStepsSection_accordionBody__r_ukY {
    padding-left: 20px;
    padding-top: 0;
  }
}

/* Sticky CTA bar */
/* Day: dark strip → white inset → black pill. Night: exact inverse (light strip → dark inset → white pill). */
.BookingStepsSection_ctaBar__gof34 {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1018;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: -24px;
  padding: 20px 24px 24px;
  border-radius: 0 0 28px 28px;
  position: sticky;
  bottom: 0;
}

html[data-public-theme="dark"] .BookingStepsSection_ctaBar__gof34 {
  background: #ffffff;
  border-top-color: rgba(0, 0, 0, 0.08);
}

.BookingStepsSection_ctaBarInner__iif9f {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-sizing: border-box;
}

html[data-public-theme="dark"] .BookingStepsSection_ctaBarInner__iif9f {
  background: #0c1018;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.BookingStepsSection_ctaBarLink__xlxPW {
  width: 100%;
  justify-content: center;
}

/* Night: force pure white pill + dark type/border (inverse of day primary CTA tokens) */
html[data-public-theme="dark"] .BookingStepsSection_ctaBarLink__xlxPW {
  background: #ffffff;
  color: #0b0b0b;
  border: 2px solid #0b0b0b;
}

.BookingStepsSection_ctaBtn__DIIx0 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: #1480e0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.BookingStepsSection_ctaBtn__DIIx0:hover {
  background: #0d6bc2;
}

@media (max-width: 480px) {
  .BookingStepsSection_section__KoR1r {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .BookingStepsSection_leftCol__iAP2S,
  .BookingStepsSection_rightCol__BGOWR {
    padding: 1rem;
  }
  .BookingStepsSection_accordionTrigger__i3275 {
    padding: 12px 16px;
  }
  .BookingStepsSection_accordionBody__r_ukY {
    padding-left: 16px;
    padding-right: 16px;
  }
  .BookingStepsSection_ctaBar__gof34 {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Mobile: stack, steps first, image below, CTA full width */
@media (max-width: 900px) {
  .BookingStepsSection_section__KoR1r {
    padding: clamp(1.5rem, 4vw, 32px) clamp(1rem, 4vw, 20px) 48px;
  }

  .BookingStepsSection_grid__o6v1z {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .BookingStepsSection_leftCol__iAP2S {
    order: 1;
  }

  .BookingStepsSection_rightCol__BGOWR {
    order: 2;
    min-height: 0;
  }

  .BookingStepsSection_ctaBar__gof34 {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    padding: 20px 20px 24px;
    border-radius: 0 0 20px 20px;
  }

  .BookingStepsSection_rightCol__BGOWR {
    padding: 20px;
  }

  .BookingStepsSection_title__VLqDy {
    margin-bottom: 20px;
  }

  .BookingStepsSection_progressWrap__XUOv3 {
    margin-bottom: 20px;
  }
}

.ModelApplicationForm_page__iWLGT {
  --application-shell-max: min(1200px, 100%);
  max-width: var(--application-shell-max);
  margin: 0 auto;
  padding: clamp(1.75rem, 4.5vw, 3.25rem) clamp(1rem, 3.5vw, 1.75rem) clamp(3rem, 7vw, 4.75rem);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: linear-gradient(165deg, #f7f4ef 0%, #ebe6df 42%, #e3ddd4 100%);
  border-radius: 0;
  overflow-x: clip;
}

.ModelApplicationForm_hero___4Ogh {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.ModelApplicationForm_kicker__oBjOS {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 25, 22, 0.42);
}

.ModelApplicationForm_title__dDYC_ {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #141210;
}

.ModelApplicationForm_subtitle__qwkRn {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(28, 25, 22, 0.55);
  font-weight: 400;
}

.ModelApplicationForm_processList__tL6wU {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ModelApplicationForm_processItem__0HHmz {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 25, 22, 0.07);
}

.ModelApplicationForm_processIndex__EiPIr {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(28, 25, 22, 0.55);
  background: rgba(28, 25, 22, 0.05);
}

.ModelApplicationForm_processText__i1Bi3 {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(28, 25, 22, 0.78);
  padding-top: 0.1rem;
}

.ModelApplicationForm_split__JJ5Zy {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
  align-items: start;
}

/* Desktop: main + fluid sidebar column (grid ratio, no fixed px width). */
@media (min-width: 1024px) {
  .ModelApplicationForm_split__JJ5Zy {
    grid-template-columns: minmax(0, 1fr) minmax(min(100%, 17.5rem), 0.36fr);
    gap: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.25rem);
  }
}

.ModelApplicationForm_formColumn__tlccz {
  min-width: 0;
}

.ModelApplicationForm_formCard__rB4OO {
  width: 100%;
  max-width: none;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 25, 22, 0.08);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.15rem, 3vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(28, 25, 22, 0.06);
  box-sizing: border-box;
}

.ModelApplicationForm_aside__04MGb {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  align-self: start;
}

.ModelApplicationForm_guideJump__LdKzP {
  width: 100%;
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(28, 25, 22, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #141210;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ModelApplicationForm_guideJump__LdKzP:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(28, 25, 22, 0.28);
  transform: translateY(-1px);
}

.ModelApplicationForm_guideJump__LdKzP:focus-visible {
  outline: 2px solid rgba(20, 18, 16, 0.4);
  outline-offset: 2px;
}

.ModelApplicationForm_asideCard__NFwq_ {
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(36, 34, 32, 0.97) 0%, #141210 100%);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.ModelApplicationForm_asideHeading__BmzFJ {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.ModelApplicationForm_asideLead__gvmrZ {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.ModelApplicationForm_asideList__3cGbT {
  margin: 0 0 1.15rem;
  padding: 0 0 0 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.ModelApplicationForm_asideList__3cGbT li {
  margin-bottom: 0.45rem;
}

.ModelApplicationForm_asideList__3cGbT li:last-child {
  margin-bottom: 0;
}

.ModelApplicationForm_privacyLink__rnCsR {
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.ModelApplicationForm_privacyLink__rnCsR:hover {
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.ModelApplicationForm_samplesCard__oerZj {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(28, 25, 22, 0.08);
}

.ModelApplicationForm_samplesTitle__gohJB {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 25, 22, 0.45);
  text-align: center;
}

.ModelApplicationForm_samplesGrid__kgddg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.ModelApplicationForm_sampleImg__tqHL2 {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(28, 25, 22, 0.08);
}

@media (max-width: 480px) {
  .ModelApplicationForm_page__iWLGT {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0.75rem 2rem;
  }

  .ModelApplicationForm_formColumn__tlccz {
    width: 100%;
    max-width: 100%;
  }

  .ModelApplicationForm_formCard__rB4OO {
    width: 100%;
    max-width: none;
    border-radius: 18px;
    padding: 1rem 0.85rem 1.25rem;
  }
}

.WhySection_whySection___f5rd {
  width: 100%;
  padding: 96px 24px;
  background: var(--background);
}

.WhySection_whyContainer__wA72B {
  width: min(1320px, 100%);
  margin: 0 auto;
  text-align: center;
}

.WhySection_whyTitle__i_mw7 {
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--foreground);
}

.WhySection_whyIntro__xtyvA {
  font-family: var(--font-inter, "Inter", sans-serif);
  max-width: 860px;
  margin: 0 auto 44px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--public-text-muted);
}

.WhySection_whyPanel__tGc0b {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--public-feature-panel-border);
  background: var(--public-feature-panel-bg);
  box-shadow: var(--public-feature-panel-shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.WhySection_whyItem__tdKBt {
  font-family: var(--font-inter, "Inter", sans-serif);
  padding: 22px 18px 20px;
  text-align: left;
  position: relative;
}

.WhySection_whyItem__tdKBt:not(:last-child) {
  border-right: 1px solid var(--public-feature-panel-border);
}

.WhySection_whyKicker__xKzvw {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--public-feature-panel-kicker);
  margin-bottom: 10px;
}

.WhySection_whyHead___nJKi {
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--public-feature-panel-head);
}

.WhySection_whyText__Jcm1h {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 520;
  color: var(--public-feature-panel-text);
}

.WhySection_whyItem__tdKBt:hover {
  background: var(--public-feature-panel-item-hover);
}

.WhySection_whyCTA__i_eEL {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.WhySection_primaryBtn__Rgx47 {
  font-family: var(--font-inter, "Inter", sans-serif);
  text-decoration: none;
  background: var(--public-cta-bg);
  color: var(--public-cta-fg);
  padding: var(--public-cta-padding-y) var(--public-cta-padding-x);
  border-radius: var(--public-cta-radius);
  font-weight: var(--public-cta-font-weight);
  font-size: var(--public-cta-font-size);
  letter-spacing: var(--public-cta-letter-spacing);
  border: 1px solid var(--public-cta-bg);
  box-sizing: border-box;
  transition: filter 0.2s, transform 0.15s ease;
}

.WhySection_primaryBtn__Rgx47:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.WhySection_secondaryBtn__zHLot {
  font-family: var(--font-inter, "Inter", sans-serif);
  text-decoration: none;
  background: var(--public-cta-bordered-bg);
  color: var(--public-cta-bordered-fg);
  padding: var(--public-cta-padding-y) var(--public-cta-padding-x);
  border-radius: var(--public-cta-radius);
  font-weight: var(--public-cta-font-weight);
  font-size: var(--public-cta-font-size);
  letter-spacing: var(--public-cta-letter-spacing);
  border: 1px solid var(--public-cta-bordered-border);
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s ease;
}

.WhySection_secondaryBtn__zHLot:hover {
  background: var(--public-cta-bg);
  color: var(--public-cta-fg);
  border-color: var(--public-cta-bg);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .WhySection_whyPanel__tGc0b {
    grid-template-columns: repeat(2, 1fr);
  }

  .WhySection_whyItem__tdKBt:nth-child(2) {
    border-right: none;
  }

  .WhySection_whyItem__tdKBt {
    border-right: 1px solid var(--public-feature-panel-border);
  }

  .WhySection_whyItem__tdKBt:nth-child(2),
  .WhySection_whyItem__tdKBt:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .WhySection_whyTitle__i_mw7 {
    font-size: 30px;
  }

  .WhySection_whyIntro__xtyvA {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .WhySection_whyPanel__tGc0b {
    grid-template-columns: 1fr;
  }

  .WhySection_whyItem__tdKBt {
    border-right: none;
    border-top: 1px solid var(--public-feature-panel-border);
  }

  .WhySection_whyItem__tdKBt:first-child {
    border-top: none;
  }
}

.ReferenceSection_testimonialsSection__v7FMY {
  background: var(--background);
  padding: 120px 0;
}

.ReferenceSection_container__EFcat {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ReferenceSection_testimonialsSection__v7FMY h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin: 0 0 48px;
  text-align: center;
}

.ReferenceSection_testimonialsGrid__etMNV {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .ReferenceSection_testimonialsGrid__etMNV {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ReferenceSection_testimonialCard__47FAy {
  background: var(--public-ref-card-bg);
  color: var(--public-ref-card-fg);
  border: 1px solid var(--public-ref-card-border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--public-ref-card-shadow);
  transition: transform 0.3s ease;
}

.ReferenceSection_testimonialCard__47FAy:hover {
  transform: translateY(-6px);
}

.ReferenceSection_testimonialHeader__5ezB0 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ReferenceSection_avatarWrap___juRZ {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: var(--public-ref-avatar-halo);
  line-height: 0;
}

.ReferenceSection_testimonialAvatar__ZZGcQ {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--public-ref-avatar-border);
  box-sizing: border-box;
}

.ReferenceSection_testimonialName__C_stL {
  font-weight: 600;
  font-size: 18px;
  color: var(--public-ref-card-fg);
  margin: 0 0 4px;
}

.ReferenceSection_testimonialRole__3186o {
  font-size: 14px;
  color: var(--public-ref-card-muted);
  margin: 0;
}

.ReferenceSection_testimonialRating__mbmhM {
  margin-top: 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--public-ref-card-fg);
}

.ReferenceSection_testimonialText__jxq6U {
  font-size: 16px;
  line-height: 1.7;
  color: var(--public-ref-card-fg);
  margin: 12px 0 0;
}

.ReferenceSection_testimonialText__jxq6U:first-of-type {
  margin-top: 12px;
}

/* Global FAQ tokens: --public-faq-* in globals.css */

.FAQSection_section__7qeFn {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.FAQSection_title__YaQLv {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--foreground);
  margin: 0 0 32px;
  text-align: center;
}

.FAQSection_stack__vxI6F {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.FAQSection_card__NilN_ {
  border: 1px solid var(--public-faq-card-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--public-faq-answer-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}

.FAQSection_card__NilN_:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.FAQSection_cardOpen__OGDb2 {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.FAQSection_cardHeader__VUSUA {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 20px 20px 24px;
  text-align: left;
  background: var(--public-faq-question-bg);
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--public-faq-question-fg);
  transition: background 0.2s ease;
}

.FAQSection_cardHeader__VUSUA:hover {
  background: var(--public-faq-question-hover);
}

.FAQSection_cardHeader__VUSUA:focus-visible {
  outline: 2px solid var(--public-faq-question-fg);
  outline-offset: 2px;
}

.FAQSection_questionText__7WFQJ {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--public-faq-question-fg);
  line-height: 1.4;
  flex: 1;
}

.FAQSection_iconWrap__u2YQ9 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--public-faq-icon-bg);
  transition: background 0.2s ease;
}

.FAQSection_cardHeader__VUSUA:hover .FAQSection_iconWrap__u2YQ9 {
  opacity: 0.95;
}

.FAQSection_icon__PKHdm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--public-faq-icon-fg);
  transition: transform 0.3s ease;
}

.FAQSection_iconOpen__VEV4d {
  transform: rotate(45deg);
}

.FAQSection_cardBody__qoN2p {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.FAQSection_cardBody__qoN2p[data-open="true"] {
  grid-template-rows: 1fr;
}

.FAQSection_cardBodyInner__MwMSx {
  overflow: hidden;
  min-height: 0;
  padding: 20px 24px 24px;
  background: var(--public-faq-answer-bg);
  border-top: 1px solid var(--public-faq-divider);
}

.FAQSection_cardBody__qoN2p[data-open="true"] .FAQSection_cardBodyInner__MwMSx {
  border-top: 1px solid var(--public-faq-divider);
}

.FAQSection_answerText__SR1_l {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--public-faq-answer-fg);
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.FAQSection_cardBody__qoN2p[data-open="true"] .FAQSection_answerText__SR1_l {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .FAQSection_section__7qeFn {
    padding: 80px 32px 96px;
  }

  .FAQSection_title__YaQLv {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .FAQSection_stack__vxI6F {
    gap: 20px;
  }

  .FAQSection_cardHeader__VUSUA {
    padding: 24px 24px 24px 28px;
  }

  .FAQSection_questionText__7WFQJ {
    font-size: 1.125rem;
  }

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

  .FAQSection_cardBodyInner__MwMSx {
    padding: 24px 28px 28px;
  }

  .FAQSection_answerText__SR1_l {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .FAQSection_card__NilN_,
  .FAQSection_cardHeader__VUSUA,
  .FAQSection_iconWrap__u2YQ9,
  .FAQSection_icon__PKHdm,
  .FAQSection_cardBody__qoN2p,
  .FAQSection_answerText__SR1_l {
    transition: none;
  }
}

/* Last CTA – red pills; label text always white (day + night) for contrast on brand */
.HomeInternalLinksSection_section__V8ZqS {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 28px;
  margin-top: calc(2rem - 8px);
  border-top: 1px solid var(--public-border);
}

.HomeInternalLinksSection_list__h0_hP {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.HomeInternalLinksSection_pill__uX7uU {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.28s ease;
  font-family: var(--font-inter, "Inter", sans-serif);
  color: #ffffff;
  background: var(--color-brand);
  text-decoration: none;
  position: relative;
}

.HomeInternalLinksSection_pill__uX7uU::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 1px;
  background: currentColor;
  transition: transform 0.28s ease;
}

.HomeInternalLinksSection_pill__uX7uU:hover {
  background: #a01830;
  color: #ffffff;
  border-color: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--color-brand) 40%, transparent);
}

.HomeInternalLinksSection_pill__uX7uU:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.HomeInternalLinksSection_pill__uX7uU:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.HomeInternalLinksSection_pill__uX7uU:active {
  background: #8a1428;
  color: #ffffff;
  border-color: #8a1428;
}

.HomeInternalLinksSection_pillOutline__izUoc {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.28s ease;
  font-family: var(--font-inter, "Inter", sans-serif);
  color: var(--color-brand);
  background: transparent;
  text-decoration: none;
  position: relative;
}

.HomeInternalLinksSection_pillOutline__izUoc::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 1px;
  background: currentColor;
  transition: transform 0.28s ease;
}

.HomeInternalLinksSection_pillOutline__izUoc:hover {
  background: color-mix(in srgb, var(--color-brand) 8%, transparent);
  color: var(--color-brand);
  border-color: var(--color-brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--color-brand) 22%, transparent);
}

.HomeInternalLinksSection_pillOutline__izUoc:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.HomeInternalLinksSection_pillOutline__izUoc:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.HomeInternalLinksSection_pillOutline__izUoc:active {
  background: color-mix(in srgb, var(--color-brand) 14%, transparent);
}

@media (max-width: 768px) {
  .HomeInternalLinksSection_list__h0_hP {
    gap: 10px;
  }

  .HomeInternalLinksSection_pill__uX7uU,
  .HomeInternalLinksSection_pillOutline__izUoc {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Scroll-driven stack reveal hero – sticky stage, 4 layers */

.ScrollStackHero_wrap__Wh4_H {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -3rem;
  margin-bottom: -1.5rem;
  box-sizing: border-box;
}

.ScrollStackHero_stage__XPlgZ {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--background);
  overflow: hidden;
  will-change: transform;
}

.ScrollStackHero_heroLine__5_aL_ {
  display: none;
}

.ScrollStackHero_layerBack__bbyFE {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12vh;
  pointer-events: none;
}

/* Desktop: original sizes */
.ScrollStackHero_glanz__71aGO {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--public-hero-stack-word-fg);
  margin: 0;
  will-change: transform;
}

.ScrollStackHero_andWrap__Qeq2f {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Desktop: "and" position between GLANZ and GLORIA (moved up 5% from 65% → 60%) */
@media (min-width: 901px) {
  .ScrollStackHero_andWrap__Qeq2f {
    top: 60%;
    transform: translate(-50%, -50%);
  }
}

/* Desktop: "and" readable size, slightly below center (between GLANZ and GLORIA) */
.ScrollStackHero_and__w7FYY {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--public-hero-stack-word-fg);
  margin: 0;
  will-change: transform, opacity;
}

.ScrollStackHero_gloria__EoYlE {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  pointer-events: none;
  will-change: transform;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--color-brand);
}

.ScrollStackHero_boyWrap__UmWXE {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  pointer-events: none;
  will-change: transform;
}

.ScrollStackHero_boyImg__lK5lw {
  width: clamp(264px, 55vw, 502px);
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  vertical-align: bottom;
}

/* Tablet + responsive: larger GLANZ, and, GLORIA, boy */
@media (max-width: 900px) {
  .ScrollStackHero_glanz__71aGO {
    font-size: clamp(7.5rem, 26vw, 17rem);
  }

  .ScrollStackHero_and__w7FYY {
    font-size: clamp(7.5rem, 28vw, 20rem);
  }

  .ScrollStackHero_gloria__EoYlE {
    font-size: clamp(7.5rem, 26vw, 17rem);
  }

  .ScrollStackHero_boyImg__lK5lw {
    width: clamp(528px, 80vw, 1004px);
  }
}

@media (max-width: 600px) {
  .ScrollStackHero_glanz__71aGO {
    font-size: clamp(5.5rem, 24vw, 10rem);
  }

  .ScrollStackHero_and__w7FYY {
    font-size: clamp(5.5rem, 32vw, 12rem);
  }

  .ScrollStackHero_gloria__EoYlE {
    font-size: clamp(5.5rem, 24vw, 10rem);
  }

  .ScrollStackHero_boyImg__lK5lw {
    width: clamp(422px, 90vw, 686px);
  }
}

/* Content blocks – luxury editorial layout */

.contentBlocks_reveal__OA6Fh {
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contentBlocks_reveal__OA6Fh:not([data-revealed="true"]) {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
}
.contentBlocks_reveal__OA6Fh[data-revealed="true"] {
  opacity: 1;
  transform: none;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .contentBlocks_reveal__OA6Fh { transition: none; }
}

.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1 {
  transition: opacity 0.75s, transform 0.75s, filter 0.75s;
}
.contentBlocks_faqReveal___aZWe:not([data-revealed="true"]) .contentBlocks_faqItem__bChD1 {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
}
.contentBlocks_faqReveal___aZWe[data-revealed="true"] .contentBlocks_faqItem__bChD1 {
  opacity: 1;
  transform: none;
  filter: none;
}
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(1) { transition-delay: 0ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(2) { transition-delay: 60ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(3) { transition-delay: 120ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(4) { transition-delay: 180ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(5) { transition-delay: 240ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(6) { transition-delay: 300ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(7) { transition-delay: 360ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(8) { transition-delay: 420ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(9) { transition-delay: 480ms; }
.contentBlocks_faqReveal___aZWe .contentBlocks_faqItem__bChD1:nth-child(10) { transition-delay: 540ms; }

.contentBlocks_stripWrap__51ia1 {
  width: 100%;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--public-footer-bg);
  color: var(--public-footer-fg);
  padding: clamp(1.5rem, 4vw, 40px) clamp(1rem, 4vw, 24px);
  box-sizing: border-box;
}
.contentBlocks_stripInner__UX9Q6 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 24px);
}
@media (max-width: 767px) {
  .contentBlocks_stripInner__UX9Q6 {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contentBlocks_stripBtn__HhWjB {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .contentBlocks_stripWrap__51ia1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.contentBlocks_stripText__9_Ua7 { flex: 1; min-width: 0; }
.contentBlocks_stripTitle__gUfrH {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--public-footer-fg);
}
.contentBlocks_stripDesc__i2gg_ {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  color: var(--public-footer-fg);
}
.contentBlocks_stripBtn__HhWjB {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--public-cta-padding-y) clamp(1rem, 4vw, 28px);
  background: var(--public-cta-bg);
  color: var(--public-cta-fg);
  font-weight: var(--public-cta-font-weight);
  font-size: var(--public-cta-font-size);
  letter-spacing: var(--public-cta-letter-spacing);
  border: 1px solid var(--public-cta-bg);
  box-sizing: border-box;
  text-decoration: none;
  border-radius: var(--public-cta-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contentBlocks_stripBtn__HhWjB:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-in-view="true"] .contentBlocks_stripBtn__HhWjB::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: contentBlocks_sheen__cBXUG 7.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes contentBlocks_sheen__cBXUG {
  from { transform: translateX(-60%); }
  to { transform: translateX(160%); }
}
@media (prefers-reduced-motion: reduce) {
  [data-in-view="true"] .contentBlocks_stripBtn__HhWjB::before {
    animation: none;
    display: none;
  }
}

.contentBlocks_page__xKV2B {
  background: var(--background);
  min-height: 100vh;
  scroll-margin-top: var(--header-h);
}
.contentBlocks_pageModelagenturFuerKunden__7O8h2 .contentBlocks_sectionAlt__KVzwM { background: var(--background); }

.contentBlocks_inner__ajjpL {
  max-width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 64px) clamp(1rem, 4vw, 24px) clamp(3rem, 8vw, 96px);
  box-sizing: border-box;
}

/* Match homepage SeoTextSection hero title (Cormorant, ~820px measure) — CMS SEO titles wrap */
.contentBlocks_pageTitle__G_B_k {
  font-family: var(--font-hero-serif), "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: min(3.35rem, max(1.15rem, 6.75vw));
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-feature-settings: "lnum" 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--foreground);
  text-wrap: balance;
}
@media (max-width: 359px) {
  .contentBlocks_pageTitle__G_B_k {
    font-size: clamp(1.15rem, 6.5vw, 1.6rem);
  }
}
@media (max-width: 480px) {
  .contentBlocks_inner__ajjpL {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.contentBlocks_innerHeroFirst__kvhiL { padding-top: 0; }

/* Hero – theme-aware (CMS hero block) */
.contentBlocks_hero__vakUd {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-height: 56vh;
  height: 72vh;
  max-height: 720px;
  background: var(--public-hero-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--public-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.contentBlocks_heroVideo__VG_Hb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contentBlocks_heroBg__xVMlc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.contentBlocks_heroOverlay__FFXyy {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.contentBlocks_hero__vakUd::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.contentBlocks_heroInner__FWSIn {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 24px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 48px);
  align-items: center;
  box-sizing: border-box;
}
@keyframes contentBlocks_heroTitleReveal__Cnx6c {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contentBlocks_heroTitle__eU4AX {
  font-size: clamp(0.875rem, 2.8vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--public-hero-card-fg);
  margin: 0;
  grid-column: 1 / -1;
  text-align: center;
  opacity: 0;
  animation: contentBlocks_heroTitleReveal__Cnx6c 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.contentBlocks_heroCopy__a_xP1 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: 1 / -1;
  align-items: center;
}
.contentBlocks_heroSubtitle__X6047 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--public-hero-muted);
  margin: 0;
  text-align: center;
}
.contentBlocks_heroButtons__NyBrt {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.contentBlocks_btnPrimary__zedCe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--public-cta-padding-y) var(--public-cta-padding-x);
  background: var(--public-cta-bg);
  color: var(--public-cta-fg);
  font-weight: var(--public-cta-font-weight);
  font-size: var(--public-cta-font-size);
  letter-spacing: var(--public-cta-letter-spacing);
  border: 1px solid var(--public-cta-bg);
  box-sizing: border-box;
  text-decoration: none;
  border-radius: var(--public-cta-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contentBlocks_btnPrimary__zedCe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.contentBlocks_btnPrimary__zedCe::after { content: "→"; transition: transform 0.2s ease; }
.contentBlocks_btnPrimary__zedCe:hover::after { transform: translateX(4px); }
.contentBlocks_btnSecondary__VB6qG {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--public-cta-padding-y) var(--public-cta-padding-x);
  background: var(--public-cta-bordered-bg);
  color: var(--public-cta-bordered-fg);
  font-weight: var(--public-cta-font-weight);
  font-size: var(--public-cta-font-size);
  letter-spacing: var(--public-cta-letter-spacing);
  text-decoration: none;
  border: 1px solid var(--public-cta-bordered-border);
  box-sizing: border-box;
  border-radius: var(--public-cta-radius);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contentBlocks_btnSecondary__VB6qG:hover {
  background: var(--public-cta-bg);
  color: var(--public-cta-fg);
  border-color: var(--public-cta-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.contentBlocks_btnSecondary__VB6qG::after { content: "→"; opacity: 0.8; transition: transform 0.2s ease; }
.contentBlocks_btnSecondary__VB6qG:hover::after { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .contentBlocks_heroTitle__eU4AX {
    animation: none;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .contentBlocks_hero__vakUd { min-height: 56vh; height: 56vh; }
  .contentBlocks_heroInner__FWSIn {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .contentBlocks_heroCopy__a_xP1 { align-items: center; }
  .contentBlocks_heroButtons__NyBrt { justify-content: center; }
}

.contentBlocks_section__jmBpe {
  padding: clamp(1.25rem, 3vw, 40px) 0;
  border-bottom: 1px solid var(--public-border);
}
.contentBlocks_sectionAlt__KVzwM { background: var(--public-section-alt-bg); }

/* LEISTUNGEN / BRANCHEN section – theme-aware dark bar */
.contentBlocks_sectionLeistungen__bkJvm {
  background: var(--public-footer-bg);
  color: var(--public-footer-fg);
  border-bottom-color: var(--public-footer-border);
  border-radius: 12px;
}
.contentBlocks_sectionLeistungen__bkJvm .contentBlocks_sectionEyebrow__H_R7R {
  color: var(--public-footer-muted);
  font-weight: 800;
}
/* Dark band: remap global rich-text tokens only (no per-tag overrides) */
.contentBlocks_sectionLeistungen__bkJvm .public-rich-text {
  --rt-text: var(--public-footer-fg);
  --rt-muted: var(--public-footer-muted);
  --rt-heading: var(--public-footer-fg);
  --rt-link: var(--public-footer-fg);
  --rt-link-hover: #ffffff;
  --rt-bg-soft: rgba(255, 255, 255, 0.08);
  --rt-border: var(--public-footer-border);
}
.contentBlocks_sectionInner__qp3Qf {
  max-width: min(720px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Rich text with admin design (no legacy alternating section) */
.contentBlocks_richTextDesignOuter__amK4M {
  width: 100%;
  max-width: min(1120px, calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (max-width: 420px) {
  .contentBlocks_richTextDesignOuter__amK4M {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (max-width: 420px) {
  .contentBlocks_sectionInner__qp3Qf {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 769px) {
  .contentBlocks_sectionInner__qp3Qf .contentBlocks_sectionEyebrow__H_R7R,
  .contentBlocks_sectionInner__qp3Qf .contentBlocks_sectionTitle___yNk8 {
    text-align: center;
  }
}
.contentBlocks_sectionEyebrow__H_R7R {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--public-text-muted);
  margin-bottom: 12px;
}
.contentBlocks_sectionTitle___yNk8 {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin: 0 0 24px 0;
}
@media (max-width: 420px) {
  .contentBlocks_sectionTitle___yNk8 {
    font-size: 0.875rem;
  }
}
.contentBlocks_ctaCard__hPVHF {
  padding: clamp(1.5rem, 4vw, 40px) clamp(1.25rem, 4vw, 48px);
  background: var(--public-footer-bg);
  color: var(--public-footer-fg);
  border-radius: 4px;
  margin: clamp(1.5rem, 4vw, 48px) 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.contentBlocks_ctaCardBordered__3XPIh {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--public-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.contentBlocks_ctaCardBordered__3XPIh:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.contentBlocks_ctaRow__3UV3v {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.contentBlocks_ctaTextWrap__zuff_ { flex: 1; min-width: 200px; }
.contentBlocks_ctaTitle___9BlT {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}
.contentBlocks_ctaCardBordered__3XPIh .contentBlocks_ctaTitle___9BlT { color: var(--foreground); }
.contentBlocks_ctaText__p0ftS {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}
.contentBlocks_ctaCardBordered__3XPIh .contentBlocks_ctaText__p0ftS { color: var(--public-text-muted); opacity: 1; }
.contentBlocks_ctaButton__odyiM {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--public-cta-padding-y) var(--public-cta-padding-x);
  font-weight: var(--public-cta-font-weight);
  font-size: var(--public-cta-font-size);
  letter-spacing: var(--public-cta-letter-spacing);
  text-decoration: none;
  border-radius: var(--public-cta-radius);
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
.contentBlocks_ctaCard__hPVHF .contentBlocks_ctaButton__odyiM { background: var(--public-cta-bg); color: var(--public-cta-fg); border: 1px solid var(--public-cta-bg); }
.contentBlocks_ctaCardBordered__3XPIh .contentBlocks_ctaButton__odyiM { background: var(--public-cta-bordered-bg); color: var(--public-cta-bordered-fg); border: 1px solid var(--public-cta-bordered-border); }
.contentBlocks_ctaButton__odyiM:hover { transform: translateX(4px); }
.contentBlocks_ctaButton__odyiM::after { content: "→"; }

@media (max-width: 768px) {
  .contentBlocks_ctaCard__hPVHF { padding: 32px clamp(1rem, 4vw, 24px); }
  .contentBlocks_ctaRow__3UV3v { flex-direction: column; align-items: stretch; }
  .contentBlocks_ctaButton__odyiM { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .contentBlocks_ctaCard__hPVHF { padding: 1.5rem 1rem; }
}

.contentBlocks_faq__8CdEB {
  padding: clamp(1.25rem, 3vw, 40px) 0;
  border-bottom: 1px solid var(--public-border);
}
.contentBlocks_faqAlt__5tsMZ { background: var(--public-section-alt-bg); }
.contentBlocks_faqTitle__qKhCZ {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin: 0 auto 32px auto;
  max-width: 720px;
}
.contentBlocks_faqList__TV5yu {
  max-width: min(720px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contentBlocks_faqItem__bChD1 {
  border: 1px solid var(--public-faq-card-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--public-faq-answer-bg);
}
.contentBlocks_faqSummary__k5plk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--public-faq-question-fg);
  text-align: left;
  background: var(--public-faq-question-bg);
  border: none;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
}
.contentBlocks_faqSummary__k5plk::-webkit-details-marker { display: none; }
.contentBlocks_faqSummary__k5plk::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--public-faq-question-fg);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
details[open] .contentBlocks_faqSummary__k5plk::after { transform: rotate(45deg); }
.contentBlocks_faqSummary__k5plk:hover {
  background: var(--public-faq-question-hover);
  color: var(--public-faq-question-fg);
}
.contentBlocks_faqAnswer__Dk7fA {
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--public-faq-answer-fg);
  background: var(--public-faq-answer-bg);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 240ms ease-out, opacity 240ms ease-out, padding 240ms ease-out;
  border-top: 1px solid transparent;
  box-sizing: border-box;
}
details[open] .contentBlocks_faqAnswer__Dk7fA {
  max-height: 1000px;
  opacity: 1;
  padding: 20px 24px 24px;
  border-top-color: var(--public-faq-divider);
}
.contentBlocks_faqAnswer__Dk7fA p { margin: 0; }

@media (max-width: 768px) {
  .contentBlocks_stripWrap__51ia1 { padding: 32px 0; }
  .contentBlocks_stripInner__UX9Q6 { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contentBlocks_stripBtn__HhWjB { width: 100%; justify-content: center; }
}

/* Model werden page – "Model werden" uses Home hero marquee typography */
.contentBlocks_modelWerdenTitle___yQrK {
  margin: 0 0 32px 0;
  text-align: center;
}
.contentBlocks_modelWerden__I4apz {
  /* Home hero marquee typography – font-size capped so "Model werden" fits on one line */
  display: block;
  font-weight: 800;
  font-size: clamp(44px, 10vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: var(--foreground);
  margin: 0 0 8px 0;
  white-space: nowrap;
}
.contentBlocks_brandLine__d2rfi {
  /* Glanz & Gloria – unchanged from previous (text-7xl md:text-8xl font-bold tracking-wider) */
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--foreground);
  margin: 0;
}
@media (min-width: 768px) {
  .contentBlocks_brandLine__d2rfi { font-size: 6rem; }
}

/* Kontakt page – white/black minimal, aligned with rest of site */
.ContactPage_section__ILXiF {
  max-width: min(960px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 48px) clamp(1rem, 4vw, 24px) 64px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .ContactPage_section__ILXiF {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .ContactPage_contactCard__VlB9N,
  .ContactPage_formWrap__76W6j {
    padding: 1.25rem;
  }
}

.ContactPage_title__W8d7E {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 clamp(1.5rem, 4vw, 40px) 0;
  text-align: center;
}

.ContactPage_twoCol__U8ftx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: stretch;
}

/* Panel block title (e.g. "Für Kunden & Talente") – single line on mobile, no ellipsis */
.ContactPage_panelBlockTitle__16NVi {
  font-size: clamp(0.8rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .ContactPage_twoCol__U8ftx {
    grid-template-columns: 1fr;
  }
  .ContactPage_contactCard__VlB9N,
  .ContactPage_formWrap__76W6j {
    height: auto;
  }
}

.ContactPage_contactCard__VlB9N {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ContactPage_contactCard__VlB9N h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.ContactPage_contactCard__VlB9N p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 12px 0;
}

.ContactPage_contactCard__VlB9N p:last-child {
  margin-bottom: 0;
}

.ContactPage_contactCard__VlB9N a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ContactPage_contactCard__VlB9N a:hover {
  color: #333;
}

.ContactPage_socialLinks__DS2j4 {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.ContactPage_socialLinks__DS2j4 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1a1a1a;
}

.ContactPage_socialLinks__DS2j4 a:hover {
  opacity: 0.8;
}

.ContactPage_socialLinks__DS2j4 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ContactPage_formWrap__76W6j {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ContactPage_formWrap__76W6j input,
.ContactPage_formWrap__76W6j select,
.ContactPage_formWrap__76W6j textarea {
  border-color: #d1d5db;
}

.ContactPage_formWrap__76W6j input:focus,
.ContactPage_formWrap__76W6j select:focus,
.ContactPage_formWrap__76W6j textarea:focus {
  border-color: #6b7280;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.ContactPage_formWrap__76W6j button[type='submit'] {
  background: #1a1a1a !important;
  color: #fff !important;
}

.ContactPage_formWrap__76W6j button[type='submit']:hover {
  background: #333 !important;
}

.ContactPage_mapSection__BoI0e {
  margin-top: 48px;
}

.ContactPage_mapWrap__yvE9I {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ContactPage_mapWrap__yvE9I iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

.ContactPage_routeLink__soZjP {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.95rem;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ContactPage_routeLink__soZjP:hover {
  color: #333;
}

.ContactPage_privacyNote__1rCl_ {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 16px;
  line-height: 1.5;
}

