:root {
  --bg: #0b1020;
  --bg-2: #121a34;
  --text: #111827;
  --text-light: #e5e7eb;
  --muted-dark: #475569;
  --line-soft: #e5e7eb;
  --brand: #c8a96b;
  --brand-dark: #a78647;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(11, 16, 32, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  color: var(--white);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(280px, calc(100vw - 40px));
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(11, 16, 32, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
}

.mobile-menu-panel a {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.mobile-menu-panel a.nav-active {
  color: #ffffff;
  background: rgba(200,169,107,0.16);
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1;
  padding: 4px 0;
}

nav a.nav-active { color: #ffffff; }
nav a.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(200,169,107,0.8);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(200,169,107,0.16), transparent 22%),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,0.07), transparent 20%),
    linear-gradient(180deg, rgba(9,13,26,0.99) 0%, rgba(16,23,44,0.97) 56%, rgba(19,27,50,0.94) 100%);
  color: var(--white);
  padding: 110px 0 88px;
}

.hero-grid, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 60px;
  align-items: center;
}

.eyebrow, .section-label {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
}

.subpage-intro .section-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  white-space: nowrap;
  color: rgba(167, 134, 71, 0.95);
}

.subpage-links {
  padding: 10px 0 0;
}

.subpage-links-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.subpage-links .text-link {
  font-size: 13px;
}

h1, h2, h3, p, ul { margin-top: 0; }

h1 {
  font-size: clamp(40px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 640px;
  margin: 0;
  font-weight: 620;
  text-wrap: balance;
}

.headline-line,
.title-line {
  display: block;
}

.title-line + .title-line,
.headline-line + .headline-line {
  margin-top: 6px;
}

h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.024em;
  max-width: 620px;
  margin: 0;
  font-weight: 620;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.headline-wrap {
  position: relative;
  margin: 6px 0 24px;
  max-width: 760px;
}

.headline-wrap::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 2px;
  height: calc(100% - 18px);
  background: linear-gradient(180deg, rgba(200,169,107,0.0) 0%, rgba(200,169,107,0.7) 35%, rgba(200,169,107,0.0) 100%);
  transition: height 0.28s ease, opacity 0.28s ease;
}

.headline-wrap:hover::before {
  height: calc(100% - 8px);
  opacity: 0.95;
}

.hero-text {
  max-width: 620px;
  color: rgba(255,255,255,0.90);
  font-size: 17px;
  line-height: 1.84;
  margin-bottom: 16px;
}

.hero-subtext {
  max-width: 600px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.84;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-bilingual-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-bilingual-tags a,
.quick-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero-bilingual-tags a { text-transform: uppercase; }
.hero-bilingual-tags a:hover,
.quick-nav a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(200,169,107,0.24);
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #1b1b1b; }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 14px 30px rgba(167,134,71,0.25); }
.btn-secondary { border-color: rgba(255,255,255,0.18); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.26); }
.btn-full { width: 100%; }

.hero-frame {
  position: relative;
  z-index: 2;
  transform: translateY(10px);
}

.hero-card, .contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.20);
}

.hero-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.24);
  border-color: rgba(200,169,107,0.28);
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: -16px;
  background: rgba(200,169,107,0.10);
  color: rgba(228, 201, 149, 0.94);
  border: 1px solid rgba(200,169,107,0.20);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.interactive-metrics {
  display: grid;
  gap: 14px;
}
.metric {
  display: block;
}
.metric span {
  display: block;
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.metric strong {
  display: block;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
}
.metric-link {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.metric-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200,169,107,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 36px rgba(0,0,0,0.16);
}
.metric-link strong {
  transition: color 0.22s ease;
}
.metric-link:hover strong {
  color: #ffffff;
}
.metric-link em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-style: normal;
  font-size: 10px;
  color: rgba(200,169,107,0.92);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.metric-link em::after {
  content: "→";
  font-size: 12px;
  line-height: 1;
  opacity: 0.86;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.metric-link:hover em::after {
  transform: translateX(3px);
  opacity: 1;
}

.trust-bar {
  background: linear-gradient(180deg, rgba(15,23,42,0.98) 0%, rgba(15,23,42,0.94) 100%);
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 0;
  font-size: 14px;
}

.section { padding: 100px 0; }
.section-first { padding-top: 32px; }
.section-soft {
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fb 100%);
}

.section + .section {
  border-top: 1px solid rgba(15,23,42,0.04);
}

.section-panel {
  position: relative;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,251,255,0.98) 100%);
  box-shadow: 0 18px 44px rgba(15,23,42,0.05);
  padding: 34px 30px;
}

.section-panel::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,169,107,0.08) 0%, rgba(200,169,107,0.72) 48%, rgba(200,169,107,0.08) 100%);
}
.section-mini { padding: 44px 0 18px; }
.section-head-compact {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}
.section h2 {
  font-size: clamp(24px, 2.7vw, 33px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  font-weight: 610;
}
.left-aligned {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.section-intro,
.routing-copy {
  color: #475569;
  font-size: 16px;
  line-height: 1.84;
}
.title-en {
  display: block;
  margin-bottom: 9px;
  color: rgba(17, 24, 39, 0.40);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.section-dark .title-en { color: rgba(255,255,255,0.42); }

.subpage-intro {
  position: relative;
  padding: 54px 0 30px;
  border-bottom: 1px solid #eef2f7;
}
.subpage-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(200,169,107,0.08), transparent 26%),
    linear-gradient(180deg, rgba(248,250,252,0.96) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.subpage-intro-inner {
  position: relative;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.subpage-intro-inner::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, rgba(200,169,107,0.10) 0%, rgba(200,169,107,0.68) 50%, rgba(200,169,107,0.10) 100%);
}
.subpage-title {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: #0f172a;
  max-width: 580px;
  margin: 0 auto 18px;
  text-align: center;
  font-weight: 640;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.subpage-intro .title-en {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.subpage-desc {
  max-width: 700px;
  color: #475569;
  font-size: 15px;
  line-height: 1.84;
  margin: 0 auto;
  text-align: center;
}

.subpage-intro .section-label {
  margin-bottom: 18px;
}

.intro-section { background: #ffffff; }
.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: start;
}
.intro-copy p { color: var(--muted-dark); font-size: 16px; line-height: 1.9; }

.cards, .utility-grid { display: grid; gap: 22px; align-items: stretch; }
.three-up, .three-col { grid-template-columns: repeat(3, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.single-stack { grid-template-columns: 1fr; }

.card, .utility-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e7ebf2;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 16px 38px rgba(15,23,42,0.045);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tone-section .card,
.tone-section .utility-card {
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
}

.banded-section .utility-card,
.banded-section .card,
.section-panel .utility-card,
.section-panel .card {
  box-shadow: 0 18px 42px rgba(15,23,42,0.05);
}

.card:hover, .utility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,23,42,0.09);
  border-color: rgba(200,169,107,0.24);
}

.visual-card:hover,
.visual-link:hover,
.visual-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 34px 72px rgba(15,23,42,0.22);
  border-color: rgba(200,169,107,0.42);
}

.visual-link:hover img,
.visual-link:focus img {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.02);
}

.visual-link:hover::after,
.visual-link:focus::after {
  background: linear-gradient(180deg, rgba(8,12,24,0.04) 0%, rgba(8,12,24,0.18) 28%, rgba(8,12,24,0.76) 100%);
}

.visual-link:hover .visual-overlay,
.visual-link:focus .visual-overlay {
  transform: translateY(-1px);
}
.card h3, .utility-card h3 {
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: -0.008em;
  margin-bottom: 12px;
  font-weight: 600;
}
.card-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: rgba(17,24,39,0.40);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.card p, .utility-card p { color: #475569; }
.card .text-link,
.utility-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b6a2f;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, color 0.22s ease;
}
.card:hover .text-link,
.utility-card:hover .text-link {
  transform: translateX(3px);
  color: #7a5d2a;
}
.entry-card, .service-deep-card, .region-deep-card, .insight-card { min-height: 100%; }
.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #475569;
}
.feature-list li + li { margin-top: 8px; }
.compact-feature-list li::marker {
  color: rgba(139,106,47,0.88);
}
.elevated-card { border-top: 4px solid var(--brand); }
.soft-utility { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }

.section-dark {
  background: linear-gradient(180deg, rgba(15,23,42,1) 0%, rgba(17,24,39,0.98) 100%);
  color: var(--white);
}
.dark-card, .dark-utility-card {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.1);
}
.dark-card p, .dark-utility-card p { color: rgba(255,255,255,0.74); }
.dark-card .card-kicker, .dark-utility-card .card-kicker, .section-dark .card-kicker { color: rgba(255,255,255,0.45); }

