/* CWP.VN — Services & Partners (visual system aligned with homepage) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FDF8FA;
  --bg2: #F7EFF3;
  --accent: #CB416B;
  --accent-mid: #DA7896;
  --light1: #F4D7E0;
  --light2: #E9AFC1;
  --dark-text: #320E19;
  --dark-s: #1E080F;
  --dark-s2: #2B1020;
  --sage: #5C8C6A;
  --sage-pale: #EBF3EE;
  --gold: #B87333;
  --gold-pale: #FBF3E8;
  /* Semantic aliases & contrast scale */
  --dark: #320E19;
  --canvas-dark-a: #1E080F;
  --canvas-dark-b: #261018;
  --text-on-dark: rgba(255, 255, 255, 0.68);
  --text-on-dark-soft: rgba(255, 255, 255, 0.55);
  --text-on-dark-muted: rgba(255, 255, 255, 0.42);
  --text-on-light: rgba(50, 14, 25, 0.72);
  --text-on-light-soft: rgba(50, 14, 25, 0.58);
  --text-on-light-muted: rgba(50, 14, 25, 0.48);
  --pillar-nu-on-dark: #E8C9A0;
  --pillar-mo-on-dark: #F0A8BE;
  --pillar-me-on-dark: #8FB89A;
  --teaser-nu: #D4A574;
  --teaser-me: #7BA888;
  --display-em-dark: linear-gradient(135deg, #fff 0%, #F4D7E0 100%);
  --bd-light: rgba(255,255,255,0.09);
  --bd-accent: rgba(203,65,107,0.18);
  --bd-dark: rgba(50,14,25,0.1);
  --sh: 0 8px 40px rgba(50,14,25,0.09);
  --sh-lg: 0 24px 80px rgba(50,14,25,0.13);
  --r: 12px;
  --rl: 20px;
  --nav-h: 80px;
  --wrap: 1120px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --img-base: https://cwp.vn/image;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark-text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
img.cwp-nav-lockup__mark,
img.cwp-footer-lockup__mark { max-width: none; height: auto; }
a { color: inherit; text-decoration: none; }
a.cwp-nav-lockup,
a.cwp-nav-lockup:visited { color: #ffffff; }
ul { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 1.5rem; z-index: 9999;
  padding: 0.75rem 1.25rem; background: var(--accent); color: #fff;
  border-radius: 999px; font-size: 0.875rem;
}
.skip-link:focus { top: 0.75rem; }

.draft-banner {
  background: linear-gradient(90deg, #FEF3C7, #FDE68A);
  border-bottom: 1px solid #FCD34D;
  margin-top: var(--nav-h);
  padding: 0.5rem 1.5rem; text-align: center;
  font-size: 0.6875rem; letter-spacing: 0.06em; color: #92400E;
  position: relative;
  z-index: 280;
}

/* Nav styles moved to cwp-nav.css */

/* ── HERO (homepage pattern) ── */
.hero {
  background: var(--canvas-dark-a);
  min-height: 88vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 4vw, 3rem) 4rem;
  position: relative; overflow: hidden;
}
.hero-mesh { position: absolute; inset: 0; pointer-events: none; }
.hero-mesh::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 65%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(218,120,150,0.07) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  max-width: var(--wrap); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.kicker-bar { width: 36px; height: 1px; background: var(--accent-mid); }
.kicker-txt {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-mid);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 500; line-height: 1.1; color: #fff; margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--light1);
  display: block;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-on-dark);
  max-width: 520px;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  border-left: 2px solid rgba(218,120,150,0.3);
  padding-left: 1.25rem;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.ind-tag {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.42);
  padding: 5px 13px; border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }
