/* ============================================================
   ROCHA MEDIA CONSULTING — Site styles (v2)
   Palette: navy #1B2A3A · yellow #F2B731 · sky #3AB0E2
   ============================================================ */

:root {
  --navy: #1B2A3A;
  --navy-2: #243749;
  --navy-deep: #101820;
  --yellow: #F2B731;
  --yellow-hover: #DEA626;
  --sky: #3AB0E2;
  --sky-deep: #1F8AB8;
  --green: #1F8A5B;
  --red: #C0392B;
  --off-white: #F7F4EE;
  --off-white-2: #EFEBE1;
  --charcoal: #2A2F36;
  --mid-gray: #8A8F97;
  --light-gray: #D9D6CF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 1px 2px rgba(16,24,32,0.04), 0 8px 24px rgba(16,24,32,0.08);
  --shadow-lift: 0 4px 8px rgba(16,24,32,0.06), 0 16px 40px rgba(16,24,32,0.12);
  --shadow-mockup: 0 60px 120px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06) inset;

  --max-w: 1240px;
  --gutter: 32px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: 1360px; }
.container--narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.eyebrow.on-light { color: var(--charcoal); }
.eyebrow.on-light .accent { color: var(--yellow); }

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}
h2 { font-size: clamp(34px, 4.4vw, 56px); color: var(--navy); }
h3 { font-size: 22px; line-height: 1.3; }
p { margin: 0 0 16px; }

.section { padding: 60px 0; }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 32px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p {
  color: var(--mid-gray);
  font-size: 18px;
  margin-top: 8px;
  max-width: 640px;
}
.section--navy .section-head p { color: #B7BEC8; }
.section-head--center p { margin-left: auto; margin-right: auto; }

/* i18n: hide opposite language */
[lang-only="en"], [lang-only="pt"] { display: none; }
html[lang="en"] [lang-only="en"] { display: inline; }
html[lang="pt"] [lang-only="pt"] { display: inline; }
html[lang="en"] [lang-only="en"].block,
html[lang="pt"] [lang-only="pt"].block { display: block; }

/* ============================================================
   HEADER + NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-stuck {
  padding: 8px 0;
  background: rgba(27,42,58,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  height: 120px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}
.site-header.is-stuck .brand-logo { height: 76px; }
.brand--footer .brand-logo { height: 110px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  border: 2px solid var(--yellow);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.brand-mark::before {
  content: 'R';
  font-weight: 800;
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: -0.04em;
}
.brand-mark::after {
  content: '';
  position: absolute;
  right: 6px; bottom: 7px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--sky);
  border-top: 2px solid var(--sky);
  transform: rotate(45deg);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-weight: 800; color: #fff; font-size: 15px; letter-spacing: 0.02em; }
.brand-text .sub {
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex; align-items: center;
  gap: 32px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 15px; font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cluster { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  padding: 7px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch button.is-active {
  background: var(--yellow);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 20px; height: 2px; background: #fff;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: var(--navy);
  padding: 88px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-drawer a {
  color: #fff; font-size: 22px; font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-drawer .close {
  position: absolute; top: 22px; right: 22px;
  color: #fff;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}
.mobile-drawer .lang-switch { margin-top: auto; align-self: flex-start; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--navy); }
.btn-primary:hover { background: var(--yellow-hover); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--navy);
  color: #fff;
  padding: 168px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.hero::before { width: 480px; height: 480px; background: var(--yellow); right: -120px; top: 80px; }
.hero::after  { width: 360px; height: 360px; background: var(--sky); left: -180px; bottom: -120px; opacity: 0.18; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}
.hero h1 {
  font-size: clamp(44px, 6.2vw, 78px);
  color: #fff;
  margin-bottom: 24px;
}
.hero .lede {
  color: #B7BEC8;
  font-size: 20px;
  max-width: 420px;
  line-height: 1.55;
  margin-bottom: 36px;
  white-space: pre-line;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat .num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .label {
  display: block;
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 8px;
  line-height: 1.4;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #243749, #1B2A3A);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(circle at 60% 50%, rgba(242,183,49,0.25), transparent 60%);
  z-index: -1;
  border-radius: 100%;
}
.hero-photo img,
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* ---- cutout treatment: photo INSIDE yellow circle ---- */
.hero-photo--cutout {
  background: none;
  box-shadow: none;
  aspect-ratio: auto;
  height: 100%;
  min-height: 740px;
  padding-top: 0;
  margin-bottom: -56px;
  display: block;
  overflow: visible;
  position: relative;
}
.hero-photo--cutout::before { display: none; }
.hero-photo--cutout::after {
  /* ground shadow at the very base (hero bottom) */
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 420px;
  height: 32px;
  background: radial-gradient(ellipse 50% 60% at center, rgba(0,0,0,0.65), transparent 75%);
  filter: blur(12px);
  z-index: 3;
  pointer-events: none;
  border-radius: 50%;
}
.hero-photo-bg {
  position: absolute;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  top: 64px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 200px rgba(242, 183, 49, 0.5), inset 0 -40px 80px rgba(0,0,0,0.18);
  z-index: 1;
  overflow: hidden;
}
.hero-photo-bg img {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}
.hero-photo-ring {
  position: absolute;
  width: 158%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  top: 28px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  animation: hero-ring-spin 60s linear infinite;
  z-index: 0;
}
@keyframes hero-ring-spin { to { transform: translateX(-50%) rotate(360deg); } }

/* Vertical stats list on the LEFT side, fills the gap below the CTAs */
.hero-stats--vertical {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 0;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  margin-top: 4px;
  max-width: 520px;
}
.hero-stats--vertical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  border-radius: 2px;
}
.hero-stats--vertical .stat {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-top: 0;
}
.hero-stats--vertical .stat:last-child {
  border-bottom: none;
}
.hero-stats--vertical .stat .num {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
}
.hero-stats--vertical .stat .label {
  margin-top: 0;
  font-size: 13px;
  color: #B7BEC8;
}
.hero-photo-badge {
  position: absolute;
  bottom: 14%;
  right: 0;
  z-index: 4;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-photo-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 138, 91, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31, 138, 91, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(31, 138, 91, 0); }
}

