/* ============================================================
   ONEWEB® – DARK + PURPLE THEME ("Index-DNA")
   ------------------------------------------------------------
   Override-Stylesheet. Wird NACH dem seiteneigenen Inline-<style>
   eingebunden und färbt das helle Cream-Theme in die dunkle
   Lila-Welt der Startseite um. Rein visuell – Inhalt, Struktur,
   Headings, Schema & SEO bleiben unverändert.

   Einbindung pro Unterseite (direkt vor </head>, NACH dem <style>):
   <link rel="stylesheet" href="oneweb-dark.css" />
   ============================================================ */

:root {
  --bg: #0b0b0b;          /* Seitenhintergrund */
  --dark: #ececec;        /* Vordergrund / Text (Variablenname beibehalten) */
  --soft: #161616;        /* alternative Sektionsfläche (vorher hell) */
  --surface: #151515;     /* angehobene Karten */
  --surface-2: #1c1c1c;   /* zweite Kartenvariante */
  --muted: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #b886ff;      /* Lila-Akzent der Startseite */
  --accent-ink: #0b0b0b;  /* Textfarbe auf Lila-Flächen */
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

/* Punktraster-Overlay auf Dunkel sichtbar (statt Multiply auf Weiß) */
body::before {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px);
  opacity: 0.025;
  mix-blend-mode: screen;
}

/* ---------- Navigation ---------- */
.nav.is-scrolled {
  background: rgba(11, 11, 11, 0.95);
}
.nav-logo:hover {
  color: var(--accent);
}

/* ---------- Eyebrows & Nummern -> Akzent ---------- */
.eyebrow,
.about-mara-eyebrow,
.process-num {
  color: var(--accent);
}

/* ---------- Buttons ---------- */
/* Outline-Button: heller Rand, füllt sich hell -> dunkler Text */
.btn {
  border-color: var(--dark);
}
.btn::before {
  background: var(--dark);
}
.btn:hover {
  color: var(--bg);
}
/* Primär-Button = Lila gefüllt (wie .btn-purple-filled der Startseite) */
.btn-dark {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-dark::before {
  background: #ffffff;
}
.btn-dark:hover {
  color: var(--accent-ink);
  border-color: #ffffff;
}

/* ---------- Service-Karten -> dunkle Flächen statt Weiß ---------- */
.sc-card.dark {
  background: var(--surface-2);
  color: var(--dark);
  border: 1px solid var(--line);
}
.sc-card.light {
  background: var(--surface);
  color: var(--dark);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
}
.sc-card.dark .sc-card-desc,
.sc-card.dark .sc-card-desc a {
  color: rgba(255, 255, 255, 0.78);
}
.sc-card.light .sc-card-desc {
  color: rgba(255, 255, 255, 0.7);
}
.card-link:hover,
.dark-link:hover {
  color: var(--accent);
}

/* ---------- Case-Sektion ---------- */
.case-section {
  background: var(--soft);
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
}
.case-kpi {
  color: var(--accent);
}

/* ---------- Link-Karten ---------- */
.link-card {
  background: var(--surface);
  border: 1px solid var(--line);
}
.link-card:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-4px);
}
.link-card:hover .body,
.link-card:hover .eyebrow,
.link-card:hover .link-card-title {
  color: var(--accent-ink);
}

/* ---------- FAQ ---------- */
.faq-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-item.active .faq-q span,
.faq-item.active .faq-icon {
  color: var(--accent);
}