.section-pathways {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(200,169,107,0.12), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(31,111,235,0.08), transparent 22%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  color: #0f172a;
  border-top: 1px solid rgba(15,23,42,0.05);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.section-pathways .section-label {
  color: rgba(139,106,47,0.95);
}

.section-pathways .title-en {
  color: rgba(15,23,42,0.38);
}

.section-pathways .dark-utility-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,250,252,0.98) 100%);
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
}

.section-pathways .dark-utility-card p {
  color: #475569;
}

.section-pathways .dark-utility-card .card-kicker,
.section-pathways .card-kicker {
  color: rgba(15,23,42,0.42);
}

.section-pathways .dark-utility-card h3 {
  color: #0f172a;
}

.section-pathways .dark-utility-card .text-link {
  color: #8b6a2f;
}

.interactive-stage-section {
  background: linear-gradient(180deg, #fcfdff 0%, #f6f8fb 100%);
}

.stage-grid {
  display: grid;
  gap: 22px;
}

.stage-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e7ebf2;
  border-radius: 20px;
  padding: 24px 24px 20px;
  box-shadow: 0 16px 38px rgba(15,23,42,0.045);
}

.stage-card summary {
  list-style: none;
  cursor: pointer;
}

.stage-card summary::-webkit-details-marker { display: none; }

.stage-card h3 { margin-bottom: 10px; }

.stage-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.interactive-region-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.visual-story-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.visual-head {
  margin-bottom: 30px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 42px rgba(15,23,42,0.08);
  background: #0f172a;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.52s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.46s ease;
}

.visual-link {
  display: block;
  text-decoration: none;
}

.visual-card-large {
  grid-row: span 2;
  min-height: 662px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,24,0.08) 0%, rgba(8,12,24,0.28) 34%, rgba(8,12,24,0.72) 100%);
  transition: background 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 28px 26px;
  color: #ffffff;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease;
}

.visual-overlay .card-kicker {
  color: rgba(255,255,255,0.66);
}

.visual-overlay h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.22;
  margin-bottom: 12px;
}

.visual-overlay p {
  color: rgba(255,255,255,0.84);
  max-width: 480px;
  line-height: 1.75;
}

.region-tabs-shell {
  margin-top: 26px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e7ebf2;
  box-shadow: 0 18px 42px rgba(15,23,42,0.05);
}

.region-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.region-tab {
  appearance: none;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.9);
  color: #334155;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.region-tab.is-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.region-panel { display: none; }
.region-panel.is-active { display: block; }

.region-panel h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.region-panel p {
  max-width: 760px;
  color: #475569;
  font-size: 16px;
  line-height: 1.82;
}

.region-panel-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid #e7ebf2;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  padding: 18px 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 12px 0 0;
  color: #475569;
  line-height: 1.82;
}

.intake-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.intake-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.intake-copy {
  max-width: 560px;
}

.intake-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.intake-points div {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e7ebf2;
}

.intake-points span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15,23,42,0.42);
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e7ebf2;
  box-shadow: 0 18px 42px rgba(15,23,42,0.05);
}

.intake-form label {
  display: grid;
  gap: 8px;
}

.intake-form label span {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  color: #0f172a;
  background: #ffffff;
}

.intake-form input:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: rgba(200,169,107,0.48);
  box-shadow: 0 0 0 4px rgba(200,169,107,0.10);
}

.intake-full {
  grid-column: 1 / -1;
}

.intake-actions {
  display: grid;
  gap: 10px;
}

.intake-note {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.reading-page {
  max-width: 860px;
}

.reading-intro,
.reading-block,
.reading-faq {
  margin: 0 auto 34px;
}

.reading-page h2 {
  max-width: 100%;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.24;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.reading-page p {
  color: #475569;
  font-size: 16px;
  line-height: 1.92;
  margin-bottom: 16px;
}

.reading-highlight {
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e7ebf2;
  box-shadow: 0 16px 38px rgba(15,23,42,0.045);
}

.reading-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 16px;
  color: #475569;
}

.reading-list li strong {
  display: block;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 620;
}

.reading-list li span {
  display: block;
  line-height: 1.8;
}

.reading-faq details {
  padding: 16px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.reading-faq details:last-child {
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.reading-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}

.reading-faq summary::-webkit-details-marker { display: none; }

.reading-faq details p {
  margin: 12px 0 0;
}

/* ── Visual Diagrams (SVG) ── */

.diagram-svg-wrap {
  margin: 40px auto;
  max-width: 860px;
}
.diagram-svg {
  width: 100%;
  height: auto;
  display: block;
}
.diagram-flow-title,
.diagram-org-title,
.diagram-matrix-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

/* Comparison / Matrix Table */
.diagram-matrix {
  margin: 40px auto;
  max-width: 860px;
}
.matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}
.matrix-table thead th {
  background: var(--bg);
  color: var(--text-light);
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.matrix-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid #f1f5f9;
  color: #334155;
  line-height: 1.6;
  vertical-align: top;
}
.matrix-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}
.matrix-table tbody td:first-child {
  font-weight: 620;
  color: #0f172a;
  white-space: nowrap;
}
.matrix-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(200, 169, 107, 0.12);
  color: var(--brand-dark);
}