.about-photo--cutout {
  background: none;
  box-shadow: none;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-photo-bg {
  position: absolute;
  inset: 8% 0 0 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy), var(--navy-2) 60%, #2D4862);
  overflow: hidden;
}
.about-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 12%, rgba(242,183,49,0.22), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(58,176,226,0.18), transparent 50%);
}
.about-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: overlay;
}
.about-photo--cutout img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.3));
}

/* Impact Minds — horizontal logo, give it more height than the others */
.logo-chip--impact {
  height: 84px;
  padding: 8px 14px;
}
.logo-chip--impact img {
  max-height: 100%;
  max-width: 100%;
  transform: none;
}

/* ============================================================
   INFO-DOT TOOLTIPS
   ============================================================ */
.info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(58,176,226,0.16);
  color: var(--sky-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  cursor: help;
  position: relative;
  margin-left: 6px;
  vertical-align: middle;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  border: none;
}
.info-dot:hover,
.info-dot:focus-visible,
.info-dot.is-open {
  background: var(--sky);
  color: #fff;
  transform: scale(1.1);
  outline: none;
}
.info-dot--on-dark {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.info-dot--on-dark:hover,
.info-dot--on-dark.is-open {
  background: var(--yellow);
  color: var(--navy);
}
.info-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 500;
  font-family: var(--font-sans);
  font-style: normal;
  width: 240px;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 40;
  pointer-events: none;
  white-space: normal;
}
.info-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: var(--navy-deep);
}
.info-tip.tip-below {
  bottom: auto;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-4px);
}
.info-tip.tip-below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--navy-deep);
}
.info-tip.tip-left {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(4px);
}
.info-tip.tip-left::after {
  left: auto;
  right: 6px;
  margin-left: 0;
}
.info-dot:hover .info-tip,
.info-dot:focus-visible .info-tip,
.info-dot.is-open .info-tip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.info-dot.is-open .info-tip.tip-below,
.info-dot:hover .info-tip.tip-below {
  transform: translateX(-50%) translateY(0);
}
.info-dot.is-open .info-tip.tip-left,
.info-dot:hover .info-tip.tip-left {
  transform: translateX(0) translateY(0);
}

/* dash-greeting h needs to be flex-aligned now that it contains an info-dot */
.dash-greeting .h {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.kpi-tile .lbl {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dash-card h5,
.brief-sect h5 {
  flex-wrap: wrap;
  gap: 4px;
}
.tp-card h6 {
  flex-wrap: wrap;
}

/* ============================================================
   TRUSTED BY
   ============================================================ */

.trusted {
  background: var(--off-white);
  padding: 56px 0;
  border-bottom: 1px solid rgba(27,42,58,0.06);
}
.trusted .label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 28px;
}
.logo-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.logo-chip {
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,42,58,0.04);
  transition: background 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  filter: grayscale(1);
  opacity: 0.7;
  padding: 8px 16px;
}
.logo-chip:hover {
  filter: grayscale(0);
  opacity: 1;
  background: rgba(242,183,49,0.1);
  transform: translateY(-2px);
}
.logo-chip img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(27,42,58,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(27,42,58,0.1);
}
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 18px;
}
.service-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--mid-gray); font-size: 15px; line-height: 1.6; margin: 0; }