.hero-secondary-link { margin: -1rem 0 1.5rem; }
.btn-accent-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 18px rgba(203,65,107,0.4);
  transition: all 0.2s;
}
.btn-accent-lg:hover { background: #B33560; transform: translateY(-2px); }
.btn-outline-wh {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  padding: 13px 24px; border-radius: 100px; font-size: 14px;
  transition: all 0.2s;
}
.btn-outline-wh:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-pillars { display: flex; flex-direction: column; gap: 8px; }
.hpillar {
  font-size: 12px;
  color: var(--text-on-dark-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hpillar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hpillar-dot.nu { background: var(--gold); }
.hpillar-dot.mo { background: var(--accent-mid); }
.hpillar-dot.me { background: var(--sage); }

.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hero-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--bd-light);
  border-radius: var(--rl); padding: 1.5rem; backdrop-filter: blur(8px);
}
.hc-label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--bd-light); border-radius: var(--r); overflow: hidden; }
.stat-cell { background: rgba(30,8,15,0.85); padding: 1.25rem; }
.stat-n {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 500;
  color: var(--light2); line-height: 1; margin-bottom: 4px;
}
.stat-l { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; }
.hero-quote-card {
  background: rgba(218,120,150,0.07); border: 1px solid rgba(218,120,150,0.14);
  border-radius: var(--rl); padding: 1.5rem;
}
.hero-quote-text {
  font-family: var(--font-display); font-size: 15px; font-style: italic;
  color: rgba(255,255,255,0.62); line-height: 1.65; margin-bottom: 0.75rem;
}
.hero-quote-cite { font-size: 11px; color: rgba(255,255,255,0.28); }

/* ── TRUST BAR ── */
.trust {
  background: var(--dark-s2); padding: 1rem clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-in {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.trust-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
}
.trust-items { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── IMAGE STRIPS ── */
.img-showcase { width: 100%; max-height: 420px; overflow: hidden; }
.img-showcase img { width: 100%; height: 420px; object-fit: cover; object-position: center; }

/* Gradient band (replaces low-res cover-strip photos) */
.cover-band {
  position: relative;
  min-height: 280px;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(203, 65, 107, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(184, 115, 51, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--canvas-dark-a) 0%, #2a0f18 45%, var(--dark-s2) 100%);
  overflow: hidden;
}
.cover-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cover-band-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cover-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  max-width: 22ch;
  line-height: 1.25;
}
.cover-band-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-mid);
  padding: 10px 18px;
  border: 1px solid rgba(203, 65, 107, 0.35);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.cover-strip { position: relative; max-height: 380px; overflow: hidden; }
.cover-strip img { width: 100%; height: 380px; object-fit: cover; }
.cover-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,8,15,0.75) 0%, transparent 60%);
  display: flex; align-items: center; padding: 0 3rem;
}
.cover-strip-text {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic; color: rgba(255,255,255,0.9); max-width: 20ch;
}
.activities-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 2.5rem 0;
}
.act-img { border-radius: var(--rl); overflow: hidden; aspect-ratio: 16/10; }
.act-img img { width: 100%; height: 100%; object-fit: cover; }

.session-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.session-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--rl);
  border: 1px solid;
  position: relative;
  transition: transform 0.3s var(--ease-cwp), box-shadow 0.3s;
}
.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 8, 15, 0.08);
}
.session-card.nu {
  background: linear-gradient(160deg, var(--gold-pale) 0%, #fff 100%);
  border-color: rgba(184, 115, 51, 0.18);
}
.session-card.mo {
  background: linear-gradient(160deg, rgba(203, 65, 107, 0.06) 0%, #fff 100%);
  border-color: rgba(203, 65, 107, 0.14);
}
.session-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  position: relative;
}
.session-card.nu .session-card-icon {
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid rgba(184, 115, 51, 0.22);
}
.session-card.mo .session-card-icon {
  background: rgba(203, 65, 107, 0.1);
  border: 1px solid rgba(203, 65, 107, 0.2);
}
.session-card.nu .session-card-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}
.session-card.mo .session-card-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.75;
}
.session-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.session-card.nu .session-card-tag { color: #7A4C10; }
.session-card.mo .session-card-tag { color: var(--accent); }
.session-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}
.session-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-on-light-soft);
  font-weight: 400;
}

