/* SHK Schmiede — Position-Pages CSS
   Design-System konsistent zur Hauptseite */
:root {
  --brand: #1FA855;
  --brand-dark: #168A45;
  --brand-light: #E8F5EC;
  --slate: #1E3A5F;
  --ink: #0A0A0A;
  --ink-2: #333;
  --ink-3: #666;
  --line: rgba(0, 0, 0, 0.08);
  --cream: #F5F5F0;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 24px;
  --max: 1200px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #FAFAF7;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(31, 168, 85, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(30, 58, 95, 0.025) 0%, transparent 45%),
    radial-gradient(circle at 40% 90%, rgba(31, 168, 85, 0.02) 0%, transparent 35%);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  overflow-wrap: break-word;
  hyphens: auto;
}
/* Subtle noise/grain texture layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
/* Ensure content is above the texture */
.site-header, section, footer, .container, .breadcrumb { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  padding: 20px 0;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}
.logo small { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-top: 1px; }
.header-cta {
  background: var(--ink);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: var(--brand);
}
.header-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

/* Breadcrumb */
.breadcrumb {
  padding: 32px 0 0;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.breadcrumb a {
  color: var(--ink-3);
  font-weight: 500;
  transition: color 0.15s ease;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep {
  margin: 0 10px;
  color: var(--ink-3);
  opacity: 0.4;
}
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* Hero — Clean Light SaaS Style */
.hero {
  padding: 40px 0 100px;
  position: relative;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* Meta-marker top of hero */
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-meta-left { display: flex; align-items: center; gap: 20px; }
.hero-meta-right { display: flex; align-items: center; gap: 10px; }
.hero-meta-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-meta-number {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  background: rgba(31, 168, 85, 0.08);
  border: 1px solid rgba(31, 168, 85, 0.2);
  color: var(--brand-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 40px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: none;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 680px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.hero-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}
.hero-cta-note::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.hero-cta-note em {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}
.btn-primary:hover {
  background: var(--brand);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 13px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s ease;
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding: 40px 0 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.hero-stat {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-num {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.hero-stat-num em {
  font-style: normal;
  color: var(--ink-3);
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 2px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}

/* Section base */
section { padding: 72px 0; border-bottom: 1px solid var(--line); background: transparent; }
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 820px;
}
h2 em { font-style: italic; color: var(--brand); }
h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
p { margin-bottom: 18px; color: var(--ink-2); }
p strong { color: var(--ink); font-weight: 700; }
.section-lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 780px; margin-bottom: 40px; }

/* Callout / Key-Fact Box */
.key-fact {
  background: var(--cream);
  border-left: 4px solid var(--brand);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.key-fact-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.key-fact p:last-child { margin-bottom: 0; }
.key-fact p { font-size: 18px; line-height: 1.55; color: var(--ink); }
.key-fact strong { color: var(--brand-dark); }

/* Skills / Feature Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(31, 168, 85, 0.08);
  background: rgba(255, 255, 255, 0.95);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 18px;
}
.card p { font-size: 15px; margin-bottom: 0; }

/* Process / Steps */
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 32px 0;
}
.process-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  align-items: start;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.process-num::before { content: counter(step, decimal-leading-zero); }
.process-body h4 { margin-bottom: 6px; }
.process-body p { font-size: 15px; margin-bottom: 0; }

/* Case Box */
.case-box {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.case-box::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 300px; height: 800px;
  background: linear-gradient(180deg, rgba(31, 168, 85, 0.14), rgba(31, 168, 85, 0.02));
  transform: rotate(20deg);
}
.case-inner { position: relative; z-index: 2; }
.case-badge {
  display: inline-block;
  background: rgba(31, 168, 85, 0.15);
  color: var(--brand);
  border: 1px solid rgba(31, 168, 85, 0.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.case-box h3 { color: var(--white); margin-bottom: 14px; }
.case-box p { color: rgba(255, 255, 255, 0.75); }
.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.case-stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.case-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* FAQ */
.faq { margin: 32px 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-question {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before {
  content: "Q";
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}
.faq-answer {
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 700; }

/* Related positions */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.related-card {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.15s ease;
}
.related-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  transform: translateY(-2px);
}
.related-card h4 { font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.related-card p { font-size: 13px; color: var(--ink-3); margin-bottom: 0; }
.related-card::after {
  content: "→";
  float: right;
  color: var(--brand);
  font-weight: 900;
  margin-top: 2px;
}

/* CTA Bottom */
.cta-final {
  background: var(--brand);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -20%; right: 25%;
  width: 200px; height: 1600px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  transform: rotate(20deg);
}
.cta-final::after {
  content: "";
  position: absolute;
  bottom: -20%; left: 25%;
  width: 200px; height: 1600px;
  background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.03));
  transform: rotate(20deg);
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 20px;
}
.cta-final h2 em { color: rgba(255, 255, 255, 0.75); }
.cta-final p { color: rgba(255, 255, 255, 0.85); font-size: 19px; max-width: 640px; }
.cta-final .btn-primary { background: var(--ink); color: var(--white); margin-top: 24px; }
.cta-final .btn-primary:hover { background: var(--white); color: var(--ink); }

/* Footer */
/* ============================================
   FOOTER — Modern Sitemap Style
   ============================================ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 40px;
  font-size: 14px;
}
footer .container { position: relative; }
footer h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Positions as clean left-aligned list grid */
.footer-positions {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-positions h4 {
  margin-bottom: 20px;
  text-align: left;
}
.footer-positions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
}
.footer-positions-grid a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s ease;
  text-decoration: none;
  padding: 4px 0;
  text-align: left;
}
.footer-positions-grid a:hover {
  color: var(--brand);
}

@media (max-width: 900px) {
  .footer-positions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .footer-positions-grid { grid-template-columns: 1fr; }
}

/* Main footer content grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid a {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  padding: 5px 0;
  transition: color 0.15s ease;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--brand); }

/* Bottom bar */
.footer-tag {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-tag a { color: rgba(255, 255, 255, 0.5); }
.footer-tag a:hover { color: var(--brand); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 56px 0 32px; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-positions-title { flex-direction: column; align-items: flex-start; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .case-stats { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 56px 0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .container { padding: 0 18px; }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 40px 1fr; padding: 18px 20px; }
  .process-num { font-size: 28px; }
  .case-box { padding: 28px 22px; }
}

/* ============================================
   NEW: Enhanced Method Flow (5-Schritte-Prozess)
   ============================================ */
.method-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 40px 40px 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.method-hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -5%;
  width: 400px; height: 800px;
  background: linear-gradient(180deg, rgba(31, 168, 85, 0.15), rgba(31, 168, 85, 0.02));
  transform: rotate(20deg);
}
.method-hero-inner { position: relative; z-index: 2; }
.method-hero-tag {
  display: inline-block;
  background: rgba(31, 168, 85, 0.15);
  color: var(--brand);
  border: 1px solid rgba(31, 168, 85, 0.4);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.method-hero h3 { color: var(--white); font-size: 26px; margin-bottom: 12px; }
.method-hero p { color: rgba(255, 255, 255, 0.75); margin-bottom: 0; font-size: 17px; }
.method-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.method-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.method-usp-item::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: -1px;
}

.method-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  margin: 40px 0;
}
.method-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: start;
  margin-bottom: 14px;
  position: relative;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.method-step:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(31, 168, 85, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 168, 85, 0.3);
}
.method-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 82px;
  width: 2px;
  height: 14px;
  background: var(--brand);
  z-index: 1;
}
.method-step-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-light), var(--white));
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.method-step-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.method-step-body h4 {
  font-size: 21px;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.method-step-body h4 .badge {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}
.method-step-body p {
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 0;
  line-height: 1.55;
}
.method-step-body p strong { color: var(--ink); }
.method-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.method-highlights .chip {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================
   NEW: 3-Case-Grid (statt 1 Case-Box)
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.case-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.case-card::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 200px; height: 500px;
  background: linear-gradient(180deg, rgba(31, 168, 85, 0.12), rgba(31, 168, 85, 0.02));
  transform: rotate(20deg);
}
.case-card-inner { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; }
.case-card-tag {
  display: inline-block;
  background: rgba(31, 168, 85, 0.15);
  color: var(--brand);
  border: 1px solid rgba(31, 168, 85, 0.4);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.case-card h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.case-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.case-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.case-card-stat-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.case-card-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.case-card-result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.5;
}
.case-card-result strong { color: var(--brand); font-style: normal; }

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
  .method-usp { grid-template-columns: repeat(2, 1fr); }
  .method-step { grid-template-columns: 70px 1fr; padding: 22px 20px; }
  .method-step-icon { width: 56px; height: 56px; }
  .method-step-num { font-size: 26px; }
}
@media (max-width: 620px) {
  .method-usp { grid-template-columns: 1fr; }
  .method-step-body h4 { font-size: 18px; }
  .method-step-body h4 .badge { display: block; margin-left: 0; margin-top: 8px; }
}

/* ============================================
   NEW: Hero Split Layout with Image
   ============================================ */
.hero-split {
  max-width: none;
}
.hero-split-text {}
.hero-split-media { display: none !important;
  /* --- hidden ---
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: translateZ(0);
}
.hero-split-media img { transition: transform 8s ease-out; }
.hero-split-media:hover img { transform: scale(1.04); } */
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.hero-split-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.85);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-split-badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-split-badge-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-split-badge-arrow {
  color: var(--brand);
  font-weight: 900;
}

/* Section Image Divider — Clean, no text overlay */
.section-image {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 60px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
}
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.section-image:hover img { transform: scale(1.04); }

/* Elegant floating badge — bottom right */
.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(10, 10, 10, 0.2) 100%);
  pointer-events: none;
}
.section-image-mark {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.section-image-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-split-media { display: none !important;
  /* --- hidden --- aspect-ratio: 16 / 10; max-height: 400px; }
  .section-image { height: 260px; margin: 40px 0; }
  .section-image-mark { bottom: 18px; right: 18px; font-size: 11px; padding: 8px 14px; }
}


/* Breadcrumb wrapper — transparent (light theme) */
.breadcrumb-wrapper {
  background: transparent;
  width: 100%;
}