/* ============================================================
   CLIENTS
   ============================================================ */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.client-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27,42,58,0.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.client-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.client-logo {
  height: 132px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(27,42,58,0.06);
  padding: 20px 28px;
  flex-shrink: 0;
}
.client-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.client-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.client-name {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.client-name .flag { font-size: 18px; }
.client-meta { font-size: 13px; color: var(--mid-gray); margin-bottom: 14px; font-weight: 500; }
.client-desc { font-size: 15px; color: var(--charcoal); margin-bottom: 20px; flex-grow: 1; }
.client-role {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(27,42,58,0.08);
  font-size: 14px;
  color: var(--navy);
}
.client-role .role-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 8px;
}
.client-role strong { font-weight: 800; }

/* ============================================================
   CASE STUDY / actcenter PRODUCT SECTION
   ============================================================ */

.case {
  background: var(--navy);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.case::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(58,176,226,0.16), transparent 60%);
  border-radius: 50%;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.case h2 { color: #fff; }
.case-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.case-intro .lede {
  color: #B7BEC8;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.case-intro .lede strong { color: #fff; font-weight: 700; }

.actcenter-wordmark {
  display: block;
  height: 64px;
  width: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 4px 24px rgba(0, 255, 136, 0.25));
}
.case-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.case-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: center;
}
.case-result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.case-result .big {
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  min-width: 96px;
  letter-spacing: -0.03em;
}
.case-result .copy { color: #fff; font-size: 14px; line-height: 1.45; }

/* ---- actcenter live embed ---- */
.actcenter-embed {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #1F3045, #162232);
  border-radius: 16px;
  padding: 12px 12px 0;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,136,0.08) inset;
}
.actcenter-embed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 8px 12px;
}
.actcenter-embed-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.actcenter-embed-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.actcenter-embed-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.actcenter-embed-url {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  flex: 1;
  max-width: 460px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.actcenter-embed-url .lock {
  color: #00FF88;
  font-size: 8px;
}
.actcenter-embed-open {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(242,183,49,0.1);
  border: 1px solid rgba(242,183,49,0.25);
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.actcenter-embed-open:hover {
  background: var(--yellow);
  color: var(--navy);
}
.actcenter-embed-frame-wrap {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 720px;
}
.actcenter-embed-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.actcenter-embed-foot {
  text-align: center;
  padding: 14px 16px 16px;
  margin: 0;
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* Dashboard showcase */
.dash-showcase {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}
.dash-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  margin-bottom: 24px;
}
.dash-tabs button {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dash-tabs button .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.dash-tabs button:hover { color: #fff; }
.dash-tabs button.is-active {
  background: var(--yellow);
  color: var(--navy);
}
.dash-tabs button.is-active .dot { opacity: 1; }

.browser-frame {
  background: linear-gradient(135deg, #1F3045, #162232);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-mockup);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px 14px;
}
.browser-chrome .dots {
  display: flex; gap: 6px;
}
.browser-chrome .dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.browser-chrome .url {
  flex: 1;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.browser-chrome .url .lock {
  width: 12px; height: 12px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.browser-viewport {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 660px;
}

/* === Dashboard internal layout (shared) === */
.dash-app {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 100%;
  min-height: 660px;
  font-size: 13px;
  color: var(--charcoal);
}
.dash-side {
  background: var(--navy);
  color: #fff;
  padding: 22px 18px;
  display: flex; flex-direction: column;
}
.dash-side .brand-mini {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.dash-side .brand-mini .square {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--yellow);
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--yellow);
}
.dash-side .mcc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  padding-left: 32px;
}
.dash-nav {
  display: flex; flex-direction: column; gap: 2px;
}
.dash-nav .grp {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 16px 10px 8px;
}
.dash-nav .item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  font-size: 13px;
  cursor: default;
}
.dash-nav .item .ico {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}
.dash-nav .item.active {
  background: rgba(242,183,49,0.14);
  color: var(--yellow);
}
.dash-nav .item.active .ico { background: var(--yellow); }
.dash-side .user-card {
  margin-top: auto;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 10px;
}
.dash-side .user-card .av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--sky));
  flex-shrink: 0;
}
.dash-side .user-card .nm { font-size: 12px; color: #fff; font-weight: 700; }
.dash-side .user-card .rl { font-size: 10px; color: rgba(255,255,255,0.5); }

.dash-main {
  padding: 28px 32px;
  overflow: hidden;
  background: #FAFAF8;
  display: flex; flex-direction: column;
  gap: 18px;
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-greeting .h {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.dash-greeting .sub {
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 2px;
}
.dash-topbar .actions { display: flex; gap: 8px; }
.dash-topbar .pill {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(58,176,226,0.12);
  color: var(--sky-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dash-topbar .pill.yellow {
  background: rgba(242,183,49,0.18);
  color: #8A5F00;
}

/* KPI tiles */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.kpi-tile {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.07);
  border-radius: 10px;
  padding: 12px 14px;
}
.kpi-tile .lbl {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 700;
}
.kpi-tile .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.kpi-tile .delta {
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--green);
}
.kpi-tile .delta.neg { color: var(--red); }
.kpi-tile .delta.flat { color: var(--mid-gray); }

/* 2-col block */
.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-card {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.07);
  border-radius: 10px;
  padding: 16px 18px;
}
.dash-card h5 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: flex; justify-content: space-between; align-items: center;
}
.dash-card h5 .sub-mini { font-weight: 500; color: var(--mid-gray); font-size: 10px; }

/* Health distribution bars */
.health-list { display: flex; flex-direction: column; gap: 10px; }
.health-row { display: flex; align-items: center; gap: 10px; }
.health-row .label { width: 64px; font-size: 11px; font-weight: 600; color: var(--charcoal); }
.health-row .track {
  flex: 1;
  height: 8px;
  background: rgba(27,42,58,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.health-row .fill { height: 100%; border-radius: 4px; }
.health-row .fill.healthy { background: var(--green); }
.health-row .fill.watch   { background: var(--yellow); }
.health-row .fill.ramp    { background: var(--sky); }
.health-row .fill.alert   { background: var(--red); }
.health-row .count {
  font-size: 11px; font-weight: 800; color: var(--navy);
  min-width: 22px; text-align: right;
}

/* tCPA grid */
.tcpa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tcpa-cell {
  background: var(--off-white);
  border-radius: 6px;
  padding: 8px 10px;
}
.tcpa-cell .ll { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-gray); font-weight: 700; }
.tcpa-cell .nn { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; margin-top: 2px; }
.tcpa-cell.HOLD     { background: rgba(138,143,151,0.08); }
.tcpa-cell.RAISE    { background: rgba(31,138,91,0.1); }
.tcpa-cell.LOWER    { background: rgba(58,176,226,0.1); }
.tcpa-cell.DIAGNOSE { background: rgba(242,183,49,0.14); }
.tcpa-cell.RISK     { background: rgba(192,57,43,0.1); }

/* Briefcase */
.brief-block {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.07);
  border-radius: 10px;
  padding: 16px 18px;
}
.brief-block h5 {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 8px;
  font-size: 12px; font-weight: 800; color: var(--navy);
  letter-spacing: 0.02em;
}
.brief-block .ai-pill {
  font-size: 9px;
  padding: 2px 6px;
  background: rgba(58,176,226,0.15);
  color: var(--sky-deep);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brief-block .tldr {
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 10px;
}
.movers-list { display: flex; flex-direction: column; gap: 6px; }
.mover {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--off-white);
  font-size: 11px;
}
.mover .nm { font-weight: 700; color: var(--navy); }
.mover .why { color: var(--mid-gray); font-size: 10px; }
.mover .shift {
  font-weight: 800;
  font-family: var(--font-mono);
  font-size: 11px;
}
.mover .shift.up { color: var(--green); }
.mover .shift.dn { color: var(--red); }

/* Account detail panel */
.acct-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.acct-crumb {
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.acct-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-top: 2px; }
.status-pill {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-pill.on-plan { background: rgba(31,138,91,0.16); color: var(--green); }
.status-pill.ramping { background: rgba(58,176,226,0.16); color: var(--sky-deep); }
.status-pill.watch   { background: rgba(242,183,49,0.2); color: #8A5F00; }

.cpa-chart {
  background: var(--off-white);
  border-radius: 10px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
}
.cpa-bucket { text-align: center; }
.cpa-bucket .w { font-size: 10px; color: var(--mid-gray); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cpa-bucket .bar-wrap {
  height: 64px;
  display: flex; flex-direction: column; justify-content: end;
  margin: 8px 0;
}
.cpa-bucket .bar {
  width: 100%;
  background: linear-gradient(180deg, var(--sky), var(--sky-deep));
  border-radius: 4px 4px 0 0;
  min-height: 4px;
}
.cpa-bucket .v {
  font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em;
}
.cpa-bucket .s { font-size: 9px; color: var(--mid-gray); }

.tp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tp-card {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.07);
  border-radius: 10px;
  padding: 14px 16px;
}
.tp-card h6 {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 800;
  display: flex; align-items: center; gap: 6px;
}
.tp-card h6 .pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.tp-card h6.win .pip { background: var(--green); }
.tp-card h6.hyp .pip { background: var(--sky); }
.tp-card h6.rec .pip { background: var(--yellow); }
.tp-card h6.ask .pip { background: var(--red); }
.tp-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.tp-card li {
  font-size: 11px;
  color: var(--charcoal);
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}
.tp-card li::before {
  content: '·';
  position: absolute;
  left: 4px; top: -2px;
  color: var(--mid-gray);
  font-weight: 700;
  font-size: 14px;
}

/* AI Brief view */
.brief-view {
  display: flex; flex-direction: column; gap: 14px;
}
.brief-view .tldr-card {
  background: linear-gradient(135deg, #1B2A3A, #243749);
  color: #fff;
  border-radius: 10px;
  padding: 16px 18px;
}
.brief-view .tldr-card .lbl {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 800;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.brief-view .tldr-card .tx { font-size: 13px; line-height: 1.5; color: #fff; }

.brief-sect {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.07);
  border-radius: 10px;
  padding: 14px 16px;
}
.brief-sect h5 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.brief-sect h5 .tag {
  font-size: 9px;
  background: var(--off-white);
  color: var(--mid-gray);
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.brief-sect ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.brief-sect .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 10px;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 11px;
}
.brief-sect .row .nm { font-weight: 700; color: var(--navy); }
.brief-sect .row .why { color: var(--mid-gray); font-size: 10px; line-height: 1.4; margin-top: 2px; }
.brief-sect .row .badge {
  font-size: 9px; padding: 3px 7px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}
.brief-sect .row .badge.up { background: rgba(31,138,91,0.16); color: var(--green); }
.brief-sect .row .badge.dn { background: rgba(192,57,43,0.16); color: var(--red); }
.brief-sect .row .badge.risk { background: rgba(192,57,43,0.16); color: var(--red); }
.brief-sect .row .badge.opp { background: rgba(31,138,91,0.16); color: var(--green); }

.brief-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 11px;
  color: var(--mid-gray);
}
.brief-cta button {
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 6px;
}

/* Account row table (portfolio bottom) */
.acct-table { background: #fff; border: 1px solid rgba(27,42,58,0.07); border-radius: 10px; overflow: hidden; }
.acct-table .head, .acct-table .row {
  display: grid;
  grid-template-columns: 2fr 0.9fr 0.9fr 0.9fr 0.9fr 0.7fr;
  gap: 12px;
  padding: 10px 16px;
  align-items: center;
}
.acct-table .head {
  background: var(--off-white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.acct-table .row {
  font-size: 11px;
  border-top: 1px solid rgba(27,42,58,0.06);
  color: var(--charcoal);
}
.acct-table .row .nm { font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.acct-table .row .vrt { font-size: 9px; color: var(--mid-gray); font-weight: 500; }
.acct-table .row .stat-pill {
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  justify-self: start;
}
.acct-table .row .stat-pill.HOLD { background: rgba(138,143,151,0.12); color: var(--charcoal); }
.acct-table .row .stat-pill.RAISE { background: rgba(31,138,91,0.16); color: var(--green); }
.acct-table .row .stat-pill.LOWER { background: rgba(58,176,226,0.16); color: var(--sky-deep); }
.acct-table .row .stat-pill.DIAGNOSE { background: rgba(242,183,49,0.2); color: #8A5F00; }
.acct-table .row .stat-pill.RISK { background: rgba(192,57,43,0.16); color: var(--red); }

/* Tab panel swap */
.dash-panel { display: none; height: 100%; }
.dash-panel.is-active { display: block; }

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white-2);
  box-shadow: var(--shadow-card);
}
.about-photo--framed { aspect-ratio: 3 / 4.6; }
.about-photo--framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-body h2 { margin-bottom: 16px; }
.about-body .eyebrow { margin-bottom: 12px; }
.about-body p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.about-body .linkedin-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

.about-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-card {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.06);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}
.about-card-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-card-title::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.about-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.about-list li {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
}
.about-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--yellow);
  transform: rotate(45deg);
}
.about-list li strong { color: var(--navy); font-weight: 800; }

.about-card .timeline { display: flex; flex-wrap: wrap; gap: 6px; }
.about-card .timeline span {
  padding: 6px 10px;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
}
.about-card .timeline span em {
  font-style: normal;
  color: var(--mid-gray);
  margin-left: 4px;
  font-weight: 500;
  font-size: 11px;
}
.about-card .cert-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.about-card .cert-list li {
  font-size: 13px;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.about-card .cert-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--yellow);
  font-weight: 800;
}

/* ============================================================
   PROCESS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(27,42,58,0.2) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-num {
  display: inline-block;
  font-size: 56px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--off-white-2);
  padding-right: 16px;
  margin-bottom: 20px;
}
.process-step h3 { color: var(--navy); font-size: 20px; margin-bottom: 8px; }
.process-step p { color: var(--mid-gray); font-size: 15px; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(27,42,58,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.testimonial .mark {
  font-size: 56px;
  line-height: 0.6;
  color: var(--yellow);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  font-weight: 800;
}
.testimonial .quote {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.55;
  flex-grow: 1;
}
.testimonial .person {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(27,42,58,0.08);
}
.testimonial .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--off-white-2);
  flex-shrink: 0;
}
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-meta .name { font-weight: 800; color: var(--navy); font-size: 15px; }
.person-meta .role { font-size: 13px; color: var(--mid-gray); }

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact h2 { color: #fff; margin-bottom: 16px; }
.contact .lede { color: #B7BEC8; font-size: 18px; max-width: 500px; margin-bottom: 40px; }

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #B7BEC8;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #fff;
  font-family: inherit; font-size: 15px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,0.1);
}
.field textarea { min-height: 110px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23F2B731' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}
.form .btn { justify-self: start; margin-top: 8px; }

.form-success {
  background: rgba(31,138,91,0.15);
  border: 1px solid rgba(31,138,91,0.4);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: #B6E8CB;
  font-size: 15px;
  display: none;
}
.form-success.is-visible { display: block; }

.contact-direct {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
}
.contact-direct h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-direct .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-direct .item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-direct .item:first-child { padding-top: 0; }
.contact-direct .item .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(242,183,49,0.1);
  color: var(--yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}
.contact-direct .item .lbl {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid-gray); margin-bottom: 2px;
}
.contact-direct .item .val {
  font-size: 15px; color: #fff; font-weight: 500; word-break: break-word;
}
.contact-direct a.val:hover { color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-deep);
  color: #B7BEC8;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-tag { font-size: 14px; color: var(--mid-gray); margin: 16px 0 0; max-width: 320px; }
.footer-col h5 {
  color: #fff; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 18px; font-weight: 800;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #B7BEC8; font-size: 15px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--mid-gray);
}

/* Cumorah specialty badge */
.client-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--yellow);
  background: rgba(242, 183, 49, 0.12);
  border: 1px solid rgba(242, 183, 49, 0.35);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.client-card .client-badge + .client-desc { margin-top: 0; }

/* v2 form actions row */
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-or {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.32);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero {
  background: var(--navy);
  color: #fff;
  padding: 168px 0 64px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  right: -120px; top: 80px;
  pointer-events: none;
}
.blog-hero h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  color: #fff;
  margin-bottom: 18px;
  max-width: 18ch;
}
.blog-hero .lede {
  color: #B7BEC8;
  font-size: 18px;
  max-width: 600px;
  line-height: 1.55;
}
.blog-resources-link {
  margin-top: 20px;
  font-size: 14px;
}
.blog-resources-link a {
  color: var(--yellow);
  font-weight: 700;
  border-bottom: 1px dotted rgba(242,183,49,0.5);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.blog-resources-link a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27,42,58,0.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.blog-card--featured {
  grid-column: span 2;
}
.blog-card-cover {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 18px;
  overflow: hidden;
}
.blog-card-cover--image { padding: 0; }
.blog-card-cover--image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.blog-card-cover--image .blog-tag { position: absolute; top: 16px; left: 16px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.blog-card--featured .blog-card-cover { aspect-ratio: 16 / 8; }
.blog-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}
.blog-cover-visual {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
}
.cover-glow {
  position: absolute;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.18);
  filter: blur(60px);
}
.cover-symbol {
  position: relative;
  font-size: 120px;
  color: rgba(0, 255, 136, 0.4);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.blog-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.blog-card-body h2,
.blog-card-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.blog-card-body h2 { font-size: 24px; line-height: 1.2; }
.blog-card-body h3 { font-size: 18px; line-height: 1.25; }
.blog-card-body p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.blog-readmore:hover { color: var(--yellow-hover); }
.blog-readmore .arrow { transition: transform 0.2s ease; }
.blog-readmore:hover .arrow { transform: translateX(3px); }

.blog-card--placeholder {
  background: var(--off-white-2);
  border: 1px dashed rgba(27,42,58,0.2);
  align-items: center;
  text-align: center;
  padding: 20px;
  justify-content: center;
}
.blog-card--placeholder:hover { transform: none; box-shadow: none; }
.placeholder-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(242, 183, 49, 0.2);
  color: var(--yellow-hover);
  display: grid; place-items: center;
  font-size: 26px; font-weight: 300;
  margin: 0 auto 14px;
}
.nav-links a.is-current { color: var(--yellow); }

@media (max-width: 960px) {
  .blog-hero { padding: 132px 0 48px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: span 2; grid-row: auto; }
  .blog-card--featured .blog-card-cover { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: auto; }
}

/* Blog post page */
.post {
  padding: 132px 0 80px;
  background: var(--off-white);
}
/* On post pages, header always has its solid background so it reads against off-white */
.post ~ * .site-header,
body:has(.post) .site-header {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 14px 0;
}
.post pre {
  background: var(--navy-deep);
  color: #B7BEC8;
  padding: 18px 22px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.55;
  margin: 24px 0;
  border-left: 3px solid var(--yellow);
}
.post pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
.post code {
  background: rgba(27,42,58,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: var(--font-mono);
  color: var(--navy);
}
.post-table-wrap { overflow-x: auto; margin: 24px 0; }
.post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.post-table thead {
  background: var(--navy);
  color: #fff;
  text-align: left;
}
.post-table th, .post-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(27,42,58,0.06);
}
.post-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.post-table tbody tr:last-child td { border-bottom: 0; }
.post-table tbody tr:hover { background: var(--off-white); }

.post-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.post-cta-box h3 { color: #fff; margin: 0; font-size: 20px; }
.post-cta-box p { color: #B7BEC8; margin: 0 0 8px; font-size: 15px; line-height: 1.55; }
.post-cta-box .btn + .btn { margin-left: 6px; }

.post-downloads {
  display: grid;
  gap: 10px;
  margin: 24px 0 32px;
}
.post-dl {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(27,42,58,0.08);
  border-radius: 10px;
  border-left: 3px solid var(--yellow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.post-dl:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-card);
  border-color: var(--yellow);
  border-left-color: var(--navy);
}
.post-dl-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(242,183,49,0.15);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.post-dl-body { display: flex; flex-direction: column; gap: 2px; }
.post-dl-body strong {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.post-dl-body em {
  font-style: normal;
  font-size: 12px;
  color: var(--mid-gray);
}
.post-dl-arrow {
  font-size: 18px;
  color: var(--mid-gray);
  text-align: center;
}
.post-dl:hover .post-dl-arrow { color: var(--navy); }

.lang-switch--post {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch--post a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  padding: 7px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.lang-switch--post a.is-active {
  background: var(--yellow);
  color: var(--navy);
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 32px;
  font-weight: 600;
  transition: color 0.15s;
}
.post-back:hover { color: var(--navy); }
.post-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(27,42,58,0.08);
}
.post-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.post-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.post-meta { font-size: 14px; color: var(--mid-gray); }
.post-body { font-size: 17px; line-height: 1.75; color: var(--charcoal); }
.post-body .post-lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.post-body h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 24px 24px; padding-left: 0; }
.post-body li { margin-bottom: 8px; line-height: 1.65; }
.post-body a {
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  font-weight: 600;
}
.post-body a:hover { color: var(--yellow-hover); }
.post-body strong { color: var(--navy); font-weight: 700; }
.post-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(242,183,49,0.06);
  border-radius: 0 8px 8px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
}
.post-body img {
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: var(--shadow-card);
}
.post-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(27,42,58,0.08);
}
.post-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  padding: 24px 28px;
  border-radius: 14px;
  border: 1px solid rgba(27,42,58,0.06);
}
.post-author-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white-2);
}
.post-author-photo img { width: 100%; height: 100%; object-fit: cover; }
.post-author-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.post-author-body p {
  font-size: 14px;
  color: var(--mid-gray);
  margin: 0 0 8px;
  line-height: 1.5;
}
.post-linkedin {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
}
@media (max-width: 560px) {
  .post { padding: 110px 0 56px; }
  .post-body { font-size: 16px; }
  .post-body .post-lede { font-size: 18px; }
  .post-body h2 { font-size: 22px; }
  .post-author { flex-direction: column; gap: 14px; }
}

