/* pages.css — sub-page specific styles for v1 */

/* page-hero is a quieter hero for sub-pages */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--color-paper) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(0, 174, 199, 0.10), transparent 65%),
    radial-gradient(40% 40% at 10% 90%, rgba(217, 88, 42, 0.07), transparent 60%);
  pointer-events: none;
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--color-navy);
  margin: 16px 0 24px;
  max-width: 22ch;
}
.product-hero h1 { font-size: clamp(32px, 4vw, 58px); letter-spacing: -1.5px; max-width: 26ch; font-weight: 600; }
.page-hero h1 .grad {
  background: var(--gradient-trust);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline;
}
.page-hero .lede { max-width: 64ch; margin-bottom: 28px; font-size: 19px; line-height: 1.55; color: #0E1419; }
.page-hero .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.section-paper { background: var(--color-paper); }

.h-section {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05; letter-spacing: -1.5px;
  color: var(--color-navy); margin: 12px 0 20px;
}
.h-section .grad, .h-section .grad-velocity, .h-section .grad-edge {
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.h-section .grad { background-image: var(--gradient-trust); -webkit-background-clip: text; background-clip: text; }
.h-section .grad-velocity { background-image: var(--gradient-velocity); -webkit-background-clip: text; background-clip: text; }
.h-section .grad-edge { background-image: var(--gradient-edge); -webkit-background-clip: text; background-clip: text; }

/* Active nav state */
.nav-links a.is-active { color: var(--color-navy); font-weight: 600; }

/* ============================================================
   PRODUCT — Engine cards
   ============================================================ */
.engine-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.engine-card {
  background: #fff;
  border: 1px solid rgba(0, 48, 87, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: transform 200ms, box-shadow 200ms;
}
.engine-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0, 26, 51, 0.10); }
.engine-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.engine-icon svg { width: 24px; height: 24px; stroke-linecap: round; stroke-linejoin: round; }
.engine-icon.orange { background: rgba(217,88,42,0.12); color: var(--color-orange); }
.engine-icon.cyan   { background: rgba(0,174,199,0.14); color: var(--color-cyan); }
.engine-icon.yellow { background: rgba(240,179,35,0.16); color: var(--color-yellow); }
.engine-icon.navy   { background: rgba(0,48,87,0.10); color: var(--color-navy); }
.engine-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--color-navy); margin: 0 0 10px; letter-spacing: -0.5px; }
.engine-card p  { color: #0E1419; line-height: 1.55; margin: 0; }

@media (max-width: 720px) { .engine-row { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — numbered steps
   ============================================================ */
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.process-steps li {
  display: flex; gap: 24px;
  padding: 28px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 48, 87, 0.06);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-cyan);
  font-weight: 600;
  letter-spacing: 1px;
  flex-shrink: 0;
  min-width: 36px;
}
.process-steps h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--color-navy); margin: 0 0 8px; }
.process-steps p { color: #0E1419; line-height: 1.55; margin: 0; }

@media (max-width: 720px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNERSHIP grid
   ============================================================ */
.partnership-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.partnership-list { list-style: none; padding: 0; margin: 28px 0 36px; }
.partnership-list li { padding: 14px 0; border-bottom: 1px solid rgba(0, 48, 87, 0.08); color: #0E1419; }
.partnership-list li strong { color: var(--color-navy); margin-right: 6px; }
.partnership-stat-card {
  display: grid; gap: 16px;
  padding: 36px;
  background: var(--gradient-trust);
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,48,87,0.18);
}
.ps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ps-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 48px; line-height: 1; letter-spacing: -1.5px; }
.ps-stat .l { font-size: 13px; opacity: 0.85; margin-top: 6px; }

@media (max-width: 980px) { .partnership-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   SOLUTIONS — alternating blocks
   ============================================================ */
.solution-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
}
.solution-grid.reverse > div:first-child { order: 2; }
.solution-grid.reverse > div:last-child  { order: 1; }
.solution-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.solution-icon svg { width: 28px; height: 28px; stroke-linecap: round; stroke-linejoin: round; }
.solution-icon.tone-orange { background: rgba(217,88,42,0.12); color: var(--color-orange); }
.solution-icon.tone-cyan   { background: rgba(0,174,199,0.14); color: var(--color-cyan); }
.solution-icon.tone-yellow { background: rgba(240,179,35,0.16); color: var(--color-yellow); }
.solution-icon.tone-navy   { background: rgba(0,48,87,0.10); color: var(--color-navy); }

.solution-bullets { list-style: none; padding: 0; margin: 24px 0 0; }
.solution-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 0; color: var(--color-navy); line-height: 1.5;
}
.b-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-cyan); margin-top: 8px; flex-shrink: 0; }

.solution-card {
  border-radius: 28px;
  padding: 60px 48px;
  display: grid; place-items: center;
  text-align: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.solution-photo { border-radius: 28px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.18); aspect-ratio: 16/11; }
.solution-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-photo { border-radius: 24px; overflow: hidden; margin: 32px 0 56px; box-shadow: 0 30px 80px rgba(0,0,0,0.14); }
.section-photo img { width: 100%; display: block; }