/* Soft transition dark → light sections */
.section-fade {
  height: 56px;
  background: linear-gradient(180deg, var(--canvas-dark-b) 0%, var(--bg2) 100%);
  pointer-events: none;
}
.section-fade--from-a {
  background: linear-gradient(180deg, var(--canvas-dark-a) 0%, var(--bg) 100%);
}
.section-fade--warm {
  height: 40px;
  background: linear-gradient(180deg, var(--canvas-dark-b) 0%, var(--canvas-dark-a) 100%);
}

/* ── SECTIONS ── */
section.pt { padding: 90px clamp(1.5rem, 4vw, 3rem); }
.wrap { max-width: var(--wrap); margin: 0 auto; }
.ey {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.11em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.ey::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.ey.pk { color: var(--accent); }
.ey.gd { color: var(--gold); }
.ey.wh { color: rgba(255,255,255,0.85); }
.ey.wh::before { background: var(--accent-mid); }
.sh {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500; line-height: 1.15; margin-bottom: 1rem;
  color: var(--dark-text);
}
.sh em { font-style: italic; color: var(--accent); }
.sh.wh { color: #fff; }
.sh.wh em { color: var(--light1); }
.sp {
  font-size: 16px;
  color: var(--text-on-light-soft);
  max-width: 56ch;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.sp.wh { color: var(--text-on-dark); }

.corp-s { background: var(--bg2); }
.jenny-s { background: var(--dark-s); }
.seg-s { background: var(--dark-s); position: relative; overflow: hidden; }
.seg-s::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 30%, rgba(218,120,150,0.06) 0%, transparent 60%);
}

.corp-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: end; margin-bottom: 3rem;
}

/* ── PILLARS (homepage colored cards) ── */
.pillars-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 2rem;
}
.pillar-card {
  border-radius: var(--rl); padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.pillar-card.nu { background: var(--gold-pale); border: 1px solid rgba(184,115,51,0.2); }
.pillar-card.mo { background: var(--bg); border: 1px solid var(--bd-accent); }
.pillar-card.me { background: var(--sage-pale); border: 1px solid rgba(92,140,106,0.2); }
.pill-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 1rem;
}
.nu .pill-label { background: rgba(184,115,51,0.12); color: #7A4C10; }
.mo .pill-label { background: rgba(203,65,107,0.1); color: var(--accent); }
.me .pill-label { background: rgba(92,140,106,0.12); color: #1B5E35; }
.pill-icon { font-size: 28px; display: block; margin-bottom: 1rem; }
.pill-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.nu .pill-title { color: #5A3410; }
.mo .pill-title { color: var(--accent); }
.me .pill-title { color: #1B5E35; }
.pill-desc { font-size: 13px; line-height: 1.65; font-weight: 300; margin-bottom: 1rem; }
.nu .pill-desc { color: rgba(90,52,16,0.6); }
.mo .pill-desc { color: rgba(150,40,80,0.6); }
.me .pill-desc { color: rgba(27,94,53,0.6); }
.pill-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ptag {
  font-size: 10px; padding: 3px 9px; border-radius: 100px;
  background: rgba(50,14,25,0.06); color: rgba(50,14,25,0.45); font-weight: 500;
}

/* ── PACKAGE CARDS ── */
.corp-svcs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 2rem;
}
.svc-mini {
  background: #fff; border: 1px solid var(--bd-dark);
  border-radius: var(--r); padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-mini:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.svc-mini.featured {
  border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent);
  position: relative;
}
.svc-mini.featured::before {
  content: "Phổ biến nhất"; position: absolute; top: -10px; right: 16px;
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.svc-mini-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; display: block;
}
.svc-mini-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--dark-text); margin-bottom: 4px;
}
.svc-mini-sub { font-size: 12px; color: rgba(50,14,25,0.42); margin-bottom: 0.75rem; }
.svc-mini-price {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--dark-text); margin-top: 0.5rem;
}
.svc-mini-price span { font-family: var(--font-body); font-size: 12px; color: rgba(50,14,25,0.4); }