@media (max-width: 768px) {
  .diagram-svg-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .diagram-svg {
    min-width: 600px;
  }
  .matrix-table {
    font-size: 13px;
  }
  .matrix-table thead th,
  .matrix-table tbody td {
    padding: 10px 12px;
  }
}

/* ── Animation Extras (SVG, FAQ, hero) ── */

/* SVG line draw animation */
.svg-draw-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.svg-draw-line.drawn {
  stroke-dashoffset: 0;
}

/* SVG node entrance */
.svg-node {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.svg-node.shown {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ smooth open/close */
.reading-faq details .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.reading-faq details[open] .faq-body {
  grid-template-rows: 1fr;
}
.reading-faq details .faq-inner {
  overflow: hidden;
}

/* FAQ summary arrow */
.reading-faq summary::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}
.reading-faq details[open] summary::after {
  transform: rotate(45deg);
}
.reading-faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Subtle hover on diagram nodes */
.diagram-svg rect[rx="16"],
.diagram-svg rect[rx="14"] {
  transition: filter 0.3s ease, transform 0.2s ease;
}
.diagram-svg rect[rx="16"]:hover,
.diagram-svg rect[rx="14"]:hover {
  filter: url(#ds1) brightness(0.97);
}

/* Hero title line animation */
.subpage-title .title-line {
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.subpage-title .title-line:nth-child(1) { animation-delay: 0.1s; }
.subpage-title .title-line:nth-child(2) { animation-delay: 0.25s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reading highlight items stagger */
.reading-highlight .reading-list li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reading-highlight.revealed .reading-list li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.reading-highlight.revealed .reading-list li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.12s; }
.reading-highlight.revealed .reading-list li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.19s; }
.reading-highlight.revealed .reading-list li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.26s; }
.reading-highlight.revealed .reading-list li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .svg-draw-line,
  .svg-node,
  .subpage-title .title-line,
  .reading-highlight .reading-list li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  .reading-faq details .faq-body {
    transition: none;
  }
}

.utility-grid { margin-top: 24px; }
.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}
.split-panel .two-col {
  grid-template-columns: 1fr;
}
.cta-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0 6px;
}
.cta-actions-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-dark-btn {
  border-color: #d1d5db;
  color: #1f2937;
}

.industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.region-list { max-width: 520px; }
.industry-list span {
  display: inline-flex;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.industry-list span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15,23,42,0.05);
  border-color: rgba(200,169,107,0.20);
}
.light-copy p { color: var(--muted-dark); font-size: 17px; line-height: 1.86; }

.insights-soft {
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.tone-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.banded-section {
  position: relative;
}

.banded-section::before {
  content: "";
  display: block;
  width: min(calc(100% - 40px), 1180px);
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, rgba(15,23,42,0.04) 0%, rgba(15,23,42,0.10) 50%, rgba(15,23,42,0.04) 100%);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}
.contact-copy { max-width: 760px; color: #475569; line-height: 1.84; }

.site-footer {
  background: linear-gradient(180deg, #0a0f1f 0%, #0b1020 100%);
  color: rgba(255,255,255,0.72);
  padding: 34px 0;
  margin-top: 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.premium-intro { border-top: 1px solid #eef2f7; }

.home-hero-redesign {
  padding-bottom: 78px;
}
.home-hero-grid {
  align-items: stretch;
}
.home-command-card {
  display: grid;
  gap: 22px;
}
.command-card-top strong {
  display: block;
  font-size: 28px;
  line-height: 1.34;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.command-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(200,169,107,0.94);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.command-list {
  display: grid;
  gap: 14px;
}
.command-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.command-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.command-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: rgba(200,169,107,0.95);
  font-size: 12px;
  font-weight: 700;
}
.command-item p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.72;
}
.command-links {
  display: grid;
  gap: 12px;
}
.home-proof-items span {
  position: relative;
  padding-left: 18px;
}
.home-proof-items span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(200,169,107,0.9);
  transform: translateY(-50%);
}
.value-card {
  border-top: 4px solid rgba(200,169,107,0.82);
}
.pathway-card {
  min-height: 100%;
}
.featured-pathway {
  background: linear-gradient(180deg, #ffffff 0%, #f9f7f1 100%);
  border-color: rgba(200,169,107,0.28);
}
.home-routing-panel {
  padding: 18px 0;
}
.routing-grid {
  margin-top: 0;
}
.routing-card {
  min-height: 100%;
}
.credibility-card {
  min-height: 100%;
}
.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 48px rgba(15,23,42,0.06);
}
.cta-contact-card {
  background: linear-gradient(180deg, rgba(15,23,42,0.96) 0%, rgba(18,26,52,0.96) 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,0.06);
}
.cta-contact-card p {
  color: rgba(255,255,255,0.82);
}

.terminal-hero {
  padding: 96px 0 28px;
  background:
    radial-gradient(circle at 82% 16%, rgba(200,169,107,0.08), transparent 24%),
    linear-gradient(180deg, #fafbfd 0%, #ffffff 78%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.terminal-hero-inner {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.terminal-breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 12px;
  justify-content: center;
}

.terminal-breadcrumbs span:last-child,
.terminal-breadcrumbs a:hover {
  color: #0f172a;
}

.terminal-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.terminal-title {
  max-width: 580px;
  color: #0f172a;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.022em;
  font-weight: 660;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin: 0 auto;
  text-align: center;
}

.terminal-lead {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.82;
  color: #475569;
  text-align: center;
}

.terminal-hero-note,
.terminal-sidebox {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(200,169,107,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(250,247,240,0.84) 100%);
  box-shadow: 0 10px 24px rgba(15,23,42,0.035);
}

.terminal-note-label,
.terminal-sidebox-title {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-dark);
  font-weight: 700;
}

.terminal-hero-note {
  max-width: 620px;
  margin: 0 auto;
}

.terminal-hero-note p,
.terminal-sidebox li,
.terminal-muted,
.flow-block p,
.terminal-step p,
.faq-item p {
  color: #475569;
  font-size: 15px;
  line-height: 1.86;
}

.terminal-links {
  padding: 8px 0 0;
}

.terminal-links-inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.terminal-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.terminal-article-grid,
.terminal-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 980px;
}

.terminal-article,
.terminal-faq-grid > div:first-child,
.faq-stack,
.reading-flow,
.terminal-cta,
.terminal-sidebox {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.terminal-article h2,
.flow-block h2,
.terminal-faq-grid h2,
.terminal-cta h2 {
  max-width: 620px;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.terminal-article p,
.flow-block p,
.terminal-sidebox ul,
.terminal-list,
.terminal-cta p {
  margin-bottom: 0;
}

.reading-flow {
  display: grid;
  gap: 20px;
}

.flow-block {
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.flow-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.flow-block-soft {
  padding-top: 4px;
}

.terminal-list,
.terminal-sidebox ul {
  padding-left: 20px;
}

.terminal-list li,
.terminal-sidebox li {
  margin-bottom: 14px;
}

.terminal-list strong,
.terminal-sidebox strong {
  color: #0f172a;
}

.terminal-list-compact li {
  margin-bottom: 12px;
}

.terminal-steps {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.terminal-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.terminal-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(200,169,107,0.12);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.terminal-step h3,
.faq-item summary {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--brand-dark);
}

.faq-item p {
  margin: 12px 0 0;
}

.terminal-cta-section {
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fb 100%);
}

.terminal-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 860px;
}

/* ===== Homepage v2 — Global Typography Upgrades ===== */
.section h2 {
  font-size: clamp(27px, 3vw, 38px);
}
.section-label, .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.16em;
}
.card h3, .utility-card h3 { font-size: 19px; line-height: 1.38; }
.card p, .utility-card p { font-size: 15px; line-height: 1.78; }
.text-link { font-size: 14px; }
.hero-text { font-size: 18px; line-height: 1.78; }
.hero-subtext { font-size: 15.5px; line-height: 1.84; }
.title-en {
  font-size: 12px;
  letter-spacing: 0.10em;
  margin-bottom: 10px;
}

/* ===== Stats Bar — Bigger Numbers ===== */
.stat-counter-num {
  font-size: 40px;
  font-weight: 780;
}
.stat-counter-label {
  font-size: 12.5px;
  line-height: 1.6;
}

/* ===== Entry Cards — Numbered ===== */
.entry-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(200,169,107,0.10);
  border: 1px solid rgba(200,169,107,0.20);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.entry-card-en {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17,24,39,0.35);
  margin-bottom: 8px;
}

