.customers {
  position: relative;
  z-index: 0;
  isolation: isolate;
  text-align: center;
  background: var(--bg);
}

.customers::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: clamp(6rem, 14vw, 10rem);
  background: linear-gradient(
    180deg,
    var(--section-wave-bridge-light) 0%,
    color-mix(in srgb, var(--section-wave-bridge-light) 75%, transparent 25%)
      32%,
    transparent 90%
  );
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .customers {
  background: var(--bg);
}

[data-theme="dark"] .customers::after {
  background: linear-gradient(
    180deg,
    var(--section-wave-bridge-dark) 0%,
    color-mix(in srgb, var(--section-wave-bridge-dark) 70%, transparent 30%) 36%,
    transparent 90%
  );
}

.customers__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(2000px, 94vw);
  max-width: none;
  margin-inline: auto;
  justify-content: space-evenly;
  gap: 2rem;
}

.customers__section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.customers__section-header .eyebrow {
  margin: 0;
}

.customers__section-header .section-subhead {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--fg-muted);
}

.customers__content {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: stretch;
  justify-content: space-evenly;
  text-align: left;
  width: 100%;
  column-gap: clamp(2rem, 3vw, 3rem);
  row-gap: 3rem;
}

.left,
.right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.5rem;
}

.customers__content .right {
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: clamp(2rem, 2.2vw + 1rem, 3rem);
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  margin-left: 0;
  overflow: visible;
}

.customers__content .right::before {
  display: none;
}

.customers__content .right > * {
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .customers__content .right {
  background: transparent;
  border: none;
}

.customers__content .left {
  position: relative;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: clamp(2rem, 2.5vw + 1rem, 3rem);
  border-radius: 28px 0 0 28px;
  background: var(--surface);
  border-top: 1px solid rgba(12, 28, 31, 0.08);
  border-left: 1px solid rgba(12, 28, 31, 0.08);
  border-bottom: 1px solid rgba(12, 28, 31, 0.08);
  border-right: none;
  box-shadow: none;
  overflow: hidden;
}

.customers__content .left > * {
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .customers__content .left {
  background: var(--surface);
  border-radius: 28px 0 0 28px;
  border-top: 1px solid rgba(232, 241, 242, 0.08);
  border-left: 1px solid rgba(232, 241, 242, 0.08);
  border-bottom: 1px solid rgba(232, 241, 242, 0.08);
  border-right: none;
  box-shadow: none;
}

/* ========== Pillars (left column) ========== */
.customers__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.customers__pillar-details {
  margin: 0;
}

.customers__pillar-details summary {
  cursor: pointer;
  list-style: none;
  padding: 0.6rem 0.85rem;
  margin: 0 -0.35rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--link);
  transition: all 220ms ease;
  user-select: none;
}

.customers__pillar-details summary::-webkit-details-marker {
  display: none;
}

.customers__pillar-details summary::before {
  content: "▸ ";
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 220ms ease;
}

.customers__pillar-details[open] summary::before {
  transform: rotate(90deg);
}

.customers__pillar-details summary:hover {
  background: color-mix(in srgb, var(--accent-50) 50%, transparent);
  color: var(--link-hover);
}

[data-theme="dark"] .customers__pillar-details summary:hover {
  background: color-mix(in srgb, var(--accent-900) 30%, transparent);
}

.customers__pillar-details summary:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.customers__pillar-body {
  padding: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.4rem;
  flex: 1;
}

.customers__pillar-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fg-muted);
}

.customers__pillar-body strong {
  color: var(--fg);
  font-weight: 600;
}

/* ========== Proof Rail (right column) ========== */
.customers__proof-rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: calc(var(--header-overlap) + 1rem);
}

.proof-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(8, 32, 45, 0.9) 0%,
      rgba(4, 18, 28, 0.95) 50%,
      rgba(6, 24, 38, 0.9) 100%
    );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(64, 180, 220, 0.15);
  box-shadow:
    0 8px 24px -8px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(100, 180, 220, 0.08);
}

/* Subtle noise texture */
.proof-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Dot pattern */
.proof-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(circle, rgba(64, 180, 220, 0.4) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
  pointer-events: none;
}

