/* ============================================================
   FOUNDER COCKPIT — Editorial Redesign: Strategy + Results
   v=903 | 2026-05-05
   World-class luxury-consultancy styling for two homepage
   sections: 5 Säulen (#strategy) + Ergebnisse (#results)
   ============================================================ */

/* ─── Tokens (extends premium.css :root) ─────────────────── */
.services-v2,
.cases-v2 {
  --pillar-radius: 22px;
  --pillar-shadow-rest:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 1px 2px rgba(28,24,20,0.04),
    0 8px 28px -10px rgba(28,24,20,0.10);
  --pillar-shadow-hover:
    0 1px 0 rgba(255,255,255,1) inset,
    0 2px 4px rgba(28,24,20,0.06),
    0 28px 56px -14px rgba(28,24,20,0.20),
    0 0 0 1px rgba(201,168,76,0.30);
  --gold-soft: rgba(201,168,76,0.08);
  --gold-line: rgba(201,168,76,0.22);
}

/* ════════════════════════════════════════════════════════════
   SECTION 1 — STRATEGY (5 Säulen) — Editorial Pillar Cards
   ════════════════════════════════════════════════════════════ */

.services-v2 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(201,168,76,0.07), transparent 60%),
    linear-gradient(180deg, #F4F0E8 0%, #F7F3EB 60%, #F4F0E8 100%);
}

.services-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(28,24,20,0.05) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.services-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.services-bg-circle-1 {
  width: 480px; height: 480px;
  top: -180px; left: -160px;
  background: radial-gradient(circle, rgba(224,192,106,0.18), transparent 70%);
}
.services-bg-circle-2 {
  width: 560px; height: 560px;
  bottom: -260px; right: -200px;
  background: radial-gradient(circle, rgba(154,122,53,0.12), transparent 70%);
}

.services-v2 .container { position: relative; z-index: 2; }

/* Header upgrade */
.services-v2 .services-header { margin-bottom: 72px; }
.services-v2 .services-header h2 {
  letter-spacing: -0.01em;
  font-weight: 600;
}
.services-v2 .services-header h2 em {
  font-style: italic !important;
  font-weight: 400 !important;
  background: linear-gradient(180deg, #1A1714 0%, #4a3f25 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-v2 .gold-rule {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright) 50%, transparent);
  width: 64px;
  height: 2px;
}

/* ─── Pillar grid ─────────────────────────────────────────── */
.pillars-grid {
  gap: 22px;
  align-items: stretch;
}

/* ─── Pillar card ─────────────────────────────────────────── */
.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 28px 30px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF6 100%);
  border: 1px solid rgba(28,24,20,0.06);
  border-radius: var(--pillar-radius);
  box-shadow: var(--pillar-shadow-rest);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

/* Kill old hover behaviors from premium.css */
.pillar-card::after { content: none !important; }

/* Top gold ribbon (default — visible) */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-bright) 50%,
    var(--gold) 80%,
    transparent 100%);
  opacity: 0.55;
  transition: opacity 0.4s ease, height 0.4s ease;
  z-index: 3;
}

/* Subtle inner radial from top — luxury depth */
.pillar-card .pillar-card-rail {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(160px 80px at 50% 0%, rgba(201,168,76,0.10), transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.pillar-card > * { position: relative; z-index: 1; }

/* Hover state */
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--pillar-shadow-hover);
}
.pillar-card:hover::before { opacity: 1; height: 4px; }
.pillar-card:hover .pillar-card-rail { opacity: 1; }

/* ─── Pillar header (number + icon) ───────────────────────── */
.pillar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position: relative;
}

.pillar-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar-card:hover .pillar-head::after { width: 64px; }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
  display: inline-block;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Outline style by default — fills on hover */
.pillar-num {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(201,168,76,0.45);
  background: none;
  color: transparent;
}
.pillar-card:hover .pillar-num {
  -webkit-text-fill-color: initial;
  -webkit-text-stroke: 0;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(-2px);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FDF8E8 0%, #F5EDD4 100%);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 1px 2px rgba(154,122,53,0.10);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.pillar-card:hover .pillar-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(180deg, #1A1714 0%, #2a221a 100%);
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 6px 16px -6px rgba(154,122,53,0.45);
}