/* ── PROCESS TIMELINE ── */
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-top: 2rem;
}
.process-timeline::before {
  content: ""; position: absolute; top: 28px; left: 12%; right: 12%;
  height: 1px; background: var(--light1); z-index: 0;
}
.process-step {
  text-align: center; padding: 0 1rem; position: relative; z-index: 1;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--accent);
}
.process-step h4 {
  font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.5rem;
}
.process-step p { font-size: 13px; color: var(--text-on-light-soft); line-height: 1.6; }

/* ── SEGMENT CARDS (dark, with image) ── */
.seg-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.seg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seg-card {
  border-radius: var(--rl); padding: 0;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.seg-card:hover { transform: translateY(-4px); border-color: rgba(218,120,150,0.25); }
.seg-img { width: 100%; height: 160px; object-fit: cover; }
.seg-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.seg-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--accent-mid); margin-bottom: 0.5rem; display: block;
}
.seg-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.seg-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500;
  color: #fff; margin-bottom: 4px;
}
.seg-subtitle { font-size: 12px; color: var(--accent-mid); margin-bottom: 0.75rem; }
.seg-desc { font-size: 13px; color: var(--text-on-dark); line-height: 1.65; flex: 1; }
.seg-features { margin-top: 1rem; }
.seg-features li {
  font-size: 12px; color: rgba(255,255,255,0.5); padding: 0.35rem 0 0.35rem 1rem;
  position: relative;
}
.seg-features li::before {
  content: ""; position: absolute; left: 0; top: 0.7rem;
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent-mid);
}

/* ── SPLIT SECTION (Jenny / network) ── */
.split-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 4rem;
  align-items: start; margin-top: 2.5rem;
}
.split-photo { position: relative; }
.split-photo img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--rl);
}
.split-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--dark-s2); border: 1px solid var(--bd-light);
  border-radius: var(--r); padding: 1rem 1.25rem;
}
.split-badge .lbl { font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.split-badge .val { font-family: var(--font-display); font-size: 18px; color: #fff; }
.split-info .role {
  font-size: 13px; font-weight: 600; color: var(--accent-mid);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem;
}
.split-info h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: #fff; margin-bottom: 1rem;
}
.split-info p { font-size: 15px; color: var(--text-on-dark); line-height: 1.85; margin-bottom: 1.5rem; }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cred-box {
  background: rgba(255,255,255,0.04); border: 1px solid var(--bd-light);
  border-radius: var(--r); padding: 1.25rem;
}
.cred-box .ico { font-size: 20px; margin-bottom: 0.5rem; }
.cred-box h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.cred-box p { font-size: 12px; color: rgba(255,255,255,0.32); line-height: 1.5; }

/* ── NETWORK FLOW ── */
.network-flow {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 2.5rem 0; text-align: center;
}
.flow-card {
  background: #fff; border-radius: var(--rl); padding: 2rem 1.5rem;
  border: 1px solid var(--light1); position: relative;
}
.flow-card::after {
  content: "→"; position: absolute; right: -1.1rem; top: 50%;
  transform: translateY(-50%); color: var(--accent-mid); font-size: 1.25rem;
}
.flow-card:last-child::after { display: none; }
.flow-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-family: var(--font-display); color: var(--accent);
}
.flow-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.flow-card p { font-size: 13px; color: var(--text-on-light-soft); }

