/* YUNCUT site.bundle.css — generated, do not edit by hand */
/* Source order: assets/css/global.css → assets/css/typography.css → assets/css/layout.css → assets/css/components.css → assets/css/responsive.css → assets/css/components_mobile.css */

/* ===== assets/css/global.css ===== */
/* ============================================
   YUNCUT EN Global CSS — Dark-Industrial Light
   保持工业感深色，但提亮背景减少压抑感
   ============================================ */

:root {
  --bg:      #1C2636;
  --bg2:     #243040;
  --bg3:     #2C3A4E;
  --accent:  #C8A84B;
  --hover:   #E0C36A;
  --text:    #F0F2F5;
  --muted:   #94A0AE;
  --soft:    #6B7888;
  --line:    rgba(255,255,255,.12);
  --shadow:  rgba(0,0,0,.35);
  --card-bg: rgba(36,48,64,.85);
  --nav-bg:  rgba(255,255,255,.97);
  /* D-6B light steel header tokens (nav scope — does not flip global --accent) */
  --nav-border:      #D8E2EC;
  --nav-text:        #1A2332;
  --nav-text-hover:  #1B3A5C;
  --nav-muted:       #5A6578;
  --nav-cta:         #E85D04;
  --nav-cta-text:    #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/*
 * AQOS-YUNCUT-0061 — Media aspect-ratio integrity
 * Intrinsic width/height attributes (CLS) must NOT become CSS display height.
 * Default: preserve natural ratio. Fill frames opt in via .yuncut-media-fill.
 */
img {
  max-width: 100%;
  height: auto;
}
img.logo,
.logo img,
.site-logo,
.footer-logo,
.brand-logo,
.nav-logo img {
  object-fit: contain;
  height: auto;
  max-height: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Barlow, Barlow-fallback, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle grid overlay */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  opacity: .045;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 68px 68px;
}

/* Warm radial accent — less intense */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 75% 12%, rgba(200,168,75,.1), transparent 30%),
    linear-gradient(180deg, rgba(17,24,32,.3), rgba(17,24,32,1));
}

a { color: inherit; text-decoration: none; }

input, textarea, select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-family: Barlow, Barlow-fallback, sans-serif;
  font-size: 16px;
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 42px; }
select option { background: var(--bg2); color: var(--text); }
input:focus, textarea:focus, select:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--hover);
  outline-offset: 3px;
  border-color: var(--accent);
}
textarea { min-height: 130px; }
form { display: grid; gap: 16px; margin-top: 28px; }

/* Skip-to-content link (AQOS-YUNCUT-0010) — off-screen until keyboard-focused */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #1B3A5C;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  font-size: 15px;
}
.skip-to-content:focus-visible,
.skip-to-content:focus {
  left: 0;
  outline: 2px solid #F97316;
  outline-offset: -2px;
}

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

/* ============================================
   D-6B Light Steel Industrial — scoped pilot theme
   Scope: <main class="theme-light"> (contact pilot only)
   Token source: Website-OS/reports/d6b-tokens-and-media-system.md
   ============================================ */
.theme-light {
  --bg:      #F0F4F8;
  --bg2:     #EBF1F5;
  --bg3:     #E1E9F0;
  --accent:  #1B3A5C;
  --hover:   #142C46;
  --text:    #1A2332;
  --muted:   #5A6578;
  --soft:    #8B95A5;
  --line:    #D8E2EC;
  --shadow:  rgba(26, 35, 50, .10);
  --card-bg: #FFFFFF;
  background: var(--bg);
  color: var(--text);
}

/* Dark structural bookends inside the light theme keep the steel
   palette — allowed: hero (page-hero / home-hero) and the final CTA band.
   .dark-band is converted to a LIGHT section below (layout.css). */
.theme-light .page-hero,
.theme-light .home-hero,
.theme-light .cta {
  --text:    #F0F2F5;
  --muted:   #94A3B8;
  --soft:    #8B95A5;
  --line:    rgba(255, 255, 255, .14);
  --card-bg: rgba(255, 255, 255, .05);
  --accent:  #F97316;
  --hover:   #F97316;
  color: var(--text);
}

/* Form elements on light surfaces */
.theme-light input,
.theme-light textarea,
.theme-light select {
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--text);
}
.theme-light select option { background: #FFFFFF; color: var(--text); }
.theme-light input::placeholder,
.theme-light textarea::placeholder { color: #8B95A5; }
.theme-light input:focus,
.theme-light textarea:focus,
.theme-light select:focus {
  outline: 2px solid #1B3A5C;
  outline-offset: 2px;
  border-color: #1B3A5C;
}

/* ===== assets/css/typography.css ===== */
/* ============================================
   YUNCUT Typography CSS
   typography.css — headings, text, eyebrow
   ============================================ */

/*
 * Metric-matched fallbacks so non-blocking Google Fonts can swap
 * without a large layout shift (Barlow / Barlow Condensed remain the design target).
 */
@font-face {
  font-family: Barlow-fallback;
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 104%;
  ascent-override: 92%;
  descent-override: 23%;
  line-gap-override: 0%;
}
@font-face {
  font-family: BarlowCondensed-fallback;
  src: local("Arial Narrow"), local("Arial");
  size-adjust: 86%;
  ascent-override: 94%;
  descent-override: 22%;
  line-gap-override: 0%;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', BarlowCondensed-fallback, sans-serif;
  letter-spacing: -.01em;
  line-height: .98;
}
h1 { font-size: clamp(52px, 6vw, 92px); max-width: 880px; }
h2 { font-size: clamp(40px, 4.6vw, 66px); max-width: 880px; margin-bottom: 24px; }
h3 { font-size: 30px; margin-bottom: 14px; }

.lead { margin-top: 26px; max-width: 690px; color: var(--muted); font-size: 20px; }

.eyebrow {
  display: inline-flex; gap: 10px; align-items: center;
  color: var(--accent);
  font-family: 'JetBrains Mono', ui-monospace, Consolas, monospace;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }

/* D-6B pilot — light theme heading scale (scoped, contact pilot) */
.theme-light h1 { font-size: clamp(44px, 4.5vw, 64px); }
.theme-light h2 { font-size: clamp(32px, 3.5vw, 44px); }

/* ===== assets/css/layout.css ===== */
/* ============================================
   YUNCUT Layout CSS
   layout.css — container, sections, grids, heroes
   ============================================ */

.container { width: min(1180px, calc(100% - 40px)); margin: auto; }

section { padding: 104px 0; position: relative; }

/* ---------- HEROES ---------- */
.page-hero {
  padding: 150px 0 82px;
  background: linear-gradient(180deg, rgba(21,28,37,.78), rgba(13,17,23,.92));
  border-bottom: 1px solid var(--line);
}
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #050709 !important;
}
.home-hero .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.home-hero .hero-media picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.home-hero video.hero-video-bg {
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.home-hero video.hero-video-bg.is-ready {
  opacity: 1;
}

/* Absolute-fill media may override global img { height:auto } */
img.yuncut-media-fill,
.yuncut-media-fill > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

/* Split/page hero cover window — landscape crop frame, never stretch */
.page-hero-grid > img,
.split > img,
.page-hero .hero-visual img,
.page-hero-grid img.yuncut-media-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 30px;
}
.home-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(5,7,9,.95) 0%,
    rgba(5,7,9,.90) 25%,
    rgba(5,7,9,.70) 45%,
    rgba(5,7,9,.35) 65%,
    rgba(5,7,9,.10) 100%
  );
  z-index: 1;
}
.home-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: clamp(48px, 14vw, 220px);
  padding-right: 20px;
  box-sizing: border-box;
}
.hero-copy {
  max-width: 680px;
}
.home-hero .hero-copy {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(17,24,32,0.85) 60%, transparent 100%);
  padding: 8px 40px 8px 20px;
  margin-left: 0;
  max-width: 560px;
  box-sizing: border-box;
}
.home-hero .lead {
  color: #FFFFFF !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* ---------- GRIDS ---------- */
.page-hero-grid, .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }

/* ---------- SECTION ELEMENTS ---------- */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 46px; flex-wrap: wrap; }
.section-head > div { min-width: 0; flex: 1 1 280px; }
.section-head p { max-width: 470px; color: var(--muted); font-size: 18px; flex: 1 1 240px; min-width: 0; }
.dark-band {
  background: linear-gradient(180deg, rgba(21,28,37,.75), rgba(13,17,23,.9));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

/* ---------- CTA SECTION ---------- */
.cta { text-align: center; padding: 128px 0; }
.cta h2 { margin-left: auto; margin-right: auto; }
.cta p { max-width: 680px; margin: 0 auto 36px; color: var(--muted); font-size: 19px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- D-6B PILOT — LIGHT THEME STRUCTURAL BANDS ---------- */
/* Dark steel only for allowed bookends: page hero + final CTA band. */
.theme-light .page-hero {
  background: #0F1724;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.theme-light .cta {
  background: #0F1724;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
/* Former dark bands become light sections in the light theme. */
.theme-light .dark-band {
  background: #EBF1F5;
  border-top: 1px solid #D8E2EC;
  border-bottom: 1px solid #D8E2EC;
}

/* ---------- D-6B HOME HERO — light-steel polish (prep for video swap) ---------- */
.theme-light .home-hero {
  background: #0F1724 !important;
  min-height: min(100vh, 880px);
}
.theme-light .home-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.theme-light .home-hero .hero-video-bg {
  object-position: center 42%;
}
.theme-light .home-hero .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(15, 23, 36, .93) 0%,
    rgba(15, 23, 36, .82) 32%,
    rgba(15, 23, 36, .52) 58%,
    rgba(15, 23, 36, .18) 82%,
    rgba(15, 23, 36, .04) 100%
  );
}
.theme-light .home-hero .hero-copy {
  background: none;
  padding: 0;
  max-width: 640px;
}
.theme-light .home-hero .eyebrow {
  color: #94A3B8;
}
.theme-light .home-hero h1 {
  text-shadow: 0 2px 12px rgba(5, 7, 9, .45);
}
.theme-light .home-hero .lead {
  color: #E8EDF2 !important;
  text-shadow: 0 1px 6px rgba(5, 7, 9, .5);
}

/* ===== assets/css/components.css ===== */
/* ============================================
   YUNCUT EN Components CSS — Lightened Dark
   ============================================ */

/* ── NAV — D-6B light steel header (degold) ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 1px 3px rgba(26, 35, 50, .06);
}
.nav-inner {
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-logo-link { display: flex; align-items: center; flex: 0 0 auto; }
.site-logo {
  width: 156px; max-height: 46px; object-fit: contain; display: block;
  background: #fff; border-radius: 8px; padding: 5px 9px;
  border: 1px solid var(--nav-border);
}
.nav-links {
  display: flex; gap: 20px; color: var(--nav-text);
  font-size: 15px; align-items: center;
}
.nav-links > a,
.nav-item > a { color: var(--nav-text); }
.nav-links a:hover,
.nav-item > a:hover { color: var(--nav-text-hover); }
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nav-text);
  z-index: 40;
}
.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--nav-border);
  background: rgba(255,255,255,.55);
  color: var(--nav-text);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.lang-switch-toggle:hover,
.lang-switch-toggle:focus-visible {
  color: var(--nav-text-hover);
  outline: 2px solid var(--accent, #2f6fed);
  outline-offset: 2px;
}
.lang-switch-globe { font-size: 14px; line-height: 1; }
.lang-switch-caret { font-size: 10px; opacity: .7; }
.lang-switch-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--nav-border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, .12);
}
.lang-switch-menu[hidden] { display: none !important; }
.lang-switch-option {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--nav-text);
  text-decoration: none;
  opacity: .75;
}
.lang-switch-option:hover,
.lang-switch-option:focus-visible {
  background: rgba(47, 111, 237, .08);
  opacity: 1;
  outline: none;
}
.lang-switch-option.is-active {
  opacity: 1;
  font-weight: 700;
  background: rgba(47, 111, 237, .1);
}

.mobile-lang {
  padding: 8px 0 16px;
}
.mobile-lang-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.mobile-lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.mobile-lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--nav-text);
  text-decoration: none;
  border: 1px solid transparent;
}
.mobile-lang-link.is-active,
.mobile-lang-link[aria-current="true"] {
  border-color: var(--nav-border);
  background: rgba(47, 111, 237, .08);
  font-weight: 700;
}

.locale-soft-prompt {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 420px;
  margin: 0 auto;
}
.locale-soft-prompt-inner {
  background: #fff;
  border: 1px solid var(--nav-border, #d7dee8);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(26, 35, 50, .16);
  padding: 14px 16px;
}
.locale-soft-prompt-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text, #1a2332);
}
.locale-soft-prompt-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .locale-soft-prompt {
    left: auto;
    right: 24px;
    bottom: 24px;
    margin: 0;
  }
}

.nav-item { position: relative; display: flex; align-items: center; min-height: 76px; }
.nav-item > a { display: flex; align-items: center; gap: 6px; }
.nav-item > a::after {
  content: "▾"; font-size: 10px; color: var(--nav-muted);
  transform: translateY(1px);
}
.nav-item:hover > a::after,
.nav-item:focus-within > a::after { color: var(--nav-text-hover); }

.dropdown {
  position: absolute; top: 64px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid var(--nav-border);
  border-radius: 18px; padding: 12px;
  box-shadow: 0 4px 16px rgba(26, 35, 50, .08), 0 12px 40px rgba(26, 35, 50, .06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: .2s ease;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 10px 12px; border-radius: 12px;
  color: var(--nav-muted); font-size: 13px; line-height: 1.35;
}
.dropdown a:hover {
  background: #EBF1F5; color: var(--nav-text-hover);
}
.dropdown-parent {
  font-weight: 600;
  color: var(--nav-text) !important;
}
.dropdown-children {
  margin: 0 0 6px 0;
  padding: 0 0 6px 10px;
  border-left: 2px solid #D7E0E8;
}
.dropdown-child {
  padding-left: 14px !important;
  font-size: 12.5px !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  background: var(--accent); color: #111; font-weight: 600;
  box-shadow: 0 0 28px rgba(200,168,75,.2);
  transition: .25s ease; border: 0; cursor: pointer; text-decoration: none;
}
.btn:hover { background: var(--hover); transform: translateY(-2px); box-shadow: 0 6px 32px rgba(200,168,75,.35); }

/* Header primary CTA — must follow .btn (same element has both classes) */
.btn.nav-cta {
  background: var(--nav-cta);
  color: var(--nav-cta-text);
  box-shadow: none;
  font-weight: 600;
  min-height: 44px;
}
.btn.nav-cta:hover {
  background: var(--nav-cta);
  color: var(--nav-cta-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 93, 4, .25);
}
.btn-secondary {
  background: rgba(255,255,255,.06); color: var(--text);
  border: 1px solid var(--line); box-shadow: none;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,168,75,.06); }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 24px; padding: 28px;
  transition: .25s ease;
  backdrop-filter: blur(8px);
}
.card:hover { transform: translateY(-5px); border-color: rgba(200,168,75,.4); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.card .num, .num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent); margin-bottom: 18px; display: block;
}
.card p, .split p { color: var(--muted); }
.secondary-process-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.secondary-process-grid .card p:last-child {
  margin-top: auto;
}

