/* CleanForm splash — Enterprise repositioning (extends existing design tokens) */

/* ── Hero UX (enterprise) ── */
.hero--enterprise {
  padding: 72px 0 56px;
  text-align: left;
}

.hero--enterprise .container {
  max-width: 1180px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__copy {
  max-width: 36rem;
}

.cf-eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(13, 148, 136, 0.22);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-800, #1e3a5f);
  line-height: 1.3;
  max-width: 100%;
}

.cf-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500, #14b8a6);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
  flex-shrink: 0;
  animation: cf-hero-pulse 2.4s ease-in-out infinite;
}

@keyframes cf-hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.hero--enterprise h1 {
  margin: 0 0 18px;
  max-width: none;
  text-align: left;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  line-height: 1.08;
  text-wrap: balance;
}

.hero--enterprise.hero--clean h1 {
  max-width: none;
}

.hero--enterprise .hero__line {
  display: block;
  color: var(--navy-900, #0f2744);
}

.hero--enterprise .hero-accent {
  display: block;
  margin-top: 0.12em;
  background: linear-gradient(135deg, var(--teal-600, #0d9488) 0%, var(--leaf-600, #16a34a) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero--enterprise .hero__lead {
  margin: 0 0 22px;
  max-width: 34rem;
  text-align: left;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
  color: var(--slate-600, #64748b);
}

.hero__capabilities {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--slate-200, #e2e8f0);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800, #1e3a5f);
  line-height: 1.3;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.hero__cap:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08);
}

.hero__cap-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.hero--enterprise .hero__actions {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.hero--enterprise .hero__actions .btn--lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
}

.hero__cta-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--slate-500, #94a3b8);
  line-height: 1.5;
}

.hero__cta-note strong {
  color: var(--slate-600, #64748b);
  font-weight: 600;
}

/* Right-side platform preview card */
.hero__aside {
  position: relative;
}

.hero__platform-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.03),
    0 24px 48px rgba(15, 39, 68, 0.08);
}

.hero__platform-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.35), rgba(15, 39, 68, 0.06) 55%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.hero__platform-head strong {
  font-size: 0.82rem;
  color: var(--navy-900, #0f2744);
}

.hero__platform-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700, #0f766e);
  background: #f0fdfa;
  border: 1px solid rgba(13, 148, 136, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
}

.hero__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__flow-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  position: relative;
}

.hero__flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 38px;
  bottom: -2px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-400, #2dd4bf), rgba(45, 212, 191, 0.15));
}

.hero__flow-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
  border: 1px solid rgba(13, 148, 136, 0.2);
  position: relative;
  z-index: 1;
}