/* Footer powered-by row */
.footer-poweredby {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid-gray);
}
.footer-actcenter-link {
  display: inline-flex;
  transition: opacity 0.2s ease;
}
.footer-actcenter-link img {
  height: 18px;
  width: auto;
  display: block;
  filter: brightness(1.1);
}
.footer-actcenter-link:hover { opacity: 0.7; }

/* ============================================================
   METHOD SECTION + Footer relationship line
   ============================================================ */
.method {
  padding: 80px 0;
  background: var(--off-white-2);
}
.method-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 20px;
  padding: 56px 64px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(16, 24, 32, 0.2);
}
.method-card::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  top: -120px; right: -100px;
  pointer-events: none;
}
.method-card .eyebrow.on-dark {
  color: var(--yellow);
  position: relative;
  margin-bottom: 14px;
}
.method-wordmark {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 0 20px;
  position: relative;
}
.method-card h2 {
  color: #fff;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.18;
  margin-bottom: 16px;
  max-width: 24ch;
  position: relative;
}
.method-card .method-body {
  color: #B7BEC8;
  font-size: 17px;
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 28px;
  position: relative;
}
.method-card .btn { position: relative; }
@media (max-width: 720px) {
  .method-card { padding: 40px 28px; }
  .method-card h2 { font-size: 24px; }
  .method-card .method-body { font-size: 16px; }
}
/* ============================================================
   DASHBOARDS CATALOG (inside Method section)
   ============================================================ */