/* ===== Services v2 ===== */
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.service-v2-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 8px 28px rgba(15,23,42,0.05);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  overflow: hidden;
}
.service-v2-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(200,169,107,0.0) 0%, rgba(200,169,107,0.8) 50%, rgba(200,169,107,0.0) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.service-v2-card:hover {
  border-color: rgba(200,169,107,0.32);
  box-shadow: 0 18px 48px rgba(15,23,42,0.09);
  transform: translateY(-4px);
}
.service-v2-card:hover::before { opacity: 1; }
.service-v2-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(200,169,107,0.6);
  margin-bottom: 16px;
  display: block;
}
.service-v2-card h3 {
  font-size: 20px;
  font-weight: 660;
  color: #0f172a;
  line-height: 1.32;
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.service-v2-en {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.72);
  margin-bottom: 14px;
}
.service-v2-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.80;
  margin: 0 0 20px;
  flex: 1;
}
.service-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.service-v2-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #475569;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.08);
  letter-spacing: 0.02em;
}

/* ===== Pathways v2 — Dark Section ===== */
.pathways-v2 {
  background: linear-gradient(180deg, #0b1020 0%, #0e1428 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.pathways-v2::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,169,107,0.07), transparent 60%);
  pointer-events: none;
}
.pathways-v2 .section-label { color: rgba(200,169,107,0.76); }
.pathways-v2 h2 { color: #ffffff; }
.pathways-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.pathway-v2-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.26s ease, background 0.26s ease, transform 0.26s ease;
}
.pathway-v2-card:hover {
  border-color: rgba(200,169,107,0.28);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.pathway-v2-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,169,107,0.12);
  border: 1px solid rgba(200,169,107,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.pathway-v2-en {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.62);
  margin-bottom: 8px;
  display: block;
}
.pathway-v2-card h3 {
  font-size: 18px;
  font-weight: 650;
  color: #ffffff;
  line-height: 1.38;
  margin: 0 0 10px;
}
.pathway-v2-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  margin: 0 0 20px;
  flex: 1;
}
.pathway-v2-card .text-link {
  color: rgba(200,169,107,0.86);
  margin-top: auto;
}
.pathway-v2-card:hover .text-link { color: var(--brand); }

/* ===== Region v2 ===== */
.region-tabs-v2 {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.region-tab-v2 {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
  text-align: left;
}
.region-tab-v2:hover {
  border-color: rgba(200,169,107,0.3);
  background: rgba(200,169,107,0.03);
}
.region-tab-v2.is-active {
  background: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 4px 14px rgba(15,23,42,0.18);
}
.region-tab-v2-en {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94a3b8;
  transition: color 0.24s ease;
}
.region-tab-v2.is-active .region-tab-v2-en { color: rgba(200,169,107,0.72); }
.region-tab-v2-label {
  font-size: 15px;
  font-weight: 650;
  color: #0f172a;
  transition: color 0.24s ease;
}
.region-tab-v2.is-active .region-tab-v2-label { color: #ffffff; }

.region-panel-v2 {
  display: none;
  animation: regionFadeIn 0.3s ease;
}
.region-panel-v2.is-active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
@keyframes regionFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.region-panel-v2-main h3 {
  font-size: 26px;
  font-weight: 660;
  color: #0f172a;
  line-height: 1.26;
  margin: 0 0 8px;
  letter-spacing: -0.018em;
}
.region-panel-v2-en {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
  margin: 0 0 16px;
}
.region-panel-v2-main p {
  font-size: 15px;
  color: #475569;
  line-height: 1.84;
  margin: 0 0 22px;
}
.region-panel-v2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.region-panel-v2-side {
  display: grid;
  gap: 10px;
}
.region-stat-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e7ebf2;
}
.region-stat-card-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.36);
  margin-bottom: 6px;
}
.region-stat-card-value {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.46;
}

/* ===== Process v2 ===== */
.process-step-body h3 {
  font-size: 16px;
  font-weight: 660;
  margin-bottom: 6px;
}
.process-step-body p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.72;
}
.process-step-en {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.55);
  margin-bottom: 6px;
}

/* ===== Cases v2 ===== */
.case-card h3 { font-size: 18px; font-weight: 650; line-height: 1.36; }
.case-card p { font-size: 14.5px; line-height: 1.82; }
.case-section-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.32);
  margin: 16px 0 10px;
}

