:root {
  --navy-1000: #020811;
  --navy-950: #041020;
  --navy-900: #07182c;
  --navy-850: #0a203b;
  --navy-800: #0d2a4c;
  --navy-700: #123b69;
  --blue: #1e63aa;
  --blue-soft: #8db8e3;
  --gold: #d7a83d;
  --gold-strong: #efc45b;
  --gold-soft: #f6df9a;
  --ink: #11223a;
  --muted: #64748a;
  --line: #dce3ea;
  --paper: #ffffff;
  --paper-warm: #f7f8fa;
  --paper-blue: #edf3f8;
  --success: #16795a;
  --error: #a63b3b;
  --shadow-sm: 0 8px 24px rgba(4,16,32,.08);
  --shadow-md: 0 22px 60px rgba(4,16,32,.14);
  --shadow-dark: 0 24px 70px rgba(0,0,0,.35);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }
::selection { background: var(--gold-soft); color: var(--navy-1000); }

.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 44px), 850px); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--navy-950); color: #fff; }
.section-navy { background: linear-gradient(140deg, var(--navy-950), var(--navy-800)); color: #fff; }
.section-soft { background: var(--paper-warm); }
.section-blue-soft { background: var(--paper-blue); }
.section-rule { border-top: 1px solid var(--line); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5vw, 5.5rem); }
h2 { font-size: clamp(2.05rem, 3.7vw, 3.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.36rem); line-height: 1.65; color: #45556b; }
.section-dark .lead, .section-navy .lead { color: rgba(255,255,255,.76); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.section-intro { max-width: 820px; margin-bottom: 52px; }
.section-intro.center { margin-inline: auto; text-align: center; }
.section-intro.center .eyebrow { justify-content: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 16px;
  top: -80px;
  background: #fff;
  color: var(--navy-950);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.reading-progress { position: fixed; z-index: 1001; inset: 0 0 auto; height: 3px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--gold),var(--gold-strong)); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  background: rgba(3,11,22,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background .25s, box-shadow .25s, height .25s;
}
.site-header.is-scrolled { background: rgba(3,11,22,.96); box-shadow: 0 10px 34px rgba(0,0,0,.2); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.site-brand { flex: 0 0 auto; width: 184px; height: 62px; display: grid; place-items: center; }
.site-brand img { width: 100%; height: 100%; object-fit: contain; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav > a, .nav-dropdown-toggle {
  position: relative;
  min-height: 44px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.84);
  font-size: .86rem;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s;
}
.site-nav > a::after, .nav-dropdown::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.site-nav > a:hover, .site-nav > a:focus-visible, .nav-dropdown-toggle:hover, .nav-dropdown-toggle:focus-visible { color: #fff; }
.site-nav > a:hover::after, .site-nav > a.is-active::after, .nav-dropdown.is-active::after { transform: scaleX(1); }
.site-nav > a.is-active, .nav-dropdown.is-active > .nav-dropdown-toggle { color: var(--gold-strong); }
.site-nav .nav-contact {
  margin-left: 5px;
  border: 1px solid rgba(215,168,61,.7);
  border-radius: 999px;
  padding-inline: 17px;
  color: var(--gold-strong);
}
.site-nav .nav-contact::after { display: none; }
.site-nav .nav-contact:hover { background: var(--gold); color: var(--navy-950); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; transform: rotate(90deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 365px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(4,16,32,.98);
  box-shadow: var(--shadow-dark);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,10px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,0);
}
.nav-dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav-dropdown-menu a { display: grid; gap: 2px; padding: 10px 12px; border-radius: 10px; color: #fff; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.is-active { background: rgba(215,168,61,.12); }
.nav-dropdown-menu strong { font-size: .92rem; }
.nav-dropdown-menu span { color: rgba(255,255,255,.58); font-size: .77rem; }
.language-status {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(215,168,61,.5);
  color: var(--gold-strong);
  font-size: .72rem;
  font-weight: 800;
}
.nav-toggle { display: none; }
.nav-backdrop { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 760;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(135deg,var(--gold),var(--gold-strong)); color: var(--navy-1000); box-shadow: 0 12px 28px rgba(215,168,61,.2); }
.button-gold:hover { box-shadow: 0 18px 38px rgba(215,168,61,.3); }
.button-dark { background: var(--navy-950); color: #fff; }
.button-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.button-outline:hover { background: #fff; color: var(--navy-950); }
.button-outline-dark { border-color: var(--navy-800); color: var(--navy-800); }
.button-outline-dark:hover { background: var(--navy-950); color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-weight: 750; }
.text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.section-dark .text-link, .section-navy .text-link { color: var(--gold-strong); }

/* Home hero */
.home-hero {
  position: relative;
  min-height: min(900px, 92vh);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--navy-1000);
  color: #fff;
}
.hero-stage { position: relative; min-height: calc(min(900px, 92vh) - var(--header-h)); }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 1.05s var(--ease), visibility 1.05s, transform 8s linear;
  background: var(--navy-1000);
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(2,8,17,.88) 0%,rgba(2,8,17,.48) 40%,rgba(2,8,17,.15) 70%), linear-gradient(0deg,rgba(2,8,17,.35),transparent 45%);
}
.hero-slide--brand::after { background: radial-gradient(circle at center,transparent 30%,rgba(2,8,17,.24) 100%); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide--brand img { object-fit: contain; padding: clamp(18px,4vw,58px); }
.hero-slide-content {
  position: absolute;
  z-index: 2;
  left: max(22px,calc((100vw - var(--container))/2));
  top: 50%;
  width: min(620px,calc(100% - 44px));
  transform: translateY(-43%);
}
.hero-slide-content .eyebrow { color: var(--gold-strong); }
.hero-slide-content h2 { margin-bottom: 20px; font-size: clamp(2.7rem,5.3vw,6rem); max-width: 12ch; }
.hero-slide-content p { max-width: 570px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem,1.6vw,1.35rem); }
.hero-slide-content strong.hero-number { display: block; margin-bottom: 4px; color: var(--gold-strong); font-size: clamp(4.3rem,8vw,8.5rem); line-height: .85; letter-spacing: -.07em; }
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(4,16,32,.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-arrow:hover { background: var(--gold); color: var(--navy-950); border-color: var(--gold); transform: scale(1.04); }
.hero-arrow svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-arrow.prev svg { transform: rotate(180deg); }
.hero-dots { display: flex; align-items: center; gap: 8px; }
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .2s, background .2s;
}
.hero-dots button.is-active { width: 32px; background: var(--gold-strong); }
.hero-scroll {
  position: absolute;
  z-index: 4;
  right: max(22px,calc((100vw - var(--container))/2));
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll::after { content: ""; width: 52px; height: 1px; background: var(--gold); animation: pulseLine 1.8s infinite; }
@keyframes pulseLine { 0%,100%{opacity:.35;transform:scaleX(.55)}50%{opacity:1;transform:scaleX(1)} }

.positioning { overflow: hidden; }
.positioning-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr); gap: 75px; align-items: center; }
.positioning-copy h1 { margin-bottom: 25px; }
.positioning-copy .lead { max-width: 720px; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.stat-card { padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.stat-card strong { display: inline-block; color: var(--navy-800); font-size: clamp(2.5rem,4vw,4rem); line-height: 1; letter-spacing: -.06em; }
.stat-card b { color: var(--gold); font-size: 2rem; }
.stat-card span { display: block; margin-top: 10px; color: var(--muted); font-size: .83rem; line-height: 1.4; }
.value-triad { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { position: relative; min-height: 310px; padding: 32px; overflow: hidden; border-radius: var(--radius); background: linear-gradient(155deg,#0b2747,#041020); color: #fff; box-shadow: var(--shadow-md); }
.value-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; top: -70px; border-radius: 50%; border: 1px solid rgba(215,168,61,.32); }
.value-card .icon-wrap { width: 54px; height: 54px; margin-bottom: 56px; display: grid; place-items: center; border-radius: 16px; background: rgba(215,168,61,.13); color: var(--gold-strong); }
.value-card svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.value-card h3 { margin-bottom: 13px; }
.value-card p { color: rgba(255,255,255,.66); }

/* Shared page hero */
.page-hero {
  position: relative;
  min-height: 510px;
  padding: calc(var(--header-h) + 90px) 0 85px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(2,8,17,.95),rgba(2,8,17,.72) 52%,rgba(2,8,17,.25)); z-index: 1; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 52px 52px; z-index: 1; mask-image: linear-gradient(to bottom,black,transparent); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.page-hero-content { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { margin: 0 0 20px; max-width: 13ch; }
.page-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.76); font-size: clamp(1.05rem,1.6vw,1.3rem); }
.page-hero .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 26px; color: rgba(255,255,255,.55); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* Cards and layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 70px; align-items: center; }
.split-wide { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: 70px; align-items: center; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.card-pad { padding: 30px; }
.icon-wrap { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--paper-blue); color: var(--navy-700); }
.icon-wrap.gold { background: rgba(215,168,61,.14); color: #b27b0c; }
.icon-wrap svg, .card-icon { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(215,168,61,.5); }
.feature-card .icon-wrap { margin-bottom: 30px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--muted); }
.image-card { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(2,8,17,.72),transparent 58%); }
.image-card-caption { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 27px; color: #fff; }
.image-card-caption span { color: var(--gold-strong); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.image-card-caption h3 { margin: 8px 0 0; }
.callout { padding: 34px; border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; background: var(--paper-blue); }
.callout strong { display: block; margin-bottom: 8px; color: var(--navy-800); font-size: 1.15rem; }
.quote-panel { padding: 50px; border-radius: var(--radius-lg); background: linear-gradient(145deg,var(--navy-950),var(--navy-800)); color: #fff; box-shadow: var(--shadow-dark); }
.quote-panel blockquote { margin: 0; color: #fff; font-size: clamp(1.55rem,2.8vw,2.65rem); line-height: 1.3; letter-spacing: -.03em; }
.quote-panel blockquote strong { color: var(--gold-strong); }
.quote-panel cite { display: block; margin-top: 20px; color: rgba(255,255,255,.55); font-style: normal; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: rgba(215,168,61,.16); color: #a7760d; font-weight: 900; font-size: .76rem; }
.number-list { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 22px; }
.number-list li { counter-increment: step; display: grid; grid-template-columns: 50px 1fr; gap: 17px; align-items: start; }
.number-list li::before { content: counter(step, decimal-leading-zero); width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(215,168,61,.55); color: var(--gold); font-weight: 850; }
.number-list strong { display: block; color: var(--navy-800); margin-bottom: 4px; }

/* About */
.brand-meaning { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.brand-letter { min-height: 215px; padding: 24px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.045); }
.brand-letter b { display: block; color: var(--gold-strong); font-size: 3.2rem; line-height: 1; }
.brand-letter strong { display: block; margin: 14px 0 8px; font-size: 1.05rem; }
.brand-letter p { color: rgba(255,255,255,.62); font-size: .9rem; }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.principle { padding: 30px; border-top: 3px solid var(--gold); background: #fff; box-shadow: var(--shadow-sm); }
.principle b { display: block; margin-bottom: 10px; color: var(--navy-800); font-size: 1.15rem; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-media { height: 195px; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover img { transform: scale(1.055); }
.service-card-body { padding: 26px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--muted); }
.service-card-body ul { padding-left: 18px; color: var(--muted); }
.engagement-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.engagement-strip article { padding: 30px; border-right: 1px solid rgba(255,255,255,.1); }
.engagement-strip article:last-child { border-right: 0; }
.engagement-strip b { display: block; color: var(--gold-strong); margin-bottom: 8px; }
.engagement-strip p { color: rgba(255,255,255,.62); font-size: .9rem; }

/* Lean Sales */
.lean-flow { position: relative; display: grid; grid-template-columns: repeat(7,1fr); gap: 10px; margin-top: 44px; }
.lean-flow::before { content: ""; position: absolute; left: 6%; right: 6%; top: 35px; height: 2px; background: linear-gradient(90deg,var(--gold),var(--blue)); }
.lean-step { position: relative; z-index: 1; text-align: center; }
.lean-step b { width: 70px; height: 70px; margin: 0 auto 17px; display: grid; place-items: center; border: 7px solid #fff; border-radius: 50%; background: var(--navy-800); color: #fff; box-shadow: 0 0 0 1px var(--line); }
.lean-step:last-child b { background: var(--gold); color: var(--navy-950); }
.lean-step span { font-size: .86rem; font-weight: 760; }
.waste-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.waste-card { padding: 24px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.waste-card b { display: inline-grid; place-items: center; width: 32px; height: 32px; margin-bottom: 16px; border-radius: 50%; background: rgba(215,168,61,.17); color: #9b6b08; }
.waste-card strong { display: block; margin-bottom: 7px; }
.waste-card p { color: var(--muted); font-size: .9rem; }
.lean-scorecard { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.lean-scorecard article { padding: 24px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.lean-scorecard strong { color: var(--gold-strong); display: block; margin-bottom: 8px; }
.lean-scorecard p { color: rgba(255,255,255,.65); font-size: .88rem; }

/* Strategic analysis */
.tool-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.tool-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.tool-card .icon-wrap { margin-bottom: 24px; }
.tool-card h3 { margin-bottom: 11px; }
.tool-card p { color: var(--muted); font-size: .94rem; }
.pestel-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.pestel-item { min-height: 170px; padding: 21px 15px; text-align: center; border-radius: 16px; background: linear-gradient(155deg,var(--navy-850),var(--navy-950)); color: #fff; }
.pestel-item b { display: block; color: var(--gold-strong); font-size: 2rem; }
.pestel-item strong { display: block; margin: 9px 0; font-size: .88rem; }
.pestel-item span { color: rgba(255,255,255,.58); font-size: .76rem; line-height: 1.45; }
.matrix-shell { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.bcg-matrix { position: relative; display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; aspect-ratio: 1.25; padding: 8px 0 0 28px; }
.bcg-quadrant { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; border-radius: 12px; text-align: center; }
.bcg-quadrant:nth-child(1) { background: #e7f2fb; }
.bcg-quadrant:nth-child(2) { background: #fff4d7; }
.bcg-quadrant:nth-child(3) { background: #e6f3eb; }
.bcg-quadrant:nth-child(4) { background: #f1f1f1; }
.bcg-quadrant b { font-size: 1.1rem; }
.bcg-quadrant span { color: var(--muted); font-size: .78rem; }
.axis-y { position: absolute; left: -46px; top: 50%; transform: rotate(-90deg) translateY(-50%); transform-origin: center; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.axis-x { position: absolute; bottom: -29px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.swot-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.swot-cell { min-height: 180px; padding: 25px; border-radius: 16px; }
.swot-cell:nth-child(1) { background: #e7f4ed; }
.swot-cell:nth-child(2) { background: #f7ecec; }
.swot-cell:nth-child(3) { background: #e9f2fa; }
.swot-cell:nth-child(4) { background: #fff3d9; }
.swot-cell b { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.swot-cell p { color: var(--muted); font-size: .86rem; }
.internal-wheel { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.internal-wheel article { padding: 22px; border-radius: 16px; background: var(--paper-blue); }
.internal-wheel strong { display: block; margin-bottom: 6px; color: var(--navy-800); }
.internal-wheel p { color: var(--muted); font-size: .86rem; }
.analysis-path { display: grid; grid-template-columns: repeat(6,1fr); align-items: stretch; gap: 12px; }
.analysis-path article { position: relative; min-height: 155px; padding: 22px 18px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.analysis-path article:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; color: var(--gold); transform: translate(50%,-50%); font-weight: 900; }
.analysis-path b { display: block; color: var(--gold-strong); margin-bottom: 8px; }
.analysis-path p { color: rgba(255,255,255,.62); font-size: .82rem; }

/* VUCA */
.vuca-table { display: grid; gap: 14px; }
.vuca-row { display: grid; grid-template-columns: minmax(0,.85fr) 70px minmax(0,1.15fr); align-items: stretch; }
.vuca-problem, .vuca-answer { padding: 28px; border-radius: var(--radius); }
.vuca-problem { background: #f2e8e8; border: 1px solid #ead2d2; }
.vuca-answer { background: linear-gradient(145deg,var(--navy-850),var(--navy-950)); color: #fff; border: 1px solid rgba(215,168,61,.26); }
.vuca-problem b, .vuca-answer b { display: block; font-size: 1.25rem; }
.vuca-problem span, .vuca-answer span { display: block; margin: 5px 0 12px; font-size: .8rem; letter-spacing: .11em; text-transform: uppercase; }
.vuca-problem span { color: #a44c4c; }
.vuca-answer span { color: var(--gold-strong); }
.vuca-problem p { color: #665b5b; }
.vuca-answer p { color: rgba(255,255,255,.67); }
.vuca-arrow { display: grid; place-items: center; color: var(--gold); font-size: 2rem; }
.response-cycle { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.response-cycle article { position: relative; padding: 26px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.response-cycle article:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; transform: translate(50%,-50%); color: var(--gold); font-weight: 900; }
.response-cycle b { display: block; color: var(--navy-800); margin-bottom: 8px; }
.response-cycle p { color: var(--muted); font-size: .9rem; }

/* BANI Prime */
.bani-page .page-hero::before { background: linear-gradient(90deg,rgba(2,8,17,.96),rgba(2,8,17,.74) 52%,rgba(2,8,17,.32)); }
.bani-table .vuca-problem { background: linear-gradient(145deg,#f5e9e9,#fff); }
.bani-table .vuca-answer { background: linear-gradient(145deg,#0a3158,var(--navy-950)); }
.bani-action-grid .feature-card { position: relative; overflow: hidden; }
.bani-action-grid .feature-card::after { content: ""; position: absolute; width: 125px; height: 125px; right: -58px; top: -58px; border-radius: 50%; border: 1px solid rgba(215,168,61,.28); }
.bani-letter { position: absolute; top: 25px; right: 28px; color: rgba(4,16,32,.07); font-size: 5rem; font-weight: 900; line-height: 1; }
.compact-list { gap: 11px; }
.compact-list li { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.bani-roadmap .feature-card { min-height: 100%; }
.phase-label { display: inline-flex; margin-bottom: 24px; padding: 7px 11px; border-radius: 999px; background: rgba(215,168,61,.16); color: #9c6c08; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.section-navy .bani-roadmap .feature-card h3 { color: var(--navy-900); }
.method-secondary-link { margin-top: 10px; }


/* PERGER */
.perger-path { position: relative; display: grid; grid-template-columns: repeat(6,1fr); gap: 15px; padding-top: 52px; }
.perger-path::before { content: ""; position: absolute; left: 6%; right: 6%; top: 83px; height: 2px; background: linear-gradient(90deg,var(--gold),var(--blue-soft)); }
.perger-step { position: relative; z-index: 1; text-align: center; }
.perger-letter { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; border: 6px solid #fff; background: var(--navy-800); color: var(--gold-strong); box-shadow: 0 0 0 1px var(--line); font-size: 1.7rem; font-weight: 900; }
.perger-step strong { display: block; margin-bottom: 7px; }
.perger-step p { color: var(--muted); font-size: .82rem; }
.mountain-panel { min-height: 500px; padding: 50px; position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(160deg,#0d335a,#061427); color: #fff; box-shadow: var(--shadow-dark); }
.mountain-panel::before { content: ""; position: absolute; left: 8%; right: 8%; bottom: -4%; height: 67%; background: linear-gradient(145deg,transparent 48%,rgba(141,184,227,.45) 49% 52%,transparent 53%),linear-gradient(35deg,transparent 48%,rgba(215,168,61,.45) 49% 52%,transparent 53%); clip-path: polygon(0 100%,23% 50%,38% 72%,63% 15%,100% 100%); border-bottom: 1px solid rgba(255,255,255,.2); }
.mountain-route { position: absolute; z-index: 2; left: 12%; bottom: 15%; width: 73%; height: 55%; border-top: 3px solid var(--gold); border-radius: 50%; transform: rotate(-17deg); }
.mountain-goal { position: absolute; z-index: 3; right: 23%; top: 24%; width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--gold); box-shadow: 0 0 0 8px rgba(215,168,61,.12); }
.mountain-copy { position: relative; z-index: 3; max-width: 470px; }
.mountain-copy p { color: rgba(255,255,255,.7); }
.decision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.decision-card { padding: 28px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.decision-card b { display: block; color: var(--navy-800); margin-bottom: 9px; }
.decision-card p { color: var(--muted); font-size: .9rem; }

/* MARC */
.marc-layout { display: grid; grid-template-columns: minmax(340px,.82fr) minmax(0,1.18fr); gap: 75px; align-items: center; }
.marc-cycle { position: relative; width: min(100%,530px); aspect-ratio: 1; margin: auto; border: 1px solid rgba(215,168,61,.45); border-radius: 50%; background: radial-gradient(circle,rgba(215,168,61,.11) 0 23%,transparent 24%),linear-gradient(145deg,var(--navy-850),var(--navy-950)); box-shadow: var(--shadow-dark); }
.marc-cycle::before, .marc-cycle::after { content: ""; position: absolute; inset: 12%; border-radius: 50%; border: 1px dashed rgba(255,255,255,.16); }
.marc-cycle::after { inset: 26%; border-style: solid; border-color: rgba(215,168,61,.25); }
.marc-center { position: absolute; inset: 37%; display: grid; place-items: center; text-align: center; color: #fff; font-size: .76rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.marc-node { position: absolute; width: 116px; min-height: 86px; padding: 14px; display: grid; place-items: center; text-align: center; border-radius: 17px; background: #fff; color: var(--navy-950); box-shadow: var(--shadow-md); }
.marc-node b { display: block; color: var(--gold); font-size: 1.4rem; }
.marc-node span { font-size: .72rem; font-weight: 760; }
.marc-node.m { left: 50%; top: 4%; transform: translateX(-50%); }
.marc-node.a { right: -2%; top: 50%; transform: translateY(-50%); }
.marc-node.r { left: 50%; bottom: 4%; transform: translateX(-50%); }
.marc-node.c { left: -2%; top: 50%; transform: translateY(-50%); }
.marc-arrow { position: absolute; color: var(--gold); font-size: 1.7rem; }
.marc-arrow.one { right: 19%; top: 20%; transform: rotate(45deg); }
.marc-arrow.two { right: 19%; bottom: 20%; transform: rotate(135deg); }
.marc-arrow.three { left: 19%; bottom: 20%; transform: rotate(225deg); }
.marc-arrow.four { left: 19%; top: 20%; transform: rotate(315deg); }
.marc-detail { display: grid; gap: 16px; }
.marc-detail article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.marc-detail .letter { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--navy-950); color: var(--gold-strong); font-size: 1.5rem; font-weight: 900; }
.marc-detail h3 { margin: 3px 0 7px; }
.marc-detail p { color: var(--muted); font-size: .9rem; }
.scorecard-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.scorecard-grid article { padding: 25px; border-radius: 18px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); }
.scorecard-grid strong { display: block; color: var(--gold-strong); margin-bottom: 8px; }
.scorecard-grid p { color: rgba(255,255,255,.62); font-size: .85rem; }

/* Sectors & applications */
.explorer-shell { display: grid; grid-template-columns: 1fr 1fr minmax(330px,.9fr); gap: 28px; align-items: start; }
.explorer-column { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.explorer-column h2 { margin-bottom: 22px; font-size: 1rem; color: var(--navy-700); text-transform: uppercase; letter-spacing: .1em; }
.explorer-list { display: grid; gap: 6px; }
.explorer-button {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 13px;
  padding: 12px 13px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .2s,color .2s,transform .2s;
}
.explorer-button:hover, .explorer-button.is-active { background: var(--navy-950); color: #fff; transform: translateX(3px); }
.explorer-button .mini-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--paper-blue); color: var(--navy-700); }
.explorer-button:hover .mini-icon, .explorer-button.is-active .mini-icon { background: rgba(215,168,61,.16); color: var(--gold-strong); }
.explorer-button svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.explorer-button > svg { width: 16px; height: 16px; transform: rotate(0); }
.explorer-detail { position: sticky; top: calc(var(--header-h) + 24px); min-height: 530px; overflow: hidden; border-radius: var(--radius); background: linear-gradient(155deg,var(--navy-800),var(--navy-950)); color: #fff; box-shadow: var(--shadow-md); }
.explorer-detail::before { content: ""; position: absolute; right: -110px; bottom: -110px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(215,168,61,.3); box-shadow: 0 0 0 45px rgba(215,168,61,.04),0 0 0 90px rgba(215,168,61,.025); }
.explorer-panel { position: absolute; inset: 0; padding: 38px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s, visibility .25s, transform .25s; }
.explorer-panel.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.explorer-panel .large-icon { width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 90px; border-radius: 22px; background: rgba(215,168,61,.14); color: var(--gold-strong); }
.explorer-panel .large-icon svg { width: 43px; height: 43px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.explorer-panel h3 { font-size: clamp(1.55rem,2.3vw,2.35rem); }
.explorer-panel p { color: rgba(255,255,255,.68); }
.explorer-panel ul { padding-left: 18px; color: rgba(255,255,255,.7); }
.sector-image-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sector-image { position: relative; min-height: 220px; overflow: hidden; border-radius: 18px; }
.sector-image img { width: 100%; height: 100%; object-fit: cover; }
.sector-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(2,8,17,.84),transparent); }
.sector-image strong { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 16px; color: #fff; }


/* Tasks, sensors & manufacturer-independent guidance */
.button-outline-light { border-color: rgba(255,255,255,.42); color: #fff; }
.button-outline-light:hover { background: #fff; color: var(--navy-950); }
.text-link-light { display: inline-flex; align-items: center; color: var(--gold-strong); font-weight: 760; text-decoration: underline; text-decoration-color: rgba(239,196,91,.35); text-underline-offset: 5px; }
.text-link-light:hover { color: #fff; text-decoration-color: currentColor; }
.task-english { margin: -8px 0 18px; color: var(--gold-strong); font-size: clamp(1.08rem,1.7vw,1.35rem); font-weight: 720; letter-spacing: .01em; }
.task-finder-layout { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(330px,.55fr); gap: 30px; align-items: start; }
.task-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.task-card { display: grid; grid-template-columns: 54px 1fr; gap: 16px; min-height: 168px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.055); transition: transform .22s var(--ease),border-color .22s,background .22s; }
.task-card:hover { transform: translateY(-3px); border-color: rgba(215,168,61,.48); background: rgba(255,255,255,.075); }
.task-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: rgba(215,168,61,.14); color: var(--gold-strong); }
.task-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.task-card h3 { margin: 1px 0 1px; color: #fff; font-size: 1.08rem; letter-spacing: -.015em; }
.task-card .task-en { display: block; margin-bottom: 10px; color: var(--gold-strong); font-size: .72rem; font-weight: 780; letter-spacing: .075em; text-transform: uppercase; }
.task-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .83rem; line-height: 1.55; }
.sensor-advice { position: sticky; top: calc(var(--header-h) + 24px); padding: 32px; border-radius: var(--radius); background: #fff; color: var(--ink); box-shadow: var(--shadow-dark); }
.sensor-advice-icon { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 20px; background: var(--paper-blue); color: var(--navy-700); }
.sensor-advice-icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 1.45; }
.sensor-advice h3 { font-size: clamp(1.65rem,2.3vw,2.35rem); }
.sensor-advice > p { color: var(--muted); font-size: .9rem; }
.sensor-advice .eyebrow { color: var(--gold); }
.sensor-role { display: grid; gap: 2px; margin: 24px 0 14px; padding: 16px 18px; border-left: 3px solid var(--gold); background: var(--paper-warm); }
.sensor-role strong { color: var(--navy-900); }
.sensor-role span { color: var(--muted); font-size: .78rem; }
.sensor-small { font-size: .8rem !important; }
.sensor-advice .button-row { align-items: center; margin-top: 24px; }
.sensor-contexts { margin-top: 34px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.02)); }
.sensor-context-heading { display: grid; grid-template-columns: minmax(180px,.4fr) minmax(0,1fr); gap: 30px; align-items: end; margin-bottom: 24px; }
.sensor-context-heading .eyebrow { margin-bottom: 5px; }
.sensor-context-heading h3 { margin: 0; color: #fff; font-size: clamp(1.35rem,2.3vw,2.15rem); }
.sensor-context-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; }
.sensor-context-item { min-height: 98px; padding: 15px; display: flex; flex-direction: column; justify-content: center; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.sensor-context-item strong { display: block; color: #fff; font-size: .86rem; line-height: 1.35; }
.sensor-context-item span { display: block; margin-top: 5px; color: var(--gold-strong); font-size: .68rem; line-height: 1.3; }

/* Partners & professional network */
.partner-principles { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.partner-principle { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.partner-principle .icon-wrap { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 16px; background: var(--paper-blue); color: var(--navy-700); }
.partner-principle .icon-wrap svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.partner-principle h3 { margin-bottom: 10px; }
.partner-principle p { color: var(--muted); font-size: .9rem; }
.network-feature { display: grid; grid-template-columns: minmax(310px,.75fr) minmax(0,1.25fr); gap: 70px; align-items: center; }
.network-brand-card { min-height: 430px; padding: 44px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(215,168,61,.35); border-radius: var(--radius-lg); background: radial-gradient(circle at 75% 20%,rgba(215,168,61,.13),transparent 35%),linear-gradient(145deg,var(--navy-850),var(--navy-1000)); box-shadow: var(--shadow-dark); }
.network-kicker { color: var(--gold-strong); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.swisst-wordmark { margin: 34px 0 2px; color: #fff; font-size: clamp(3.4rem,7vw,6.5rem); font-weight: 850; line-height: .95; letter-spacing: -.075em; }
.swisst-wordmark span { color: var(--gold-strong); }
.network-brand-card > p { color: rgba(255,255,255,.58); font-size: 1.03rem; }
.network-links { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 34px; }
.network-copy h2 { max-width: 760px; }
.network-copy > p { color: rgba(255,255,255,.72); }
.president-card { display: flex; align-items: center; gap: 16px; margin: 28px 0 20px; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.055); }
.president-initials { flex: 0 0 54px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-strong)); color: var(--navy-1000); font-weight: 900; }
.president-card strong, .president-card span { display: block; }
.president-card strong { color: #fff; }
.president-card span { color: rgba(255,255,255,.58); font-size: .82rem; }
.network-note { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48) !important; font-size: .77rem; }
.partner-type-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.partner-type { position: relative; min-height: 250px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.partner-type::after { content: ""; position: absolute; right: -38px; bottom: -38px; width: 120px; height: 120px; border-radius: 50%; border: 1px solid rgba(30,99,170,.12); box-shadow: 0 0 0 22px rgba(30,99,170,.035); }
.partner-number { display: block; margin-bottom: 40px; color: var(--gold); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.partner-type h3 { position: relative; z-index: 1; }
.partner-type p { position: relative; z-index: 1; color: var(--muted); font-size: .9rem; }
.partner-type-cta { background: linear-gradient(145deg,var(--navy-850),var(--navy-950)); border-color: rgba(215,168,61,.35); }
.partner-type-cta h3 { color: #fff; }
.partner-type-cta p { color: rgba(255,255,255,.64); }
.partnership-steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.partnership-steps article { position: relative; min-height: 210px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.partnership-steps article:not(:last-child)::after { content: "→"; position: absolute; right: -18px; top: 50%; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; background: var(--navy-950); color: var(--gold-strong); font-weight: 900; }
.partnership-steps article > span { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 12px; background: var(--paper-blue); color: var(--navy-700); font-weight: 850; }
.partnership-steps h3 { margin-bottom: 8px; }
.partnership-steps p { color: var(--muted); font-size: .86rem; }
.partner-cta-panel { margin-top: 52px; padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 35px; border-radius: var(--radius-lg); background: linear-gradient(140deg,var(--navy-950),var(--navy-800)); color: #fff; box-shadow: var(--shadow-md); }
.partner-cta-panel h2 { max-width: 700px; margin: 0; font-size: clamp(1.8rem,3vw,3rem); }
.partner-cta-panel .eyebrow { margin-bottom: 10px; }
.partner-cta-panel .button-row { flex: 0 0 auto; justify-content: flex-end; margin-top: 0; }
.partner-cta-panel .button-outline-dark { border-color: rgba(255,255,255,.35); color: #fff; }
.partner-cta-panel .button-outline-dark:hover { background: #fff; color: var(--navy-950); }

/* Journey */
.timeline { position: relative; max-width: 940px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--gold),var(--blue-soft)); }
.timeline-item { position: relative; width: 50%; padding: 0 52px 60px 0; }
.timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 60px 52px; }
.timeline-dot { position: absolute; right: -8px; top: 17px; width: 17px; height: 17px; border-radius: 50%; background: var(--gold); border: 4px solid #fff; box-shadow: 0 0 0 1px rgba(215,168,61,.5); }
.timeline-item:nth-child(even) .timeline-dot { right: auto; left: -8px; }
.timeline-label { display: inline-block; margin-bottom: 10px; color: var(--gold); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.timeline-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.timeline-card h2 { font-size: 1.45rem; margin-bottom: 9px; }
.timeline-card p { color: var(--muted); }
.timeline-item.highlight .timeline-card { background: linear-gradient(145deg,var(--navy-850),var(--navy-950)); color: #fff; border-color: rgba(215,168,61,.32); }
.timeline-item.highlight .timeline-card p { color: rgba(255,255,255,.65); }

/* Insights */
.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.insight-card { min-height: 310px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s,box-shadow .25s; }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.insight-card .tag { align-self: flex-start; margin-bottom: 38px; padding: 6px 10px; border-radius: 999px; background: var(--paper-blue); color: var(--navy-700); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; }
.insight-article { padding: 42px 0; border-top: 1px solid var(--line); }
.insight-article:first-child { border-top: 0; }
.insight-article h2 { font-size: clamp(1.7rem,2.7vw,2.6rem); }
.insight-article .article-meta { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); gap: 65px; align-items: start; }
.contact-panel { padding: 38px; border-radius: var(--radius); background: linear-gradient(145deg,var(--navy-850),var(--navy-950)); color: #fff; box-shadow: var(--shadow-dark); }
.contact-panel h2 { font-size: 2rem; }
.contact-panel p { color: rgba(255,255,255,.65); }
.contact-detail { margin-top: 28px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-detail span { display: block; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-detail a { font-size: 1.15rem; font-weight: 750; }
.contact-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 760; color: var(--navy-800); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfd8e1;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s,box-shadow .2s;
}
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,99,170,.1); }
.form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .82rem; }
.form-consent input { margin-top: 4px; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { grid-column: 1 / -1; padding: 14px 17px; border-radius: 12px; font-weight: 650; }
.form-status.success { background: #e3f5ed; color: var(--success); }
.form-status.error { background: #f9e8e8; color: var(--error); }

/* Footer */
.footer-cta { padding: 72px 0; background: var(--gold); color: var(--navy-1000); }
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.footer-cta .eyebrow { color: var(--navy-800); }
.footer-cta h2 { max-width: 760px; margin: 0; font-size: clamp(2rem,3.3vw,3.45rem); }
.footer-cta .button-gold { background: var(--navy-950); color: #fff; box-shadow: none; flex: 0 0 auto; }
.site-footer { padding: 70px 0 25px; background: var(--navy-1000); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .8fr 1fr .9fr; gap: 50px; }
.footer-brand img { width: 230px; height: 105px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 470px; color: rgba(255,255,255,.5); font-size: .78rem; }
.footer-brand blockquote { margin: 18px 0 0; color: var(--gold-strong); font-size: 1.05rem; font-style: italic; }
.site-footer h2 { margin-bottom: 18px; color: var(--gold-strong); font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; }
.site-footer a, .site-footer p { display: block; margin-bottom: 9px; color: rgba(255,255,255,.62); font-size: .88rem; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-email { color: #fff; font-weight: 750; }
.footer-bottom { margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.38); font-size: .75rem; }
.toast { position: fixed; z-index: 9999; right: 20px; bottom: 20px; max-width: 420px; padding: 16px 20px; border-radius: 14px; background: var(--navy-950); color: #fff; box-shadow: var(--shadow-dark); opacity: 0; visibility: hidden; transform: translateY(15px); transition: .25s; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease),transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

@media (max-width: 1160px) {
  :root { --header-h: 74px; }
  .site-brand { width: 164px; }
  .site-nav > a, .nav-dropdown-toggle { padding-inline: 7px; font-size: .79rem; }
  .language-status { display: none; }
  .tool-grid { grid-template-columns: repeat(2,1fr); }
  .pestel-grid { grid-template-columns: repeat(3,1fr); }
  .explorer-shell { grid-template-columns: 1fr 1fr; }
  .explorer-detail { grid-column: 1 / -1; position: relative; top: 0; min-height: 430px; }
  .explorer-panel .large-icon { margin-bottom: 55px; }
  .sector-image-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1080px) {
  .nav-toggle {
    margin-left: auto;
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .nav-toggle span { display: block; width: 24px; height: 2px; margin-inline: auto; background: currentColor; transition: transform .2s,opacity .2s; }
  .nav-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    width: min(410px,88vw);
    height: 100dvh;
    padding: 100px 24px 30px;
    display: block;
    overflow-y: auto;
    background: var(--navy-950);
    box-shadow: -30px 0 70px rgba(0,0,0,.35);
    transform: translateX(105%);
    transition: transform .3s var(--ease);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a, .nav-dropdown-toggle { width: 100%; display: flex; justify-content: space-between; padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .95rem; text-align: left; }
  .site-nav > a::after, .nav-dropdown::after { display: none; }
  .site-nav .nav-contact { margin: 20px 0 0; justify-content: center; border-bottom: 1px solid var(--gold); }
  .nav-dropdown-menu { position: static; width: 100%; padding: 5px 0 10px 12px; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { transform: none; }
  .nav-dropdown-menu a { padding: 11px; }
  .nav-backdrop { position: fixed; z-index: 999; inset: 0; display: block; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: .25s; }
  .nav-backdrop.is-visible { opacity: 1; visibility: visible; }
  .positioning-grid, .split, .split-wide, .contact-layout, .marc-layout { grid-template-columns: 1fr; gap: 45px; }
  .value-triad, .service-grid, .grid-3, .principle-grid, .insight-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .engagement-strip { grid-template-columns: repeat(2,1fr); }
  .engagement-strip article:nth-child(2) { border-right: 0; }
  .engagement-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .lean-flow { grid-template-columns: repeat(4,1fr); row-gap: 28px; }
  .lean-flow::before { display: none; }
  .waste-grid { grid-template-columns: repeat(2,1fr); }
  .lean-scorecard, .scorecard-grid { grid-template-columns: repeat(3,1fr); }
  .analysis-path { grid-template-columns: repeat(3,1fr); }
  .analysis-path article:nth-child(3)::after { display: none; }
  .perger-path { grid-template-columns: repeat(3,1fr); row-gap: 30px; }
  .perger-path::before { display: none; }
  .decision-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 30px),var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 55px 0; }
  h1 { font-size: clamp(2.35rem,11vw,3.7rem); }
  h2 { font-size: clamp(1.95rem,8vw,2.8rem); }
  .site-brand { width: 145px; height: 56px; }
  .home-hero { min-height: 720px; }
  .hero-stage { min-height: calc(720px - var(--header-h)); }
  .hero-slide::after { background: linear-gradient(0deg,rgba(2,8,17,.95),rgba(2,8,17,.38) 70%); }
  .hero-slide--brand img { object-fit: contain; padding: 16px; }
  .hero-slide-content { left: 24px; right: 24px; top: auto; bottom: 112px; width: auto; transform: none; }
  .hero-slide-content h2 { font-size: clamp(2.3rem,10vw,4rem); }
  .hero-slide-content strong.hero-number { font-size: 5rem; }
  .hero-scroll { display: none; }
  .hero-controls { bottom: 24px; }
  .positioning-grid { gap: 35px; }
  .stat-grid, .value-triad, .grid-2, .grid-3, .grid-4, .service-grid, .principle-grid, .insight-grid { grid-template-columns: 1fr; }
  .stat-card { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: end; }
  .stat-card span { grid-column: 1 / -1; }
  .brand-meaning { grid-template-columns: repeat(2,1fr); }
  .page-hero { min-height: 460px; padding-top: calc(var(--header-h) + 70px); }
  .page-hero h1 { max-width: 100%; }
  .image-card { min-height: 340px; }
  .engagement-strip { grid-template-columns: 1fr; }
  .engagement-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .engagement-strip article:last-child { border-bottom: 0; }
  .lean-flow { grid-template-columns: repeat(2,1fr); }
  .waste-grid, .tool-grid, .pestel-grid, .internal-wheel, .decision-grid { grid-template-columns: 1fr; }
  .lean-scorecard, .scorecard-grid { grid-template-columns: 1fr 1fr; }
  .analysis-path { grid-template-columns: 1fr; }
  .analysis-path article::after { display: none; }
  .vuca-row { grid-template-columns: 1fr; }
  .vuca-arrow { height: 45px; transform: rotate(90deg); }
  .response-cycle { grid-template-columns: 1fr; }
  .response-cycle article::after { display: none; }
  .perger-path { grid-template-columns: repeat(2,1fr); }
  .mountain-panel { padding: 34px; min-height: 430px; }
  .marc-cycle { transform: scale(.86); margin: -35px auto; }
  .explorer-shell { grid-template-columns: 1fr; }
  .explorer-detail { min-height: 520px; }
  .sector-image-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 8px; }
  .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 42px 38px; }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 0; right: auto; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.full, .form-consent, .form-status { grid-column: 1; }
  .footer-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .brand-meaning, .lean-scorecard, .scorecard-grid, .perger-path, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: 1; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-controls { gap: 11px; }
  .marc-cycle { transform: scale(.72); margin: -70px auto; }
  .marc-detail article { grid-template-columns: 48px 1fr; }
  .marc-detail .letter { width: 48px; height: 48px; }
}


@media (max-width: 1160px) {
  .task-finder-layout { grid-template-columns: 1fr; }
  .sensor-advice { position: relative; top: 0; }
  .sensor-context-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .network-feature { gap: 45px; }
}

@media (max-width: 1080px) {
  .partner-principles, .partner-type-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .network-feature { grid-template-columns: 1fr; }
  .network-brand-card { min-height: 360px; }
  .partnership-steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .partnership-steps article:nth-child(2)::after { display: none; }
  .partner-cta-panel { align-items: flex-start; flex-direction: column; }
  .partner-cta-panel .button-row { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .task-grid { grid-template-columns: 1fr; }
  .task-card { min-height: 0; }
  .sensor-advice { padding: 26px; }
  .sensor-context-heading { grid-template-columns: 1fr; gap: 10px; }
  .sensor-context-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .partner-principles, .partner-type-grid, .partnership-steps { grid-template-columns: 1fr; }
  .partnership-steps article::after { display: none !important; }
  .network-brand-card { min-height: 330px; padding: 30px; }
  .swisst-wordmark { font-size: clamp(3.2rem,18vw,5.4rem); }
  .partner-cta-panel { padding: 30px; }
  .partner-cta-panel .button-row { width: 100%; }
  .partner-cta-panel .button { width: 100%; }
}

@media (max-width: 480px) {
  .sensor-context-grid { grid-template-columns: 1fr; }
  .task-card { grid-template-columns: 48px 1fr; padding: 18px; }
  .task-icon { width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Method origins, references and authorship */
.method-origin {
  position: relative;
  margin-top: 34px;
  padding: 24px 26px 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(8,43,76,.13);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  background: linear-gradient(145deg,#f8fbff,#fff);
  box-shadow: var(--shadow-sm);
}
.method-origin::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  border: 1px solid rgba(215,168,61,.2);
}
.method-origin-label {
  display: block;
  margin-bottom: 8px;
  color: #9a6b0c;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.method-origin p { max-width: 1030px; margin: 0; color: var(--muted); font-size: .94rem; }
.method-origin a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--navy-700);
  font-size: .82rem;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(8,43,76,.25);
  text-underline-offset: 4px;
}
.method-origin a:hover { color: #9a6b0c; text-decoration-color: currentColor; }
.method-origin--compact { padding: 20px 22px 20px 25px; }
.method-origin--compact p { font-size: .88rem; }
.method-origin--dark {
  border-color: rgba(255,255,255,.14);
  border-left-color: var(--gold-strong);
  background: rgba(255,255,255,.065);
  box-shadow: none;
}
.method-origin--dark .method-origin-label { color: var(--gold-strong); }
.method-origin--dark p { color: rgba(255,255,255,.72); }
.method-origin--dark a { color: var(--gold-strong); text-decoration-color: rgba(239,196,91,.35); }
.method-origin--dark a:hover { color: #fff; text-decoration-color: currentColor; }

/* About page: simple ADWaltis brandmark */
.page-hero--brandmark { background: var(--navy-950); }
.page-hero--brandmark .page-hero-media { left: 50%; background: var(--navy-950); }
.page-hero--brandmark .page-hero-media img {
  object-fit: contain;
  object-position: center;
  padding: clamp(18px,3vw,46px) clamp(18px,3vw,48px);
  opacity: 1;
}
.page-hero--brandmark::before {
  background: linear-gradient(90deg,rgba(2,8,17,.99) 0%,rgba(2,8,17,.98) 44%,rgba(2,8,17,.72) 58%,rgba(2,8,17,.12) 100%);
}

@media (max-width: 760px) {
  .method-origin { padding: 21px 20px 21px 23px; }
  .page-hero--brandmark .page-hero-media { left: 0; }
  .page-hero--brandmark .page-hero-media img { padding: 26px 18px; opacity: .32; }
  .page-hero--brandmark::before { background: linear-gradient(0deg,rgba(2,8,17,.98),rgba(2,8,17,.64)); }
}