[data-theme="light"] .proof-badge {
  background:
    linear-gradient(
      135deg,
      rgba(245, 250, 255, 0.95) 0%,
      rgba(235, 245, 252, 0.9) 50%,
      rgba(240, 248, 255, 0.95) 100%
    );
  border: 1px solid rgba(40, 100, 140, 0.12);
  box-shadow:
    0 8px 24px -8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .proof-badge::before {
  opacity: 0.02;
}

[data-theme="light"] .proof-badge::after {
  background-image: radial-gradient(circle, rgba(40, 100, 140, 0.25) 1px, transparent 1px);
  background-size: 16px 16px;
}

.proof-badge__title {
  margin: 0;
  font-family: var(--ff-inter, var(--ff-open-sans));
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(160, 210, 240, 0.8);
}

[data-theme="light"] .proof-badge__title {
  color: rgba(40, 90, 130, 0.75);
}

.proof-badge__value {
  margin: 0;
  font-family: var(--ff-comfortaa);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 50%, #a8d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

[data-theme="light"] .proof-badge__value {
  background: linear-gradient(135deg, #0a2a40 0%, #1a5080 50%, #2a70a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.proof-badge__desc {
  margin: 0;
  font-family: var(--ff-inter, var(--ff-open-sans));
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(200, 225, 245, 0.8);
  line-height: 1.6;
}

[data-theme="light"] .proof-badge__desc {
  color: rgba(30, 55, 80, 0.75);
}

/* ========== Industries & Paths (in proof content) ========== */

.customers__clock-container {
  position: relative;
  padding: clamp(2rem, 2.5vw, 2.5rem);
  border-radius: 18px 18px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.customers__clock-container::before {
  content: none;
}

[data-theme="dark"] .customers__clock-container {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-theme="dark"] .customers__clock-container::before {
  content: none;
}

.customers__clock {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: none;
  border: none;
  box-shadow: none;
}

.customers__clock-three {
  position: relative;
  width: min(18rem, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: stretch;
}

.customers__clock-three--fallback .customers__clock-three-mount,
.customers__clock-backdrop--fallback + .customers__clock-three-mount {
  display: none;
}

.customers__clock-three--fallback .customers__clock-backdrop,
.customers__clock-backdrop--fallback {
  background: radial-gradient(
    110% 110% at 50% 50%,
    color-mix(in srgb, var(--accent-100) 65%, var(--surface) 35%) 0%,
    color-mix(in srgb, var(--accent-100) 12%, transparent) 72%
  );
  border: 1px solid color-mix(in srgb, var(--accent-200) 45%, transparent);
  box-shadow: 0 24px 48px -28px color-mix(in srgb, var(--fg) 12%, transparent);
  opacity: 1;
}

[data-theme="dark"]
  .customers__clock-three--fallback
  .customers__clock-backdrop,
[data-theme="dark"] .customers__clock-backdrop--fallback {
  background: radial-gradient(
    115% 115% at 50% 52%,
    color-mix(in srgb, var(--accent-700) 38%, transparent) 0%,
    color-mix(in srgb, var(--accent-900) 65%, transparent) 68%
  );
  border: 1px solid color-mix(in srgb, var(--accent-600) 32%, transparent);
  box-shadow: 0 28px 64px -30px rgba(4, 16, 20, 0.65);
}

.customers__clock-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transition: none;
  pointer-events: none;
}

.customers__clock-three-mount {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

.customers__clock-three-mount canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.customers__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.customers__actions--centered {
  justify-content: center;
}

.customers__cta {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "btn1 btn2"
    "micro micro";
  align-items: center;
  justify-content: center;
  justify-items: center;
  column-gap: clamp(1rem, 2vw, 1.5rem);
  row-gap: clamp(1rem, 2vw, 1.75rem);
}

.customers__cta-badge {
  width: min(220px, 100%);
}

.customers__cta-badge--left {
  grid-area: left;
}

.customers__cta-badge--right {
  grid-area: right;
}

.customers__cta .cta-microcopy {
  grid-area: micro;
  margin: 0;
  max-width: 42ch;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  color: var(--fg-muted);
}

.customers__cta-btn1,
.customers__cta-btn2 {
  width: 220px;
  text-align: center;
  justify-content: center;
}

.customers__cta-btn1 {
  grid-area: btn1;
}

.customers__cta-btn2 {
  grid-area: btn2;
}


.customers__cta .button {
  justify-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--ff-open-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  border: none;
  z-index: 0;
  transition:
    box-shadow 450ms cubic-bezier(0.4, 0, 0.2, 1),
    filter 450ms cubic-bezier(0.4, 0, 0.2, 1),
    color 450ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  min-width: max-content;
}

.customers__cta .button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  opacity: 1;
}

.customers__cta .button-primary {
  background: linear-gradient(
    135deg,
    #0891b2 0%,
    #0ea5e9 35%,
    #38bdf8 65%,
    #22d3ee 100%
  );
  color: #001820;
  box-shadow:
    0 4px 20px -4px rgba(8, 145, 178, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.customers__cta .button-primary:hover {
  filter: brightness(1.08);
  box-shadow:
    0 6px 28px -4px rgba(8, 145, 178, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.customers__cta .button-primary:active {
  filter: brightness(0.95);
  box-shadow:
    0 2px 12px -2px rgba(8, 145, 178, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.customers__cta .button-ghost {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-100) 18%, var(--surface) 82%) 0%,
    color-mix(in srgb, var(--accent-50) 12%, var(--surface) 88%) 100%
  );
  color: color-mix(in srgb, var(--accent-800) 70%, var(--fg) 30%);
  border: 1px solid color-mix(in srgb, var(--accent-400) 32%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 20px -16px color-mix(in srgb, var(--accent-600) 40%, transparent);
}

.customers__cta .button-ghost:hover {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-200) 22%, var(--surface) 78%) 0%,
    color-mix(in srgb, var(--accent-100) 16%, var(--surface) 84%) 100%
  );
  border-color: color-mix(in srgb, var(--accent-400) 42%, transparent);
  color: color-mix(in srgb, var(--accent-900) 75%, var(--fg) 25%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 28px -18px color-mix(in srgb, var(--accent-600) 50%, transparent);
}

/* Dark mode - slightly more visible shadow */
[data-theme="dark"] .customers__cta .button-primary {
  box-shadow:
    0 4px 24px -4px rgba(8, 145, 178, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .customers__cta .button-primary:hover {
  box-shadow:
    0 6px 32px -4px rgba(8, 145, 178, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .customers__cta .button-ghost {
  background: color-mix(in srgb, var(--accent-500) 24%, transparent);
  border-color: color-mix(in srgb, var(--accent-400) 38%, transparent);
  color: color-mix(in srgb, var(--accent-100) 68%, var(--fg) 32%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .customers__cta .button-ghost:hover {
  background: color-mix(in srgb, var(--accent-500) 32%, transparent);
  border-color: color-mix(in srgb, var(--accent-300) 40%, transparent);
  color: color-mix(in srgb, var(--accent-50) 72%, var(--fg) 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.customers__cta .button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(34, 211, 238, 0.6),
    0 4px 20px -4px rgba(8, 145, 178, 0.5);
}

.customers__cta .button.button-ghost:active {
  box-shadow: inset 0 0 0 1px
    color-mix(in srgb, var(--accent-500) 24%, transparent);
}

@media (max-width: 860px) {
  .customers__cta {
    margin-top: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "btn1"
      "btn2"
      "micro";
    row-gap: 1rem;
  }

  .customers__cta .cta-microcopy {
    max-width: 36ch;
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .customers__cta .button {
    transition: none;
  }

  .customers__cta .button::before {
    transition: none;
  }

  .customers__pillar-details summary::before {
    transition: none;
  }

  .customers-card::after {
    display: none;
  }

  .customers-card:hover,
  .customers-card:focus-within {
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 720px) {
  .customers__section-header {
    justify-content: center;
  }

  .customers__section-header .section-subhead {
    text-align: center;
  }

  .customers__actions {
    justify-content: center;
  }

  .customers__content .left {
    align-items: center;
    text-align: center;
    padding: 1.75rem;
  }

  .customers__actions--centered {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
  }

  .customers__actions--centered a {
    flex: 1 1 auto;
    min-width: 220px;
    text-align: center;
  }

  .customers__clock-container {
    padding: 1.5rem;
  }

  .customers__cta {
    margin-top: .75rem;
  }
}

@media (max-width: 1024px) {
  .customers__content {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .customers__proof-rail {
    position: static;
    order: -1;
  }

  .customers__content .left {
    margin-right: 0;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top: 1px solid rgba(12, 28, 31, 0.08);
    border-left: 1px solid rgba(12, 28, 31, 0.08);
    border-right: 1px solid rgba(12, 28, 31, 0.08);
    border-bottom: none;
  }

  .customers__content .right {
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: clamp(2rem, 3vw, 2.5rem);
    margin-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
    border-left: 1px solid rgba(12, 28, 31, 0.08);
    border-top: none;
  }

  [data-theme="dark"] .customers__content .left {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top: 1px solid rgba(232, 241, 242, 0.08);
    border-left: 1px solid rgba(232, 241, 242, 0.08);
    border-right: 1px solid rgba(232, 241, 242, 0.08);
    border-bottom: none;
  }

  [data-theme="dark"] .customers__content .right {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
    border-left: 1px solid rgba(232, 241, 242, 0.08);
    border-top: none;
  }
}

@media (max-width: 640px) {
  .customers__clock-container {
    padding: 1.25rem;
  }

  .customers__clock {
    width: min(100%, 300px);
    padding: 0;
  }

  .customers__clock-three {
    width: min(16rem, 100%);
  }

  .customers__cta {
    row-gap: 2rem;
  }
}

@media (max-width: 480px) {
  .customers__clock-container {
    padding: 1rem;
  }

  .customers__clock {
    width: min(100%, 240px);
    padding: 0;
  }

  .customers__cta {
    row-gap: 2.25rem;
  }
}

/* --- Customers carousel refresh --- */
.customers__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  gap: clamp(2.5rem, 5vw, 3.75rem);
}

.customers__proof-rail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: static;
  width: 100%;
}

.customers__clock-container {
  flex: 1 1 clamp(260px, 32vw, 360px);
}

.customers__clock-container {
  border-radius: 18px;
}

.customers__carousel {
  position: relative;
  width: 100%;
  max-width: 2000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  padding-block: clamp(1.5rem, 3vw, 3.5rem);
  margin: 0 auto;
  isolation: isolate;
}

.customers__carousel-viewport {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-inline: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.customers__pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: clamp(2.5rem, 4vw, 3.25rem);
  column-gap: clamp(1.5rem, 2.4vw, 2.25rem);
  justify-items: center;
  width: min(100%, 1500px);
  list-style: none;
  margin: 0;
  margin-inline: auto;
  padding: 0;
}

.customers-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  width: min(100%, 420px);
  max-width: 420px;
  min-height: 582.66px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.25);
  background-color: #000;
  color: #f6fbff;
  isolation: isolate;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Noise texture overlay */
.customers-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
}

[data-theme="light"] .customers-card::before {
  opacity: 0.015;
}

.customers-card > * {
  position: relative;
  z-index: 1;
}

.customers-card__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 0 0 220px;
  padding: 1.5rem;
  min-height: 220px;
  max-height: 220px;
  width: 100%;
  color: #f3f7ff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: rgba(6, 12, 24, 0.45);
  /* backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); */
}

.customers-card__image::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  filter: blur(5.5px);
  transform: scale(1);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.customers-card__image > * {
  position: relative;
  z-index: 1;
}

.customers-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
}

.customers-card__hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #f3f7ff;
  font-family: var(--ff-inter, var(--ff-open-sans));
}

.customers-card__hero-eyebrow {
  margin: 0;
  font-family: var(--ff-inter, var(--ff-open-sans));
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.customers-card__hero-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 30px);
  letter-spacing: 0.5px;
  font-family: var(--ff-comfortaa);
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 50%, #a8d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Card-specific title gradients */
.customers-card--speed .customers-card__hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #e8f0f8 50%, #c4d8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.customers-card--impact .customers-card__hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #d4f7ff 50%, #7de8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.customers-card--reliability .customers-card__hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #d4fff4 50%, #7dffe0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.customers-card--solutions .customers-card__hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #d4e8ff 50%, #7dc4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.customers-card--custom .customers-card__hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 50%, #d4dce8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.customers-card__hero-pill {
  position: relative;
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(5, 24, 48, 0.8), rgba(15, 45, 85, 0.65));
  border: 1px solid rgba(134, 203, 255, 0.4);
  font-size: 11px;
  font-family: var(--ff-comfortaa);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 20px rgba(114, 212, 255, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Glow effect behind pill */
.customers-card__hero-pill::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(114, 212, 255, 0.3), transparent 70%);
  z-index: -1;
  filter: blur(8px);
}

.customers-card--speed .customers-card__hero-pill::before {
  background: radial-gradient(ellipse at center, rgba(143, 211, 255, 0.25), transparent 70%);
}

.customers-card--impact .customers-card__hero-pill::before {
  background: radial-gradient(ellipse at center, rgba(102, 219, 255, 0.3), transparent 70%);
}

.customers-card--reliability .customers-card__hero-pill::before {
  background: radial-gradient(ellipse at center, rgba(98, 255, 226, 0.25), transparent 70%);
}

.customers-card--solutions .customers-card__hero-pill::before {
  background: radial-gradient(ellipse at center, rgba(120, 198, 255, 0.3), transparent 70%);
}

.customers-card--custom .customers-card__hero-pill::before {
  background: radial-gradient(ellipse at center, rgba(206, 222, 255, 0.25), transparent 70%);
}

.customers-card__content {
  position: relative;
  background-color: #000;
  color: #d7e6ff;
  display: flex;
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  flex: 1 1 auto;
  overflow: hidden;
}

/* Subtle fading dots - Base styles */
.customers-card__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background-size: 20px 20px;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  pointer-events: none;
}

/* Industries - Navy blue with bright blue accent (matches hero radial glow) */
.customers-card--industries .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(15, 164, 255, 0.45) 1.5px, transparent 1.5px);
}

/* Speed - Slate/granite tones (matches hero granite image) */
.customers-card--speed .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(130, 145, 165, 0.4) 1.5px, transparent 1.5px);
}

/* Impact - Dark cyan tones (matches hero liquid image overlay) */
.customers-card--impact .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(11, 120, 156, 0.5) 1.5px, transparent 1.5px);
}