/* ===== Insights v2 ===== */
.insight-v2-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.insight-v2-kicker {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17,24,39,0.38);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.07);
}
.insight-v2-type {
  font-size: 10px;
  color: rgba(200,169,107,0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.insight-card h3 { font-size: 19px; line-height: 1.38; }
.insight-card p { font-size: 14.5px; line-height: 1.78; }

/* ===== FAQ v2 — larger text ===== */
.faq-hover-q { font-size: 17px; line-height: 1.44; }
.faq-hover-a { font-size: 14.5px; line-height: 1.86; }
.faq-hover-num { font-size: 10.5px; }

/* ===== Stage Interactive Selector ===== */
.stage-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}
.stage-interactive {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
  margin-top: 40px;
  align-items: start;
}
.stage-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stage-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.2s ease;
  width: 100%;
  font: inherit;
}
.stage-step:hover {
  border-color: rgba(200,169,107,0.28);
  background: rgba(200,169,107,0.03);
  transform: translateX(3px);
}
.stage-step.is-active {
  border-color: rgba(200,169,107,0.48);
  background: linear-gradient(135deg, rgba(200,169,107,0.09) 0%, #ffffff 80%);
  box-shadow: 0 6px 22px rgba(15,23,42,0.07);
  transform: translateX(3px);
}
.stage-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200,169,107,0.10);
  border: 1px solid rgba(200,169,107,0.20);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 740;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.stage-step.is-active .stage-step-num {
  background: var(--brand);
  color: #1b1b1b;
  border-color: var(--brand);
}
.stage-step-body { flex: 1; }
.stage-step-en {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.55);
  margin-bottom: 3px;
  transition: color 0.24s ease;
}
.stage-step.is-active .stage-step-en { color: rgba(200,169,107,0.85); }
.stage-step-body h3 {
  font-size: 16px;
  font-weight: 650;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.38;
}
.stage-step-body p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
  transition: color 0.24s ease;
}
.stage-step.is-active .stage-step-body p { color: #64748b; }
.stage-step-arrow {
  color: #cbd5e1;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.24s ease, color 0.24s ease;
}
.stage-step.is-active .stage-step-arrow,
.stage-step:hover .stage-step-arrow {
  color: var(--brand-dark);
  transform: translateX(3px);
}
/* Content panel */
.stage-panels {
  position: relative;
}
.stage-panel-content {
  display: none;
  padding: 30px 28px;
  border-radius: 20px;
  border: 1px solid rgba(200,169,107,0.24);
  background: linear-gradient(160deg, #ffffff 0%, #fdf9f2 100%);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  animation: stageFadeIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.stage-panel-content.is-active { display: block; }
@keyframes stageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stage-panel-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(200,169,107,0.10);
  border: 1px solid rgba(200,169,107,0.20);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.stage-panel-content h3 {
  font-size: 26px;
  font-weight: 660;
  color: #0f172a;
  line-height: 1.24;
  margin: 0 0 12px;
  letter-spacing: -0.022em;
}
.stage-panel-en {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.72;
  margin: 0 0 12px;
  font-style: italic;
}
.stage-panel-content > p:not(.stage-panel-en):not(.stage-panel-section-label) {
  font-size: 15px;
  color: #475569;
  line-height: 1.84;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.stage-panel-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.36);
  margin: 0 0 12px;
}
.stage-panel-points {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.stage-panel-point {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  color: #1e293b;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,23,42,0.05);
}
.stage-panel-point:last-child { border-bottom: 0; }
.stage-panel-point::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 8px;
}
.stage-panel-point span { flex: 1; }
.stage-panel-point em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.65);
  white-space: nowrap;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== Nav CTA Button ===== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--brand);
  color: #1b1b1b;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(167,134,71,0.32);
}
.nav-cta::after { display: none !important; }
.mobile-menu-panel .nav-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-top: 4px;
}

/* ===== Stats Counter Bar ===== */
.stats-counter-bar {
  background: linear-gradient(180deg, #070b16 0%, #0b1020 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
}
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-counter-item {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.stat-counter-item:last-child { border-right: 0; }
.stat-counter-num {
  font-size: 30px;
  font-weight: 760;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-counter-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ===== How We Work Process ===== */
.process-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,107,0.08) 0%, rgba(200,169,107,0.44) 50%, rgba(200,169,107,0.08) 100%);
  pointer-events: none;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.process-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(200,169,107,0.14) 0%, rgba(200,169,107,0.07) 100%);
  border: 1px solid rgba(200,169,107,0.30);
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 740;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.24s ease, border-color 0.24s ease;
}
.process-step:hover .process-step-num {
  background: linear-gradient(180deg, rgba(200,169,107,0.24) 0%, rgba(200,169,107,0.14) 100%);
  border-color: rgba(200,169,107,0.52);
}
.process-step-body h3 {
  font-size: 15px;
  font-weight: 650;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.4;
}
.process-step-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.72;
  margin: 0;
}

/* ===== Engagement Cases ===== */
.cases-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.case-card {
  padding: 26px 22px;
  border-radius: 20px;
  border: 1px solid #e7ebf2;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}
.case-card:hover {
  border-color: rgba(200,169,107,0.32);
  box-shadow: 0 18px 42px rgba(15,23,42,0.08);
  transform: translateY(-3px);
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(200,169,107,0.10);
  color: var(--brand-dark);
  border: 1px solid rgba(200,169,107,0.18);
  margin-bottom: 16px;
}
.case-card h3 {
  font-size: 16px;
  font-weight: 650;
  color: #0f172a;
  line-height: 1.46;
  margin: 0 0 12px;
}
.case-card p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.82;
  margin: 0 0 18px;
}
.case-outcome {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.06);
}
.case-outcome span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
}
.case-outcome span::before {
  content: "✓";
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== Rich Footer ===== */
.site-footer-rich {
  background: linear-gradient(180deg, #070b16 0%, #060910 100%);
  color: rgba(255,255,255,0.65);
  padding: 52px 0 26px;
  margin-top: 24px;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 22px;
}
.footer-brand-col .footer-logo {
  display: block;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-brand-col p {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  max-width: 210px;
  margin: 0 0 16px;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--brand);
  transition: color 0.2s ease;
  margin-bottom: 8px;
}
.footer-contact-link:hover { color: #d4b87e; }
.footer-nav-col h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.28);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-nav-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 10px;
  transition: color 0.2s ease;
  line-height: 1.4;
}
.footer-nav-col a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.24);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.32);
  font-size: 12px;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.70); }

