/* DocRouter enterprise brand — aligned with LinkedIn profile identity */

:root {
  --dr-navy: #1a2b4c;
  --dr-blue: #007bff;
  --dr-blue-dark: #0056b3;
  --dr-slate: #64748b;
  --dr-bg: #f8fafc;
  --dr-bg-accent: #f0f7ff;
}

.enterprise-hero {
  background:
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(0, 123, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(26, 43, 76, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--dr-bg-accent) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.enterprise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 43, 76, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.enterprise-hero-ring {
  position: absolute;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.enterprise-pipeline-wave {
  flex: 1;
  width: 100%;
  min-width: 2rem;
  max-width: 5rem;
  height: 1.5rem;
  align-self: flex-start;
  margin-top: 1.75rem;
  opacity: 0.45;
}

.enterprise-pipeline-wave path {
  fill: none;
  stroke: var(--dr-blue);
  stroke-width: 2;
  stroke-dasharray: 3 7;
  stroke-linecap: round;
}

.enterprise-icon-tile {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(26, 43, 76, 0.06);
}

.enterprise-section-label {
  color: var(--dr-blue);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enterprise-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(26, 43, 76, 0.06);
}

.enterprise-btn-primary {
  background-color: var(--dr-navy);
  color: #ffffff;
}

.enterprise-btn-primary:hover {
  background-color: #0f1d33;
}

.enterprise-btn-secondary {
  background-color: #ffffff;
  border: 1px solid var(--dr-navy);
  color: var(--dr-navy);
}

.enterprise-btn-secondary:hover {
  background-color: #f8fafc;
}

.enterprise-metric {
  color: var(--dr-blue);
}

.enterprise-proof-card {
  border-left: 3px solid var(--dr-blue);
}

.enterprise-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dr-blue);
}

.enterprise-band {
  background-color: var(--dr-navy);
  color: #ffffff;
}

.enterprise-band h2,
.enterprise-band h3 {
  color: #ffffff;
}

.enterprise-band p,
.enterprise-band li {
  color: #cbd5e1;
}

.enterprise-band-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
}

.enterprise-doc-link {
  display: block;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enterprise-doc-link:hover {
  border-color: #93c5fd;
  box-shadow: 0 2px 8px rgba(26, 43, 76, 0.06);
}

.case-study-prose > p > em:only-child,
.case-study-prose > p:first-child em {
  display: block;
  font-style: normal;
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
}

.solution-challenge-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .solution-challenge-icon {
    margin-left: 0;
    margin-right: 0;
  }
}

.solution-challenge-icon--inline {
  margin: 0;
}

.enterprise-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.enterprise-accordion-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.enterprise-accordion-btn h3 {
  color: var(--dr-navy);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.enterprise-pricing-nav {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: #f1f5f9;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.enterprise-pricing-nav a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #64748b;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.enterprise-pricing-nav a:hover {
  color: var(--dr-navy);
}

.enterprise-pricing-nav a.is-active {
  background: #ffffff;
  color: var(--dr-navy);
  box-shadow: 0 1px 3px rgba(26, 43, 76, 0.08);
}

.enterprise-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enterprise-pricing-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(26, 43, 76, 0.06);
}

.enterprise-pricing-card--featured {
  border: 2px solid var(--dr-blue);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.1);
}

.enterprise-pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dr-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.enterprise-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enterprise-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.enterprise-check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--dr-blue);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.enterprise-info-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.enterprise-info-panel h2,
.enterprise-info-panel h3 {
  color: var(--dr-navy);
}