.dashboards-catalog { margin-top: 64px; }
.dashboards-head { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.dashboards-head h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 10px 0 14px;
  line-height: 1.18;
}
.dashboards-head p { color: var(--mid-gray); font-size: 16px; line-height: 1.55; margin: 0; }
.dashboards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.dash-card {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.08);
  border-radius: var(--radius-md);
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.dash-card--live { border-top: 3px solid var(--yellow); }
.dash-card--live:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--yellow);
}
.dash-card--next {
  background: var(--off-white-2);
  border-style: dashed;
  border-color: rgba(27,42,58,0.18);
  opacity: 0.95;
}
.dash-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.dash-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--mid-gray);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.dash-card--live .dash-num { color: var(--yellow-hover); }
.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(31, 138, 91, 0.12);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
}
.dash-status .dash-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: dash-pulse 2s ease-in-out infinite;
}
@keyframes dash-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.dash-status--next {
  background: rgba(27,42,58,0.06);
  color: var(--mid-gray);
  padding: 4px 10px;
}
.dash-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.25;
}
.dash-purpose {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-hover);
  margin: 0 0 12px;
}
.dash-card--next .dash-purpose { color: var(--mid-gray); }
.dash-desc {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0 0 18px;
  flex-grow: 1;
}
.dash-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(27,42,58,0.06);
  margin-bottom: 14px;
}
.dash-meta-row {
  font-size: 12px;
  color: var(--charcoal);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dash-meta-row strong {
  color: var(--mid-gray);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 36px;
}
.dash-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.2s ease, color 0.15s ease;
}
.dash-card--live:hover .dash-cta { gap: 10px; color: var(--yellow-hover); }