.hero__flow-step strong {
  display: block;
  font-size: 0.82rem;
  color: var(--navy-900, #0f2744);
  margin-bottom: 2px;
}

.hero__flow-step span {
  font-size: 0.72rem;
  color: var(--slate-500, #94a3b8);
  line-height: 1.4;
}

.hero__platform-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--slate-500, #94a3b8);
}

.hero__platform-foot em {
  font-style: normal;
  font-weight: 700;
  color: var(--teal-600, #0d9488);
}

@media (max-width: 960px) {
  .hero--enterprise {
    padding: 56px 0 40px;
    text-align: center;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__copy {
    max-width: none;
    margin: 0 auto;
  }

  .hero--enterprise h1,
  .hero--enterprise .hero__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero--enterprise h1 {
    max-width: none;
  }

  .hero--enterprise .hero__lead {
    max-width: 38rem;
  }

  .cf-eyebrow--pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__capabilities {
    justify-content: center;
  }

  .hero--enterprise .hero__actions {
    justify-content: center;
  }

  .hero__cta-note {
    text-align: center;
  }

  .hero__aside {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero__capabilities {
    gap: 6px;
  }

  .hero__cap {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .hero--enterprise .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero--enterprise .hero__actions .btn--lg {
    width: 100%;
    justify-content: center;
  }
}

/* Legacy bullets (fallback) */
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  max-width: 640px;
}

.hero__bullets li {
  font-size: 0.88rem;
  color: var(--slate-600, #64748b);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}

.hero__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-600, #0d9488);
  font-weight: 700;
}

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

.cf-platform {
  padding: 72px 0;
  background: #fff;
}

.cf-platform__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cf-platform__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cf-platform__card:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.cf-platform__card--highlight {
  border-color: var(--teal-600, #0d9488);
  background: linear-gradient(165deg, #f0fdfa 0%, #fff 55%);
  box-shadow: 0 10px 32px rgba(13, 148, 136, 0.1);
}

.cf-platform__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cf-platform__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0f172a;
}

.cf-platform__card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 10px;
}

.cf-platform__card ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
}

.cf-platform__mini-flow {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--teal-700, #0f766e);
  font-weight: 600;
  line-height: 1.6;
}

.cf-pdf-workflow {
  padding: 88px 0;
  background: linear-gradient(180deg, #0f2744 0%, #164e63 100%);
  color: #fff;
}

.cf-pdf-workflow .section-head__eyebrow { color: var(--teal-400, #2dd4bf); }
.cf-pdf-workflow .section-head h2 { color: #fff; }
.cf-pdf-workflow .section-head p { color: rgba(255, 255, 255, 0.75); }

.cf-workflow-pipeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 4px;
  margin-top: 48px;
}

.cf-workflow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: cf-wf-fade 0.6s ease both;
  animation-delay: var(--wf-delay, 0s);
}

.cf-workflow-step span:first-child { font-size: 1rem; }

.cf-workflow-arrow {
  color: var(--teal-400, #2dd4bf);
  font-size: 1.1rem;
  opacity: 0.7;
  animation: cf-wf-pulse 2s ease-in-out infinite;
  animation-delay: var(--wf-delay, 0s);
}

@keyframes cf-wf-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cf-wf-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-workflow-step, .cf-workflow-arrow { animation: none; }
}

.cf-kyc {
  padding: 88px 0;
  background: #f8fafc;
}

.cf-kyc__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.cf-kyc__flow {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
}

.cf-kyc__flow-step {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}

.cf-kyc__flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, #d1d5db, transparent);
}

.cf-kyc__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0fdfa;
  border: 2px solid var(--teal-600, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 1;
}

.cf-kyc__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-kyc__usecase {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
}

.cf-kyc__usecase h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #0f172a;
}

.cf-kyc__usecase ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.55;
}

.cf-industry-solutions {
  padding: 72px 0;
  background: #fff;
}

.cf-industry-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.cf-industry-sol {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cf-industry-sol:hover {
  border-color: var(--teal-600, #0d9488);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.cf-industry-sol h3 { margin: 0 0 8px; font-size: 1rem; }
.cf-industry-sol ul { margin: 0; padding-left: 1rem; font-size: 0.78rem; color: #64748b; line-height: 1.5; }
.cf-industry-sol__link { display: block; margin-top: 10px; font-size: 0.78rem; font-weight: 700; color: var(--teal-600, #0d9488); }

.cf-audit {
  padding: 88px 0;
  background: #fff;
}

.cf-audit__panel {
  margin-top: 40px;
  background: #0f172a;
  border-radius: 14px;
  padding: 28px;
  color: #e2e8f0;
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
}

.cf-audit__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cf-audit__row--head {
  color: #94a3b8;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.cf-audit__timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.cf-audit__tl-step {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cf-form-builder {
  padding: 88px 0;
  background: #f8fafc;
}

.cf-form-builder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}

.cf-form-builder__shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.cf-form-builder__shot img {
  display: block;
  width: 100%;
  height: auto;
}

.cf-form-builder__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cf-form-builder__feat {
  font-size: 0.85rem;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
}

.cf-form-builder__feat::before {
  content: '✓ ';
  color: var(--teal-600, #0d9488);
  font-weight: 700;
}

.cf-outcomes {
  padding: 72px 0;
  background: #fff;
}

.cf-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.cf-outcome-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.cf-outcome-card strong {
  display: block;
  font-size: 2rem;
  color: var(--teal-600, #0d9488);
  margin-bottom: 6px;
}

.cf-outcome-card span {
  font-size: 0.85rem;
  color: #64748b;
}

.cf-outcome-pillars {
  padding: 72px 0;
  background: #f8fafc;
}

.cf-outcome-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.cf-outcome-pillar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px;
}

.cf-outcome-pillar h3 {
  font-size: 0.88rem;
  margin: 0 0 10px;
  color: var(--teal-700, #0f766e);
}

.cf-outcome-pillar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.55;
}

.cf-outcome-pillar li { padding: 3px 0; }

.cf-cio {
  padding: 88px 0;
  background: #0f172a;
  color: #fff;
}

.cf-cio .section-head h2 { color: #fff; }
.cf-cio .section-head p { color: rgba(255, 255, 255, 0.7); }
.cf-cio .section-head__eyebrow { color: var(--teal-400, #2dd4bf); }

.cf-cio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.cf-cio__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
}

.cf-cio__item h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #fff;
}

.cf-cio__item p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.cf-cases {
  padding: 72px 0;
  background: #fff;
}

.cf-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.cf-case {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}

.cf-case__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-600, #0d9488);
  font-weight: 700;
  margin-bottom: 8px;
}

.cf-case h3 { margin: 0 0 10px; font-size: 1.05rem; }
.cf-case ul { margin: 0; padding-left: 1rem; font-size: 0.82rem; color: #64748b; line-height: 1.55; }

.cf-case__note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
}

.cf-security-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cf-security-trio__col {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.cf-security-trio__col h4 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-700, #0f766e);
}

.cf-security-trio__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
}

.cf-security-trio__col li::before {
  content: '→ ';
  color: var(--teal-600, #0d9488);
}

.cf-ai-examples {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-ai-example {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-style: italic;
  color: #334155;
}

/* Enterprise upgrade — why, architecture, comparison, built-for */
.cf-why {
  padding: 72px 0;
}

.cf-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}

.cf-why__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cf-why__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}

.cf-why__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.cf-why__solution-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--teal-600, #0d9488);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.cf-why__solution-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111827;
}

.cf-why__solution-card p {
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 18px;
}

.pdf-demo__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.cf-kyc--prominent {
  padding: 88px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.cf-kyc__flow--vertical {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.cf-kyc__flow-arrow {
  text-align: center;
  color: var(--teal-600, #0d9488);
  font-size: 1.2rem;
  padding: 4px 0;
}

.cf-kyc__usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cf-kyc__usecases .cf-kyc__usecase {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.cf-kyc__usecases .cf-kyc__usecase h4 {
  margin: 0;
  font-size: 0.9rem;
  color: #111827;
}

.cf-architecture {
  padding: 88px 0;
}

.cf-architecture__flow {
  max-width: 640px;
  margin: 40px auto 0;
}

.cf-architecture__layer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
}

.cf-architecture__layer span {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #374151;
}

.cf-architecture__layer--core {
  background: #f0fdfa;
  border-color: var(--teal-600, #0d9488);
  justify-content: center;
}

.cf-architecture__layer--core strong {
  color: var(--teal-700, #0f766e);
}

.cf-architecture__layer--ext span {
  background: #f1f5f9;
}

.cf-architecture__arrow {
  text-align: center;
  color: #94a3b8;
  font-size: 1.25rem;
  padding: 8px 0;
}

.cf-audit__note {
  margin: 16px 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
}

.cf-comparison {
  padding: 88px 0;
  background: #f8fafc;
}

.cf-comparison__wrap {
  margin-top: 36px;
  overflow-x: auto;
}

.cf-comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.cf-comparison__table th,
.cf-comparison__table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.cf-comparison__table th {
  background: #0f172a;
  color: #fff;
  font-weight: 600;
}

.cf-comparison__table th:nth-child(2),
.cf-comparison__table td:nth-child(2) {
  color: var(--teal-700, #0f766e);
  font-weight: 600;
}

.cf-comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.cf-built-for {
  padding: 72px 0;
}

.cf-built-for__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.cf-built-for__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.cf-built-for__item span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cf-built-for__item strong {
  font-size: 0.88rem;
  color: #111827;
}

.cf-built-for__note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: #64748b;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__capabilities--badges .hero__cap-icon {
  color: var(--teal-600, #0d9488);
  font-size: 0.85rem;
}

/* 24/7 always-on assistant */
.cf-always-on {
  padding: 88px 0;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: #e2e8f0;
}

.cf-always-on .section-head__eyebrow {
  color: var(--teal-400, #2dd4bf);
}

.cf-always-on h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}

.cf-always-on__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cf-always-on__copy p {
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.7;
  margin: 0 0 14px;
}

.cf-always-on__sub {
  font-size: 0.92rem;
  color: rgba(148, 163, 184, 0.95) !important;
}

.cf-always-on__flow {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
}

.cf-always-on__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}

.cf-always-on__step--highlight {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(13, 148, 136, 0.12);
}

.cf-always-on__step strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.cf-always-on__step > span:last-child {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
}

.cf-always-on__time {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-400, #2dd4bf);
  font-weight: 700;
  margin-bottom: 6px;
}

.cf-always-on__arrow {
  text-align: center;
  color: #475569;
  padding: 4px 0;
  font-size: 1rem;
}

.cf-ai-example__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-600, #0d9488);
  font-style: normal;
  margin-bottom: 4px;
}

.cf-ai-example--client {
  border-left: 3px solid #8b5cf6;
}

@media (max-width: 1080px) {
  .cf-platform__grid { grid-template-columns: 1fr 1fr; }
  .cf-outcome-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .cf-industry-solutions__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .cf-platform__grid,
  .cf-kyc__layout,
  .cf-kyc__cols,
  .cf-form-builder__grid,
  .cf-outcomes__grid,
  .cf-cio__grid,
  .cf-cases__grid,
  .cf-security-trio,
  .cf-industry-solutions__grid,
  .cf-outcome-pillars__grid { grid-template-columns: 1fr; }
  .cf-why__grid { grid-template-columns: 1fr; }
  .cf-built-for__grid { grid-template-columns: repeat(2, 1fr); }
  .cf-kyc__usecases { grid-template-columns: 1fr; }
  .cf-always-on__layout { grid-template-columns: 1fr; }
  .cf-audit__row { grid-template-columns: 1fr; gap: 4px; }
  .cf-workflow-pipeline { flex-direction: column; }
  .cf-workflow-arrow { transform: rotate(90deg); }
}