/* ── OFFICE CARDS ── */
.office-card {
  background: rgba(26,35,48,.7);
  border: 1px solid var(--line);
  border-radius: 24px; padding: 26px;
}
.office-card p { color: var(--muted); font-size: 15px; }
.office-card .tag {
  display: inline-block; color: var(--accent);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; margin-bottom: 14px;
}

/* ── STATS ── */
.stat {
  background: rgba(26,35,48,.75);
  border: 1px solid var(--line);
  padding: 18px; border-radius: 18px;
}
.stat strong {
  display: block; font-family: 'JetBrains Mono', monospace;
  color: var(--accent); font-size: 16px; margin-bottom: 4px;
}
.stat span { color: var(--soft); font-size: 14px; }

/* Buyer proof and conversion paths */
.proof-strip-section {
  padding: 0;
  background: #111820;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  min-height: 170px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .2s ease;
}
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item:hover { background: rgba(200,168,75,.06); }
.proof-label, .quote-info-kicker {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  margin: 10px 0 8px;
}
.proof-item > span:last-child { color: var(--muted); font-size: 14px; line-height: 1.5; }
.text-link-row { margin-top: 12px; }
.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { color: var(--hover); }

.capability-entry-section { background: linear-gradient(180deg, rgba(36,48,64,.35), rgba(28,38,54,.12)); }
.service-card-grid { align-items: stretch; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card p { flex: 1; }
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.service-meta span {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}
.card-link {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.section-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(13,17,23,.48);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.section-action-row p { color: var(--muted); }

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.deliverables-grid a {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  transition: .2s ease;
}
.deliverables-grid a:last-child { border-right: 0; }
.deliverables-grid a:hover { background: rgba(200,168,75,.06); }
.deliverables-grid span {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.deliverables-grid strong {
  display: block;
  margin: 14px 0 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px;
  line-height: 1.1;
}
.deliverables-grid p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.buyer-path-section { background: rgba(13,17,23,.45); }
.buyer-path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.buyer-path a {
  position: relative;
  min-height: 170px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .2s ease;
}
.buyer-path a:last-child { border-right: 0; background: rgba(200,168,75,.08); }
.buyer-path a:hover { background: rgba(200,168,75,.1); }
.buyer-path span { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.buyer-path strong { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; line-height: 1.1; margin: 12px 0 8px; }
.buyer-path small { color: var(--muted); font-size: 13px; line-height: 1.45; }

/* Capability specification summary */
.capability-summary-section {
  padding-top: 76px;
  padding-bottom: 76px;
  background: rgba(200,168,75,.035);
  border-bottom: 1px solid var(--line);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.spec-grid > div {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-grid > div:nth-child(3n) { border-right: 0; }
.spec-grid > div:nth-last-child(-n+3) { border-bottom: 0; }
.spec-grid dt {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.spec-grid dd { color: var(--text); font-size: 17px; line-height: 1.55; }
.spec-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  background: rgba(26,35,48,.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.spec-actions p { color: var(--muted); flex: 1 1 220px; min-width: 0; }
.spec-actions strong { color: var(--text); }
.spec-actions .btn {
  width: auto;
  flex: 0 0 auto;
}
/* Nested fake CTAs inside link-cards must not inherit mobile full-width buttons */
a.card .btn,
.card .btn.btn-secondary {
  width: auto;
  max-width: 100%;
}

/* Contact conversion */
.contact-hero { padding-bottom: 74px; }
.quote-section {
  scroll-margin-top: 76px;
  padding-top: 76px;
  background: linear-gradient(180deg, rgba(13,17,23,.94), rgba(21,28,37,.78));
}
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  gap: 28px;
  align-items: start;
}
.quote-card, .quote-info-card {
  background: rgba(26,35,48,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.quote-card { padding: 38px; }
.quote-card > p { color: var(--muted); max-width: 720px; }
.quote-tag {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.quote-form { gap: 28px; }
.form-group { border: 0; min-width: 0; }
.form-group legend {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-field .optional { color: var(--soft); font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: .05em; }
.form-note, .submit-reassurance { color: var(--muted); font-size: 13px; line-height: 1.6; }
.form-note { padding: 14px 16px; background: rgba(255,255,255,.035); border-radius: 12px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quote-submit { min-width: 190px; }
.quote-secondary-btn { min-width: 190px; }
.submit-reassurance { margin-top: -8px; }
.quote-info-stack { display: grid; gap: 18px; position: sticky; top: 100px; }
.quote-info-card { padding: 26px; }
.quote-info-card h3 { font-size: 26px; margin-top: 8px; }
.quote-info-card p, .quote-info-card li { color: var(--muted); font-size: 14px; }
.quote-info-card ul, .compact-steps { display: grid; gap: 10px; padding-left: 20px; }
.contact-support-section { padding-top: 84px; padding-bottom: 84px; }
.form-status-page {
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}
.form-status-card {
  width: min(620px, 100%);
  padding: 48px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.form-status-card h1 { font-size: 48px; margin: 18px auto; }
.form-status-card p { color: var(--muted); font-size: 18px; }
.form-status-note { margin-top: 10px; font-size: 14px !important; }
.form-status-mark {
  width: 64px; height: 64px; margin: auto; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(76,175,128,.12); border: 1px solid rgba(76,175,128,.35);
  color: #9fd4b8; font-family: 'JetBrains Mono', monospace; font-weight: 600;
}
.form-status-mark-error { background: rgba(224,82,82,.12); border-color: rgba(224,82,82,.35); color: #f0a8a8; }
.form-status-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* ── MEDIA PLACEHOLDER ── */
.media-placeholder {
  position: relative; min-height: 360px; border-radius: 30px; overflow: hidden;
  background: linear-gradient(135deg, #1E2D40, #111820 68%);
  border: 1px solid var(--line);
}
.media-placeholder.tall { min-height: 520px; }
.media-placeholder.small { min-height: 280px; }
.media-placeholder::after {
  content: "MEDIA PLACEHOLDER"; position: absolute; top: 24px; left: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: .12em; color: var(--accent);
}
.placeholder-text {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  padding: 20px; border-radius: 18px;
  background: rgba(13,17,23,.82); border: 1px solid var(--line);
  color: var(--muted); font-size: 15px;
}

/* ── FLOW STEPS ── */
.flow { display: grid; gap: 18px; }
.flow-step {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; align-items: center;
  background: rgba(26,35,48,.72); border: 1px solid var(--line);
  border-radius: 28px; padding: 22px;
}
.flow-index {
  font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: 18px;
  padding: 14px; border-radius: 18px; background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  width: 56px; min-width: 56px; height: 56px; box-sizing: border-box;
  flex-shrink: 0;
}
.flow-step p { color: var(--muted); }
.flow-media {
  width: 240px; flex-shrink: 0;
  min-height: 160px; border-radius: 20px;
  background: linear-gradient(135deg, #1E2D40, #111820);
  border: 1px solid var(--line); position: relative;
  overflow: hidden;
}
.flow-text-only .flow-step {
  grid-template-columns: 120px 1fr;
}

/* ── TABLE ── */
.table-wrap {
  overflow: auto; border: 1px solid var(--line);
  border-radius: 24px; background: rgba(26,35,48,.7);
}
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { text-align: left; padding: 20px; border-bottom: 1px solid var(--line); color: var(--muted); }
th {
  color: var(--accent); font-family: 'JetBrains Mono', monospace;
  font-size: 12px; text-transform: uppercase; background: rgba(255,255,255,.04);
}
td:first-child { color: var(--text); font-weight: 500; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(200,168,75,.03); }

/* ── SOCIAL ── */
.social-icons { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.social {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; transition: .2s;
}
.social:hover { transform: translateY(-2px); }
.social.fb  { background: #1877F2; }
.social.tk  { background: linear-gradient(135deg,#25F4EE 0%,#000 48%,#FE2C55 100%); }
.social.yt  { background: #FF0000; }
.social.ig  { background: radial-gradient(circle at 30% 110%,#FEDA75,#FA7E1E 25%,#D62976 50%,#962FBF 75%,#4F5BD5 100%); }
.social.x   { background: #111; border: 1px solid rgba(255,255,255,.25); }

/* ── FOOTER ── */
.footer {
  background: #0C1118;
  border-top: 1px solid var(--line);
  padding: 72px 0 28px; color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr .9fr .9fr;
  gap: 38px; margin-bottom: 48px;
}
.footer h4 { color: var(--text); margin-bottom: 16px; }
.footer p, .footer a, .footer li { color: var(--muted); font-size: 15px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer-child { padding-left: 14px; }
.footer-child a { font-size: 14px; }
.hub-parent-card .hub-child-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hub-parent-card .hub-child-links .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  width: auto;
}
.method-path-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.method-path-card .method-path-cta {
  margin-top: auto;
  padding-top: 14px;
  color: #1B3A5C;
  font-weight: 600;
}
.theme-light .method-path-card:hover .method-path-cta {
  color: #E85D04;
}
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; font-size: 14px; color: var(--soft);
}
.footer-logo {
  width: 240px; max-width: 100%; height: auto; display: block;
  background: #fff; border-radius: 10px; padding: 10px 16px; margin-bottom: 18px;
}

/* ============================================
   D-6B Light Steel Industrial — scoped pilot overrides
   Scope: .theme-light (contact pilot only)
   White cards · light borders · steel blue structure · orange CTA
   ============================================ */

/* Buttons — industrial orange primary, steel outline secondary */
.theme-light .btn {
  background: #E85D04;
  color: #FFFFFF;
  box-shadow: none;
}
.theme-light .btn:hover {
  background: #F97316;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 93, 4, .25);
}
.theme-light .btn-secondary {
  background: transparent;
  color: #1B3A5C;
  border: 1px solid #1B3A5C;
  box-shadow: none;
}
.theme-light .btn-secondary:hover {
  border-color: #142C46;
  color: #142C46;
  background: #EBF1F5;
}
.theme-light .page-hero .btn-secondary,
.theme-light .home-hero .btn-secondary {
  color: #F0F4F8;
  border-color: rgba(255, 255, 255, .35);
  background: transparent;
}
.theme-light .page-hero .btn-secondary:hover,
.theme-light .home-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
  color: #FFFFFF;
}
/* Hero cluster links on dark band — readable on mobile + desktop */
.theme-light .page-hero .text-link.hero-cluster-link {
  color: #F0F4F8;
}
.theme-light .page-hero .text-link.hero-cluster-link:hover {
  color: #E85D04;
}

/* Cards on light canvas — white surface, light border, light shadow */
.theme-light .card,
.theme-light .stat,
.theme-light .office-card {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  backdrop-filter: none;
  box-shadow: 0 1px 3px rgba(26, 35, 50, .06), 0 4px 12px rgba(26, 35, 50, .04);
}
.theme-light .card:hover {
  transform: translateY(-3px);
  border-color: #1B3A5C;
  box-shadow: 0 4px 16px rgba(26, 35, 50, .08), 0 8px 24px rgba(26, 35, 50, .06);
}

/* Hero mini-proof stats stay translucent on the dark hero band */
.theme-light .page-hero .stat,
.theme-light .home-hero .stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: none;
}
.theme-light .page-hero .stat strong,
.theme-light .home-hero .stat strong { color: #E85D04; }
.theme-light .home-hero .btn {
  box-shadow: 0 2px 12px rgba(232, 93, 4, .35);
}
.theme-light .home-hero .btn:hover {
  box-shadow: 0 4px 18px rgba(232, 93, 4, .4);
}
.theme-light .page-hero .stat span,
.theme-light .home-hero .stat span { color: #94A3B8; }

/* ── Home / page dark-surface neutralization (light theme) ── */
.theme-light .proof-strip-section,
.theme-light .buyer-path-section,
.theme-light .capability-summary-section {
  background: #EBF1F5;
  border-top: 1px solid #D8E2EC;
  border-bottom: 1px solid #D8E2EC;
}
.theme-light .capability-entry-section {
  background: #F0F4F8;
}
.theme-light .proof-item:hover,
.theme-light .deliverables-grid a:hover,
.theme-light .buyer-path a:hover { background: #E1E9F0; }
.theme-light .buyer-path a:last-child { background: #E8EEF4; }
.theme-light .section-action-row {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
}
.theme-light tr:hover td { background: #F0F4F8; }
.theme-light .table-wrap {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
}
.theme-light th { background: #EBF1F5; color: #1B3A5C; }
.theme-light .flow-step {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
}
.theme-light .flow-index {
  color: #1B3A5C;
  background: #EBF1F5;
}
.theme-light .flow-media,
.theme-light .media-placeholder {
  background: #E1E9F0;
  border: 1px solid #D8E2EC;
}
.theme-light .media-placeholder::after { color: #5A6578; }
/* Inside the dark hero, placeholders blend with the steel band */
.theme-light .page-hero .media-placeholder,
.theme-light .page-hero .flow-media {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
}
.theme-light .page-hero .media-placeholder::after,
.theme-light .page-hero .placeholder-text { color: #94A3B8; }
.theme-light .placeholder-text {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  color: #5A6578;
}

/* ── LP components (light theme) ── */
.theme-light .lp-trust-badge {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  box-shadow: 0 1px 3px rgba(26, 35, 50, .06);
}
.theme-light .lp-faq details {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
}
.theme-light .lp-faq summary::after { color: #1B3A5C; }
.theme-light .lp-faq details[open] summary {
  background: #EBF1F5;
  border-bottom: 1px solid #D8E2EC;
}

/* ── Europe LP hero video (admin-managed; optional) ── */
.theme-light .lp-page-hero--video {
  position: relative;
  overflow: hidden;
}
.theme-light .lp-page-hero--video .page-hero-grid {
  position: relative;
  z-index: 2;
}
.theme-light .lp-hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.theme-light .lp-hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    95deg,
    rgba(5, 7, 9, .94) 0%,
    rgba(5, 7, 9, .88) 28%,
    rgba(5, 7, 9, .72) 48%,
    rgba(5, 7, 9, .45) 68%,
    rgba(5, 7, 9, .22) 100%
  );
  pointer-events: none;
}
.theme-light .lp-hero-grid-fallback {
  display: none;
}
.theme-light .lp-hero-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.theme-light .lp-hero-video-media {
  position: relative;
  width: 100%;
  min-height: inherit;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
}
.theme-light .lp-page-hero--video .lp-hero-video-bg,
.theme-light .lp-hero-video-bg,
.theme-light .lp-hero-video-fallback {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.theme-light .lp-page-hero--video .lp-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.theme-light .lp-hero-video-fallback--mobile,
.theme-light .lp-hero-video-fallback--desk {
  display: none;
}
.theme-light .lp-hero-video-bg.is-failed {
  display: none;
}
.theme-light .lp-hero-video-bg.is-failed + .lp-hero-video-fallback--desk {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .theme-light .lp-page-hero--video .lp-hero-video-layer {
    display: none;
  }
  .theme-light .lp-page-hero--video {
    background: linear-gradient(180deg, rgba(21, 28, 37, .78), rgba(13, 17, 23, .92));
  }
  .theme-light .lp-hero-grid-fallback {
    display: block;
  }
  .theme-light .lp-hero-video:has(.lp-hero-video-fallback--mobile) .lp-hero-video-bg {
    display: none;
  }
  .theme-light .lp-hero-video:has(.lp-hero-video-fallback--mobile) .lp-hero-video-fallback--mobile {
    display: block;
  }
}

/* ── Europe LP split hero (scoped; homepage unchanged) ── */
.theme-light .lp-europe-hero--split {
  position: relative;
  overflow: hidden;
}
.theme-light .lp-europe-hero-grid {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  grid-template-areas:
    "copy media"
    "proof media";
}
.theme-light .lp-europe-hero-copy {
  grid-area: copy;
}
.theme-light .lp-europe-hero-media-col {
  grid-area: media;
  align-self: stretch;
}
.theme-light .lp-europe-hero-proof-grid {
  grid-area: proof;
  margin-top: 0;
}
.theme-light .lp-europe-hero-actions {
  margin-top: 36px;
}
.theme-light .lp-europe-hero-media-card {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .24);
}
.theme-light .lp-europe-hero-media-card .lp-hero-video {
  border-radius: 0;
  min-height: 360px;
  aspect-ratio: 16 / 10;
}
.theme-light .lp-europe-hero-media-card .lp-hero-video-media {
  min-height: inherit;
  aspect-ratio: inherit;
  border: 0;
  border-radius: 0;
}
.theme-light .lp-europe-hero-media-labels {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.theme-light .lp-europe-hero-media-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 36, .82);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #F8FAFC;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.theme-light .lp-europe-hero-media-label--sub {
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: none;
  color: #CBD5E1;
  background: rgba(15, 23, 36, .68);
}
.theme-light .lp-europe-hero--split .lp-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.theme-light .lp-europe-hero--split .lp-hero-video-fallback--mobile,
.theme-light .lp-europe-hero--split .lp-hero-video-fallback--desk {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .theme-light .lp-europe-hero--split .lp-europe-hero-media-card .lp-hero-video {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }
}

/* ── Blog / News (light theme) ── */
.theme-light .content-badge {
  display: inline-block;
  background: #EBF1F5;
  color: #1B3A5C;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  border: 1px solid #D8E2EC;
}
.theme-light .page-hero .content-badge {
  background: rgba(255, 255, 255, .12);
  color: #F97316;
  border-color: rgba(255, 255, 255, .18);
}
.theme-light .content-meta-date {
  color: #5A6578;
  font-size: 11px;
}
.theme-light .blog-list-arrow {
  color: #1B3A5C;
  font-size: 24px;
  min-width: 28px;
}
.theme-light .news-filter-btn {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  color: #5A6578;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
}
.theme-light .news-filter-btn:hover {
  background: #E1E9F0;
  color: #1B3A5C;
}
.theme-light .news-filter-btn.active {
  background: #E85D04;
  border-color: #E85D04;
  color: #FFFFFF;
  font-weight: 600;
}
.theme-light .news-item h3 { color: #1A2332; }
.theme-light main section:not(.page-hero):not(.cta) a:not(.btn) {
  color: #1B3A5C;
}
.theme-light main section:not(.page-hero):not(.cta) a:not(.btn):hover {
  color: #E85D04;
}
.theme-light main section:not(.page-hero):not(.cta) blockquote {
  background: #FFFFFF;
  border-left: 4px solid #1B3A5C;
  color: #5A6578;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
}
.theme-light main section:not(.page-hero):not(.cta) pre,
.theme-light main section:not(.page-hero):not(.cta) code {
  background: #EBF1F5;
  border: 1px solid #D8E2EC;
  color: #1A2332;
  border-radius: 8px;
}
.theme-light main section:not(.page-hero):not(.cta) pre {
  padding: 16px 18px;
  overflow-x: auto;
}
.theme-light main section:not(.page-hero):not(.cta) code {
  padding: 2px 6px;
  font-size: 0.92em;
}
.theme-light main section:not(.page-hero):not(.cta) [style*="background:var(--bg2)"] {
  background: #FFFFFF !important;
  border: 1px solid #D8E2EC !important;
}

/* ── Final CTA band — dark steel bookend ── */
.theme-light .cta .btn-secondary {
  color: #F0F4F8;
  border-color: rgba(255, 255, 255, .35);
}
.theme-light .cta .btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
  color: #FFFFFF;
}

/* Quote / RFQ section — light section background, white panels */
.theme-light .quote-section {
  background: #EBF1F5;
}
.theme-light .quote-card,
.theme-light .quote-info-card {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  box-shadow: 0 1px 3px rgba(26, 35, 50, .06), 0 8px 24px rgba(26, 35, 50, .05);
}
.theme-light .quote-tag,
.theme-light .quote-info-kicker { color: #1B3A5C; }
.theme-light .form-group legend { color: #1A2332; border-bottom-color: #D8E2EC; }
.theme-light .form-field label { color: #1A2332; }
.theme-light .form-field .optional { color: #8B95A5; }
.theme-light .form-note { background: #F0F4F8; }
.theme-light .form-note,
.theme-light .submit-reassurance { color: #5A6578; }

/* Office cards — white surface even on the dark support band */
.theme-light .dark-band .office-card {
  --text:   #1A2332;
  --muted:  #5A6578;
  --soft:   #8B95A5;
  --accent: #1B3A5C;
  --line:   #D8E2EC;
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  box-shadow: 0 1px 3px rgba(26, 35, 50, .12);
  color: #1A2332;
}

/* Form status (thank-you / error) cards */
.theme-light .form-status-card {
  background: #FFFFFF;
  border: 1px solid #D8E2EC;
  box-shadow: 0 1px 3px rgba(26, 35, 50, .06), 0 8px 24px rgba(26, 35, 50, .05);
}
.theme-light .form-status-page { background: #F0F4F8; }

/* Text links inside light scope */
.theme-light .text-link { color: #1B3A5C; }
.theme-light .text-link:hover { color: #E85D04; }

/* ── D-6B FOOTER CLEANUP — token-aligned classes replacing inline gold ── */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  transition: all .2s;
}
.footer-social-link:hover {
  border-color: #F97316;
  color: #F97316;
}
.footer-yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 6px;
  padding: 5px 12px;
  transition: all .2s;
}
.footer-yt-badge:hover {
  border-color: #F97316;
  color: #F97316;
}
.footer-group-link { color: #F0F2F5; }
.footer-group-link:hover { color: #F97316; }
.footer-listed-note { color: rgba(255, 255, 255, .45); }

/* ── FLASH MESSAGES ── */
.flash {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}
.flash.success {
  background: rgba(76, 175, 128, 0.12);
  border: 1px solid rgba(76, 175, 128, 0.35);
  color: #9fd4b8;
}
.flash.error {
  background: rgba(224, 82, 82, 0.12);
  border: 1px solid rgba(224, 82, 82, 0.35);
  color: #f0a8a8;
}

/* ── LP COMPONENTS (Phase 2J-1) ── */
.lp-faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
}
.lp-faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(26,35,48,.55);
  overflow: hidden;
}
.lp-faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
}
.lp-faq details[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(200,168,75,.04);
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq-answer { padding: 18px 22px; }
.lp-faq-answer p { color: var(--muted); line-height: 1.7; }

.lp-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-trust-badge {
  background: rgba(26,35,48,.75);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.lp-trust-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  line-height: 1.1;
  margin: 10px 0 8px;
}
.lp-trust-badge p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.lp-related .card { height: 100%; display: flex; flex-direction: column; }
.lp-related .card p { flex: 1; }
.lp-scenarios .card:last-child:nth-child(3n+1) { grid-column: 1 / -1; max-width: calc(33.333% - 15px); }
@media (max-width: 1040px) {
  .lp-scenarios .card:last-child:nth-child(3n+1) { max-width: none; grid-column: auto; }
}

/* -- Capability compare / material matrix (Owner SoT helpers) -- */
.cap-compare {
  margin: 8px 0 20px;
}
.cap-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.cap-compare-table th,
.cap-compare-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.cap-compare-table thead th {
  background: rgba(26, 35, 48, 0.72);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cap-compare-table tbody th {
  font-weight: 600;
  color: var(--text);
  width: 28%;
}
.cap-value {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.cap-stack {
  display: grid;
  gap: 12px;
  margin: 8px 0 20px;
}
.cap-stack-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(26, 35, 48, 0.55);
  padding: 18px 20px;
}
.cap-stack-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.cap-stack-dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.cap-stack-dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: start;
}
.cap-stack-dl dt {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cap-stack-dl dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.cap-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 8px;
}
.cap-eng-disclaimer {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(200, 168, 75, 0.55);
  background: rgba(26, 35, 48, 0.35);
  border-radius: 0 10px 10px 0;
}
.cap-doc-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text);
  line-height: 1.75;
}
.cap-doc-list li { margin-bottom: 6px; }
.mat-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.mat-supported {
  color: #9fd4b8;
  background: rgba(76, 175, 128, 0.12);
  border-color: rgba(76, 175, 128, 0.35);
}
.mat-na {
  color: #c4cbd4;
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.28);
}
.theme-light .cap-compare-table thead th,
.theme-light .cap-stack-card {
  background: rgba(248, 250, 252, 0.95);
}
.theme-light .cap-compare-table th,
.theme-light .cap-compare-table td {
  border-color: #e2e8f0;
}
.theme-light .cap-eng-disclaimer {
  background: rgba(241, 245, 249, 0.9);
  color: #475569;
}
.theme-light .mat-supported {
  color: #166534;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.28);
}
.theme-light .mat-na {
  color: #64748b;
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.3);
}
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .cap-stack-dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ===== assets/css/responsive.css ===== */
/* ============================================
   YUNCUT Responsive CSS
   responsive.css — mobile breakpoints
   ============================================ */

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .page-hero-grid, .split, .grid-3, .grid-2, .office-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  /* Keep flow-index compact — never collapse flow-step to a single full-width column */
  .flow-step,
  .flow-text-only .flow-step {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }
  .flow-step .flow-media {
    grid-column: 1 / -1;
    width: min(100%, 320px);
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-head p {
    max-width: none;
  }
  .theme-light .lp-europe-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "proof";
    gap: 32px;
  }
  .theme-light .lp-europe-hero-proof-grid {
    margin-top: 8px;
  }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .buyer-path { grid-template-columns: 1fr 1fr; }
  .buyer-path a { border-bottom: 1px solid var(--line); }
  .buyer-path a:nth-child(2n) { border-right: 0; }
  .buyer-path a:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid > div, .spec-grid > div:nth-child(3n), .spec-grid > div:nth-last-child(-n+3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .spec-grid > div:nth-child(2n) { border-right: 0; }
  .spec-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-info-stack { position: static; grid-template-columns: repeat(3, 1fr); }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .deliverables-grid a:nth-child(2) { border-right: 0; }
  .deliverables-grid a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  section { padding: 82px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-logo { width: 140px; }
  .nav-cta { min-height: 44px; padding: 0 18px; }
  .lp-trust-badges { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .page-hero { padding-top: 118px; }
  section { padding: 60px 0; }
  h1 { font-size: clamp(40px, 13vw, 48px); }
  h2 { font-size: clamp(32px, 10vw, 38px); }
  h3 { font-size: 26px; }
  .lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .nav-inner { height: 68px; }
  .site-logo { width: 126px; max-height: 40px; }
  .footer-logo { width: 210px; }
  .home-hero { min-height: 86vh; }
  .hero-copy { max-width: 100%; }
  .mini-proof, .stat-grid, .proof-strip, .buyer-path, .spec-grid, .form-grid, .quote-info-stack {
    grid-template-columns: 1fr;
  }
  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverables-grid a, .deliverables-grid a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .deliverables-grid a:last-child { border-bottom: 0; }
  .section-action-row { flex-direction: column; align-items: stretch; padding: 20px; }
  .mini-proof { margin-top: 30px; }
  .proof-item, .proof-item:first-child, .proof-item:nth-child(2) {
    min-height: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .proof-item:last-child { border-bottom: 0; }
  .buyer-path a, .buyer-path a:nth-child(2n), .buyer-path a:last-child {
    grid-column: auto;
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .buyer-path a:last-child { border-bottom: 0; }
  .spec-grid > div, .spec-grid > div:nth-child(2n), .spec-grid > div:nth-child(3n), .spec-grid > div:nth-last-child(-n+2), .spec-grid > div:nth-last-child(-n+3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .spec-grid > div:last-child { border-bottom: 0; }
  .spec-actions { align-items: stretch; flex-direction: column; }
  .quote-card { padding: 24px 18px; }
  .form-field.full { grid-column: auto; }
  .form-actions, .form-status-actions, .cta-actions { flex-direction: column; }
  .form-status-card { padding: 34px 20px; }
  .form-status-card h1 { font-size: 40px; }
  .table-wrap::before {
    content: "Swipe to compare";
    display: block;
    padding: 10px 16px;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid var(--line);
  }
  .lp-trust-badges { grid-template-columns: 1fr; }
  .lp-faq summary { font-size: 19px; padding: 16px 18px; }
  .lp-faq-answer { padding: 16px 18px; }
}

/* ===== assets/css/components_mobile.css ===== */
/* ============================================
   YUNCUT EN — Mobile Navigation
   ============================================ */

/* Hamburger button — light header */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: .2s ease;
  background: transparent;
  border: 1px solid var(--nav-border, #D8E2EC);
}
.nav-hamburger:hover { border-color: var(--nav-text-hover, #1B3A5C); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--nav-text, #1A2332);
  border-radius: 2px;
  transition: .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay — D-6B light steel drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 29;
  background: #F0F4F8;
  border-top: 1px solid var(--nav-border, #D8E2EC);
  overflow-y: auto;
  padding: 24px 20px 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Mobile nav links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--nav-text, #1A2332);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}
.mobile-nav-toggle {
  width: 100%;
  background: transparent;
  font-family: Barlow, sans-serif;
  text-align: left;
  color: var(--nav-text, #1A2332);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #FFFFFF;
  border-color: var(--nav-border, #D8E2EC);
}
.mobile-nav-link .arrow {
  color: var(--nav-muted, #5A6578);
  font-size: 12px;
  transition: transform .2s ease;
}
.mobile-nav-link.active .arrow {
  color: var(--nav-text-hover, #1B3A5C);
  transform: rotate(90deg);
}

/* Mobile submenu */
.mobile-submenu {
  display: none;
  padding: 4px 0 4px 16px;
}
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--nav-muted, #5A6578);
  font-size: 14px;
  text-decoration: none;
  transition: .2s ease;
}
.mobile-submenu a:hover {
  color: var(--nav-text-hover, #1B3A5C);
  background: #EBF1F5;
}
.mobile-nav-parent {
  font-weight: 600;
  color: var(--nav-text, #1A2332) !important;
}
.mobile-nav-children {
  margin: 0 0 6px 8px;
  padding: 0 0 4px 10px;
  border-left: 2px solid #D7E0E8;
}
.mobile-nav-children a {
  font-size: 13px;
  padding-left: 12px;
}

/* Mobile CTA — orange primary, steel secondary */
.mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  font-size: 15px;
  background: var(--nav-cta, #E85D04);
  color: var(--nav-cta-text, #FFFFFF);
  box-shadow: none;
  font-weight: 600;
}
.mobile-cta .btn:hover {
  background: var(--nav-cta, #E85D04);
  color: var(--nav-cta-text, #FFFFFF);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 93, 4, .25);
}
.mobile-cta .btn-secondary {
  background: transparent;
  color: var(--nav-text-hover, #1B3A5C);
  border: 1px solid var(--nav-text-hover, #1B3A5C);
  box-shadow: none;
}
.mobile-cta .btn-secondary:hover {
  background: #EBF1F5;
  border-color: #142C46;
  color: #142C46;
}
.mobile-divider {
  height: 1px;
  background: var(--nav-border, #D8E2EC);
  margin: 12px 0;
}

@media (max-width: 1040px) {
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-links { display: none !important; }
  .nav-cta { display: none; }
}

/* ============================================
   Home hero — mobile (index.php)
   ============================================ */
@media (max-width: 768px) {
  .theme-light .home-hero {
    min-height: min(76vh, 680px);
    align-items: flex-end;
    padding-bottom: 28px;
  }

  .home-hero {
    overflow-x: clip;
  }

  .theme-light .home-hero .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 36, .82) 0%,
      rgba(15, 23, 36, .88) 42%,
      rgba(15, 23, 36, .94) 100%
    ) !important;
  }

  .home-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.75) !important;
  }

  .home-hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(24px, 8vw, 48px) !important;
    padding-right: 20px !important;
    box-sizing: border-box;
    overflow: visible;
  }

  .home-hero .hero-copy {
    margin-left: 0 !important;
    max-width: 100%;
    width: 100%;
    padding: 8px 0 8px 12px;
    box-sizing: border-box;
    overflow: visible;
    transform: none !important;
  }

  .theme-light .home-hero .mini-proof {
    margin-top: 28px;
    gap: 10px;
  }

  .home-hero .mini-proof {
    width: 100%;
    box-sizing: border-box;
  }

  .home-hero h1,
  .home-hero .lead,
  .home-hero .eyebrow {
    color: #FFFFFF !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }

  .home-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .home-hero .lead {
    max-width: 100%;
  }

  .home-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .home-hero .hero-actions .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .mobile-menu { top: 68px; }

  /* AQOS-YUNCUT-0035: let the hero H1 wrap naturally on narrow phones
     instead of forcing the desktop two-line split. */
  .home-hero h1 .hero-line-break {
    display: none;
  }
}