.dash-modes {
  background: #fff;
  border: 1px solid rgba(27,42,58,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.dash-modes-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-align: center;
}
.dash-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dash-mode {
  background: var(--off-white);
  border: 1px solid rgba(27,42,58,0.08);
  border-radius: var(--radius-md);
  padding: 22px 24px 24px;
  position: relative;
}
.dash-mode--featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.dash-mode-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
}
.dash-mode--featured .dash-mode-num { color: var(--yellow); }
.dash-mode-tag {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 999px;
}
.dash-mode h5 {
  font-size: 17px;
  font-weight: 800;
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.dash-mode--featured h5 { color: #fff; }
.dash-mode p {
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0 0 14px;
}
.dash-mode--featured p { color: #B7BEC8; }
.dash-mode-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.dash-mode--featured .dash-mode-time { color: var(--yellow); }
@media (max-width: 960px) {
  .dashboards-grid { grid-template-columns: 1fr 1fr; }
  .dash-modes-grid { grid-template-columns: 1fr; }
  .dash-modes { padding: 28px 24px; }
}
@media (max-width: 560px) {
  .dashboards-grid { grid-template-columns: 1fr; }
}

.dash-coming-soon {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--off-white), var(--off-white-2));
  border: 1px dashed rgba(27, 42, 58, 0.18);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.dash-coming-soon-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 999px;
}
.dash-coming-soon-text {
  margin: 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
  max-width: 720px;
}

.footer-relationship {
  font-size: 14px;
  color: var(--mid-gray);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0 16px;
  line-height: 1.55;
  white-space: pre-line;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.wa-fab:hover {
  transform: translateY(-2px);
  background: #20BD5A;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.22);
}
.wa-fab svg { flex-shrink: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18)); }
.wa-fab-label { white-space: nowrap; }
@media (max-width: 560px) {
  .wa-fab { bottom: 16px; right: 16px; padding: 12px; gap: 0; }
  .wa-fab-label { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .dash-app { grid-template-columns: 200px 1fr; }
  .dash-kpis { grid-template-columns: repeat(3, 1fr); }
  .dash-kpis .kpi-tile:nth-child(n+4) { grid-column: span 1; }
}

@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero { padding: 132px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 360px; }
  .hero-photo--cutout { min-height: 540px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-stats--vertical { max-width: 100%; }
  .hero-stats--vertical .stat { grid-template-columns: 110px 1fr; gap: 18px; padding: 14px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .case-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .actcenter-embed-frame-wrap { height: 580px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { max-width: 360px; }
  .about-extras { grid-template-columns: 1fr; gap: 12px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .logo-bar { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  /* Dashboard: simplify on smaller screens */
  .dash-app { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-row { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: 1fr; }
  .acct-table .head, .acct-table .row {
    grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr;
  }
  .acct-table .row .col-pacing, .acct-table .head .col-pacing,
  .acct-table .row .col-status, .acct-table .head .col-status { display: none; }
  .browser-viewport { min-height: 580px; }
}

@media (max-width: 560px) {
  :root { --gutter: 22px; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 56px; }
  .hero .lede { font-size: 17px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .clients-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cert-list { grid-template-columns: 1fr; }
  .logo-bar { grid-template-columns: repeat(2, 1fr); }
  .dash-tabs { flex-wrap: wrap; }
  .dash-main { padding: 18px; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .browser-frame { padding: 8px; }
  .browser-viewport { min-height: 480px; }
}
