/* ==========================================================================
   INVESTMENT REPORT — Case Studies
   Dark editorial layer — separate visual world from the rest of globalists.de.
   Background is a deep neutral near-black (NOT the homepage mint-tinted bg).
   Typography mirrors the homepage success-stories slider: Inter 200/300 with
   tight letter-spacing (-.035em → -.045em) for display + KPI numbers.
   ========================================================================== */

.report{
  /* Dark editorial palette — does NOT inherit homepage --bg */
  --report-bg:    #08090a;
  --report-surf:  #0d0f12;
  --report-card:  #11141a;
  --rule:         rgba(255,255,255,.10);
  --rule-strong:  rgba(255,255,255,.22);
  --muted-ink:    rgba(255,255,255,.55);
  --soft-ink:     rgba(255,255,255,.72);
  --ink:          #f1f3f4;
  --accent:       var(--primary);
  --display: var(--font-inter), 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-family: var(--display);
  color: var(--ink);
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0 clamp(96px, 12vw, 160px);
  background: var(--report-bg);
  overflow: hidden;
}
.report::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.report::after{
  /* one subtle mint horizon at the top — restraint */
  content:"";
  position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0,237,179,.32) 50%, transparent 90%);
  pointer-events:none;
}
.report > *{ position:relative; z-index:1; }

.report-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}

/* Headings & display — fineline: Inter 200/300, tight letter-spacing
   (matches the homepage success-stories slider) */
.report h1, .report h2, .report h3,
.report .report-display{
  font-family: var(--display);
  font-weight: 300;
  text-transform: none;
  letter-spacing: -.035em;
  color: #fff;
  line-height: 1.04;
}

/* ——— Header — classic single-column hero
   Tagline runs the full reading-width; the hero image (when present)
   sits below in a wide aspect-ratio band, not in a side column. */
.report-header{
  display: block;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  max-width: 880px;
}
.report-header > div:first-child{
  display: block;
}
.report-eyebrow{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  margin-bottom: 40px;
  font-weight: 500;
}
.report-eyebrow .dot-mark{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,237,179,.15);
}
.report-eyebrow > span + span::before{
  content: "·";
  margin: 0 10px;
  color: rgba(255,255,255,.3);
}
.report-client-logo{
  height: 40px;
  width: auto;
  opacity: .9;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}