/* Reliability - Deep teal (matches hero liquid_teal overlay) */
.customers-card--reliability .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(0, 130, 145, 0.5) 1.5px, transparent 1.5px);
}

/* Solutions - Deep blue (matches hero another_blue_liquid overlay) */
.customers-card--solutions .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(24, 104, 192, 0.45) 1.5px, transparent 1.5px);
}

/* Custom - Silver/gray (matches hero liquid_white overlay) */
.customers-card--custom .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(130, 140, 155, 0.4) 1.5px, transparent 1.5px);
}

/* Light mode fading dots */
[data-theme="light"] .customers-card--industries .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(4, 73, 110, 0.3) 1.5px, transparent 1.5px);
}

[data-theme="light"] .customers-card--speed .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(55, 65, 80, 0.25) 1.5px, transparent 1.5px);
}

[data-theme="light"] .customers-card--impact .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(11, 61, 78, 0.3) 1.5px, transparent 1.5px);
}

[data-theme="light"] .customers-card--reliability .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(0, 91, 102, 0.3) 1.5px, transparent 1.5px);
}

[data-theme="light"] .customers-card--solutions .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(12, 52, 96, 0.3) 1.5px, transparent 1.5px);
}

[data-theme="light"] .customers-card--custom .customers-card__content::after {
  background-image: radial-gradient(circle, rgba(65, 72, 80, 0.25) 1.5px, transparent 1.5px);
}

