/* ============================================================
   ONEWEB® – PROOF / RESULTS (Case Studies)
   ------------------------------------------------------------
   Eigenständiges, additives Stylesheet für die Ranking-Erfolge-
   Section auf den SEO-Seiten. Nutzt nur NEUE Klassennamen
   (.proof-* / .result-*) → kollidiert mit keinem bestehenden
   Inline- oder Dark-Theme. Tokens (--accent/--surface/--line/
   --muted/--dark/--font/--font-display) kommen aus der Seite
   (inline :root ODER oneweb-dark.css); --surface hat Fallback.
   ============================================================ */
.proof-section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}
.proof-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}
.proof-eyebrow {
  display: inline-block;
  font-family: var(--font, "Inter Tight", sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.proof-headline {
  font-family: var(--font-display, "Extenda", sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--dark);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin: 0 0 1.1rem;
}
.proof-headline em { color: var(--accent); font-style: normal; }
.proof-lead {
  font-family: var(--font, "Inter Tight", sans-serif);
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.result-card {
  background: var(--surface, #151515);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color .3s ease, transform .3s ease;
}
.result-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.result-jump {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.result-pos { display: flex; flex-direction: column; gap: .25rem; }
.result-pos-num {
  font-family: var(--font-display, "Extenda", sans-serif);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
}
.result-pos--before .result-pos-num { color: var(--muted); }
.result-pos--after  .result-pos-num { color: var(--accent); }
.result-pos-label {
  font-family: var(--font, "Inter Tight", sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.result-arrow {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent);
  line-height: 1;
  flex: 0 0 auto;
}
.result-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.result-kw {
  font-family: var(--font, "Inter Tight", sans-serif);
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
}
.result-time {
  font-family: var(--font, "Inter Tight", sans-serif);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.result-client {
  font-family: var(--font, "Inter Tight", sans-serif);
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}
.result-client strong { color: var(--dark); font-weight: 700; }
.proof-disclaimer {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  font-family: var(--font, "Inter Tight", sans-serif);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 64ch;
}