/* ===== Dark CTA Section ===== */
.cta-dark-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0f1e 0%, #0d1428 100%);
  color: #ffffff;
  padding: 96px 0;
}
.cta-dark-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(200,169,107,0.10), transparent 68%);
  pointer-events: none;
}
.cta-dark-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(31,111,235,0.06), transparent 66%);
  pointer-events: none;
}
.cta-center-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-dark-section .section-label { color: rgba(200,169,107,0.76); }
.cta-dark-section h2 {
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 auto 20px;
  max-width: 100%;
  text-align: center;
  font-weight: 660;
  text-wrap: balance;
}
.cta-dark-section p {
  color: rgba(255,255,255,0.62);
  font-size: 16px;
  line-height: 1.84;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 38px;
}
.cta-scenario-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
  cursor: default;
}
.cta-scenario-tag:hover {
  background: rgba(200,169,107,0.13);
  border-color: rgba(200,169,107,0.30);
  color: rgba(228,201,149,0.96);
  transform: translateY(-2px);
}
.cta-dark-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.cta-email-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* ===== FAQ Hover Cards ===== */
.faq-hover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.faq-hover-card {
  padding: 24px 22px 22px;
  border-radius: 20px;
  border: 1px solid #e7ebf2;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
  cursor: default;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.faq-hover-card:hover {
  border-color: rgba(200,169,107,0.38);
  box-shadow: 0 18px 42px rgba(15,23,42,0.09);
  transform: translateY(-3px);
  background: linear-gradient(180deg, #ffffff 0%, #fdf9f0 100%);
}
.faq-hover-num {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.6);
  margin-bottom: 10px;
}
.faq-hover-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.faq-hover-q {
  font-size: 16px;
  font-weight: 640;
  color: #0f172a;
  line-height: 1.48;
  margin: 0;
  flex: 1;
}
.faq-hover-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.3s ease;
}
.faq-hover-card:hover .faq-hover-icon {
  background: rgba(200,169,107,0.12);
  border-color: rgba(200,169,107,0.32);
  color: var(--brand-dark);
  transform: rotate(45deg);
}
.faq-hover-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-hover-card:hover .faq-hover-a-wrap {
  max-height: 200px;
}
.faq-hover-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,107,0) 0%, rgba(200,169,107,0.28) 50%, rgba(200,169,107,0) 100%);
  margin: 16px 0 14px;
  opacity: 0;
  transition: opacity 0.24s ease 0.1s;
}
.faq-hover-card:hover .faq-hover-divider { opacity: 1; }
.faq-hover-a {
  color: #475569;
  font-size: 14px;
  line-height: 1.84;
  margin: 0;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.3s ease 0.14s, transform 0.3s ease 0.14s;
}
.faq-hover-card:hover .faq-hover-a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .contact-grid,
  .industry-layout,
  .three-up,
  .three-col,
  .two-col,
  .four-col,
  .trust-items,
  .intro-grid,
  .cta-wide,
  .split-panel,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 60px;
    position: relative;
  }

  .title-en { font-size: 10.5px; margin-bottom: 8px; }
  nav { display: none; }
  .mobile-menu { display: block; }
  .section, .hero { padding: 60px 0; }
  .subpage-intro { padding: 28px 0 12px; }
  .subpage-title {
    font-size: 28px;
    line-height: 1.22;
    max-width: 100%;
  }

  .subpage-intro .section-label {
    font-size: 9.5px;
    white-space: nowrap;
  }

  .subpage-desc,
  .hero-text,
  .hero-subtext,
  .contact-copy,
  .utility-card p,
  .card p,
  .feature-list,
  .section-intro,
  .routing-copy {
    font-size: 14px;
    line-height: 1.72;
    max-width: 100%;
  }

  .subpage-title {
    text-wrap: balance;
  }

  .subpage-intro .title-en {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .subpage-intro-inner::after {
    width: 56px;
    margin-top: 20px;
  }

  h1 { font-size: 34px; }
  h2 { font-size: 28px; line-height: 1.24; }
  .headline-wrap::before { display: none; }
  .hero-frame { transform: none; }
  .floating-note {
    position: static;
    margin-top: 14px;
    display: inline-block;
  }

  .hero-actions,
  .cta-actions-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .region-tabs-shell {
    padding: 20px;
  }

  .intake-shell,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-card-large {
    min-height: 420px;
  }

  .visual-card {
    min-height: 280px;
  }

  .region-panel-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .interactive-metrics {
    gap: 12px;
  }

  .metric-link {
    padding: 16px 16px 14px;
    border-radius: 16px;
  }

  .metric strong {
    font-size: 17px;
    line-height: 1.4;
  }

  .command-card-top strong {
    font-size: 24px;
  }

  .btn,
  .btn-full {
    width: 100%;
    min-height: 48px;
  }

  .quick-nav,
  .hero-bilingual-tags {
    gap: 8px;
  }

  .quick-nav a,
  .hero-bilingual-tags span {
    font-size: 11px;
    padding: 8px 10px;
  }

  .cta-shell {
    padding: 26px 22px;
  }

  nav a.nav-active::after { bottom: -6px; }

  .stage-interactive { grid-template-columns: 1fr; }
  .stage-panel-content { animation: none; }
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .stat-counter-item:nth-child(2) { border-right: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .cta-dark-section { padding: 64px 0; }
  .cta-dark-section h2 { font-size: 28px; }
  .cta-dark-actions { flex-direction: column; align-items: center; }
  .cta-dark-actions .btn,
  .cta-email-btn { width: 100%; justify-content: center; }

  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .faq-hover-grid {
    grid-template-columns: 1fr;
  }
  .faq-hover-card:hover {
    transform: none;
  }
  .faq-hover-a-wrap {
    max-height: 200px;
  }
  .faq-hover-divider { opacity: 1; }
  .faq-hover-a {
    opacity: 1;
    transform: none;
  }
  .faq-hover-icon { transform: rotate(45deg); color: var(--brand-dark); background: rgba(200,169,107,0.10); border-color: rgba(200,169,107,0.28); }

  .terminal-hero-grid,
  .terminal-article-grid,
  .terminal-faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .terminal-hero-note,
  .terminal-sidebox {
    padding: 20px;
  }

  .terminal-step {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.58;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding: 52px 0 44px;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  h2 {
    font-size: 24px;
    line-height: 1.28;
  }

  .hero-text,
  .subpage-desc {
    font-size: 15px;
  }

  .cards,
  .utility-grid,
  .section-panel,
  .split-panel,
  .cta-wide {
    gap: 16px;
  }

  .mobile-menu-panel {
    width: calc(100vw - 28px);
    right: -2px;
  }

  .hero-card,
  .contact-card,
  .cta-shell {
    padding: 22px;
  }

  .command-item {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .command-item span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════
   DESIGN UPGRADE v2 — Font · Motion · Atmosphere
   ═══════════════════════════════════════════════════════ */

/* ── Font System ─────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-break: strict;
}

h1,
.section h2,
.cta-dark-section h2,
.subpage-title,
.svc-hero h1,
.svc-hero h2 {
  font-family: 'Noto Serif SC', 'PingFang SC', 'STSong', serif;
}

/* UI labels, nav, buttons stay on Inter */
.title-en, .eyebrow, .section-label, .card-kicker,
.service-v2-num, .service-v2-en, .pathway-v2-en,
.entry-card-en, .stage-step-en, .process-step-en,
.case-section-label, .insight-v2-kicker, .insight-v2-type,
.faq-hover-num, .stage-panel-badge, .region-tab-v2-en,
.floating-note, .hero-bilingual-tags a,
nav a, .btn, .text-link, .nav-cta,
.stat-counter-label, .stat-counter-num,
.metric span, .metric em, .region-stat-card-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ── Hero Globe Wireframe ────────────────────────────── */
.hero-globe-wrap {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 46vw);
  height: min(520px, 46vw);
  pointer-events: none;
  z-index: 1;
  color: var(--brand);
  animation: globePulse 10s ease-in-out infinite;
}

@keyframes globePulse {
  0%, 100% { opacity: 0.10; }
  50%       { opacity: 0.17; }
}

/* ── h1 headline sizing boost ────────────────────────── */
/* Applied only at desktop widths — mobile breakpoints in earlier rules take precedence */
@media (min-width: 921px) {
  h1 {
    font-size: clamp(42px, 4.8vw, 58px);
    font-weight: 700;
    letter-spacing: -0.025em;
  }
}

/* ── Section h2 serif weight ─────────────────────────── */
.section h2, .cta-dark-section h2 {
  font-weight: 600;
}

/* ── Metric strong — keep sans ───────────────────────── */
.metric strong {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 920px) {
  .hero-globe-wrap { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE — svc-* components
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.svc-hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,169,107,0.12), transparent 28%),
    linear-gradient(180deg, #070c1a 0%, #0d1530 60%, #101828 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  overflow: hidden;
}
.svc-hero-inner {
  max-width: 760px;
}
.svc-hero .section-label {
  color: rgba(200,169,107,0.82);
  margin-bottom: 20px;
}
.svc-hero-title {
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 0 0 24px;
  color: #ffffff;
  font-family: 'Noto Serif SC', 'PingFang SC', serif;
}
.svc-hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 0 12px;
}
.svc-hero-en {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.46);
  max-width: 560px;
  margin: 0 0 36px;
  font-style: italic;
}
.svc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-hero-tags a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  font-family: 'Inter', sans-serif;
}
.svc-hero-tags a:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(200,169,107,0.28);
  transform: translateY(-2px);
}
.svc-hero-tag-cta {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #1b1b1b !important;
  font-weight: 700 !important;
}
.svc-hero-tag-cta:hover {
  background: var(--brand-dark) !important;
}