/* ─── Pillar body ────────────────────────────────────────── */
.pillar-body { flex: 1; }
.pillar-body h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-h);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.pillar-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Tags refined ───────────────────────────────────────── */
.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.pillar-tags span {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(180deg, #FDF8E8 0%, #F5EDD4 100%);
  border: 1px solid rgba(201,168,76,0.30);
  padding: 5px 11px;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
}
.pillar-card:hover .pillar-tags span {
  border-color: rgba(201,168,76,0.45);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF8E8 100%);
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 — RESULTS (Ergebnisse) — Crested Outcome Cards
   ════════════════════════════════════════════════════════════ */

.cases-v2 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background: linear-gradient(180deg, #F4F0E8 0%, #FAFAF7 100%);
}
.cases-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cases-bg-grid {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px; height: 600px;
  background-image:
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 700px 350px at center, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 700px 350px at center, #000, transparent 70%);
  opacity: 0.55;
}

.cases-v2 .container { position: relative; z-index: 2; }

.cases-v2 .cases-header { margin-bottom: 64px; }
.cases-v2 .cases-header h2 {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cases-v2 .gold-rule {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright) 50%, transparent);
  width: 64px; height: 2px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .pillars-grid,
  .results-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .services-v2,
  .cases-v2 { padding: 88px 0; }
  .pillars-grid,
  .results-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pillar-num { font-size: 3rem; }
}
@media (max-width: 600px) {
  .services-v2 { padding: 72px 0; }
  .cases-v2 { padding: 72px 0; }
  .pillars-grid,
  .results-grid-v2 {
    grid-template-columns: 1fr;
  }
  .pillar-card { padding: 30px 24px 26px; }
  .outcome-card { padding: 28px 22px; }
  .pillar-num { font-size: 2.6rem; }
}

/* ════════════════════════════════════════════════════════════
   SECTION 0 — HERO (Cinematic uncropped founder photo)
   Image native ratio: 2560×1130 (≈2.27:1)
   Goal: display full, uncropped, with editorial framing.
   ════════════════════════════════════════════════════════════ */

.hero-cinematic {
  min-height: auto !important;
  padding: var(--nav-h) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-cinematic .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding-top: 56px;
}

/* Override broken legacy hero-grid styles */
.hero-cinematic .hero-grid { display: contents; }

/* ─── Hero copy block — centered editorial top ───────────── */
.hero-copy-centered {
  width: 100%;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.hero-copy-centered .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(180deg, #FDF8E8 0%, #F5EDD4 100%);
  border: 1px solid rgba(201,168,76,0.30);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
}

.hero-copy-centered .hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-h);
  font-weight: 600;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25em;
}
.hero-copy-centered .hero-h1 em {
  font-style: italic !important;
  font-weight: 400 !important;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy-centered .hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0;
}

.hero-copy-centered .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.hero-copy-centered .hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.hero-copy-centered .hero-trust-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-right: 14px;
}
.hero-copy-centered .hero-trust-label::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 14px;
  background: rgba(28,24,20,0.15);
  transform: translateY(-50%);
}
.hero-copy-centered .hero-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.hero-copy-centered .hero-trust-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  background: transparent;
  border: 1px solid rgba(28,24,20,0.12);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.hero-copy-centered .hero-trust-tags span:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ─── Hero stage — full cinematic image ──────────────────── */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 1;
}

.hero-stage-frame {
  position: relative;
  width: 100%;
  /* Native image aspect — guarantees no crop */
  aspect-ratio: 2560 / 1130;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, #2c241c 0%, #14110d 100%);
  border: 1px solid rgba(201,168,76,0.30);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 80px -20px rgba(28,24,20,0.45),
    0 14px 36px -12px rgba(154,122,53,0.22);
  isolation: isolate;
}

.hero-stage-frame::after {
  /* subtle inner gold glow ring */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(224,192,106,0.15) inset;
  z-index: 4;
}

