/*
Theme Name: VisionEthics
Theme URI: https://visionethics.com
Author: VisionEthics
Description: Custom theme for VisionEthics Advisory Services — governance, integrity and anti-corruption advisory.
Version: 1.0
Text Domain: visionethics
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --navy-dark: #123249;
  --navy: #17293b;
  --blue-deep: #14587e;
  --blue-primary: #1f7fc1;
  --blue-mid: #2f96cf;
  --blue-bright: #2aa3dd;
  --sky-light: #eaf6fb;
  --sky-pale: #f3f9fc;
  --text-body: #55636f;
  --text-muted: #7c8994;
  --white: #ffffff;
  --border: #e2e8ec;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 2px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-mid); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.bg-white { background: var(--white); }
.bg-pale { background: var(--sky-pale); }
.bg-sky {
  background:
    radial-gradient(120% 140% at 85% 0%, #cdeaf7 0%, #eaf6fb 45%, #ffffff 100%);
}
.bg-blue {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-deep) 100%);
  color: rgba(255,255,255,0.92);
}
.bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue h4 { color: #ffffff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-primary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue-primary);
}
.bg-blue .eyebrow { color: #d7ecf9; }
.bg-blue .eyebrow::before { background: #d7ecf9; }

.bg-navy-dark { background: var(--navy-dark); color: rgba(255,255,255,0.85); }
.bg-navy-dark h1, .bg-navy-dark h2, .bg-navy-dark h3, .bg-navy-dark h4 { color: #ffffff; }
.bg-navy-dark .eyebrow { color: #9fb4c4; }
.bg-navy-dark .eyebrow::before { background: #9fb4c4; }

.h-display { font-size: 40px; letter-spacing: -0.01em; }
.h-section { font-size: 30px; }
.lede { font-size: 17px; color: var(--text-body); max-width: 640px; }
.bg-blue .lede { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--blue-primary); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.bg-blue .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.bg-blue .btn-outline:hover { background: #fff; color: var(--blue-deep); }
.bg-blue .btn-primary { background: #ffffff; color: var(--blue-deep); }
.bg-blue .btn-primary:hover { background: #eaf6fb; }

.link-arrow { color: var(--blue-primary); font-weight: 600; font-size: 14px; }
.link-arrow:hover { text-decoration: underline; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--blue-primary); }
.logo-tagline { font-size: 10px; letter-spacing: 0.12em; color: var(--text-muted); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.main-nav a {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--blue-primary);
  border-bottom-color: var(--blue-primary);
}
.header-cta { margin-left: 8px; white-space: nowrap; }
.nav-cta-item { margin-left: 8px; }
.nav-cta-item a { padding: 13px 24px; font-size: 13px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid var(--border);
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 80px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: 46px; margin-bottom: 22px; }
.hero .lede { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: #fff;
  padding: 20px 26px;
  box-shadow: 0 20px 40px rgba(18,41,59,0.14);
  border-left: 4px solid var(--blue-primary);
}
.hero-badge .num { font-family: var(--font-serif); font-size: 28px; color: var(--navy); display: block; }
.hero-badge .label { font-size: 11px; letter-spacing: 0.06em; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-badge { left: 16px; bottom: -20px; }
}

/* =========================================================
   TWO COLUMN CONTENT / MEDIA
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split-media { position: relative; }
.video-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
}

.highlight-line {
  font-style: italic;
  color: var(--blue-deep);
  font-size: 18px;
  border-left: 3px solid var(--blue-primary);
  padding-left: 16px;
  margin: 24px 0;
}

/* Logo strip */
.logo-strip { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-strip-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-strip .eyebrow { margin: 0; white-space: nowrap; }
.logo-strip .eyebrow::before { display: none; }
.logo-list { display: flex; gap: 40px; flex-wrap: wrap; }
.logo-list span {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 16px;
  opacity: 0.75;
}

/* =========================================================
   CARD GRIDS
   ========================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 560px) {
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.issue-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px 26px;
  border-top: 3px solid var(--border);
}
.issue-card .num { font-family: var(--font-serif); font-size: 15px; color: var(--text-muted); }
.issue-card h3 { font-size: 19px; margin: 14px 0 10px; }
.issue-card p { font-size: 15px; margin-bottom: 16px; }
.issue-card--active {
  background: var(--blue-primary);
  border-top-color: #fff;
  color: rgba(255,255,255,0.9);
}
.issue-card--active .num,
.issue-card--active h3 { color: #fff; }
.issue-card--active .link-arrow { color: #fff; text-decoration: underline; }

.value-card .num {
  font-family: var(--font-serif);
  font-size: 46px;
  color: #dbe6ec;
  display: block;
  margin-bottom: 10px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 15px; }

.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   ETIKALY FEATURE
   ========================================================= */
.etikaly-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.capability-stack h3 { color: #fff; font-size: 17px; letter-spacing: 0.02em; margin: 22px 0 8px; }
.capability-stack h3:first-child { margin-top: 8px; }
.capability-stack p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }

.dashboard-mock {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.dm-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dm-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.dm-titlebar-label { margin-left: 10px; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; }
.dashboard-mock .dm-stats { display: flex; justify-content: space-between; padding: 24px 28px; margin-bottom: 0; }
.dashboard-mock .dm-stats div { text-align: center; }
.dashboard-mock .dm-stats strong { display: block; font-family: var(--font-serif); font-size: 26px; }
.dashboard-mock .dm-stats span { font-size: 11px; color: #9fb4c4; }
.dm-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.dm-status { font-size: 11px; padding: 3px 10px; border-radius: 20px; }
.dm-status.complete { background: rgba(70,200,140,0.2); color: #7fe0b6; }
.dm-status.progress { background: rgba(255,196,80,0.2); color: #ffd479; }
.dm-status.attention { background: rgba(255,110,110,0.2); color: #ff9c9c; }

.bg-blue-light { background: linear-gradient(135deg, #3ba7de 0%, var(--blue-primary) 100%); border-top: 1px solid rgba(255,255,255,0.2); }
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-strip strong { display: block; font-family: var(--font-serif); font-size: 40px; color: #fff; }
.stat-strip span { font-size: 12px; letter-spacing: 0.06em; color: #d7ecf9; display: block; margin-top: 6px; }
.stat-strip em { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: rgba(255,255,255,0.65); }

.btn-muted { background: rgba(255,255,255,0.18); color: #fff; }
.btn-muted:hover { background: rgba(255,255,255,0.3); }
.btn-muted-light { background: #fff; color: var(--blue-deep); }
.btn-muted-light:hover { background: #eaf6fb; }

@media (max-width: 900px) {
  .etikaly-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); gap: 32px; }
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.step-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-item {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-primary);
  padding: 26px 24px;
}
.step-item .step-num { font-size: 12px; color: var(--blue-primary); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 10px; display: block; }
.step-item h3 { font-size: 19px; margin-bottom: 8px; }
.step-item p { font-size: 14px; }

@media (max-width: 900px) {
  .step-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
}

@media (max-width: 900px) {
  .step-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
}

/* Quote banner */
.quote-banner { text-align: center; padding: 96px 0; position: relative; overflow: hidden; }
.quote-banner .quote-mark {
  position: absolute;
  top: 20px; left: 5%;
  font-family: var(--font-serif);
  font-size: 160px;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  pointer-events: none;
  user-select: none;
}
.quote-banner cite { font-style: normal; font-size: 13px; letter-spacing: 0.05em; color: #cfe8f7; display: block; }
.quote-banner cite .cite-names { display: block; margin-top: 4px; opacity: 0.85; }
.quote-banner blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.4;
}

/* Who we work with */
.who-list { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.who-list:last-child { border-bottom: none; }
.who-list::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-note { font-style: italic; color: var(--blue-deep); margin-top: 24px; font-size: 15px; }

/* Insights preview */
.featured-series {
  border-left: 4px solid var(--blue-primary);
  background: var(--sky-light);
  padding: 40px;
  margin-bottom: 48px;
}
.pill {
  display: inline-block;
  background: var(--blue-primary);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.article-card { background: #fff; border: 1px solid var(--border); }
.article-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.article-card .article-body { padding: 22px; }
.article-meta { font-size: 12px; color: var(--blue-primary); letter-spacing: 0.04em; margin-bottom: 10px; }
.article-card h3 { font-size: 18px; margin-bottom: 10px; }
.article-card p { font-size: 14px; margin-bottom: 14px; }

/* CTA banner */
.cta-banner { padding: 76px 0; }
.cta-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 32px; max-width: 620px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.85);
  padding-top: 72px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-grid-5 { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; }
.footer-grid h4 { color: #fff; font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-logo { font-family: var(--font-serif); font-size: 22px; color: #fff; margin-bottom: 4px; display: block; }
.footer-tagline { font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); display: block; margin-bottom: 14px; }
.footer-grid p { font-size: 14px; line-height: 1.7; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { opacity: 0.95; color: rgba(255,255,255,0.9); }
.footer-bottom a:hover { opacity: 1; color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .h-display { font-size: 34px; }
}

/* =========================================================
   INNER PAGE ADDITIONS (About, Services, Service Detail,
   ETIKALY, Insights, Contact)
   ========================================================= */

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--blue-primary); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero { padding: 64px 0 56px; }
.page-hero h1 { font-size: 38px; max-width: 760px; }
.page-hero .lede { margin-top: 16px; }

/* Leadership cards */
.leader-photo-wrap {
  position: relative;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80%; /* CSS quirk to get right: padding-bottom percentages are calculated against the PARENT's width, not this element's own width. At width:100% those are the same number, which is what made the original 133.333% figure "just work" — but now that width is 60% (not 100%), the two diverge, so the percentage has to be scaled down to match: 60% × (4/3) = 80%, which produces a box that's 60% as wide as the card and still keeps the exact same 3:4 (w:h) shape. */
  overflow: hidden;
  border-bottom: 3px solid var(--blue-primary);
  margin-bottom: 18px;
  box-sizing: border-box;
}
.leader-photo-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.leader-photo-placeholder {
  aspect-ratio: 3/4;
  background: #eef4f8;
  border: 1px dashed #b9cddb;
  border-bottom: 3px solid var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c8994;
  font-size: 13px;
  text-align: center;
  padding: 16px;
  margin-bottom: 18px;
  box-sizing: border-box;
}
.leader-card { max-width: 240px; margin-left: auto; margin-right: auto; width: 100%; }
.leader-card .role-label { font-size: 12px; letter-spacing: 0.05em; color: var(--blue-primary); font-weight: 600; margin-bottom: 6px; display: block; }
.leader-card h3 { font-size: 20px; margin-bottom: 10px; }
.leader-card p { font-size: 14px; }

/* Service directory cards */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-primary);
  padding: 30px 26px;
}
.service-card .num-badge {
  display: inline-block;
  background: var(--sky-light);
  color: var(--blue-primary);
  font-family: var(--font-serif);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 18px;
  font-weight: 700;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 15px; margin-bottom: 18px; }

/* Service detail: two-column layout with sticky TOC */
.svc-layout { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }
.svc-toc { position: sticky; top: 100px; }
.svc-toc .toc-label { font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 14px; }
.svc-toc a {
  display: block;
  font-size: 14px;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.svc-toc a:hover, .svc-toc a.is-active { color: var(--blue-primary); }
.svc-body h2 { font-size: 30px; margin-bottom: 18px; }
.svc-section { margin-top: 40px; }
.svc-section h3 {
  font-size: 20px;
  border-left: 3px solid var(--blue-primary);
  padding-left: 14px;
  margin-bottom: 14px;
}
.svc-section ul { margin: 0; }
.svc-section ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.svc-section ul li::before { content: "—"; color: var(--blue-primary); flex-shrink: 0; }
.svc-section.boundary p { font-style: italic; color: var(--text-muted); }

@media (max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-toc { position: static; display: none; }
}

/* ETIKALY page */
.workflow-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.workflow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-primary);
  padding: 24px 20px;
}
.workflow-step .num { font-size: 12px; color: var(--blue-primary); font-weight: 700; }
.workflow-step h3 { font-size: 17px; margin: 10px 0 8px; }
.workflow-step p { font-size: 13px; }

.audience-card { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.audience-letter {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--blue-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
}
.audience-card h3 { font-size: 17px; margin-bottom: 6px; }
.audience-card p { font-size: 14px; margin: 0; }

.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 26px 24px;
}
.module-card .num-badge {
  display: inline-block;
  background: var(--sky-light);
  color: var(--blue-primary);
  font-family: var(--font-serif);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-weight: 700;
  font-size: 14px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.module-card h3 { font-size: 17px; margin-bottom: 10px; }
.module-card .module-body { font-size: 13px; color: var(--text-body); }
.module-card .module-body strong { color: var(--navy); }

@media (max-width: 1000px) {
  .workflow-strip { grid-template-columns: repeat(2,1fr); }
}

/* Insights */
.event-card { background: #fff; border: 1px solid var(--border); }
.event-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.event-card .event-body { padding: 22px; }
.event-meta { font-size: 12px; color: var(--blue-primary); letter-spacing: 0.04em; margin-bottom: 10px; }
.event-card h3 { font-size: 18px; margin-bottom: 10px; }
.event-card p { font-size: 14px; margin-bottom: 14px; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-detail { padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-detail .label { font-size: 12px; letter-spacing: 0.05em; color: var(--blue-primary); font-weight: 600; margin-bottom: 8px; display: block; }
.contact-detail p { font-size: 15px; margin: 0; }

.contact-form-panel {
  background: var(--sky-pale);
  border-top: 3px solid var(--blue-primary);
  padding: 40px;
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 12px; letter-spacing: 0.04em; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}
.form-field textarea { resize: vertical; }
.form-submit {
  width: 100%;
  border: none;
  background: var(--blue-primary);
  color: #fff;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-submit:hover { background: var(--blue-deep); }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; }
.btn-demo-outline {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--blue-primary);
  background: #fff;
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.btn-demo-outline:hover { background: var(--sky-light); }
.form-success {
  background: #e7f7ee;
  border-left: 4px solid #2fa572;
  padding: 20px 24px;
  color: #1f6f4d;
  font-size: 15px;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   WHATSAPP FLOAT / CONSENT BANNER / SOCIAL ICONS
   ========================================================= */
.ve-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.15s ease;
}
.ve-whatsapp-float:hover { transform: scale(1.08); }

.ve-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 18px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.ve-consent-banner a { color: #bfe6f8; text-decoration: underline; }
.ve-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ve-consent-actions .btn { padding: 10px 18px; }

.social-icons { display: flex; gap: 16px; margin-top: 14px; }
.social-icon {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px;
  border-radius: 20px;
}
.social-icon:hover { color: #fff; border-color: #fff; }

/* PDPA consent checkbox on forms */
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: 13px; color: var(--text-body); }
.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--blue-primary); text-decoration: underline; }

/* Legal page prose */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 24px; margin-top: 40px; }
.legal-content p, .legal-content li { font-size: 16px; line-height: 1.7; }
.legal-pending {
  background: #fff7e6;
  border-left: 4px solid #e0a326;
  padding: 16px 20px;
  font-size: 14px;
  color: #7a5a12;
  margin-bottom: 32px;
}

/* Our Value section (About) */
.value-panel { padding: 26px 0; border-bottom: 1px solid var(--border); }
.value-panel:last-child { border-bottom: none; }
.value-panel .num { font-family: var(--font-serif); font-size: 22px; color: var(--blue-primary); margin-right: 10px; }
.value-panel h3 { display: inline; font-size: 19px; }
.value-panel p { margin-top: 10px; font-size: 15px; }

/* ETIKALY two-capability blocks */
.capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 32px 0; }
.capability-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); padding: 28px; }
.capability-card h3 { font-size: 19px; margin-bottom: 10px; }
.capability-card p { font-size: 15px; margin: 0; }
@media (max-width: 900px) { .capability-grid { grid-template-columns: 1fr; } }

.module-body .accountability-line { font-style: italic; color: var(--blue-primary); }


/* =========================================================
   MAIN NAV + MOBILE MENU (simple — no dropdown)
   ========================================================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta-item { margin-left: 8px; }
.nav-cta-item a { padding: 13px 24px; font-size: 13px; }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .site-logo   { order: 1; }
  .nav-toggle  { order: 2; display: flex; }
  .main-nav    { order: 3; display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--border);
  }
  .site-header.nav-open .main-nav li {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .site-header.nav-open .main-nav li a { font-size: 16px; padding: 4px 0; }

  .site-header.nav-open .nav-cta-item { border-bottom: none; margin: 8px 0 0; margin-left: 0; }
  .site-header.nav-open .nav-cta-item a { display: flex; justify-content: center; padding: 15px; }
}

/* Specialist Network — sits inside the same section as the leadership grid */
.specialist-network { margin-top: 48px; }
.specialist-network h3 { font-size: 20px; margin-bottom: 12px; }

/* Our Value cards — light blue fill (About page) */
.value-card-blue {
  background: var(--sky-light);
  padding: 30px 26px;
}
.value-card-blue .num { font-family: var(--font-serif); font-size: 15px; color: var(--blue-primary); }
.value-card-blue h3 { font-size: 19px; margin: 14px 0 10px; }
.value-card-blue p { font-size: 15px; margin-bottom: 0; }

/* Sitemap page — card-style categorized layout */
.sitemap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-primary);
  padding: 28px 26px;
}
.sitemap-card h3 { font-size: 18px; margin-bottom: 14px; }
.sitemap-links li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sitemap-links li:last-child { border-bottom: none; }
.sitemap-links .link-arrow { font-weight: 500; }

/* Experience page — environment grid, dark checklist, purpose list */
.who-list-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.check-list-dark { list-style: none; padding: 0; margin: 0; }
.check-list-dark li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.check-list-dark li::before { content: "✓"; color: var(--blue-primary); font-weight: 700; flex-shrink: 0; }
.check-list-dark li:last-child { border-bottom: none; }
.purpose-list { list-style: none; padding: 0; margin: 20px 0; }
.purpose-list li { font-size: 17px; padding: 8px 0; color: var(--navy); }

/* Homepage — Our People collage */
.people-collage { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.people-collage-item { text-align: center; }
.people-collage-item .leader-photo-wrap { margin-bottom: 10px; }
.people-collage-item h3 { font-size: 14px; margin-bottom: 4px; }
.people-collage-item p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 900px) {
  .people-collage { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .people-collage { grid-template-columns: repeat(2, 1fr); }
}

/* ETIKALY homepage — Built for the CIO callout */
.cio-callout { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); }
.cio-callout h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.cio-callout p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 10px; }
.cio-callout .cio-tagline { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 0; }
