:root {
  --ch-gold: #dda200;
  --ch-dark: #0b1220;
  --ch-glass: rgba(255, 255, 255, 0.08);
}

/* Section background */
#company-highlights {
  background: linear-gradient(180deg, var(--ch-gold), #ffd563 85%);
  color: #0d6efd !important;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

/* Heading area */
.ch-title {
  color: #0d6efd;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ch-lead {
  color: #0b1220;
  margin-bottom: 0.5rem;
}
.ch-note {
  color: #0b1220;
}

/* Grid & cards */
.ch-grid {
  margin-top: 0.5rem;
}

.ch-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.06);
  min-height: 88px;
}

/* Icon box */
.ch-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.12)
  );
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11, 18, 32, 0.06);
}

/* main metric */
.ch-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b1220;
  line-height: 1;
}
.ch-unit {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1f242d !important;
  margin-left: 4px;
}

/* label / small text */
.ch-label {
  font-size: 0.88rem;
  color: #1f242d !important;
  margin-top: 0.25rem;
}

/* accent spans use site primary if available, otherwise deep gold-dark */
.ch-accent {
  color: var(--accent, #0d6efd);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 0.18rem;
  border-radius: 6px;
}

/* layout / spacing */
.ch-body {
  display: block;
}

/* hover / focus */
@media (hover: hover) and (pointer: fine) {
  .ch-card:hover {
    transform: translateY(-6px);
    transition: transform 0.22s cubic-bezier(0.22, 0.9, 0.32, 1);
    box-shadow: 0 28px 64px rgba(11, 18, 32, 0.12);
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  #company-highlights {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .ch-grid {
    margin-top: 1rem;
  }
  .ch-card {
    min-height: 100px;
  }
}

/* reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .ch-card {
    transition: none !important;
    transform: none !important;
  }
}

:root {
  --se-gold: var(--ch-gold, #f4c542);
  --se-bg: linear-gradient(180deg, var(--se-gold), #e6b93e 85%);
  --se-text: #0b1220;
  --se-glass: rgba(255, 255, 255, 0.06);
  --se-shadow: var(--shadow, 0 10px 28px rgba(11, 18, 32, 0.06));
}

#site-extraction {
  color: var(--se-text);
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

/* Image wrapper */
.se-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(11, 18, 32, 0.04);
  box-shadow: 0 20px 50px rgba(11, 18, 32, 0.08);
}

/* Image */
.se-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.32, 1), filter 0.4s ease;
  will-change: transform;
}

/* subtle parallax / zoom on hover for non-touch */
@media (hover: hover) and (pointer: fine) {
  .se-image-wrap:hover .se-image {
    transform: scale(1.03) translateY(-4px);
    filter: saturate(1.03) contrast(1.02);
  }
}

/* Card area (text) */
.se-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.04);
  box-shadow: var(--se-shadow);
  color: var(--se-text);
}

/* Icon */
.se-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--se-text);
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.06);
  flex-shrink: 0;
}

/* Heading and small uppercase */
.se-head h2 {
  margin: 0;
  font-weight: 800;
  color: var(--se-text);
}
.se-head .fw-600 {
  letter-spacing: 0.08em;
  color: rgba(11, 18, 32, 0.72);
}

/* Body text */
.se-text {
  color: rgba(11, 18, 32, 0.85);
  line-height: 1.6;
}

/* list */
.se-list {
  color: rgba(11, 18, 32, 0.8);
  padding-left: 1.05rem;
}

/* CTA buttons */
.se-cta {
  background: #0b1220;
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.08);
  border: none;
}
.se-cta:hover {
  background: #0a0f15;
  transform: translateY(-2px);
}

/* outline-dark variant */
.btn-outline-dark {
  border-color: rgba(11, 18, 32, 0.08);
  color: #0b1220;
  background: transparent;
}

/* responsive adjustments */
@media (max-width: 991.98px) {
  #site-extraction {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .se-card {
    padding: 1.15rem;
  }
  .se-image {
    min-height: 220px;
  }
}

@media (min-width: 992px) {
  .se-card {
    padding: 1.75rem 2rem;
  }
}

/* reduced motion: disable transform animations */
@media (prefers-reduced-motion: reduce) {
  .se-image,
  .se-image-wrap,
  .se-card {
    transition: none !important;
    transform: none !important;
  }
}

/* optional light-mode override if you embed this on a light page */
#site-extraction.light-mode {
  background: var(--se-gold);
}