/* ── Differentiator Bar ── */
.svc-diff-bar {
  background: linear-gradient(180deg, #070b16 0%, #0b1020 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
}
.svc-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.svc-diff-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.svc-diff-item:last-child { border-right: 0; }
.svc-diff-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  font-family: 'Noto Serif SC', serif;
}
.svc-diff-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.46);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

/* ── Service Block (alternating layout) ── */
.svc-block {
  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,0.05);
  padding: 80px 0;
}
.svc-block-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
}
.svc-block-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.svc-block-copy {
  padding: 16px 0;
}
.svc-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,169,107,0.10);
  border: 1px solid rgba(200,169,107,0.24);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 740;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.svc-block-en {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.65);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.svc-block-title {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.022em;
  color: #0f172a;
  margin: 0 0 20px;
  font-family: 'Noto Serif SC', 'PingFang SC', serif;
  max-width: 100%;
  text-align: left;
}
.svc-block-when {
  font-size: 13px;
  color: var(--brand-dark);
  background: rgba(200,169,107,0.08);
  border: 1px solid rgba(200,169,107,0.18);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 18px;
  line-height: 1.6;
}
.svc-block-copy > p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.86;
  margin: 0 0 24px;
}
.svc-block-points {
  display: grid;
  gap: 11px;
  margin-bottom: 30px;
}
.svc-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #1e293b;
  line-height: 1.5;
}
.svc-point-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ── Service Aside ── */
.svc-block-aside {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
.svc-aside-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #fdf9f1 100%);
  border: 1px solid rgba(200,169,107,0.22);
  box-shadow: 0 10px 32px rgba(15,23,42,0.06);
}
.svc-aside-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.svc-aside-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.84;
  margin: 0;
  font-style: italic;
}
.svc-aside-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e7ebf2;
}

/* ── How We Work Steps ── */
.svc-how-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}
.svc-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.svc-how-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,107,0.08) 0%, rgba(200,169,107,0.44) 50%, rgba(200,169,107,0.08) 100%);
}
.svc-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.svc-how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(200,169,107,0.14) 0%, rgba(200,169,107,0.07) 100%);
  border: 1px solid rgba(200,169,107,0.32);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 740;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
}
.svc-how-step h3 {
  font-size: 15px;
  font-weight: 650;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.4;
}
.svc-how-step p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.72;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .svc-diff-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .svc-diff-item:nth-child(2) { border-right: 0; }
  .svc-block { padding: 56px 0; }
  .svc-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-block-aside { position: static; }
  .svc-how-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-how-steps::before { display: none; }
}
@media (max-width: 640px) {
  .svc-hero { padding: 64px 0 52px; }
  .svc-hero-title { font-size: 34px; }
  .svc-block { padding: 44px 0; }
  .svc-diff-grid { grid-template-columns: 1fr; }
  .svc-diff-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; }
  .svc-diff-item:last-child { border-bottom: 0; }
  .svc-how-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   DETAIL PAGE — dp-* components (region/industry/insight detail)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.dp-hero {
  position: relative;
  background:
    radial-gradient(circle at 76% 18%, rgba(200,169,107,0.14), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04), transparent 24%),
    linear-gradient(180deg, #070c1a 0%, #0d1530 56%, #101828 100%) !important;
  color: #ffffff !important;
  padding: 80px 0 60px;
  overflow: hidden;
}
.dp-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,169,107,0.3) 50%, transparent 100%);
}

.dp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
}
.dp-breadcrumb a {
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.dp-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.dp-breadcrumb span { color: rgba(255,255,255,0.28); }
.dp-breadcrumb-current { color: rgba(200,169,107,0.72); }

.dp-hero .section-label {
  color: rgba(200,169,107,0.82);
  margin-bottom: 20px;
}
h1.dp-hero-title,
.dp-hero .dp-hero-title {
  font-size: clamp(28px, 2.8vw, 38px) !important;
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  max-width: 620px;
  font-family: 'Noto Serif SC', 'PingFang SC', serif;
}
.dp-hero-desc {
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255,255,255,0.84);
  max-width: 560px;
  margin: 0 0 10px;
}
.dp-hero-en {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255,255,255,0.36);
  max-width: 520px;
  margin: 0 0 28px;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}
.dp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dp-btn-ghost {
  background: transparent !important;
  color: rgba(255,255,255,0.82) !important;
  border-color: rgba(255,255,255,0.2) !important;
}
.dp-btn-ghost:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(200,169,107,0.36) !important;
}