.hero-stage-picture,
.hero-stage-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-stage-img {
  /* contain → never crop. The frame already matches native ratio,
     so contain == cover visually but guards against any mismatch. */
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-stage:hover .hero-stage-img {
  transform: scale(1.015);
}

/* Decorative gold corner brackets — luxury framing accent */
.hero-stage-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.85;
}
.hero-stage-corner::before,
.hero-stage-corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
}
.hero-stage-corner-tl {
  top: 14px;
  left: 14px;
}
.hero-stage-corner-tl::before { top:0; left:0; width:18px; height:1.5px; }
.hero-stage-corner-tl::after  { top:0; left:0; width:1.5px; height:18px; }

.hero-stage-corner-tr {
  top: 14px;
  right: 14px;
}
.hero-stage-corner-tr::before { top:0; right:0; width:18px; height:1.5px; }
.hero-stage-corner-tr::after  { top:0; right:0; width:1.5px; height:18px; }

.hero-stage-corner-bl {
  bottom: 14px;
  left: 14px;
}
.hero-stage-corner-bl::before { bottom:0; left:0; width:18px; height:1.5px; }
.hero-stage-corner-bl::after  { bottom:0; left:0; width:1.5px; height:18px; }

.hero-stage-corner-br {
  bottom: 14px;
  right: 14px;
}
.hero-stage-corner-br::before { bottom:0; right:0; width:18px; height:1.5px; }
.hero-stage-corner-br::after  { bottom:0; right:0; width:1.5px; height:18px; }

/* ─── Editorial stats strip — premium under-image bar ─── */
.hero-stage-stats {
  position: relative;
  margin: -36px auto 0;
  width: min(100%, 880px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF6 100%);
  border: 1px solid rgba(28,24,20,0.06);
  border-radius: 20px;
  padding: 22px 32px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 18px 48px -16px rgba(28,24,20,0.18),
    0 0 0 1px rgba(201,168,76,0.10);
  z-index: 3;
}
.hero-stage-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright) 50%, transparent);
  opacity: 0.7;
  border-radius: 2px;
}

.hero-stage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
  padding: 4px 8px;
}
.hero-stage-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stage-stat-num small {
  font-size: 0.65em;
  margin-left: 1px;
  opacity: 0.85;
}
.hero-stage-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stage-divider {
  width: 1px;
  background: linear-gradient(180deg,
    transparent 10%,
    rgba(201,168,76,0.32) 50%,
    transparent 90%);
  flex-shrink: 0;
  margin: 0 8px;
}

/* Hide legacy floating elements if they linger */
.hero-cinematic .hero-stat-card,
.hero-cinematic .hero-badge-float { display: none !important; }

/* Hero scroll cue — keep visible */
.hero-cinematic .hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-cinematic { padding-bottom: 60px; }
  .hero-cinematic .container { gap: 40px; padding-top: 28px; }
  .hero-stage-frame { border-radius: 20px; }
  .hero-stage-corner { width: 22px; height: 22px; }
  .hero-stage-corner-tl, .hero-stage-corner-tr { top: 10px; }
  .hero-stage-corner-bl, .hero-stage-corner-br { bottom: 10px; }
  .hero-stage-corner-tl, .hero-stage-corner-bl { left: 10px; }
  .hero-stage-corner-tr, .hero-stage-corner-br { right: 10px; }
  .hero-stage-stats {
    margin-top: -22px;
    padding: 16px 18px;
    gap: 4px;
  }
  .hero-stage-divider { margin: 0 2px; }
  .hero-stage-stat-label { font-size: 0.62rem; }
}
@media (max-width: 600px) {
  .hero-cinematic .hero-trust { gap: 10px; }
  .hero-stage-stats {
    flex-direction: column;
    margin-top: -16px;
    padding: 18px 20px;
    gap: 14px;
  }
  .hero-stage-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28), transparent);
    margin: 0;
  }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .pillar-card,
  .pillar-card::before,
  .pillar-card .pillar-card-rail,
  .pillar-num,
  .pillar-icon,
  .pillar-tags span,
  .outcome-card,
  .outcome-card::before,
  .outcome-corner,
  .outcome-seal,
  .outcome-seal::before,
  .outcome-list li,
  .outcome-list li::before,
  .outcome-list li::after,
  .outcome-head::after,
  .pillar-head::after {
    transition: none !important;
  }
  .pillar-card:hover,
  .outcome-card:hover {
    transform: none;
  }
}