.customers-card__description {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--ff-inter, var(--ff-open-sans));
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: justify;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.customers-card__description p {
  margin: 0;
  letter-spacing: inherit;
  text-align: inherit;
  color: inherit;
  font-weight: inherit;
}

.customers-card__description-em {
  font-weight: 600;
  color: #ffffff;
}

.customers-card__description--impact,
.customers-card__description--reliability {
  background: none;
  padding: 0;
  margin-top: 1rem;
}

.customers-card__list {
  position: relative;
  z-index: 1;
  padding-left: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--ff-comfortaa);
  font-weight: 400;
  color: #c8e8ff;
  list-style: none;
}

.customers-card__list li {
  margin: 0;
  padding: 0.3rem 0.65rem;
  font-size: 11.5px;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  border-radius: 999px;
  background: rgba(114, 212, 255, 0.12);
  border: 1px solid rgba(114, 212, 255, 0.25);
  color: #c8e8ff;
  transition: all 0.3s ease;
}

.customers-card__list li:hover {
  background: rgba(114, 212, 255, 0.2);
  border-color: rgba(114, 212, 255, 0.4);
  transform: translateY(-1px);
}

/* Card-specific tag colors */
.customers-card--speed .customers-card__list li {
  background: rgba(143, 211, 255, 0.1);
  border-color: rgba(143, 211, 255, 0.2);
  color: #cce6ff;
}