/* ── Stats Bar ── */
.dp-stats-bar {
  background: linear-gradient(180deg, #070b16 0%, #0b1020 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
}
.dp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.dp-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.dp-stat:first-child { padding-left: 0; }
.dp-stat:last-child { border-right: 0; }
.dp-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-family: 'Inter', sans-serif;
}
.dp-stat-value {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  font-family: 'Noto Serif SC', serif;
}

/* ── Section Header ── */
.dp-section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

/* ── Overview ── */
.dp-overview-section {
  background: #ffffff;
}
.dp-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.dp-overview-copy {
  font-size: 16px;
  line-height: 1.88;
  color: #475569;
  max-width: 520px;
}
.dp-overview-cards {
  display: grid;
  gap: 20px;
}
.dp-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e7ebf2;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.dp-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15,23,42,0.09);
  border-color: rgba(200,169,107,0.28);
}
.dp-overview-card-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(139,106,47,0.7);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.dp-overview-card h3 {
  font-size: 18px;
  font-weight: 650;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: 'Noto Serif SC', serif;
}
.dp-overview-card p {
  font-size: 14.5px;
  line-height: 1.78;
  color: #475569;
  margin-bottom: 0;
}
.dp-overview-card-arrow {
  position: absolute;
  top: 30px;
  right: 28px;
  font-size: 18px;
  color: rgba(139,106,47,0.4);
  transition: transform 0.22s, color 0.22s;
}
.dp-overview-card:hover .dp-overview-card-arrow {
  transform: translateX(4px);
  color: rgba(139,106,47,0.8);
}

/* ── Why Section (numbered cards) ── */
.dp-why-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.dp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dp-why-card {
  position: relative;
  padding: 36px 30px 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e7ebf2;
  box-shadow: 0 12px 32px rgba(15,23,42,0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.dp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,23,42,0.08);
}
.dp-why-num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(200,169,107,0.18);
  margin-bottom: 12px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.dp-why-en {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(139,106,47,0.55);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.dp-why-card h3 {
  font-size: 19px;
  font-weight: 650;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: 'Noto Serif SC', serif;
}
.dp-why-card p {
  font-size: 14.5px;
  line-height: 1.82;
  color: #475569;
  margin-bottom: 0;
}

/* ── Cases / Use Cases (timeline style) ── */
.dp-cases-section {
  background: #ffffff;
}
.dp-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e7ebf2;
  border-radius: 20px;
  overflow: hidden;
}
.dp-case-item {
  display: flex;
  gap: 20px;
  padding: 34px 32px;
  border-bottom: 1px solid #e7ebf2;
  border-right: 1px solid #e7ebf2;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
  transition: background 0.24s;
}
.dp-case-item:nth-child(2n) { border-right: 0; }
.dp-case-item:nth-last-child(-n+2) { border-bottom: 0; }
.dp-case-item:hover {
  background: linear-gradient(180deg, #fefefe 0%, #f6f9fd 100%);
}
.dp-case-marker {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 0 0 4px rgba(200,169,107,0.12);
}
.dp-case-en {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(139,106,47,0.55);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.dp-case-body h3 {
  font-size: 17px;
  font-weight: 650;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: 'Noto Serif SC', serif;
}
.dp-case-body p {
  font-size: 14px;
  line-height: 1.78;
  color: #64748b;
  margin-bottom: 0;
}

/* ── Client Fit ── */
.dp-fit-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.dp-fit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.dp-fit-copy {
  font-size: 16px;
  line-height: 1.88;
  color: #475569;
  margin-bottom: 28px;
  max-width: 520px;
}
.dp-fit-actions {
  display: flex;
  gap: 14px;
}
.dp-fit-highlight {
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}
.dp-fit-highlight-kicker {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
  font-family: 'Noto Serif SC', serif;
}
.dp-fit-highlight p {
  font-size: 14.5px;
  line-height: 1.84;
  color: rgba(255,255,255,0.76);
  margin-bottom: 0;
}

/* ── FAQ (accordion) ── */
.dp-faq-section {
  background: #ffffff;
}
.dp-faq-list {
  max-width: 800px;
}
.dp-faq-item {
  border-bottom: 1px solid #e7ebf2;
}
.dp-faq-item:first-child {
  border-top: 1px solid #e7ebf2;
}
.dp-faq-q {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.dp-faq-q:hover { color: #8b6a2f; }
.dp-faq-num {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  font-family: 'Inter', sans-serif;
  min-width: 24px;
}
.dp-faq-q h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
  flex: 1;
  font-family: 'Noto Serif SC', serif;
}
.dp-faq-toggle {
  flex-shrink: 0;
  font-size: 20px;
  color: #94a3b8;
  transition: transform 0.3s;
  font-family: 'Inter', sans-serif;
}
.dp-faq-item.is-open .dp-faq-toggle {
  transform: rotate(45deg);
}
.dp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
  padding: 0 0 0 42px;
}
.dp-faq-item.is-open .dp-faq-a {
  max-height: 200px;
  padding-bottom: 24px;
}
.dp-faq-a p {
  font-size: 15px;
  line-height: 1.84;
  color: #64748b;
  margin-bottom: 0;
}

/* ── CTA ── */
.dp-cta {
  background:
    radial-gradient(circle at 30% 50%, rgba(200,169,107,0.10), transparent 32%),
    linear-gradient(180deg, #0b1020 0%, #0f172a 100%);
  color: #ffffff;
  padding: 80px 0;
}
.dp-cta-inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}
.dp-cta .section-label {
  color: rgba(200,169,107,0.82);
}
.dp-cta h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.32;
  margin-bottom: 20px;
}
.dp-cta-desc {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255,255,255,0.62);
  margin-bottom: 34px;
}
.dp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Detail Page Responsive ── */
@media (max-width: 920px) {
  .dp-hero { padding: 64px 0 48px; }
  .dp-hero-title { font-size: 26px !important; }
  .dp-stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .dp-stat { padding: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 16px; }
  .dp-stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .dp-overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .dp-why-grid { grid-template-columns: 1fr; gap: 16px; }
  .dp-cases-grid { grid-template-columns: 1fr; }
  .dp-case-item { border-right: 0 !important; }
  .dp-case-item:nth-last-child(2) { border-bottom: 1px solid #e7ebf2; }
  .dp-fit-grid { grid-template-columns: 1fr; gap: 32px; }
  .dp-cta { padding: 56px 0; }
}
@media (max-width: 640px) {
  .dp-hero { padding: 48px 0 36px; }
  .dp-hero-title { font-size: 22px !important; }
  .dp-breadcrumb { font-size: 11px; margin-bottom: 20px; }
  .dp-why-card { padding: 28px 24px; }
  .dp-case-item { padding: 24px 20px; }
  .dp-faq-q { gap: 12px; }
}