/* ---------- Kontakt ---------- */
.contact-section {
  background: #111111;
}
.contact-card {
  background: var(--surface);
  color: var(--dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.contact-step-badge {
  background: var(--accent);
  color: var(--accent-ink);
}
.minimal-input {
  color: var(--dark);
}
.minimal-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.minimal-submit {
  color: var(--dark);
}
.minimal-submit-wrapper {
  border-color: var(--accent);
}
.form-pill {
  color: var(--dark);
  border-color: var(--line);
}
.form-pill.selected {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
/* Inline-Style des Erfolgs-Badges überschreiben */
#success-screen .contact-step-badge {
  background: var(--accent) !important;
  color: var(--accent-ink) !important;
}

/* ---------- Footer (Lila-Glow wie Startseite) ---------- */
.oneweb-footer {
  position: relative;
}
.oneweb-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 900px;
  background: radial-gradient(
    ellipse at bottom center,
    rgba(184, 134, 255, 0.22) 0%,
    rgba(11, 11, 11, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}
.oneweb-footer > * {
  position: relative;
  z-index: 1;
}
.oneweb-massive-text {
  transition: color 0.4s ease;
}
.oneweb-massive-text:hover {
  color: var(--accent);
}
.footer-email:hover {
  color: var(--accent);
  opacity: 1;
}
.oneweb-legal-links a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ============================================================
   Optionale Brutalismus-Sektionen (falls eine Unterseite die
   Index-Klassen nutzt) – schadet ungenutzten Seiten nicht.
   ============================================================ */
.massive-section-title {
  color: var(--accent);
}
.pr-num {
  color: var(--accent);
}
.project-row:hover .pr-title {
  color: var(--accent);
}
.approach-card:hover .approach-num {
  color: var(--accent);
}
.brutal-answer-content p {
  border-left: 4px solid var(--accent);
}

/* ============================================================
   HERO-KIT (Index-DNA) – "HI."-Begrüßung, großes Lila-H1,
   Geometrie-SVG & Smiley. Wird auf jeder Nicht-Legal-Seite
   per identischem Markup-Snippet eingebunden.
   ============================================================ */

/* H1 groß & in Index-Lila (gilt für alle .display-Headlines) */
.display {
  color: var(--accent);
}

/* "HI."-Begrüßung mit winkender Hand */
.hero-kit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(20px, 3vw, 40px);
}

.hero-greeting {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  will-change: transform;
}

.huge-hi {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.waving-hand {
  width: clamp(42px, 5vw, 76px);
  height: auto;
  transform-origin: 70% 70%;
  animation: wave 2.5s infinite;
}

.floating-smiley {
  width: clamp(56px, 7vw, 96px);
  height: auto;
  animation: float-smiley 4s ease-in-out infinite;
}

@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

@keyframes float-smiley {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

/* Geometrie-Deko-SVG im Hero (rechts, auf Mobile ausgeblendet) */
.hero-deco {
  width: clamp(140px, 16vw, 240px);
  height: auto;
  overflow: visible;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .hero-deco {
    display: none;
  }
  .hero-kit {
    justify-content: flex-start;
  }
}

/* Smiley-Begrüßung im Kontaktbereich (wie Index) */
.contact-smiley {
  width: clamp(72px, 9vw, 110px);
  height: auto;
  margin-bottom: clamp(20px, 3vw, 36px);
}

@media (prefers-reduced-motion: reduce) {
  .waving-hand,
  .floating-smiley {
    animation: none !important;
  }
}

/* ============================================================
   CLEAN-UP PASS – ruhiger, scanbarer, mehr Luft (Index-Feeling)
   Weniger konkurrierende Signale: keine Textur, einheitliche
   Karten, dezentere Akzente, großzügigere Abstände.
   ============================================================ */

/* Punktraster-Textur entfernen – Hauptquelle für visuelle Unruhe */
body::before {
  display: none !important;
}

/* Karten: EINE ruhige, klar abgesetzte Fläche statt matschiger
   Töne + alternierender Schattierungen + Lila-Top-Border */
.sc-card.dark,
.sc-card.light,
.link-card,
.case-card {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* hebt Lila-Top-Border auf */
  border-radius: 14px;
}

.sc-card.dark .sc-card-desc,
.sc-card.light .sc-card-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* Mehr Luft in den Grids und Karten */
.sc-grid {
  gap: clamp(18px, 2vw, 28px);
}
.sc-card {
  padding: clamp(36px, 4vw, 52px);
  min-height: 280px;
}
.link-card {
  padding: clamp(34px, 3.5vw, 48px);
  min-height: 240px;
}

/* Nicht jede Karte soll lila schreien – Eyebrows in Link-Karten ruhig */
.link-card .eyebrow {
  color: rgba(255, 255, 255, 0.42);
}

/* Hover bleibt klar & eindeutig */
.link-card:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.link-card:hover .eyebrow {
  color: rgba(11, 11, 11, 0.65);
}

/* Etwas mehr Ruhe zwischen den Sektionen */
.services-cards-section,
.link-cards-section {
  padding-top: clamp(110px, 14vw, 200px);
  padding-bottom: clamp(110px, 14vw, 200px);
}

/* Karten-Hover dezenter (kein harter Sprung) */
.sc-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

/* ============================================================
   LEISTUNGS-SÄULEN – kräftige Lila-Cards mit Pill-Tags
   (Referenz-Stil des Users). Bold, klar, scanbar.
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 980px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 24px;
  padding: clamp(30px, 3vw, 46px);
  min-height: clamp(360px, 32vw, 470px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: transform 0.35s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pillar-tag {
  border: 1px solid rgba(11, 11, 11, 0.5);
  border-radius: 9px;
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.pillar-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.pillar-desc {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.55;
  color: rgba(11, 11, 11, 0.8);
}
.pillar-link {
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--accent-ink);
  border-bottom: 2px solid rgba(11, 11, 11, 0.4);
  width: fit-content;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.pillar-link:hover {
  border-color: var(--accent-ink);
}

/* ============================================================
   PRICE-CARDS – im neuen Card-Stil (dunkle Flächen + Lila-Highlight)
   Behebt das "broken"-Aussehen (altes helles CSS auf Dunkel).
   Rein visuell – Preise, Features & Schema unverändert.
   ============================================================ */
.price-card {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(32px, 3vw, 46px) !important;
  min-height: 0 !important;
}
/* Standard-Karten manche Seiten setzen .price-card.standard{#fff} inline (0,2,0) */
.price-card.standard {
  background: #171717;
  color: var(--dark);
}
.price-card.featured {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.pc-head p {
  color: var(--muted);
}
.price-card.featured .pc-head p {
  color: rgba(11, 11, 11, 0.7);
}

.price-amount span {
  color: var(--muted);
}
.price-card.featured .price-amount span {
  color: rgba(11, 11, 11, 0.6);
}

.price-features li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.price-card.featured .price-features li {
  border-color: rgba(11, 11, 11, 0.2);
  color: rgba(11, 11, 11, 0.85);
}

/* Buttons: Standard = Outline (füllt sich hell), Featured = dunkler Solid auf Lila */
.price-btn {
  border: 1px solid var(--dark);
  color: var(--dark);
}
.price-btn:hover {
  background: var(--dark);
  color: var(--bg);
}
.price-card.featured .price-btn {
  background: var(--accent-ink);
  color: #ffffff;
  border-color: var(--accent-ink);
}
.price-card.featured .price-btn:hover {
  background: transparent;
  color: var(--accent-ink);
  border-color: var(--accent-ink);
}

/* ============================================================
   KONTAKT + FOOTER wie auf der Startseite (kanonisch)
   Macht die (auf jeder Seite identisch eingesetzte) Kontakt-
   Sektion & Footer optisch deckungsgleich mit der Index.
   ============================================================ */

/* Purple-Buttons der Startseite (falls Seite sie nicht inline hat) */
.btn-purple-filled {
  background: var(--accent);
  color: #0b0b0b;
  border-color: var(--accent);
}
.btn-purple-filled::before {
  background: #ffffff;
}
.btn-purple-filled:hover {
  color: #0b0b0b;
  border-color: #ffffff;
}
.btn-purple-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-purple-outline::before {
  background: var(--accent);
}
.btn-purple-outline:hover {
  color: #0b0b0b;
  border-color: var(--accent);
}
.btn-large {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  padding: 24px 48px;
  min-height: 80px;
  border-radius: 999px;
  width: 100%;
}

/* Kontakt-Sektion: transparente Karte, großes Headline, große Inputs */
.contact-section {
  background: var(--bg);
  padding: clamp(100px, 15vw, 250px) var(--pad);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section::before {
  display: none !important;
}
.contact-card {
  background: transparent !important;
  max-width: 1200px;
  width: 100%;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contact-smiley {
  width: clamp(80px, 10vw, 120px);
  height: auto;
  margin-bottom: 40px;
}
.contact-step-badge {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: clamp(20px, 4vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
}
.contact-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: clamp(60px, 10vw, 100px);
}
.minimal-form {
  position: relative;
}
.form-step {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}
.minimal-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark);
  padding: 24px 0;
  outline: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.minimal-input:focus {
  border-bottom: 2px solid var(--accent);
}
.minimal-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.minimal-submit-wrapper {
  margin-top: clamp(60px, 10vw, 100px);
  border: none !important;
}
.form-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-pill {
  display: inline-block;
  padding: 20px 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.form-pill.selected {
  background: var(--accent);
  color: #0b0b0b;
  border-color: var(--accent);
}
.minimal-back {
  margin-top: 32px;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.minimal-back:hover {
  color: var(--dark);
}

/* Footer-Begrüßung "LASS UNS SPRECHEN" in Index-Größe */
.oneweb-footer .hero-greeting .huge-hi {
  font-size: clamp(3rem, 8vw, 7rem);
}

/* ============================================================
   CONVERSION: Trust-/Review-Bar + Review-Karten (Social Proof)
   ============================================================ */
.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(22px, 3vw, 34px);
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.trust-stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 1.05rem;
  line-height: 1;
}
.trust-bar strong {
  font-weight: 700;
  color: var(--dark);
}
.trust-text {
  color: var(--muted);
  font-size: 0.95rem;
}
.trust-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--dark);
  font-weight: 600;
}
.trust-bar a:hover {
  color: var(--accent);
}

.reviews-section {
  background: var(--bg);
  padding: clamp(90px, 12vw, 180px) var(--pad);
  border-bottom: 1px solid var(--line);
}
.reviews-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #171717;
}
.review-card .trust-stars {
  font-size: 1rem;
}
.review-quote {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  color: var(--dark);
}
.review-author {
  margin-top: auto;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}
.oneweb-footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10vw;
  margin-bottom: clamp(80px, 12vw, 180px);
}
.oneweb-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6vw;
}
.oneweb-massive-text {
  font-size: clamp(100px, 20vw, 400px);
}
@media (max-width: 1050px) {
  .oneweb-footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .oneweb-footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .oneweb-footer-links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