.customers-card--speed .customers-card__list li:hover {
  background: rgba(143, 211, 255, 0.18);
  border-color: rgba(143, 211, 255, 0.35);
}

.customers-card--solutions .customers-card__list li {
  background: rgba(120, 198, 255, 0.1);
  border-color: rgba(120, 198, 255, 0.2);
  color: #c4e4ff;
}

.customers-card--solutions .customers-card__list li:hover {
  background: rgba(120, 198, 255, 0.18);
  border-color: rgba(120, 198, 255, 0.35);
}

.customers-card--custom .customers-card__list li {
  background: rgba(206, 222, 255, 0.08);
  border-color: rgba(206, 222, 255, 0.18);
  color: #d8e4f8;
}

.customers-card--custom .customers-card__list li:hover {
  background: rgba(206, 222, 255, 0.15);
  border-color: rgba(206, 222, 255, 0.3);
}

.customers-card__image--industries::before {
  background-image:
    linear-gradient(135deg, rgba(10, 24, 51, 0.6), rgba(4, 73, 110, 0.4)),
    image-set(
      url("/resources/card_banner.avif") type("image/avif"),
      url("/resources/card_banner.webp") type("image/webp"),
      url("/resources/card_banner.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customers-card__image--industries::after {
  background: radial-gradient(circle at top right, rgba(15, 164, 255, 0.5), transparent 60%);
}

.customers-card__image--speed::before {
  background-image:
    linear-gradient(135deg, rgba(7, 11, 18, 0.55), rgba(7, 11, 18, 0.35)),
    image-set(
      url("/resources/granite.avif") type("image/avif"),
      url("/resources/granite.webp") type("image/webp"),
      url("/resources/granite.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customers-card__image--speed::after {
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.25), rgba(1, 2, 4, 0.65));
}

.customers-card__image--impact::before {
  background-image:
    linear-gradient(135deg, rgba(1, 9, 16, 0.35), rgba(11, 61, 78, 0.15)),
    image-set(
      url("/resources/liquid.avif") type("image/avif"),
      url("/resources/liquid.webp") type("image/webp"),
      url("/resources/liquid.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customers-card__image--impact::after {
  background: linear-gradient(180deg, rgba(9, 24, 31, 0.25), rgba(3, 8, 12, 0.7));
}

.customers-card__image--reliability::before {
  background-image:
    linear-gradient(135deg, rgba(0, 21, 26, 0.55), rgba(0, 91, 102, 0.25)),
    image-set(
      url("/resources/liquid_teal.avif") type("image/avif"),
      url("/resources/liquid_teal.webp") type("image/webp"),
      url("/resources/liquid_teal.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customers-card__image--reliability::after {
  background: linear-gradient(180deg, rgba(4, 30, 37, 0.25), rgba(1, 9, 12, 0.75));
}

.customers-card__image--solutions::before {
  background-image:
    linear-gradient(135deg, rgba(6, 24, 48, 0.6), rgba(12, 52, 96, 0.4)),
    image-set(
      url("/resources/another_blue_liquid.avif") type("image/avif"),
      url("/resources/another_blue_liquid.webp") type("image/webp"),
      url("/resources/another_blue_liquid.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customers-card__image--solutions::after {
  background: linear-gradient(180deg, rgba(6, 24, 48, 0.2), rgba(2, 8, 16, 0.75));
}

.customers-card__image--custom::before {
  background-image:
    linear-gradient(135deg, rgba(17, 19, 22, 0.55), rgba(65, 72, 80, 0.25)),
    image-set(
      url("/resources/liquid_white.avif") type("image/avif"),
      url("/resources/liquid_white.webp") type("image/webp"),
      url("/resources/liquid_white.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.customers-card__image--custom::after {
  background: linear-gradient(180deg, rgba(16, 18, 21, 0.25), rgba(3, 4, 6, 0.8));
}

/* Light theme variant styling */
[data-theme="light"] .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(245, 248, 255, 0.08));
}

[data-theme="light"] .customers-card__image::before {
  filter: blur(4px);
}

[data-theme="light"] .customers-card__image {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .customers-card__image--industries::before {
  background-image:
    linear-gradient(135deg, rgba(215, 230, 255, 0.2), rgba(192, 212, 246, 0.15)),
    image-set(
      url("/resources/card_banner.avif") type("image/avif"),
      url("/resources/card_banner.webp") type("image/webp"),
      url("/resources/card_banner.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-theme="light"] .customers-card--industries .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

[data-theme="light"] .customers-card__image--speed::before {
  background-image:
    linear-gradient(135deg, rgba(225, 230, 240, 0.18), rgba(206, 213, 227, 0.12)),
    image-set(
      url("/resources/granite.avif") type("image/avif"),
      url("/resources/granite.webp") type("image/webp"),
      url("/resources/granite.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-theme="light"] .customers-card--speed .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

[data-theme="light"] .customers-card__image--impact::before {
  background-image:
    linear-gradient(135deg, rgba(222, 240, 250, 0.18), rgba(203, 226, 238, 0.12)),
    image-set(
      url("/resources/liquid.avif") type("image/avif"),
      url("/resources/liquid.webp") type("image/webp"),
      url("/resources/liquid.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-theme="light"] .customers-card--impact .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

[data-theme="light"] .customers-card__image--reliability::before {
  background-image:
    linear-gradient(135deg, rgba(214, 244, 242, 0.42), rgba(196, 232, 229, 0.3)),
    image-set(
      url("/resources/liquid_teal.avif") type("image/avif"),
      url("/resources/liquid_teal.webp") type("image/webp"),
      url("/resources/liquid_teal.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

[data-theme="light"] .customers-card--reliability .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

[data-theme="light"] .customers-card__image--solutions::before {
  background-image:
    linear-gradient(135deg, rgba(215, 230, 252, 0.45), rgba(196, 213, 238, 0.32)),
    image-set(
      url("/resources/another_blue_liquid.avif") type("image/avif"),
      url("/resources/another_blue_liquid.webp") type("image/webp"),
      url("/resources/another_blue_liquid.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

[data-theme="light"] .customers-card--solutions .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

[data-theme="light"] .customers-card__image--custom::before {
  background-image:
    linear-gradient(135deg, rgba(226, 231, 240, 0.45), rgba(205, 212, 225, 0.35)),
    image-set(
      url("/resources/liquid_white.avif") type("image/avif"),
      url("/resources/liquid_white.webp") type("image/webp"),
      url("/resources/liquid_white.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

[data-theme="light"] .customers-card--custom .customers-card__image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

html[data-theme="light"] .customers-card {
  background-color: #fff;
  color: #0c1c2f;
  box-shadow: none;
}

[data-theme="light"] .customers-card__content {
  background-color: #ffffff;
  color: #1a1a2e;
}

[data-theme="light"] .customers-card__hero-pill {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 52, 96, 0.35);
  color: #0c1c2f;
}

[data-theme="light"] .customers-card__description {
  color: rgba(0, 0, 0, 0.75);
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .customers-card__description-em {
  color: #1a1a2e;
}

[data-theme="light"] .customers-card__description--impact,
[data-theme="light"] .customers-card__description--reliability {
  color: rgba(0, 0, 0, 0.75);
  background: none;
}

[data-theme="light"] .customers-card__list {
  color: #1a4a7a;
}

[data-theme="light"] .customers-card__list li {
  background: rgba(20, 80, 140, 0.12);
  border-color: rgba(20, 80, 140, 0.25);
  color: #1a4a7a;
}

[data-theme="light"] .customers-card__list li:hover {
  background: rgba(20, 80, 140, 0.18);
  border-color: rgba(20, 80, 140, 0.35);
}

[data-theme="light"] .customers-card--speed .customers-card__list li {
  background: rgba(40, 70, 110, 0.12);
  border-color: rgba(40, 70, 110, 0.25);
  color: #2a4a6a;
}

[data-theme="light"] .customers-card--speed .customers-card__list li:hover {
  background: rgba(40, 70, 110, 0.18);
  border-color: rgba(40, 70, 110, 0.35);
}

[data-theme="light"] .customers-card--solutions .customers-card__list li {
  background: rgba(20, 80, 140, 0.12);
  border-color: rgba(20, 80, 140, 0.25);
  color: #1a4a7a;
}

[data-theme="light"] .customers-card--solutions .customers-card__list li:hover {
  background: rgba(20, 80, 140, 0.18);
  border-color: rgba(20, 80, 140, 0.35);
}

[data-theme="light"] .customers-card--custom .customers-card__list li {
  background: rgba(50, 60, 80, 0.12);
  border-color: rgba(50, 60, 80, 0.25);
  color: #3a4a5a;
}

[data-theme="light"] .customers-card--custom .customers-card__list li:hover {
  background: rgba(50, 60, 80, 0.18);
  border-color: rgba(50, 60, 80, 0.35);
}

.customers__swipe-hint {
  display: none !important;
}

@media (max-width: 1500px) {
  .customers__pillars {
    width: min(100%, 950px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .customers__carousel-viewport {
    width: 100%;
  }
}

.customers-card__list .show-mobile {
  display: none;
}

@media (max-width: 890px) {
  .customers-card__list .hide-mobile {
    display: none;
  }

  .customers-card__list .show-mobile {
    display: inline-flex;
  }
}

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

  .customers-card__content {
    padding: 1.15rem 1.2rem 1.35rem;
  }

  .customers-card__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .customers-card__hero-title {
    font-size: clamp(28px, 6vw, 32px);
  }

  .customers-card__hero-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
  }
}
.customers-card__description--impact,
.customers-card__description--reliability {
  margin: 0.75rem 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--ff-inter, var(--ff-open-sans));
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.5px;
  text-align: justify;
}

.customers-card__description--impact {
  color: #d4f7ff;
}

.customers-card__description--reliability {
  color: #c5fff3;
}

/* Ensure typography matches component reference exactly */
.customers .customers-card__description,
.customers .customers-card__description--impact,
.customers .customers-card__description--reliability,
.customers .customers-card__description p {
  font-family: var(--ff-inter, var(--ff-open-sans));
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.75;
}

.customers .customers-card__list,
.customers .customers-card__list li {
  font-family: var(--ff-comfortaa);
  font-weight: 400;
}

[data-theme="light"] .customers-card__hero {
  color: #0c1c2f;
}

[data-theme="light"] .customers-card__hero-eyebrow {
  color: rgba(12, 28, 47, 0.95);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 255, 255, 0.7),
    0 0 24px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .customers-card__hero-title {
  background: linear-gradient(135deg, #061424 0%, #0d2840 50%, #1a4060 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

[data-theme="light"] .customers-card__hero-pill {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 28, 47, 0.15);
  color: #0c1c2f;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .customers-card__hero-pill::before {
  background: none;
}

[data-theme="light"] .customers-card--industries .customers-card__hero-eyebrow,
[data-theme="light"] .customers-card--speed .customers-card__hero-eyebrow,
[data-theme="light"] .customers-card--impact .customers-card__hero-eyebrow {
  color: #ffffff;
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .customers-card--industries .customers-card__hero-title,
[data-theme="light"] .customers-card--speed .customers-card__hero-title,
[data-theme="light"] .customers-card--impact .customers-card__hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #e0e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 3px rgba(0, 0, 0, 0.35))
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

[data-theme="light"] .customers-card--reliability .customers-card__hero-eyebrow,
[data-theme="light"] .customers-card--solutions .customers-card__hero-eyebrow,
[data-theme="light"] .customers-card--custom .customers-card__hero-eyebrow {
  color: #0a1820;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .customers-card--reliability .customers-card__hero-title,
[data-theme="light"] .customers-card--solutions .customers-card__hero-title,
[data-theme="light"] .customers-card--custom .customers-card__hero-title {
  background: linear-gradient(135deg, #041018 0%, #0a1e30 50%, #142840 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