/* Engine flow diagram, replaces the section photo on Product page */
.engine-flow-diagram {
  position: relative;
  margin: 8px 0 64px;
  padding: 24px 32px 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-paper, #F4F6FA) 100%),
    repeating-linear-gradient(0deg, rgba(0,48,87,0.04) 0 1px, transparent 1px 24px);
  background-blend-mode: normal, multiply;
  border: 1px solid rgba(0, 48, 87, 0.10);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 48px -28px rgba(0,48,87,0.18);
  overflow: hidden;
}
.engine-flow-diagram::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,48,87,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,48,87,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.engine-flow-diagram > * { position: relative; }
.efd-stage-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-cyan, #00AEC7);
  margin-bottom: 18px;
  padding: 4px 10px;
  background: rgba(0, 174, 199, 0.08);
  border: 1px solid rgba(0, 174, 199, 0.18);
  border-radius: 999px;
}
.efd-stage-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 3px rgba(43,182,115,0.18);
  animation: efd-blink 2s ease-in-out infinite;
}
@keyframes efd-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.efd-row {
  display: flex; align-items: stretch; justify-content: space-between;
  gap: 10px;
}
.efd-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  padding: 10px 8px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,48,87,0.06);
  border-radius: 14px;
}
.efd-meta {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-gray, #5B6878);
}
.efd-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(0,48,87,0.20);
}
.efd-dot svg { width: 26px; height: 26px; }
.efd-dot.orange { background: rgba(232, 90, 0, 0.12); color: var(--color-orange, #E85A00); }
.efd-dot.cyan   { background: rgba(0, 174, 199, 0.14); color: var(--color-cyan, #00AEC7); }
.efd-dot.yellow { background: rgba(240, 179, 35, 0.16); color: #C58A00; }
.efd-dot.navy   { background: rgba(14, 47, 90, 0.10); color: var(--color-navy, #0E2F5A); }
.efd-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: var(--color-navy, #0E2F5A);
}
.efd-stat {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.04em;
  color: var(--color-gray, #5B6878);
  text-align: center;
  max-width: 18ch;
}
.efd-link {
  flex: 0 0 auto;
  align-self: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  min-width: 56px;
  color: var(--color-gray, #5B6878);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
}
.efd-pulse {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, rgba(0,48,87,0.10), rgba(0,174,199,0.45) 50%, rgba(0,48,87,0.10));
  background-size: 200% 100%;
  background-position: -100% 0;
  border-radius: 1px;
  animation: efd-flow 2.4s linear infinite;
}
.efd-pulse.delay-1 { animation-delay: 0.6s; }
.efd-pulse.delay-2 { animation-delay: 1.2s; }
@keyframes efd-flow {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.efd-footer {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,48,87,0.12);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--color-gray, #5B6878);
}
.efd-footer b { color: var(--color-navy, #0E2F5A); font-weight: 700; }
.efd-divider {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-cyan, #00AEC7); opacity: 0.5;
}
@media (max-width: 720px) {
  .efd-row { flex-wrap: wrap; }
  .efd-link { display: none; }
  .efd-step { flex: 1 1 calc(50% - 10px); }
  .efd-footer { flex-wrap: wrap; }
}

/* Process timeline, replaces section photo on Process step */
.process-timeline {
  position: relative;
  margin: 8px 0 56px;
  padding: 24px 36px 28px;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-paper, #F4F6FA) 100%);
  border: 1px solid rgba(0, 48, 87, 0.10);
  border-radius: 18px;
  overflow: hidden;
}
.pt-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,48,87,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,48,87,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.process-timeline > * { position: relative; }
.pt-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.pt-bar-label {
  color: var(--color-cyan, #00AEC7);
  padding: 4px 10px;
  background: rgba(0, 174, 199, 0.08);
  border: 1px solid rgba(0, 174, 199, 0.18);
  border-radius: 999px;
}
.pt-bar-meta { color: var(--color-gray, #5B6878); }
.pt-track {
  position: relative;
  height: 36px;
  margin-bottom: 14px;
}
.pt-rule {
  position: absolute; left: 24px; right: 24px; top: 50%;
  height: 2px;
  background: rgba(0,48,87,0.12);
  transform: translateY(-50%);
}
.pt-rule-fill {
  position: absolute; left: 24px; top: 50%;
  height: 2px;
  width: calc(75% - 24px);
  background: linear-gradient(90deg, var(--color-cyan, #00AEC7), var(--color-navy, #0E2F5A));
  transform: translateY(-50%);
}
.pt-tick {
  position: absolute; top: 50%;
  width: 1px; height: 8px;
  background: rgba(0,48,87,0.2);
  transform: translate(-50%, -50%);
}
.pt-track .pt-dot {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-cyan, #00AEC7);
  color: var(--color-navy, #0E2F5A);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 10px -4px rgba(0,48,87,0.18);
}
.pt-track .pt-dot:nth-of-type(1) { left: 12.5%; }
.pt-track .pt-dot:nth-of-type(2) { left: 37.5%; }
.pt-track .pt-dot:nth-of-type(3) { left: 62.5%; }
.pt-track .pt-dot:nth-of-type(4) { left: 87.5%; }
.pt-track .pt-dot-end {
  background: var(--gradient-trust, linear-gradient(135deg, #0E2F5A, #00AEC7));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px -6px rgba(0,174,199,0.5);
}
.pt-labels {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 12px;
}
.pt-week {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--color-cyan, #00AEC7);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pt-label {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: var(--color-navy, #0E2F5A);
}
.pt-sub {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.04em;
  color: var(--color-gray, #5B6878);
  margin-top: 2px;
}
@media (max-width: 720px) {
  .process-timeline { padding: 20px 16px 22px; }
  .pt-label { font-size: 13px; }
  .pt-week, .pt-sub { font-size: 10px; }
}
.about-photo { border-radius: 28px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.18); aspect-ratio: 4/3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.solution-card.tone-orange { background: linear-gradient(145deg, #DC582A, #b04420); color: #fff; }
.solution-card.tone-cyan   { background: linear-gradient(145deg, #00AEC7, #0a7a8a); color: #fff; }
.solution-card.tone-yellow { background: linear-gradient(145deg, #F0B323, #DC582A); color: #fff; }
.solution-card.tone-navy   { background: linear-gradient(145deg, #003057, #001a33); color: #fff; }
.sc-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 96px; line-height: 1; letter-spacing: -3px; }
.sc-stat .l { font-size: 16px; opacity: 0.9; margin-top: 14px; max-width: 22ch; margin-left: auto; margin-right: auto; }

@media (max-width: 980px) {
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-grid.reverse > div:first-child,
  .solution-grid.reverse > div:last-child { order: initial; }
}

/* ============================================================
   COMPANY — about / mission cards
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.about-grid p { color: #0E1419; line-height: 1.65; }
.mission-card {
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(0, 48, 87, 0.08);
  border-radius: 18px;
  margin-bottom: 14px;
}
.mission-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--color-navy); margin: 0 0 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.mission-card p { color: #0E1419; line-height: 1.55; margin: 0; }

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.leader-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 48, 87, 0.08);
}
.leader-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-edge);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.leader-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-navy); margin: 0; }
.leader-title { font-size: 13px; line-height: 1.4; color: var(--color-cyan); font-weight: 600; margin: 4px 0 12px; }
.leader-card p { font-size: 14px; color: #0E1419; line-height: 1.55; margin: 0; }

.team-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin: 24px 0 36px;
}
.team-stats > div {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 48, 87, 0.08);
}
.team-stats .n {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; line-height: 1; letter-spacing: -1.5px;
  color: var(--color-navy);
}
.team-stats .l { color: var(--color-gray); font-size: 13px; margin-top: 8px; }
.team-note { max-width: 64ch; color: #0E1419; line-height: 1.65; margin-bottom: 28px; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .leader-grid, .team-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   INSIGHTS — Consigliere's Desk
   ============================================================ */
.post-feature {
  padding: 48px 56px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0, 48, 87, 0.08);
  margin-bottom: 48px;
}
.post-feature h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1;
  color: var(--color-navy); margin: 12px 0 16px; letter-spacing: -1px;
}
.post-feature-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 4px; flex-wrap: wrap; }
.post-cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.post-cat.tone-orange { background: rgba(217,88,42,0.12); color: var(--color-orange); }
.post-cat.tone-cyan   { background: rgba(0,174,199,0.14); color: var(--color-cyan); }
.post-cat.tone-yellow { background: rgba(240,179,35,0.18); color: #b88516; }
.post-cat.tone-navy   { background: rgba(0,48,87,0.10); color: var(--color-navy); }
.post-date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: #8A94A4; margin-bottom: 10px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.post-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(0,174,199,0.4); box-shadow: 0 28px 56px -32px rgba(0,48,87,0.3); }
.post-thumb {
  aspect-ratio: 16 / 10;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms ease; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb > .post-cat {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,26,51,0.18);
}
.post-thumb > .post-cat.tone-navy   { color: var(--color-navy); }
.post-thumb > .post-cat.tone-orange { color: var(--color-orange); }
.post-thumb > .post-cat.tone-cyan   { color: #0083A0; }
.post-thumb > .post-cat.tone-yellow { color: #B0791A; }
.post-thumb svg { width: 56px; height: 56px; opacity: 0.5; }
.post-thumb.tone-orange { background: linear-gradient(135deg, rgba(217,88,42,0.14), rgba(240,179,35,0.14)); color: var(--color-orange); }
.post-thumb.tone-cyan   { background: linear-gradient(135deg, rgba(0,174,199,0.16), rgba(0,131,160,0.10)); color: #0083A0; }
.post-thumb.tone-yellow { background: linear-gradient(135deg, rgba(240,179,35,0.18), rgba(217,88,42,0.10)); color: #B0791A; }
.post-thumb.tone-navy   { background: linear-gradient(135deg, rgba(0,48,87,0.12), rgba(0,174,199,0.10)); color: var(--color-navy); }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; letter-spacing: -0.01em; color: var(--color-navy); margin: 0 0 10px; }
.post-body p { font-size: 14px; color: #0E1419; line-height: 1.55; margin: 0 0 20px; flex: 1; }
.post-link { color: var(--color-cyan); font-weight: 600; font-size: 14px; text-decoration: none; }
.post-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.pc-author { display: flex; align-items: center; gap: 10px; }
.pc-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: #EAF2F7; color: var(--color-navy);
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
  overflow: hidden;
}
.pc-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-name { font-size: 13px; font-weight: 600; color: var(--color-navy); }
.pc-arrow { margin-left: auto; color: var(--color-cyan); font-size: 18px; transition: transform 200ms ease; }
.post-card:hover .pc-arrow { transform: translateX(4px); }

.newsletter-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--gradient-trust);
  color: #fff;
  border-radius: 28px;
}
.newsletter-card h3 { font-family: var(--font-display); font-size: 28px; margin: 0 0 12px; letter-spacing: -0.8px; }
.newsletter-card p { opacity: 0.9; line-height: 1.55; margin: 0; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; border: 0;
  border-radius: 12px; font-size: 15px;
  font-family: inherit;
}
.newsletter-form button { white-space: nowrap; }

@media (max-width: 980px) {
  .post-grid { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; padding: 32px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; }
.contact-form { display: grid; gap: 16px; }
.contact-form .ccf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-navy); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid rgba(0, 48, 87, 0.16);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--color-navy);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--color-cyan); box-shadow: 0 0 0 3px rgba(0,174,199,0.18); }

.contact-form.js-cf-success .ccf-success-icon { background: rgba(0,174,199,0.14); color: #008FA3; }
.contact-form.js-cf-success .ccf-success-msg { color: var(--color-navy); }

.contact-aside {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0, 48, 87, 0.08);
  border-radius: 20px;
}
.contact-aside h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-navy); margin: 0 0 18px; }
.contact-aside-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-aside-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: #0E1419; }
.contact-trust { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(0, 48, 87, 0.08); font-size: 13px; color: var(--color-gray); }
.contact-trust img { height: 28px; }

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

/* ============================================================
   PRODUCT: Try-me-now hero card
   ============================================================ */
.try-now-card { padding: 24px 24px 22px; }
.try-now-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px; letter-spacing: -0.005em;
  color: #fff; margin: 10px 0 8px;
}
.try-now-sub {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.try-now-form { display: flex; flex-direction: column; gap: 12px; }
.try-now-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.try-now-field { display: flex; flex-direction: column; gap: 4px; }
.try-now-field span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.try-now-field input,
.try-now-field select {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body, "Archivo", sans-serif);
  font-size: 13.5px;
}
.try-now-field input:focus, .try-now-field select:focus { outline: none; border-color: rgba(0,174,199,0.6); }
.try-now-submit { margin-top: 6px; justify-content: center; }
.try-now-meta {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.tn-dot { width: 6px; height: 6px; border-radius: 50%; background: #6FE3A1; box-shadow: 0 0 0 3px rgba(111,227,161,0.18); }
@media (max-width: 540px) { .try-now-row { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT: Capabilities grid
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
@media (max-width: 980px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  background: #ffffff;
  border: 1px solid rgba(0,48,87,0.10);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.cap-card:hover { transform: translateY(-3px); border-color: rgba(0,174,199,0.4); box-shadow: 0 24px 48px -28px rgba(0,48,87,0.25); }
.cap-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.cap-icon svg { width: 20px; height: 20px; }
.cap-icon.orange { background: rgba(220,88,42,0.12); color: #DC582A; }
.cap-icon.cyan   { background: rgba(0,174,199,0.14); color: #008FA3; }
.cap-icon.yellow { background: rgba(240,179,35,0.16); color: #B98818; }
.cap-icon.navy   { background: rgba(14,47,90,0.10); color: #0E2F5A; }
.cap-tag {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #00AEC7; background: rgba(0,174,199,0.08);
  border: 1px solid rgba(0,174,199,0.20);
  padding: 3px 8px; border-radius: 4px; width: fit-content;
}
.cap-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #0E2F5A; line-height: 1.25; margin: 4px 0 2px; }
.cap-card p { font-size: 13.5px; line-height: 1.55; color: #0E1419; margin: 0; }

.cap-authoring {
  margin-top: 8px; padding: 32px;
  background: linear-gradient(135deg, #F6F8FB 0%, #EAF4F7 100%);
  border: 1px solid rgba(0,48,87,0.10);
  border-radius: 18px;
}
.cap-authoring-head { margin-bottom: 24px; }
.cap-authoring-head .eyebrow { color: #DC582A; }
.cap-authoring-head h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); color: #0E2F5A; margin: 8px 0 6px; }
.cap-authoring-head p { font-size: 14px; color: #0E1419; margin: 0; }
.cap-authoring-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .cap-authoring-tiers { grid-template-columns: 1fr; } }
.cap-tier {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: #fff;
  border: 1px solid rgba(0,48,87,0.08); border-radius: 12px;
}
.cap-tier-num { font-family: var(--font-mono, ui-monospace, monospace); font-size: 11px; letter-spacing: 0.12em; font-weight: 700; color: #00AEC7; flex-shrink: 0; margin-top: 2px; }
.cap-tier h5 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #0E2F5A; margin: 0 0 4px; }
.cap-tier p { font-size: 13px; line-height: 1.5; color: #0E1419; margin: 0; }

/* ============================================================
   SOLUTIONS: Use case grid
   ============================================================ */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
@media (max-width: 980px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .uc-grid { grid-template-columns: 1fr; } }
.uc-card {
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.10);
  border-radius: 14px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  display: flex; flex-direction: column; gap: 8px;
}
.uc-card:hover { transform: translateY(-3px); border-color: rgba(0,174,199,0.4); box-shadow: 0 24px 48px -28px rgba(0,48,87,0.25); }
.uc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.uc-icon svg { width: 22px; height: 22px; }
.uc-icon.tone-orange { background: rgba(220,88,42,0.12); color: #DC582A; }
.uc-icon.tone-cyan   { background: rgba(0,174,199,0.14); color: #008FA3; }
.uc-icon.tone-yellow { background: rgba(240,179,35,0.16); color: #B98818; }
.uc-icon.tone-navy   { background: rgba(14,47,90,0.10); color: #0E2F5A; }
.uc-tag {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: #00AEC7; background: rgba(0,174,199,0.08);
  border: 1px solid rgba(0,174,199,0.35); border-radius: 999px;
  padding: 10px 18px;
  align-self: flex-start;
}
.uc-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20.5px; color: #0E2F5A; margin: 2px 0 4px; line-height: 1.25; }
.uc-card p { font-size: 16px; line-height: 1.55; color: #5B6878; margin: 0; text-wrap: pretty; }
.uc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  background: linear-gradient(135deg, #F6F8FB 0%, #EAF4F7 100%);
  border: 1px solid rgba(0,48,87,0.10);
  border-radius: 14px;
  flex-wrap: wrap; gap: 16px;
}
.uc-foot span { font-family: var(--font-display); font-weight: 600; color: #0E2F5A; font-size: 17.5px; }


/* ============================================================
   DARK SECTIONS — product/solutions contrast
   ============================================================ */
.section-navy-deep {
  background: linear-gradient(180deg, #001a33 0%, #003057 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-navy-deep::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0,174,199,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(220,88,42,0.10), transparent 60%);
  pointer-events: none;
}
.section-navy-deep > * { position: relative; }
.section-navy-deep .section-head h2 { color: #fff; }
.section-navy-deep .section-head h2 .grad-velocity,
.section-navy-deep .section-head h2 .grad-edge,
.section-navy-deep .section-head h2 .grad {
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-navy-deep .eyebrow.on-dark { color: rgba(0, 174, 199, 0.95); }
.section-navy-deep .problem-lede.on-dark { color: rgba(255,255,255,0.78); }
.section-navy-deep .step-num { color: rgba(0, 174, 199, 0.95); }
.section-navy-deep .process-steps li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.section-navy-deep .process-steps h4 { color: #fff; }
.section-navy-deep .process-steps p { color: rgba(255,255,255,0.78); }
.section-navy-deep .process-timeline {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}
.section-navy-deep .process-timeline .pt-bar-label { color: var(--color-cyan); background: rgba(0,174,199,0.15); border-color: rgba(0,174,199,0.3); }
.section-navy-deep .process-timeline .pt-bar-meta { color: rgba(255,255,255,0.55); }
.section-navy-deep .process-timeline .pt-rule { background: rgba(255,255,255,0.18); }
.section-navy-deep .process-timeline .pt-dot { background: #001a33; color: #fff; border-color: var(--color-cyan); }
.section-navy-deep .process-timeline .pt-tick { background: rgba(255,255,255,0.22); }
.section-navy-deep .process-timeline .pt-week { color: var(--color-cyan); }
.section-navy-deep .process-timeline .pt-label { color: #fff; }
.section-navy-deep .process-timeline .pt-sub { color: rgba(255,255,255,0.65); }
.section-navy-deep .pt-grid { display: none; }

/* Use-case cards on dark */
.uc-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}
.uc-card-dark h3 { color: #fff; }
.uc-card-dark p { color: rgba(255,255,255,0.72); }
.uc-card-dark:hover { border-color: rgba(0,174,199,0.45); background: rgba(255,255,255,0.06); }
.uc-foot-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.uc-foot-dark span { color: #fff; }

/* Architecture section as dark */
.section-architecture.section-dark {
  background: linear-gradient(180deg, #001a33 0%, #002544 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-architecture.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 0%, rgba(0,174,199,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0,48,87,0.20), transparent 60%);
  pointer-events: none;
}
.section-architecture.section-dark > * { position: relative; }
.section-architecture.section-dark .section-head h2 { color: #fff; }
.section-architecture.section-dark .section-head h2 .grad-velocity {
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-architecture.section-dark .problem-lede { color: rgba(255,255,255,0.78); }
.section-architecture.section-dark .arch-layer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}
.section-architecture.section-dark .arch-layer-label { color: #fff; }
.section-architecture.section-dark .arch-layer-label span { color: var(--color-cyan); }
.section-architecture.section-dark .arch-card {
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.08);
}
.section-architecture.section-dark .arch-card strong { color: #fff; }
.section-architecture.section-dark .arch-card span { color: rgba(255,255,255,0.65); }
.section-architecture.section-dark .arch-card-warn {
  background: linear-gradient(135deg, rgba(240,179,35,0.20), rgba(220,88,42,0.18));
  border-color: rgba(240,179,35,0.40);
}
.section-architecture.section-dark .arch-pulse {
  background: linear-gradient(180deg, rgba(0,174,199,0.8) 0%, rgba(0,174,199,0.18) 100%);
}


/* ============================================================
   SOLUTIONS — bolder layout v2
   ============================================================ */
.solution-block { padding: 100px 0; position: relative; }
.solution-block:not(.section-paper) { background: #fff; }
.solution-block.section-paper {
  background: linear-gradient(180deg, #F6F8FB 0%, #EAF4F7 100%);
}
.solution-block + .solution-block { border-top: 1px solid rgba(0,48,87,0.06); }

.solution-grid.v2 {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-grid.v2.reverse { grid-template-columns: 1fr 0.95fr; }
.solution-grid.v2.reverse .solution-copy { order: 2; }
.solution-grid.v2.reverse .solution-card.v2 { order: 1; }

@media (max-width: 980px) {
  .solution-grid.v2, .solution-grid.v2.reverse { grid-template-columns: 1fr; gap: 40px; }
  .solution-grid.v2.reverse .solution-copy { order: 0; }
  .solution-grid.v2.reverse .solution-card.v2 { order: 0; }
}

.solution-copy { position: relative; }
.solution-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.03em;
  background-image: linear-gradient(135deg, #003057, #00AEC7);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  opacity: 0.85;
}
.solution-num.tone-orange { background-image: linear-gradient(135deg, #DC582A, #F0B323); }
.solution-num.tone-cyan   { background-image: linear-gradient(135deg, #00AEC7, #003057); }
.solution-num.tone-yellow { background-image: linear-gradient(135deg, #F0B323, #00AEC7); }
.solution-num.tone-navy   { background-image: linear-gradient(135deg, #003057, #00AEC7); }

.solution-copy .solution-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.solution-copy .solution-icon svg { width: 28px; height: 28px; }
.solution-copy .solution-icon.tone-orange { background: rgba(220,88,42,0.12); color: #DC582A; }
.solution-copy .solution-icon.tone-cyan   { background: rgba(0,174,199,0.14); color: #008FA3; }
.solution-copy .solution-icon.tone-yellow { background: rgba(240,179,35,0.16); color: #B98818; }
.solution-copy .solution-icon.tone-navy   { background: rgba(14,47,90,0.10); color: #0E2F5A; }

.solution-copy .h-section {
  text-wrap: balance;
  max-width: 18ch;
}
.solution-copy .lede {
  font-size: 18px; line-height: 1.55;
  color: #0E1419;
  margin: 14px 0 22px;
}
.solution-copy .solution-bullets {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.solution-copy .solution-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  color: #0E2F5A;
  font-size: 15px;
  line-height: 1.55;
  padding: 0;
}
.solution-copy .solution-bullets .b-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-cyan, #00AEC7);
  flex-shrink: 0; margin-top: 8px;
}
.solution-copy .solution-cta { margin-top: 6px; }

.solution-card.v2 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #0E2F5A;
  box-shadow: 0 32px 60px -28px rgba(0,48,87,0.45);
}
.solution-card.v2 .solution-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.solution-card.v2 .solution-card-overlay {
  position: absolute; inset: 0;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.solution-card.v2.tone-orange .solution-card-overlay { background: linear-gradient(180deg, transparent 25%, rgba(176,69,30,0.92) 100%); }
.solution-card.v2.tone-cyan   .solution-card-overlay { background: linear-gradient(180deg, transparent 25%, rgba(0,80,95,0.92) 100%); }
.solution-card.v2.tone-yellow .solution-card-overlay { background: linear-gradient(180deg, transparent 25%, rgba(0,26,51,0.94) 100%); }
.solution-card.v2.tone-navy   .solution-card-overlay { background: linear-gradient(180deg, transparent 25%, rgba(0,26,51,0.94) 100%); }
.solution-card.v2 .solution-card-stat {
  text-align: left;
}
.solution-card.v2 .solution-card-stat .n,
.solution-card.v2.tone-cyan .solution-card-stat .n,
.solution-card.v2.tone-yellow .solution-card-stat .n,
.solution-card.v2.tone-navy .solution-card-stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  background-image: linear-gradient(110deg, #00AEC7 0%, #66D2DF 35%, #F0B323 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 32px rgba(0,174,199,0.45);
}
.solution-card.v2 .solution-card-stat .l {
  font-size: 16px; line-height: 1.4;
  color: rgba(255,255,255,0.94);
  max-width: 32ch;
  margin: 0;
}
.solution-card.v2:not(:has(img)) {
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(0,174,199,0.32), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(220,88,42,0.22), transparent 60%),
    linear-gradient(135deg, #001a33 0%, #003057 100%);
}
.solution-card.v2:not(:has(img)) .solution-card-overlay { background: none; }


/* Leader card with image-slot avatar */
.leader-card-v2 { text-align: center; }
.leader-card-v2 image-slot {
  border-radius: 50%;
  box-shadow: 0 12px 28px -12px rgba(0,48,87,0.30);
}
.leader-card-v2 h4 { text-align: center; margin: 0; }
.leader-card-v2 .leader-title { text-align: center; }
.leader-card-v2 p { text-align: center; }

/* Team group photo slot */
.team-photo-slot {
  max-width: 1100px;
  margin: 0 auto 48px;
}
.team-photo-slot image-slot {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 60px -28px rgba(0,48,87,0.30);
}


/* Exits strip on Company > Leadership */
.exits-strip {
  margin-top: 56px;
  padding: 36px 32px;
  background: linear-gradient(135deg, #001a33 0%, #003057 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.exits-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(0,174,199,0.20), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(220,88,42,0.14), transparent 60%);
  pointer-events: none;
}
.exits-strip > * { position: relative; }
.exits-label {
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  color: rgba(255,255,255,0.78);
  text-align: center;
  margin-bottom: 24px;
  max-width: none;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .exits-label { white-space: normal; max-width: 56ch; }
}
.exits-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px;
}
@media (max-width: 980px) { .exits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .exits-grid { grid-template-columns: 1fr; } }

.exit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  backdrop-filter: blur(4px);
}
.exit-card .exit-company {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.005em;
}
.exit-card .exit-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,174,199,0.16);
  color: var(--color-cyan, #00AEC7);
  display: flex; align-items: center; justify-content: center;
}
.exit-card .exit-arrow svg { width: 14px; height: 14px; }
.exit-card .exit-acquirer {
  display: flex; flex-direction: column; gap: 2px;
}
.exit-card .exit-acquirer span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.exit-card .exit-acquirer strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}


/* Company page — dark section overrides */
.section-navy-deep .about-grid p,
.section-navy-deep .about-grid .lede { color: rgba(255,255,255,0.78); }
.section-navy-deep .about-grid .h-section { color: #fff; }
.section-navy-deep .eyebrow.on-dark { color: var(--color-cyan, #00AEC7); }

.about-mission-dark .mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
}
.about-mission-dark .mission-card h4 { color: #fff; }
.about-mission-dark .mission-card p { color: rgba(255,255,255,0.72); }

.section-navy-deep .team-photo-slot { margin: 0 auto 48px; }
.team-stats-dark > div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.team-stats-dark .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px; line-height: 1;
  background-image: var(--gradient-velocity, linear-gradient(135deg, #00AEC7, #F0B323));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.team-stats-dark .l { color: rgba(255,255,255,0.72); font-size: 13px; }

.team-note-dark { color: rgba(255,255,255,0.78); }
.btn-ghost-on-dark { color: #fff; border-color: rgba(255,255,255,0.30); }
.btn-ghost-on-dark:hover { background: rgba(255,255,255,0.08); }


/* Exit cards v2 — real logos on dark surface */
.exit-card {
  display: flex; flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 14px;
  padding: 18px 14px;
  min-width: 0;
}
.exit-logo {
  width: 100%;
  height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.exit-logo img {
  max-width: 80%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 200ms ease;
}
.exit-card:hover .exit-logo img { opacity: 0.85; }

/* Per-logo optical balance — wordmarks differ in inherent size */
.exit-logo img[alt="Voxeo"]      { max-width: 60%; }
.exit-logo img[alt="Tropo"]      { max-width: 100%; transform: scale(1.3); transform-origin: center; }
.exit-logo img[alt="Plum Voice"] { max-width: 60%; }
.exit-logo img[alt="Aspect"]     { max-width: 100%; }
.exit-logo img[alt="Sharpen"]    { max-width: 60%; }
.exit-logo img[alt="Cisco"]      { max-width: 40%; }
.exit-logo img[alt="Fonolo"]     { max-width: 55%; }
.exit-logo img[alt="Verint"]     { max-width: 50%; }
.exit-logo img[alt="Keynote"]    { max-width: 55%; }
.exit-logo img[alt="Streamcheck"] { max-width: 85%; }
.exit-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
}
.exit-acquirer-line {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
}
.exit-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.exit-acquirer-label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}


/* Team — two-column hero layout */
.team-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 980px) {
  .team-hero { grid-template-columns: 1fr; gap: 40px; }
  .team-hero-photo { max-width: 100%; margin: 0; }
}
.team-hero-copy { min-width: 0; }
.team-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 16px 0 18px;
  text-wrap: balance;
  max-width: 20ch;
}
.team-hero .team-note-dark {
  margin: 0 0 28px;
  max-width: 52ch;
  text-wrap: pretty;
  font-size: 15px;
  line-height: 1.55;
}
.team-hero-photo {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.team-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 60px -28px rgba(0,0,0,0.45);
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.team-photo-frame image-slot {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}


/* Leadership section-head — balanced wrapping */
#leadership .section-head h2 {
  text-wrap: balance;
  max-width: 22ch;
}
#leadership .section-head .problem-lede {
  text-wrap: balance;
  max-width: 56ch;
  color: #0E1419;
}


/* Solutions — strong section contrast */
.solution-block.section-dark {
  background: linear-gradient(180deg, #001a33 0%, #003057 100%) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.solution-block.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0,174,199,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0,174,199,0.10), transparent 60%);
  pointer-events: none;
}
.solution-block.section-dark > * { position: relative; }
.solution-block.section-dark .h-section { color: #fff; }
.solution-block.section-dark .eyebrow { color: var(--color-cyan, #00AEC7); }
.solution-block.section-dark .solution-copy .lede { color: rgba(255,255,255,0.78); }
.solution-block.section-dark .solution-copy .solution-bullets li { color: rgba(255,255,255,0.90); }
.solution-block.section-dark .solution-num { opacity: 1; }
.solution-block.section-dark .solution-copy .solution-cta {
  color: #fff;
  border-color: rgba(255,255,255,0.30);
}
.solution-block.section-dark .solution-copy .solution-cta:hover {
  background: rgba(255,255,255,0.08);
}
.solution-block.section-dark .solution-icon.tone-cyan   { background: rgba(0,174,199,0.22); color: #66D2DF; }
.solution-block.section-dark .solution-icon.tone-yellow { background: rgba(240,179,35,0.22); color: #F0B323; }
.solution-block.section-dark .solution-icon.tone-navy   { background: rgba(255,255,255,0.10); color: #fff; }


/* Solutions — accent bar treatment instead of dark sections */
.solution-block { position: relative; overflow: hidden; }
.solution-block::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1;
  pointer-events: none;
}
.solution-block.tone-cyan::before   { background: linear-gradient(90deg, transparent, #00AEC7 30%, #00AEC7 70%, transparent); }
.solution-block.tone-yellow::before { background: linear-gradient(90deg, transparent, #F0B323 30%, #F0B323 70%, transparent); }
.solution-block.tone-navy::before   { background: linear-gradient(90deg, transparent, #003057 30%, #00AEC7 70%, transparent); }
.solution-block.tone-orange::before { background: linear-gradient(90deg, transparent, #DC582A 30%, #DC582A 70%, transparent); }

.solution-block.section-paper {
  background: linear-gradient(180deg, #F6F8FB 0%, #EAF4F7 100%) !important;
}

/* Soft tinted glow behind the photo card for visual rhythm */
.solution-block .solution-card.v2 {
  position: relative;
}
.solution-block.tone-cyan .solution-card.v2 { box-shadow: 0 32px 60px -28px rgba(0,174,199,0.35); }
.solution-block.tone-yellow .solution-card.v2 { box-shadow: 0 32px 60px -28px rgba(240,179,35,0.35); }
.solution-block.tone-navy .solution-card.v2 { box-shadow: 0 32px 60px -28px rgba(0,48,87,0.35); }


/* Partnership section v2 */
.section-partnership {
  background: linear-gradient(180deg, #F4F7FB 0%, #ffffff 100%);
}
.section-partnership .partnership-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .section-partnership .partnership-grid { grid-template-columns: 1fr; gap: 48px; }
}
.section-partnership .partnership-copy .lede {
  color: #0E1419;
  margin: 18px 0 32px;
  font-size: 17px;
  line-height: 1.55;
}
.partnership-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 540px) { .partnership-feats { grid-template-columns: 1fr; } }
.pf-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 12px;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.pf-card:hover { border-color: rgba(0,174,199,0.4); transform: translateY(-2px); box-shadow: 0 20px 40px -28px rgba(0,48,87,0.2); }
.pf-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,174,199,0.12);
  color: #008FA3;
  display: flex; align-items: center; justify-content: center;
}
.pf-icon svg { width: 18px; height: 18px; }
.pf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #0E2F5A;
  margin-bottom: 4px;
}
.pf-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: #5B6878;
}

/* Partnership stat card v2 */
.section-partnership .partnership-stat-card {
  position: relative;
  background: linear-gradient(180deg, #001a33 0%, #003057 100%);
  border-radius: 20px;
  padding: 36px 32px;
  display: grid; gap: 24px;
  overflow: hidden;
  box-shadow: 0 32px 60px -28px rgba(0,48,87,0.35);
}
.section-partnership .psc-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent);
}
.section-partnership .partnership-stat-card > :not(.psc-grid-bg) { position: relative; }
.psc-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  align-self: start;
}
.psc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-cyan, #00AEC7);
  box-shadow: 0 0 0 3px rgba(0,174,199,0.20);
  animation: psc-blink 2s ease-in-out infinite;
}
@keyframes psc-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.section-partnership .ps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.section-partnership .ps-stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  background-image: linear-gradient(110deg, #00AEC7 0%, #66D2DF 35%, #F0B323 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 24px rgba(0,174,199,0.30);
  margin-bottom: 6px;
}
.section-partnership .ps-stat .l {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}


/* ============================================================
   ARTICLE / BLOG POST TEMPLATE
   ============================================================ */
.shell-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.article-hero { padding: 56px 0 0; }
.article-main-img {
  margin-top: 40px;
  margin-bottom: 56px;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.article-main-img img {
  width: 100%; height: auto; display: block;
  max-height: 560px; object-fit: cover;
}
.article-body img {
  max-width: 100%; height: auto; display: block;
  border-radius: 10px; margin: 32px auto;
}
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px; letter-spacing: 0.06em;
  color: #5B6878; text-decoration: none;
  margin-bottom: 32px;
  transition: color 150ms ease;
}
.article-back:hover { color: #0E2F5A; }
.article-back svg { width: 15px; height: 15px; }
.article-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.article-readtime {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px; letter-spacing: 0.04em; color: #5B6878;
}
.article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #0E2F5A;
  margin: 0 0 20px;
  text-wrap: balance;
}
.article-standfirst {
  font-size: 20px; line-height: 1.5;
  color: #0E1419;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.article-byline {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(0,48,87,0.10);
}
.article-author { display: flex; align-items: center; gap: 12px; }
.article-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #003057, #00AEC7);
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.article-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-avatar.consig { background: #fff; }
.article-avatar.consig img { object-fit: contain; padding: 0; transform: scale(1.18); }
.article-avatar.lg { width: 64px; height: 64px; font-size: 20px; }
.article-author-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #0E2F5A; }
.article-author-role { font-size: 13px; color: #5B6878; }
.article-pubmeta { display: flex; align-items: center; gap: 18px; font-size: 13px; color: #5B6878; }
.article-share { display: flex; align-items: center; gap: 8px; }
.article-copy-wrap { position: relative; display: flex; }
.article-share a,
.article-share button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(0,48,87,0.14);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #5B6878;
  cursor: pointer;
  transition: all 150ms ease;
}
.article-share a:hover,
.article-share button:hover { border-color: #00AEC7; color: #00AEC7; }
.article-share svg { width: 15px; height: 15px; }
.article-copied-toast {
  position: absolute; left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: var(--color-navy, #003057); color: #fff;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  padding: 6px 10px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
}
.article-copied-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.article-copied-toast::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--color-navy, #003057);
}

.article-figure { margin: 0 0 8px; }
.article-figure-hero { margin: 8px 0 48px; }
.article-figure image-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 60px -32px rgba(0,48,87,0.30);
}
.article-figure figcaption {
  font-size: 13px; color: #8A94A4;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.article-body { padding-bottom: 48px; }
.article-body p {
  font-size: 18px; line-height: 1.75;
  color: #2A3645;
  margin: 0 0 24px;
}
.article-body a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,48,87,0.35);
  transition: text-decoration-color 150ms ease;
}
.article-body a:hover { text-decoration-color: var(--color-navy); }
.article-body .article-lead {
  font-size: 21px; line-height: 1.65;
  color: #0E2F5A;
  font-weight: 500;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0E2F5A;
  margin: 44px 0 16px;
  text-wrap: balance;
}
.article-quote {
  margin: 36px 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid #00AEC7;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #0E2F5A;
}
.article-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-style: normal;
  font-weight: 400;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #5B6878;
}
.article-list { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.article-list li {
  position: relative;
  padding-left: 28px;
  font-size: 18px; line-height: 1.6;
  color: #2A3645;
}
.article-list li::before {
  content: "";
  position: absolute; left: 4px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #00AEC7;
}
.article-list li strong { color: #0E2F5A; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.article-tag {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.06em;
  color: #5B6878;
  background: rgba(0,48,87,0.05);
  border: 1px solid rgba(0,48,87,0.10);
  padding: 6px 12px;
  border-radius: 999px;
}

.article-author-card {
  display: flex; gap: 18px; align-items: flex-start;
  margin: 16px 0 56px;
  padding: 28px;
  background: linear-gradient(135deg, #F4F7FB, #EAF4F7);
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 18px;
}
.article-author-card-body .article-author-name { font-size: 17px; }
.article-author-card-body .article-author-role { margin-bottom: 10px; }
.article-author-card-body p { font-size: 14px; line-height: 1.6; color: #0E1419; margin: 0; }

.section-related { background: linear-gradient(180deg, #F6F8FB 0%, #ffffff 100%); padding-bottom: 0; }
.section-related + .section { padding-top: 0; }
.related-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.related-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.01em; color: #0E2F5A; margin: 0;
}

@media (max-width: 600px) {
  .article-byline { flex-direction: column; align-items: flex-start; gap: 16px; }
  .article-author-card { flex-direction: column; gap: 14px; }
}


/* ============================================================
   INSIGHTS PAGE v2
   ============================================================ */
.insights-hero {
  padding: 100px 0 56px;
  position: relative; overflow: hidden;
}
.insights-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 85% 0%, rgba(0,174,199,0.12), transparent 65%),
    radial-gradient(35% 50% at 0% 100%, rgba(240,179,35,0.08), transparent 60%);
  pointer-events: none;
}
.insights-hero .shell { position: relative; }
.insights-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 80px); line-height: 1.02; letter-spacing: -0.02em;
  color: #0E2F5A; margin: 16px 0 22px; text-wrap: balance;
}
.insights-hero h1 .grad {
  background-image: linear-gradient(110deg, #003057 0%, #00AEC7 45%, #F0B323 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.insights-hero .lede { font-size: 19px; line-height: 1.55; color: #0E1419; max-width: 70ch; }

/* Featured hero card */
.insight-hero-card {
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 32px 70px -40px rgba(0,48,87,0.35);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.insight-hero-card:hover { transform: translateY(-4px); box-shadow: 0 44px 90px -44px rgba(0,48,87,0.45); }
.ihc-media { position: relative; min-height: 340px; overflow: hidden; }
.ihc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.insight-hero-card:hover .ihc-media img { transform: scale(1.05); }
.ihc-media .post-cat { position: absolute; top: 18px; left: 18px; z-index: 1; }
.ihc-body { padding: 44px; display: flex; flex-direction: column; }
.ihc-tagline {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #00AEC7; margin-bottom: 16px;
}
.ihc-body h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.12; letter-spacing: -0.015em;
  color: #0E2F5A; margin: 0 0 16px; text-wrap: balance;
}
.ihc-body p { font-size: 16px; line-height: 1.6; color: #0E1419; margin: 0 0 24px; }
.ihc-byline { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.ihc-cta { align-self: flex-start; margin-top: auto; }

@media (max-width: 860px) {
  .insight-hero-card { grid-template-columns: 1fr; }
  .ihc-media { min-height: 220px; }
  .ihc-body { padding: 32px; }
}

/* Filter bar */
.insights-filterbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.insights-filterbar h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: #0E2F5A; margin: 0;
}
.insights-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.ins-filter {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  color: #5B6878;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.12);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 160ms ease;
}
.ins-filter:hover { border-color: #00AEC7; color: #0E2F5A; }
.ins-filter.is-active {
  background: linear-gradient(135deg, #003057, #00AEC7);
  color: #fff; border-color: transparent;
}

/* Card grid */
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 920px) { .insights-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } }

.insight-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.insight-card:hover { transform: translateY(-4px); border-color: rgba(0,174,199,0.4); box-shadow: 0 28px 56px -32px rgba(0,48,87,0.3); }
.ic-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.ic-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.insight-card:hover .ic-media img { transform: scale(1.05); }
.ihc-media .post-cat,
.ic-media .post-cat,
.desk-card-media .post-cat {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,26,51,0.18);
}
.ihc-media .post-cat.tone-orange,
.ic-media .post-cat.tone-orange,
.desk-card-media .post-cat.tone-orange { color: var(--color-orange) !important; }
.ihc-media .post-cat.tone-cyan,
.ic-media .post-cat.tone-cyan,
.desk-card-media .post-cat.tone-cyan { color: #0083A0 !important; }
.ihc-media .post-cat.tone-yellow,
.ic-media .post-cat.tone-yellow,
.desk-card-media .post-cat.tone-yellow { color: #B0791A !important; }
.ihc-media .post-cat.tone-navy,
.ic-media .post-cat.tone-navy,
.desk-card-media .post-cat.tone-navy { color: var(--color-navy) !important; }
.ic-media .post-cat { position: absolute; top: 14px; left: 14px; }
.ic-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.ic-meta {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.06em; color: #8A94A4;
  margin-bottom: 10px;
}
.ic-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; line-height: 1.25; letter-spacing: -0.01em;
  color: #0E2F5A; margin: 0 0 10px;
}
.ic-body p { font-size: 14px; line-height: 1.55; color: #0E1419; margin: 0 0 20px; }
.ic-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.ic-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: #EAF2F7; display: grid; place-items: center;
}
.ic-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ic-avatar-initials { font-size: 11px; font-weight: 700; color: var(--color-navy, #003057); }
.ic-author { font-size: 13px; font-weight: 600; color: #0E2F5A; }
.ic-arrow {
  margin-left: auto;
  color: #00AEC7; font-size: 18px;
  transition: transform 200ms ease;
}
.insight-card:hover .ic-arrow { transform: translateX(4px); }
.article-avatar.sm { width: 30px; height: 30px; font-size: 11px; }


/* Insights — CMS image placeholders */
.ph-thumb {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #EAF2F7, #DCE9F0);
}
.ph-thumb .ph-thumb-icon { width: 52px; height: 52px; opacity: 0.5; }
.ph-thumb.tone-orange { background: linear-gradient(135deg, rgba(217,88,42,0.14), rgba(240,179,35,0.14)); color: var(--color-orange); }
.ph-thumb.tone-cyan   { background: linear-gradient(135deg, rgba(0,174,199,0.16), rgba(0,48,87,0.10)); color: #008FA3; }
.ph-thumb.tone-yellow { background: linear-gradient(135deg, rgba(240,179,35,0.18), rgba(0,174,199,0.10)); color: #b88516; }
.ph-thumb.tone-navy   { background: linear-gradient(135deg, rgba(0,48,87,0.14), rgba(0,174,199,0.12)); color: var(--color-navy); }


/* Insights pagination */
.insights-pager {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 48px;
}
.ins-page-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: #0E2F5A;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.14);
  padding: 9px 16px; border-radius: 999px;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, opacity 150ms ease;
}
.ins-page-btn svg { width: 15px; height: 15px; }
.ins-page-btn:hover:not(:disabled) { border-color: #00AEC7; }
.ins-page-btn:disabled { opacity: 0.4; cursor: default; }
.ins-page-dots { display: flex; gap: 6px; }
.ins-page-num {
  width: 38px; height: 38px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: #5B6878;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.12);
  cursor: pointer;
  transition: all 150ms ease;
}
.ins-page-num:hover { border-color: #00AEC7; color: #0E2F5A; }
.ins-page-num.is-active {
  background: linear-gradient(135deg, #003057, #00AEC7);
  color: #fff; border-color: transparent;
}

.article-avatar.photo { background: none; }
.article-avatar.photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   5-COL COMPARISON TABLE (product page)
   ============================================================ */
.cmp-table-5col {
  border: 1px solid rgba(0,48,87,0.10);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 48px -32px rgba(0,48,87,0.18);
}
.cmp-table-5col .cmp-row {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.1fr !important;
  border-top: 1px solid rgba(0,48,87,0.07);
}
.cmp-table-5col .cmp-head {
  background: #F6F8FB;
  border-top: none !important;
}
.cmp-table-5col .cmp-feat {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: #0E2F5A;
  display: flex; align-items: center;
  border-right: 1px solid rgba(0,48,87,0.07);
  background: transparent;
}
.cmp-col-head {
  padding: 18px 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: #5B6878;
  border-left: 1px solid rgba(0,48,87,0.07);
  white-space: nowrap;
  background: transparent;
}
.cmp-col-consig {
  color: #ffffff !important;
  background: linear-gradient(180deg, #003057 0%, #004a82 100%) !important;
  border-radius: 0 14px 0 0;
  font-weight: 800 !important;
  font-size: 16px !important;
  letter-spacing: 0.02em;
}
.cmp-table-5col .cmp-cell {
  padding: 16px 14px !important;
  text-align: center !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  border-left: 1px solid rgba(0,48,87,0.07);
  font-size: 16px;
  background: transparent;
}
.cmp-yes5 { color: #00AEC7; font-weight: 700; font-size: 18px; }
.cmp-no5  { color: #C8D0DA; font-size: 18px; font-weight: 500; }
.cmp-partial5 { color: #8A94A4; font-size: 13px; font-weight: 600; }
.cmp-consig-cell {
  background: rgba(0,48,87,0.04) !important;
  color: #003057 !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  border-left: 2px solid rgba(0,174,199,0.35) !important;
}
.cmp-consig-cell.cmp-yes5 { color: #00AEC7 !important; }
.cmp-table-5col .cmp-cell.cmp-yes5 { color: #00AEC7 !important; }
.cmp-table-5col .cmp-cell.cmp-no5 { color: #C8D0DA !important; }
.cmp-table-5col .cmp-row:not(.cmp-head):hover > * {
  background-color: rgba(0,174,199,0.05) !important;
  transition: background-color 120ms ease;
}
.cmp-table-5col .cmp-row:not(.cmp-head):hover > .cmp-consig-cell {
  background: linear-gradient(180deg, rgba(0,174,199,0.14) 0%, rgba(0,174,199,0.10) 100%) !important;
}
@media (max-width: 720px) {
  .cmp-table-5col .cmp-row { grid-template-columns: 1.6fr repeat(4, 1fr) !important; }
  .cmp-table-5col .cmp-feat,
  .cmp-col-head { font-size: 11px; padding: 12px 6px; }
  .cmp-table-5col .cmp-cell { padding: 12px 4px !important; font-size: 13px; }
}

/* ============================================================
   KEY FEATURES — editorial alternating blocks (product page)
   ============================================================ */
.kf-editorial { display: flex; flex-direction: column; gap: 80px; }
.kf-block {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 64px;
  align-items: start;
}
.kf-block.kf-block-full {
  display: block;
}
.kf-block.kf-block-full .kf-block-text {
  margin-bottom: 40px;
}
.kf-block.kf-block-full .kf-block-media {
  width: 100% !important;
  height: auto !important;
  max-height: 600px;
  aspect-ratio: 16 / 9;
}
.kf-block.kf-block-full .kf-block-media .kf-placeholder,
.kf-block.kf-block-full .kf-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
}
.kf-block.kf-block-reverse { direction: rtl; }
.kf-block.kf-block-reverse > * { direction: ltr; }
.kf-block-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-navy, #003057);
  margin: 0 0 18px;
}
.kf-block-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #3D4C5E;
  margin: 0;
}
.kf-block-media {
  width: 600px;
  height: 600px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}
.kf-block-media .kf-placeholder,
.kf-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1 !important;
}
@media (max-width: 1200px) {
  .kf-block { grid-template-columns: 1fr minmax(0, 600px); }
  .kf-block-media { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}
@media (max-width: 860px) {
  .kf-block,
  .kf-block.kf-block-reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .kf-editorial { gap: 56px; }
  .kf-block-media { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}

/* ============================================================
   SOLUTIONS HERO — full-bleed background + stat cards
   ============================================================ */
.sol-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  min-height: 420px;
}
.sol-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: calc(60% + 30px) center;
  background-repeat: no-repeat;
}
.sol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(248,248,247,1.00) 0%,
    rgba(248,248,247,1.00) 38%,
    rgba(248,248,247,0.80) 48%,
    rgba(248,248,247,0.25) 60%,
    rgba(248,248,247,0) 74%
  );
}
.sol-hero-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.sol-card-tl { position: absolute; top: 21%;  right: 38%; animation-delay: -0.4s;  z-index: 3; }
.sol-card-ml { position: absolute; top: 68%;  right: 34%; animation-delay: -1.8s;  z-index: 3; }
.sol-card-br { position: absolute; top: 52%;  right: 14%; animation-delay: -2.6s;  z-index: 3; }
.sol-card-tr { position: absolute; top: 15%;  right: 14%; animation-delay: -3.4s;  z-index: 3; }
.sol-hero .stat-num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px; line-height: 1.25;
  max-width: 16ch;
}
.sol-hero .hero-stat-card.win .stat-num { color: var(--color-cyan); }
.sol-hero .hero-stat-card.pain .stat-num { color: var(--color-orange); }
@media (max-width: 860px) {
  .sol-hero-overlay {
    background: linear-gradient(to bottom, rgba(248,248,247,0.97) 0%, rgba(248,248,247,0.85) 60%, rgba(248,248,247,0.5) 100%);
  }
  .sol-card-tl, .sol-card-ml, .sol-card-br, .sol-card-tr { display: none; }
}

/* ============================================================
   COMPLIANCE — flags grid (homepage compliance section)
   ============================================================ */
.eyebrow-risk {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #DC582A;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.compliance-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy, #003057);
  margin: 16px 0 18px;
}
.compliance-head p {
  font-size: 17px; line-height: 1.65;
  color: #3D4C5E;
  margin: 0 0 28px;
}
.compliance-badges {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.compliance-badges img { height: 36px; display: block; }
.badge-divider {
  width: 1px; height: 36px;
  background: rgba(0,48,87,0.15);
  flex-shrink: 0;
}
.badge-meta { display: flex; flex-direction: column; gap: 2px; }
.badge-meta-k {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  color: var(--color-navy, #003057);
  line-height: 1;
}
.badge-meta-v {
  font-size: 12px; font-weight: 500;
  color: #5B6878;
  white-space: nowrap;
}
.compliance-flags {
  display: flex; flex-direction: column; gap: 16px;
}
.flag-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 14px;
  box-shadow: 0 4px 16px -8px rgba(0,48,87,0.10);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.flag-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(0,48,87,0.18);
}
.flag-tag {
  position: relative;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #DC582A;
  background: rgba(220,88,42,0.09);
  white-space: nowrap;
  margin-top: 2px;
}
.flag-tag-pulse {
  position: absolute;
  top: 4px; right: 4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #DC582A;
}
.flag-body { flex: 1; }
.flag-label {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  color: var(--color-navy, #003057);
  margin-bottom: 4px;
}
.flag-desc {
  font-size: 14px; line-height: 1.6;
  color: #0E1419;
}
@media (max-width: 860px) {
  .compliance-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ============================================================
   SOLUTION CARD COL — testimonial card layout
   ============================================================ */
.solution-card-col {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
}
.solution-card-col .solution-card.v2 { order: 0; }
.solution-card-col .solution-card-plain {
  position: relative;
  margin: -72px 32px 0 -48px;
  z-index: 2;
}
.solution-grid.v2.reverse .solution-card-col { order: 1; }
.solution-grid.v2.reverse .solution-card-col .solution-card-plain {
  margin: -72px -48px 0 32px;
}

.solution-card-plain {
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 24px 50px -34px rgba(0,48,87,0.35);
  text-align: left;
}

/* scq2 — testimonial quote inside solution-card-plain */
.scq2 { margin: 0; }
.scq2-brand { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--color-navy, #0E2F5A); margin-bottom: 14px; }
.scq2-quote {
  margin: 0 0 22px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; line-height: 1.45;
  color: var(--color-navy, #0E2F5A);
}
.scq2-mark { color: var(--color-cyan, #00AEC7); font-weight: 800; }
.scq2-foot { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(0,48,87,0.10); }
.scq2-person { display: flex; flex-direction: column; gap: 2px; }
.scq2-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--color-navy, #0E2F5A); }
.scq2-role { font-size: 13px; color: var(--color-gray, #5B6878); }
.scq2-pending {
  margin-left: auto;
  font-family: var(--font-mono, ui-monospace, monospace); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-gray, #5B6878);
  background: #F1F4F8; border: 1px solid rgba(0,48,87,0.10);
  padding: 8px 15px; border-radius: 999px;
}

/* Case study download box */
.solution-casestudy {
  display: flex; align-items: center; gap: 16px;
  margin: 4px 0 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.12);
  border-radius: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 4px 18px -8px rgba(0,48,87,0.12);
}
.solution-casestudy:hover { border-color: rgba(0,174,199,0.4); box-shadow: 0 12px 32px -14px rgba(0,48,87,0.22); }
.scs-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(0,174,199,0.14); color: #008FA3; display: flex; align-items: center; justify-content: center; }
.scs-icon-navy { background: var(--color-navy); color: #fff; }
.scs-icon svg { width: 22px; height: 22px; }
.scs-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.scs-label { font-family: var(--font-mono, ui-monospace, monospace); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-navy); font-weight: 700; }
.scs-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.35; color: var(--color-navy, #0E2F5A); max-width: 28ch; }
.scs-btn-download {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: #fff; text-decoration: none;
  background: var(--color-navy);
  padding: 10px 18px; border-radius: 10px;
  transition: background 150ms ease;
  white-space: nowrap;
}
.scs-btn-download:hover { background: #004580; color: #fff; }
.scs-btn-testimonial {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #003057, #00AEC7);
  border: none; cursor: pointer;
  padding: 14px 24px; border-radius: 12px;
  margin-bottom: 24px;
  transition: opacity 150ms ease;
}
.scs-btn-testimonial:hover { opacity: 0.88; }
@media (max-width: 860px) {
  .solution-card-col .solution-card-plain { margin: -48px 16px 0 -24px; }
  .solution-grid.v2.reverse .solution-card-col .solution-card-plain { margin: -48px -24px 0 16px; }
}
@media (max-width: 640px) {
  .solution-card-col .solution-card-plain { margin: 16px 0 0; }
  .solution-grid.v2.reverse .solution-card-col .solution-card-plain { margin: 16px 0 0; }
  .solution-casestudy { flex-wrap: wrap; }
  .scs-btn-download { width: 100%; justify-content: center; }
}


/* ============================================================
   UC DEMO BUTTON
   ============================================================ */
.uc-demo-btn {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--color-navy, #003057);
  background: #fff;
  border: 1px solid rgba(0,48,87,0.12); border-radius: 999px;
  padding: 10px 18px; cursor: pointer;
  align-self: flex-start;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.uc-demo-btn svg { width: 15px; height: 15px; }
.uc-demo-btn:hover { transform: translateY(-2px); border-color: rgba(0,48,87,0.28); box-shadow: 0 14px 30px -16px rgba(0,18,32,0.5); }

/* uc-card flex column so button sits at bottom */
.uc-card { display: flex; flex-direction: column; }
.uc-card h3 { margin-bottom: 8px; }
.uc-card p { flex: 1; }

/* ============================================================
   DEMO CALL MODAL
   ============================================================ */
.demo-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,18,32,0.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.demo-modal-overlay.open {
  display: flex;
  animation: dm-fade 180ms ease;
}
@keyframes dm-fade { from { opacity: 0; } to { opacity: 1; } }

.demo-call-modal {
  display: flex;
  width: min(860px, 96vw);
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  background: white;
  position: relative;
  animation: dm-rise 220ms cubic-bezier(.2,.7,.2,1);
}
@keyframes dm-rise { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.dcm-left {
  width: 300px; flex-shrink: 0;
  background: var(--color-navy, #0d2240);
  color: white; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.dcm-title { font-size: 20px; font-weight: 700; color: white; margin: 4px 0 0; line-height: 1.25; }
.dcm-body { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; margin: 0; }
.dcm-steps {
  margin-top: auto; display: flex; flex-direction: column;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.dcm-step { display: flex; align-items: center; gap: 12px; padding: 10px 0; position: relative; }
.dcm-step + .dcm-step::before {
  content: ''; position: absolute; top: 0; left: 9px;
  width: 2px; height: 10px; background: rgba(255,255,255,0.15); transform: translateY(-10px);
}
.dcm-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0;
  transition: all 0.3s; background: transparent;
}
.dcm-step.active .dcm-dot { background: var(--color-cyan, #00b2c8); border-color: var(--color-cyan, #00b2c8); box-shadow: 0 0 0 4px rgba(0,178,200,0.2); }
.dcm-step.done .dcm-dot { background: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.35); }
.dcm-step-label { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.dcm-step.active .dcm-step-label { color: white; font-weight: 600; }
.dcm-step.done .dcm-step-label { color: rgba(255,255,255,0.6); }

.dcm-right {
  flex: 1; background: #f5f5f4; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.dcm-right .demo-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(0,48,87,0.12); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--color-navy, #003057);
  transition: background 150ms ease;
}
.dcm-right .demo-modal-close:hover { background: #F4F6FA; }
.dcm-right .demo-modal-close svg { width: 18px; height: 18px; }

.dcm-pane { width: 100%; display: flex; flex-direction: column; align-items: center; }

.dcm-form { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 340px; }
.dcm-form-icon {
  width: 56px; height: 56px; background: var(--color-navy, #0d2240);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 4px;
}
.dcm-form-icon svg { width: 26px; height: 26px; stroke: white; }
.dcm-form-lede { text-align: center; font-size: 14px; color: #666; margin: 0; line-height: 1.5; }
.dcm-label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: #333; font-weight: 600; }
.dcm-row { display: flex; gap: 12px; }
.dcm-row .dcm-label { flex: 1; }
.dcm-label input {
  padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 14px; outline: none; background: white; width: 100%; box-sizing: border-box;
  transition: border-color 0.2s;
}
.dcm-label input:focus { border-color: var(--color-navy, #0d2240); }
.req { color: #00AEC7; margin-left: 2px; }

.dmf-submit {
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff;
  background: var(--gradient-trust, linear-gradient(135deg, #003057, #00AEC7));
  border: none; border-radius: 12px; padding: 15px 22px; cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.dmf-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(0,174,199,0.6); }

/* Call widget states */
.cw-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; width: 100%; text-align: center;
  animation: cwFadeIn 0.4s ease;
}
@keyframes cwFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cw-status { font-size: 18px; font-weight: 700; color: var(--color-navy, #0d2240); margin: 0; }
.cw-substatus { font-size: 13px; color: #888; margin: 0; max-width: 280px; }

/* Dialing rings */
.cw-rings { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.cw-ring { position: absolute; border-radius: 50%; border: 2px solid var(--color-cyan, #00b2c8); animation: cwRing 1.8s ease-out infinite; opacity: 0; }
.cw-ring:nth-child(1) { width: 56px; height: 56px; animation-delay: 0s; }
.cw-ring:nth-child(2) { width: 86px; height: 86px; animation-delay: 0.45s; }
.cw-ring:nth-child(3) { width: 116px; height: 116px; animation-delay: 0.9s; }
@keyframes cwRing { 0% { opacity: 0.7; transform: scale(0.6); } 100% { opacity: 0; transform: scale(1); } }
.cw-phone-hub { width: 48px; height: 48px; background: var(--color-navy, #0d2240); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1; }
.cw-phone-hub svg { width: 22px; height: 22px; stroke: white; }

/* Auth */
.cw-auth-hub svg { width: 52px; height: 52px; stroke: var(--color-cyan, #00b2c8); animation: cwPulse 1.4s ease-in-out infinite; }
@keyframes cwPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.75; } }
.cw-auth-bar { width: 200px; height: 4px; background: #e0e0e0; border-radius: 2px; overflow: hidden; margin: 4px 0; }
.cw-auth-fill { height: 100%; background: linear-gradient(to right, var(--color-cyan, #00b2c8), var(--color-navy, #0d2240)); border-radius: 2px; animation: cwFill 2s ease-in-out forwards; }
@keyframes cwFill { from { width: 0%; } to { width: 100%; } }

/* Waveform */
.cw-waveform { display: flex; align-items: center; gap: 3px; height: 44px; margin-bottom: 4px; }
.cw-bar { display: block; width: 4px; border-radius: 2px; background: var(--color-cyan, #00b2c8); animation: cwWave 0.8s ease-in-out infinite alternate; }
.cw-bar:nth-child(1)  { animation-delay: 0.00s; }
.cw-bar:nth-child(2)  { animation-delay: 0.07s; }
.cw-bar:nth-child(3)  { animation-delay: 0.14s; }
.cw-bar:nth-child(4)  { animation-delay: 0.21s; }
.cw-bar:nth-child(5)  { animation-delay: 0.28s; }
.cw-bar:nth-child(6)  { animation-delay: 0.35s; }
.cw-bar:nth-child(7)  { animation-delay: 0.42s; }
.cw-bar:nth-child(8)  { animation-delay: 0.49s; }
.cw-bar:nth-child(9)  { animation-delay: 0.56s; }
.cw-bar:nth-child(10) { animation-delay: 0.63s; }
.cw-bar:nth-child(11) { animation-delay: 0.70s; }
.cw-bar:nth-child(12) { animation-delay: 0.77s; }
.cw-bar:nth-child(13) { animation-delay: 0.84s; }
.cw-bar:nth-child(14) { animation-delay: 0.91s; }
@keyframes cwWave { from { height: 6px; opacity: 0.35; } to { height: 38px; opacity: 1; } }

/* Transcript */
.cw-transcript { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 380px; }
.cw-bubble { animation: cwFadeIn 0.4s ease; display: flex; flex-direction: column; gap: 2px; }
.cw-ai { align-items: flex-start; }
.cw-patient { align-items: flex-end; }
.cw-bubble-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #aaa; padding: 0 4px; }
.cw-ai .cw-bubble-label { color: var(--color-cyan, #00b2c8); }
.cw-bubble p { margin: 0; padding: 8px 12px; border-radius: 10px; font-size: 13px; line-height: 1.45; max-width: 85%; }
.cw-ai p { background: white; border: 1px solid #e8e8e8; border-bottom-left-radius: 2px; text-align: left; }
.cw-patient p { background: var(--color-navy, #0d2240); color: white; border-bottom-right-radius: 2px; text-align: left; }

/* Handoff */
.cw-handoff-hub { width: 72px; height: 72px; border-radius: 50%; background: rgba(0,178,200,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; animation: cwPulse 1.4s ease-in-out infinite; }
.cw-handoff-hub svg { width: 32px; height: 32px; stroke: var(--color-cyan, #00b2c8); }

/* Done */
.cw-done-check { width: 68px; height: 68px; border-radius: 50%; background: #e4f8ee; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.cw-done-check svg { width: 32px; height: 32px; stroke: #1a7a4a; }

@media (max-width: 640px) {
  .demo-call-modal { flex-direction: column; min-height: unset; }
  .dcm-left { width: 100%; padding: 28px 24px; }
  .dcm-steps { display: none; }
  .dcm-right { padding: 32px 24px; }
  .dcm-row { flex-direction: column; }
}

.dcm-pane[hidden] { display: none !important; }

/* Sol-hero h1 gradient (mirrors .hero h1 .grad from site.css) */
.sol-hero h1 .grad {
  background: linear-gradient(120deg, #00E5A0 0%, #00A8C8 50%, #003057 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline;
  font-weight: 600;
}

/* Video modal */
.video-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.82);
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal-overlay.open { display: flex; }
.video-modal-box {
  position: relative;
  width: 100%; max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.video-modal-frame {
  position: relative;
  padding-bottom: 75%;
  height: 0;
}
.video-modal-frame iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  background: rgba(255,255,255,0.15);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  transition: background 0.2s;
}
.video-modal-close:hover { background: rgba(255,255,255,0.3); }

/* Product hero — single column override */
.product-hero .ph-grid-single {
  grid-template-columns: 1fr;
  max-width: 1100px;
}
/* Product hero title gradient — cyan to navy */
.product-hero h1 .grad {
  background: linear-gradient(to right, #00AEC7 0%, #006fa3 45%, #003057 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline;
  font-weight: 600;
}

/* ============================================================
   COMPARISON TABLE v2 (3-col: Feature | Generic Voice AI | Consig)
   ============================================================ */
.cmp2-section { background: #f7f8fa; }
.cmp2-head { max-width: 760px; margin-bottom: 48px; }
.cmp2-eyebrow {
  display: inline-block;
  color: #003057; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(0,48,87,0.06); border: 1px solid rgba(0,48,87,0.12);
  border-radius: 999px; padding: 5px 12px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  margin-bottom: 20px;
}
.cmp2-h2 {
  color: #003057; margin: 0 0 16px;
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.05;
}
.cmp2-grad {
  background: linear-gradient(90deg, #00aec7, #f0b323);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cmp2-sub {
  color: rgba(0,48,87,0.72); font-size: 17px; line-height: 1.55; margin: 0;
}
.cmp2-wrap { position: relative; }
.cmp2-badge {
  position: absolute; top: -16px; right: 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #00aec7, #5fd1dd);
  color: #fff; border-radius: 999px; padding: 6px 14px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.6px; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,174,199,0.3);
}
.cmp2-badge-dot {
  display: inline-block; width: 6px; height: 6px;
  background: #fff; border-radius: 999px;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}
.cmp2-table {
  background: #fff; border: 1px solid rgba(0,48,87,0.10);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,48,87,0.06);
}
.cmp2-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1.1fr;
  border-bottom: 1px solid rgba(0,48,87,0.06);
  transition: background 0.2s;
}
.cmp2-row:last-child { border-bottom: none; }
.cmp2-row-head { background: #001528; border-bottom: 1px solid rgba(0,48,87,0.1); }
.cmp2-blank { background: transparent; }
.cmp2-feat-cell {
  display: flex; align-items: center;
  padding: 20px 24px; border-right: 1px solid rgba(0,48,87,0.06);
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: #003057; letter-spacing: 0.4px;
}
.cmp2-them-cell, .cmp2-us-cell {
  display: flex; flex-direction: column; justify-content: center;
  padding: 18px 24px; gap: 2px;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: #fff;
}
.cmp2-us-cell { background: linear-gradient(rgba(0,174,199,0.18), rgba(0,174,199,0.08)); }
.cmp2-cell {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px; border-right: 1px solid rgba(0,48,87,0.06);
  font-family: var(--font-body); font-size: 14px; line-height: 1.45;
}
.cmp2-no { color: rgba(0,48,87,0.55); background: rgba(0,48,87,0.02); }
.cmp2-yes { color: #003057; background: rgba(0,174,199,0.05); font-weight: 500; }
.cmp2-row:not(.cmp2-row-head):hover .cmp2-no  { background: rgba(0,48,87,0.04); }
.cmp2-row:not(.cmp2-row-head):hover .cmp2-yes { background: rgba(0,174,199,0.10); }
.cmp2-mark {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  font-size: 11px; font-weight: 700; line-height: 1;
}
.cmp2-mark-no {
  color: #f08c2e; background: rgba(240,140,46,0.12);
  border: 1px solid rgba(240,140,46,0.32);
}
.cmp2-mark-yes {
  color: #fff; background: linear-gradient(135deg, #00aec7, #5fd1dd);
  box-shadow: 0 4px 10px rgba(0,174,199,0.3);
}
.cmp2-text { flex: 1; min-width: 0; }
.cmp2-head-title { color: #fff; font-size: 18px; font-weight: 600; letter-spacing: 0.3px; font-family: var(--font-display); }
.cmp2-head-sub { color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; margin-top: 2px; font-family: var(--font-body); }
.cmp2-head-sub-us { color: #5fd1dd; font-weight: 600; }
@media (max-width: 640px) {
  .cmp2-row { grid-template-columns: 1fr 1fr 1fr; }
  .cmp2-feat-cell, .cmp2-cell { padding: 14px 12px; font-size: 12px; }
  .cmp2-h2 { font-size: 28px; }
}

/* === cmp3: What makes us different (5-column table) === */
.cmp3-section { background: #fff; }
.cmp3-head { margin-bottom: 48px; max-width: 900px; }
.cmp3-h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #003057; margin: 0 0 20px; }
.cmp3-sub  { font-size: 17px; line-height: 1.6; color: #333; margin: 0 0 16px; }
.cmp3-sub2 { font-size: 17px; line-height: 1.6; color: #333; margin: 0; }
.cmp3-link { color: #00AEC7; text-decoration: underline; }

.cmp3-card { background: #F4F6FA; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,48,87,0.08); }
.cmp3-table { width: 100%; border-collapse: separate; border-spacing: 0; }

.cmp3-th { padding: 20px 24px; font-size: 14px; font-weight: 600; text-align: center; }
.cmp3-th-cat { text-align: left; color: #003057; font-size: 15px; width: 32%; }
.cmp3-th-comp { color: #8899aa; font-weight: 500; font-size: 14px; }
.cmp3-th-us { background: #003057; color: #fff; font-family: var(--font-display); font-size: 17px; font-weight: 700; width: 18%; }

.cmp3-td { padding: 18px 24px; border-top: 1px solid #e2e8f0; text-align: center; font-size: 15px; }
.cmp3-td-cat { text-align: left; font-weight: 600; color: #003057; }
.cmp3-td-comp { color: #999; }
.cmp3-td-us { background: #003057; border-top-color: rgba(255,255,255,0.10); }

.cmp3-check { color: #00AEC7; font-size: 20px; font-weight: 700; line-height: 1; }
.cmp3-td-us .cmp3-check { color: #5fd1dd; }
.cmp3-dash { color: #ccc; font-size: 18px; }
.cmp3-text-val { color: #666; font-size: 14px; }
.cmp3-text-neither { color: #bbb; font-size: 14px; }
.cmp3-both { color: #00AEC7; font-size: 16px; font-weight: 700; font-family: var(--font-display); }

@media (max-width: 760px) {
  .cmp3-th, .cmp3-td { padding: 14px 12px; font-size: 13px; }
  .cmp3-th-cat, .cmp3-td-cat { font-size: 13px; }
  .cmp3-h2 { font-size: 28px; }
  .cmp3-sub, .cmp3-sub2 { font-size: 15px; }
}

/* === sol-hero floating card positions — revised === */
.sol-card-tl { top: 18%;  right: 44%; }
.sol-card-tr { top: 10%;  right: 18%; }
.sol-card-ml { top: 68%;  right: 42%; }
.sol-card-br { top: 68%;  right: 16%; }

/* === sol-hero card positions — precise recalculation === */
.sol-card-tl { top: 10%;  right: 29%; }
.sol-card-tr { top:  4%;  right:  3%; }
.sol-card-ml { top: 72%;  right: 26%; }
.sol-card-br { top: 72%;  right: -1%; }
/* prevent text wrapping inside sol-hero stat cards */
.sol-hero .stat-num { max-width: none; white-space: nowrap; }

/* === sol-hero: safe area + face-aware card positions === */
/* Left cards: can never go further left than 620px from shell left (text safe zone) */
.sol-card-tl { right: auto; left: max(57%, 620px); top: 10%; }
.sol-card-ml { right: auto; left: max(59%, 620px); top: 72%; }
/* Right cards: stay right-anchored */
.sol-card-tr { left: auto; right: 3%;  top:  4%; }
.sol-card-br { left: auto; right: -1%; top: 72%; }

/* === Solution blocks: top-aligned columns, no-overlap testimonial === */
.solution-grid.v2 { align-items: start; }

/* no-photo card: light placeholder look */
.solution-card.v2.no-photo {
  background: #edf0f4;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}
.solution-card.v2.no-photo .solution-card-overlay { display: none; }
.solution-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #a0adb8;
}
.solution-photo-placeholder span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #a0adb8;
}

/* testimonial sits below image, no overlap */
.solution-card-col .solution-card-plain        { margin: 20px 0 0 !important; }
.solution-grid.v2.reverse .solution-card-col .solution-card-plain { margin: 20px 0 0 !important; }

/* Fix: image card must appear ABOVE testimonial inside reverse solution-card-col */
.solution-grid.v2.reverse .solution-card-col .solution-card.v2 { order: 0; }
.solution-grid.v2.reverse .solution-card-col .solution-card-plain { order: 1; }

/* Testimonial overlaps image from below — restore negative-margin card effect */
.solution-card-col .solution-card-plain        { margin: -72px  32px 0 -48px !important; }
.solution-grid.v2.reverse .solution-card-col .solution-card-plain { margin: -72px -48px 0  32px !important; }
@media (max-width: 860px) {
  .solution-card-col .solution-card-plain        { margin: -48px  16px 0 -24px !important; }
  .solution-grid.v2.reverse .solution-card-col .solution-card-plain { margin: -48px -24px 0  16px !important; }
}
@media (max-width: 640px) {
  .solution-card-col .solution-card-plain        { margin: 16px 0 0 0 !important; }
  .solution-grid.v2.reverse .solution-card-col .solution-card-plain { margin: 16px 0 0 0 !important; }
}

/* ===== Typography normalization — consistent body text across all pages ===== */

/* Generic: near-black on light backgrounds */
p                                             { color: #0E1419; }

/* Page-hero lede (light bg, overrides .page-hero .lede gray) */
.page-hero .lede                              { color: #0E1419; }
.hero p.lede                                  { color: #0E1419; }
.sol-hero .lede                               { color: #0E1419; }
.section-head p.problem-lede                  { color: #0E1419; }

/* Dark sections: pure white — match existing specificity so later rule wins */
.section-navy-deep p                          { color: #ffffff; }
.section-navy-deep .lede                      { color: #ffffff; }
.section-navy-deep .about-grid p              { color: #ffffff; }
.section-navy-deep .about-grid .lede          { color: #ffffff; }
.section-navy-deep .problem-lede              { color: #ffffff; }
.about-mission-dark .mission-card p           { color: #ffffff; }
.team-note-dark                               { color: #ffffff; }
.section-navy-deep .team-note                 { color: #ffffff; }
.solution-block.section-dark .solution-copy .lede { color: #ffffff; }

/* Cards on light backgrounds: 16px near-black */
.leader-card p                                { font-size: 16px; line-height: 1.6; color: #0E1419; }
.tm-quote                                     { font-size: 16px; line-height: 1.6; color: #0E1419; }
.tm-name                                      { color: #0E1419; }
.tm-title                                     { color: #0E1419; }
.kf-block-text p                              { font-size: 16px; line-height: 1.6; color: #0E1419; }
.cmp3-sub,
.cmp3-sub2                                    { color: #0E1419; }

/* Solution testimonial cards (white bg) */
.solution-card-plain blockquote               { color: #0E1419; }
.solution-card-plain .attr-name               { color: #0E1419; }
.solution-card-plain .attr-title              { color: #0E1419; }