.report-tagline{
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  color: #fff;
  max-width: 38ch;
  font-weight: 300;
  letter-spacing: -.022em;
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.report-tagline em{ color: var(--accent); font-style: normal; }
.report-hero-image{
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(28px, 4vw, 48px);
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(.9) contrast(1.05);
  border: 1px solid var(--rule);
}
.report-channels{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.report-channels li{
  list-style: none;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-ink);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-weight: 500;
}

/* ——— Metric bar ——— */
.report-metrics{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.report-metrics.has-featured{
  grid-template-columns: 1.6fr 1fr 1fr;
}
@media (max-width: 900px){
  .report-metrics, .report-metrics.has-featured{
    grid-template-columns: 1fr;
  }
}
.report-metric{
  padding: 40px 32px 48px;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
}
.report-metric:last-child{ border-right: 0; }
@media (max-width: 900px){
  .report-metric{ border-right: 0; padding: 32px 0; }
}
.report-metric-value{
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: .95;
  color: #fff;
  font-weight: 200;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -.04em;
  font-feature-settings: "tnum";
}
.report-metric.featured .report-metric-value{
  font-size: clamp(56px, 6.4vw, 96px);
  font-weight: 200;
  letter-spacing: -.045em;
}
.report-metric-unit{
  color: var(--accent);
  margin-left: .04em;
  font-weight: 300;
}
.report-metric-label{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  font-weight: 500;
}
.report-metric-caption{
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 36ch;
}

/* ——— Sections: Mandate / Play / Return ——— */
.report-section{
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 40px;
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px){
  .report-section{ grid-template-columns: 1fr; gap: 20px; padding: 48px 0; }
}
.report-section-marker{
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  color: rgba(255,255,255,.22);
  line-height: 1;
  font-weight: 200;
  letter-spacing: -.03em;
  font-feature-settings: "tnum";
}
.report-section-content > h2{
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.report-section-content .report-display{
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 30ch;
  font-weight: 300;
  letter-spacing: -.02em;
  color: #fff;
}
.report-section-content p,
.report-section-content li{
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 60ch;
  font-weight: 400;
}
.report-section-content p{ margin-bottom: 20px; }
.report-section-content h3{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 32px 0 12px;
  letter-spacing: 0;
}
.report-section-content a{ color: var(--accent); border-bottom: 1px solid rgba(0,237,179,.4); }
.report-section-content a:hover{ border-bottom-color: var(--accent); }
.report-section-content ul, .report-section-content ol{ padding-left: 20px; max-width: 60ch; margin-bottom: 20px; }
.report-section-content li{ margin: 8px 0; }
.report-section-content strong{ color: #fff; font-weight: 600; }

/* ——— Creative Gallery ——— */
.report-gallery{
  padding: 64px 0 88px;
  border-bottom: 1px solid var(--rule);
}
.report-gallery-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  font-weight: 500;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.report-gallery-label{ color: var(--accent); }
.report-gallery-count{ color: rgba(255,255,255,.4); }
.report-gallery-grid{
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px){
  .report-gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
/* Mosaic-Layout: erste Kachel doppelt breit/hoch wenn ≥4 Bilder */
.report-gallery-grid[data-count="4"] .report-gallery-item:first-child,
.report-gallery-grid[data-count="5"] .report-gallery-item:first-child,
.report-gallery-grid[data-count="6"] .report-gallery-item:first-child,
.report-gallery-grid[data-count="7"] .report-gallery-item:first-child,
.report-gallery-grid[data-count="8"] .report-gallery-item:first-child{
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 720px){
  .report-gallery-grid[data-count="4"] .report-gallery-item:first-child,
  .report-gallery-grid[data-count="5"] .report-gallery-item:first-child,
  .report-gallery-grid[data-count="6"] .report-gallery-item:first-child,
  .report-gallery-grid[data-count="7"] .report-gallery-item:first-child,
  .report-gallery-grid[data-count="8"] .report-gallery-item:first-child{
    grid-column: span 2;
    grid-row: auto;
  }
}
.report-gallery-item{
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(255,255,255,.02);
}
.report-gallery-item img{
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.95);
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.report-gallery-grid[data-count="4"] .report-gallery-item:first-child img,
.report-gallery-grid[data-count="5"] .report-gallery-item:first-child img,
.report-gallery-grid[data-count="6"] .report-gallery-item:first-child img,
.report-gallery-grid[data-count="7"] .report-gallery-item:first-child img,
.report-gallery-grid[data-count="8"] .report-gallery-item:first-child img{
  aspect-ratio: 1 / 1;
}
.report-gallery-item:hover img{
  transform: scale(1.02);
  filter: saturate(1.05);
}
.report-gallery-item figcaption{
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ——— Pull quote ——— */
.report-pullquote{
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.report-pullquote blockquote{
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.35;
  color: #fff;
  max-width: 36ch;
  margin: 0 auto 28px;
  font-weight: 300;
  letter-spacing: -.022em;
}
.report-pullquote blockquote::before{
  content:"„"; color: var(--accent);
  margin-right: .08em;
}
.report-pullquote cite{
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  font-weight: 500;
}

/* ——— Services chips + footer ——— */
.report-services{
  padding: 64px 0 48px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.report-services-label{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  margin-right: 12px;
  font-weight: 500;
}
.report-service-chip{
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
  font-weight: 500;
}

.report-cta{
  padding: 96px 0 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.report-cta-headline{
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  color: #fff;
  max-width: 20ch;
  font-weight: 300;
  letter-spacing: -.025em;
}
.report-cta-button{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--accent);
  color: #011d17;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.report-cta-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -10px var(--primary-glow);
}

.report-footer-nav{
  padding: 48px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-ink);
  font-weight: 500;
}
.report-footer-nav a{ color: rgba(255,255,255,.8); }
.report-footer-nav a:hover{ color: var(--accent); }

/* ==========================================================================
   PORTFOLIO INDEX — /case-studies
   Same dark editorial world as the .report layer (deep neutral near-black,
   not the homepage mint). Fineline typography mirroring the slider.
   ========================================================================== */
.portfolio{
  padding: clamp(72px, 9vw, 132px) 0 0;
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  color: #f1f3f4;
  background: #08090a;
  position: relative;
  overflow: hidden;
}
.portfolio::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 60%);
  pointer-events:none;
}
.portfolio::after{
  content:"";
  position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0,237,179,.32) 50%, transparent 90%);
  pointer-events:none;
}
.portfolio > *{ position:relative; z-index: 1; }

.portfolio-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}

.portfolio-eyebrow{
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-weight: 500;
}
.portfolio-eyebrow .dot-mark{
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}
.portfolio-title{
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  max-width: 18ch;
  letter-spacing: -.03em;
  font-weight: 300;
  text-transform: none;
}
.portfolio-intro{
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 58ch;
  margin-bottom: 80px;
  font-weight: 400;
}

.portfolio-filters{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  margin-bottom: 0;
}
.portfolio-filter{
  font-size: 12px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all .2s var(--ease);
  font-weight: 500;
}
.portfolio-filter:hover{ border-color: rgba(255,255,255,.32); color: #fff; }
.portfolio-filter.is-active{
  background: var(--primary);
  color: #011d17;
  border-color: var(--primary);
  font-weight: 600;
}

.portfolio-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.portfolio-row{
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(0, 260px) 40px;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .3s var(--ease);
}
.portfolio-row:hover{ background: rgba(0,237,179,.025); }
.portfolio-row.is-hidden{ display: none; }
@media (max-width: 900px){
  .portfolio-row{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
}
.portfolio-row-logo{
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  opacity: .85;
}
.portfolio-row-main{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-row-meta{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.portfolio-row-client{
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  font-size: clamp(20px, 1.9vw, 26px);
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.022em;
  text-transform: none;
}
.portfolio-row-tagline{
  font-size: 14px;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
  max-width: 54ch;
  margin-top: 2px;
  font-weight: 400;
}
.portfolio-row-metric{
  text-align: right;
}
@media (max-width: 900px){ .portfolio-row-metric{ text-align: left; } }
.portfolio-row-metric-value{
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 2.4vw, 36px);
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 300;
  font-feature-settings: "tnum";
}
.portfolio-row-metric-value .unit{ color: var(--primary); font-weight: 300; margin-left: .04em; }
.portfolio-row-metric-label{
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  font-weight: 500;
}
.portfolio-row-arrow{
  font-size: 22px;
  color: rgba(255,255,255,.4);
  transition: transform .25s var(--ease), color .25s var(--ease);
  text-align: right;
  font-weight: 300;
}
.portfolio-row:hover .portfolio-row-arrow{
  color: var(--primary);
  transform: translateX(6px);
}
.portfolio-row a{ display: contents; }

/* ==========================================================================
   PORTFOLIO ROW · CTA — Private Cases (frosted, editorial, locked to top)
   ========================================================================== */
.portfolio-row.portfolio-row--cta{
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid rgba(0,237,179,.22);
  border-top: 1px solid rgba(0,237,179,.22);
  margin-bottom: 0;
  background:
    radial-gradient(120% 200% at 12% 10%, rgba(0,237,179,.10), transparent 55%),
    radial-gradient(140% 200% at 92% 90%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, rgba(7,31,25,.45), rgba(2,12,9,.55));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.portfolio-row.portfolio-row--cta::before{
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(25deg, rgba(0,237,179,.035) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
  opacity: .55;
}
.portfolio-row.portfolio-row--cta:hover{
  background:
    radial-gradient(120% 200% at 12% 10%, rgba(0,237,179,.16), transparent 55%),
    radial-gradient(140% 200% at 92% 90%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, rgba(8,38,30,.55), rgba(2,12,9,.6));
}
.portfolio-row-cta-mark{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 36px;
}
.portfolio-row-cta-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow:
    0 0 0 6px rgba(0,237,179,.10),
    0 0 18px rgba(0,237,179,.55);
  flex-shrink: 0;
}
.portfolio-row-client--cta{
  font-weight: 700;
  letter-spacing: -.025em;
}
.portfolio-row-cta-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #011d17;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(0,237,179,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.portfolio-row.portfolio-row--cta:hover .portfolio-row-cta-pill{
  transform: translateX(2px);
  box-shadow: 0 12px 32px -8px rgba(0,237,179,.65);
}
.portfolio-row.portfolio-row--cta:hover .portfolio-row-arrow{
  color: var(--primary);
  transform: translateX(6px);
}
@media (max-width: 900px){
  .portfolio-row.portfolio-row--cta{
    padding: 28px clamp(20px, 4vw, 32px);
    border-radius: 14px;
    border: 1px solid rgba(0,237,179,.22);
    margin-bottom: 12px;
  }
  .portfolio-row-cta-mark{ display: none; }
  .portfolio-row-cta-pill{ width: auto; }
}
@media (max-width: 480px){
  .portfolio-row-cta-pill{ width: 100%; justify-content: center; }
}
@media (hover: none){
  .portfolio-row.portfolio-row--cta:hover{ background:
    radial-gradient(120% 200% at 12% 10%, rgba(0,237,179,.10), transparent 55%),
    radial-gradient(140% 200% at 92% 90%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, rgba(7,31,25,.45), rgba(2,12,9,.55)); }
  .portfolio-row.portfolio-row--cta:hover .portfolio-row-cta-pill{ transform: none; }
  .portfolio-row.portfolio-row--cta:hover .portfolio-row-arrow{ transform: none; }
}

/* ==========================================================================
   TRUST REPORT SECTION — shared (full on /case-studies, compact on homepage)
   ========================================================================== */
.trust-report{
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.10);
  color: #f1f3f4;
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  position: relative;
}
/* When trust-report sits below the portfolio list (i.e. on /case-studies),
   stay in the dark editorial world rather than reverting to the homepage bg. */
.portfolio + .trust-report{ background: #08090a; }
.trust-report-container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.trust-report-eyebrow{
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.trust-report-eyebrow .dot-mark{
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}
.trust-report-title{
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  color: #fff;
  max-width: 22ch;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -.025em;
  text-transform: none;
}
.trust-report-sub{
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 72px;
  font-weight: 400;
}

.trust-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}
@media (max-width: 900px){ .trust-grid{ grid-template-columns: 1fr; } }

.trust-video{
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  overflow: hidden;
  background: #000;
}
.trust-video iframe{
  position:absolute; inset:0; width:100%; height:100%;
  border:0;
}
.trust-video-caption{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
  font-weight: 500;
}

.trust-meta-tile{
  padding: 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,.015);
}
.trust-meta-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-meta-logo{ height: 32px; width: auto; opacity: .9; }
.trust-meta-badge{
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.trust-meta-stat{
  font-family: var(--font-inter), 'Inter', system-ui, sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  color: #fff;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 300;
  font-feature-settings: "tnum";
}
.trust-meta-stat .unit{ color: var(--primary); font-weight: 300; margin-left: .04em; }
.trust-meta-label{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.trust-meta-rule{
  height: 1px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 32%, rgba(255,255,255,.14) 32%, rgba(255,255,255,.14) 100%);
}

/* ——— Reviews-Slider · gleicher Look auf Homepage und /case-studies ——— */
.trust-slider-wrap{
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
  position: relative;
}
.trust-slider{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 40px) / 3));
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding-bottom: 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
}
@media (max-width: 960px){
  .trust-slider{ grid-auto-columns: minmax(280px, 80%); }
}
.trust-slider::-webkit-scrollbar{ height: 6px; }
.trust-slider::-webkit-scrollbar-track{ background: transparent; }
.trust-slider::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius: 999px; }

.trust-quote{
  scroll-snap-align: start;
  padding: 32px 28px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  background: rgba(255,255,255,.015);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.trust-quote:hover{
  background: rgba(0,237,179,.025);
  border-color: rgba(0,237,179,.28);
}
.trust-quote-mark{
  font-size: 40px;
  color: var(--primary);
  line-height: 0;
  margin-top: 24px;
  font-weight: 400;
}
.trust-quote-text{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  font-weight: 400;
}
.trust-quote-author{
  font-size: 12px;
  color: #fff;
  margin-top: auto;
  letter-spacing: .02em;
  font-weight: 500;
}
.trust-quote-role{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 500;
}

.trust-slider-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.trust-slider-foot .count{ color: rgba(255,255,255,.5); }
.trust-slider-foot .hint{ color: var(--primary); }

/* ==========================================================================
   Metric-first variant — XXL hero number
   ========================================================================== */
.report[data-variant="metric-first"] .report-header{
  grid-template-columns: 1fr;
  text-align: left;
}
.report[data-variant="metric-first"] .report-hero-image{ display: none; }
.report[data-variant="metric-first"] .report-metric.featured .report-metric-value{
  font-size: clamp(120px, 18vw, 260px);
  line-height: .85;
  font-weight: 200;
}
.report[data-variant="narrative"] .report-hero-image{
  aspect-ratio: 21 / 9;
  margin-top: 48px;
  grid-column: 1 / -1;
}
.report[data-variant="narrative"] .report-header{
  grid-template-columns: 1fr;
}