/* ── EXPERT CARDS (editorial) ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0; }
.expert-filter-stack {
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.2rem 0.35rem;
  background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%);
  border-radius: var(--rl);
  border: 1px solid var(--light1);
}
.filter-tier--pillar { padding-bottom: 0.35rem; }
.filter-tier-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.25rem;
}
.filter-tier-bridge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-light-soft);
}
.filter-tier-bridge::before,
.filter-tier-bridge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light1);
}
.filter-tier--coaching {
  padding: 0.95rem 1rem 1.1rem;
  margin-bottom: 0.65rem;
  background: #fff;
  border-radius: var(--rs);
  border: 1px dashed rgba(30, 8, 15, 0.12);
}
.filter-tier--coaching .filter-group-hint { margin-top: 0; }
.filter-bar--pillar .filter-chip--pillar.nu.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.filter-bar--pillar .filter-chip--pillar.mo.is-active {
  background: var(--accent-mid);
  border-color: var(--accent-mid);
  color: #fff;
}
.filter-bar--pillar .filter-chip--pillar.me.is-active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.filter-bar--coaching .filter-chip.is-active {
  background: rgba(30, 8, 15, 0.88);
  border-color: rgba(30, 8, 15, 0.88);
  color: #fff;
}
.filter-group { margin-bottom: 1.25rem; }
.filter-group-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-on-light-soft);
  margin-bottom: 0.5rem;
}
.filter-group-hint {
  font-size: 12px; color: var(--text-on-light-soft);
  margin: 0 0 0.65rem;
}
.filter-group--coaching > summary.filter-group-label {
  cursor: pointer; list-style: none;
}
.filter-group--coaching > summary.filter-group-label::-webkit-details-marker { display: none; }
.filter-bar--coaching .filter-chip--coaching {
  font-size: 10px; padding: 6px 12px;
  text-transform: none; letter-spacing: 0.02em;
}
.filter-group--coaching { margin-bottom: 2rem; }
@media (max-width: 640px) {
  .filter-group--coaching:not([open]) .filter-bar--coaching { display: none; }
}
.filter-chip {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--light1); background: #fff; cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--accent-mid); color: var(--accent); }
.filter-chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.expert-card {
  background: #fff; border-radius: var(--rl); overflow: hidden;
  border: 1px solid var(--light1); box-shadow: var(--sh);
  transition: transform 0.25s, box-shadow 0.25s;
}
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.expert-card.is-hidden,
.expert-card.is-filtered-out { display: none; }
.expert-grid.is-filtering .expert-card:not(.is-filtered-out) {
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.expert-card.is-stagger-in {
  animation: expertCardIn 0.42s ease both;
}
@keyframes expertCardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.expert-card.pillar-tint--nourish { border-left: 3px solid var(--gold); }
.expert-card.pillar-tint--move { border-left: 3px solid var(--accent-mid); }
.expert-card.pillar-tint--restore { border-left: 3px solid var(--sage); }
.expert-card--teaser { position: relative; }
.expert-card--pending { opacity: 0.65; }
.expert-photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(145deg, var(--bg2), var(--light1));
}
.expert-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.expert-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--accent);
}
.expert-photo-placeholder .initials {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 500;
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,0.7); border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh);
}
.expert-photo-placeholder .pillar-icon { font-size: 1.5rem; opacity: 0.6; }
.expert-pillar-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 100px;
  background: rgba(30,8,15,0.75); color: #fff; backdrop-filter: blur(4px);
}
.expert-pillar-tag.nu { border-left: 3px solid var(--gold); }
.expert-pillar-tag.mo { border-left: 3px solid var(--accent-mid); }
.expert-pillar-tag.me { border-left: 3px solid var(--sage); }
.expert-body { padding: 1.25rem 1.5rem 1.5rem; }
.expert-body h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  margin-bottom: 0.35rem; line-height: 1.25;
}
.expert-meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent-mid); margin-bottom: 0.5rem;
}
.expert-spec {
  font-size: 11px; color: rgba(50,14,25,0.45); margin-bottom: 0.75rem; line-height: 1.5;
}
.expert-bio { font-size: 13px; color: var(--text-on-light); line-height: 1.65; }
.expert-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--bg2);
}
.expert-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
  background: var(--bg2); color: var(--accent);
}
.expert-city { font-size: 11px; color: var(--text-on-light-muted); }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--light1); border-radius: var(--rl); overflow: hidden;
  margin: 2rem 0;
}
.stats-strip-cell {
  background: #fff; padding: 1.5rem; text-align: center;
}
.stats-strip-cell .n {
  font-family: var(--font-display); font-size: 2rem; color: var(--accent); line-height: 1;
}
.stats-strip-cell .l { font-size: 11px; color: rgba(50,14,25,0.45); margin-top: 4px; }

/* ── FAQ ── */
.qa-grid { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; }
.qa-sidebar-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  line-height: 1.15; margin-bottom: 1rem;
}
.qa-sidebar-title em { font-style: italic; color: var(--accent); }
.qa-sidebar-desc { font-size: 14px; color: var(--text-on-light-soft); margin-bottom: 1.5rem; }
.qa-item { border-bottom: 1px solid var(--light1); padding: 1.25rem 0; }
.qa-item summary {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after { content: "+"; color: var(--accent); }
.qa-item[open] summary::after { content: "−"; }
.qa-item p { margin-top: 0.75rem; font-size: 14px; color: var(--text-on-light); line-height: 1.75; }

/* ── CONTACT ── */
.contact-s {
  text-align: center; padding: 90px clamp(1.5rem, 4vw, 3rem);
  background: var(--dark-s); color: #fff; position: relative; overflow: hidden;
}
.contact-s::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(203,65,107,0.15) 0%, transparent 55%);
}
.contact-s .wrap { position: relative; z-index: 1; }
.contact-tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-mid); margin-bottom: 1rem;
}
.contact-h {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500; color: #fff; margin-bottom: 1rem;
}
.contact-h em { font-style: italic; color: var(--light2); }
.contact-p { font-size: 15px; color: var(--text-on-dark); max-width: 48ch; margin: 0 auto 2rem; }
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 900px; margin: 2rem auto 0;
}
.contact-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--bd-light);
  border-radius: var(--rl); padding: 1.75rem; text-align: center;
}
.contact-card .cc-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-card h4 { font-size: 14px; margin-bottom: 0.35rem; }
.contact-card p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.btn-cc {
  display: inline-flex; padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
}
.btn-cc.pk { background: var(--accent); color: #fff; }
.btn-cc.wh { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }

/* ── FOOTER (sync homepage index) ── */
.site-footer {
  padding: 3rem clamp(1.5rem, 4vw, 3rem) 2rem;
  background: #080308;
  color: rgba(255, 255, 255, 0.55);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.ft-logo-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ft-logo-wrap img,
.ft-logo-mark,
.ft-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.ft-brand-wordmark {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.ft-brand-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  line-height: 1.65;
  text-align: center;
  margin: 0;
  max-width: 22rem;
}
.ft-ct {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.875rem;
}
.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-links li { padding: 4px 0; }
.ft-links a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--accent-mid); }
.footer-bottom {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark-text); color: #fff;
  padding: 15px 32px; border-radius: 100px; font-size: 15px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(50,14,25,0.2); transition: all 0.22s;
}
.btn-dark:hover { background: var(--dark-s); transform: translateY(-2px); }
.corp-cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { max-width: 440px; }
  .pillars-row, .corp-svcs, .seg-cards { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-timeline::before { display: none; }
  .flow-card::after { display: none; }
  .network-flow { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .qa-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .corp-header { grid-template-columns: 1fr; }
  .activities-strip { grid-template-columns: 1fr; }
  .session-cards { grid-template-columns: 1fr; }
  section.pt { padding: 70px 1.5rem; }
  .cred-grid { grid-template-columns: 1fr; }
}
