.desoft-zf-dashboard {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(136, 0, 21, 0.06) 0%, rgba(248, 232, 238, 0.45) 50%, rgba(255, 255, 255, 0.9) 100%);
  overflow: hidden;
}

.desoft-zf-dashboard--inline {
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.desoft-zf-dashboard--inline::before {
  display: none;
}

.desoft-zf-dashboard--tint {
  background: transparent;
}

.desoft-zf-dashboard__inner--inline {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .desoft-zf-dashboard--inline {
    padding: 2.75rem 0;
  }
}

@media (min-width: 640px) {
  .desoft-zf-dashboard__inner--inline {
    padding: 0 1.5rem;
  }
}

.desoft-zf-source-hidden {
  display: none !important;
}

/* ZeroFox CTI section — +2pt typography */
.desoft-zf-cti-section .text-xs {
  font-size: calc(0.75rem + 2pt) !important;
}

.desoft-zf-cti-section .text-sm {
  font-size: calc(0.875rem + 2pt) !important;
}

.desoft-zf-cti-section .text-lg {
  font-size: calc(1.125rem + 2pt) !important;
}

.desoft-zf-cti-section .text-3xl {
  font-size: calc(1.875rem + 2pt) !important;
}

@media (max-width: 767px) {
  .desoft-zf-cti-section .text-xs {
    font-size: 0.75rem !important;
  }

  .desoft-zf-cti-section .text-sm {
    font-size: 0.875rem !important;
  }

  .desoft-zf-cti-section .text-lg {
    font-size: 1.0625rem !important;
  }

  .desoft-zf-cti-section .text-3xl {
    font-size: clamp(1.375rem, 6vw, 1.625rem) !important;
  }

}

/* CTI capabilities — interactive flow graphic */
.desoft-zf-cti-source-hidden {
  display: none !important;
}

.desoft-zf-cti-graphic {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.15rem 1rem 1rem;
  border-radius: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(136, 0, 21, 0.06) 0%,
    rgba(255, 255, 255, 0.96) 58%
  );
  border: 1px solid rgba(136, 0, 21, 0.22);
  box-shadow: 0 10px 32px rgba(136, 0, 21, 0.08);
}

.desoft-zf-cti-graphic__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 9999px;
  background: rgba(136, 0, 21, 0.06);
  border: 1px dashed rgba(136, 0, 21, 0.2);
}

.desoft-zf-cti-graphic__flow-node {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.desoft-zf-cti-graphic__flow-node--in {
  background: rgba(136, 0, 21, 0.1);
  color: #880015;
}

.desoft-zf-cti-graphic__flow-node--mid {
  background: #880015;
  color: #fff;
  box-shadow: 0 4px 12px rgba(136, 0, 21, 0.28);
}

.desoft-zf-cti-graphic__flow-node--out {
  background: rgba(11, 31, 58, 0.08);
  color: #0b1f3a;
}

.desoft-zf-cti-graphic__flow-arrow {
  width: 1.25rem;
  height: 0.35rem;
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(136, 0, 21, 0.15), #880015, rgba(136, 0, 21, 0.15));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 8'%3E%3Cpath d='M0 4h20M16 1l4 3-4 3' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 8'%3E%3Cpath d='M0 4h20M16 1l4 3-4 3' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .desoft-zf-cti-graphic__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .desoft-zf-cti-graphic__grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

.desoft-zf-cti-graphic__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.35rem 0.6rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(136, 0, 21, 0.16);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.desoft-zf-cti-graphic__tile:hover {
  background: rgba(136, 0, 21, 0.06);
  border-color: rgba(136, 0, 21, 0.35);
  transform: translateY(-2px);
}

.desoft-zf-cti-graphic__tile:focus-visible {
  outline: 2px solid #880015;
  outline-offset: 2px;
}

.desoft-zf-cti-graphic__tile.is-active {
  background: rgba(136, 0, 21, 0.1);
  border-color: rgba(136, 0, 21, 0.5);
  box-shadow: 0 6px 16px rgba(136, 0, 21, 0.12);
}

.desoft-zf-cti-graphic:not(.desoft-zf-cti-graphic--interacted)
  .desoft-zf-cti-graphic__tile:not(.is-active) {
  animation: desoft-zf-cti-tile-nudge 2.4s ease-in-out infinite;
}

@keyframes desoft-zf-cti-tile-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

.desoft-zf-cti-graphic__icon {
  width: 1.35rem;
  height: 1.35rem;
  background-color: #880015;
  flex-shrink: 0;
}

.desoft-zf-cti-graphic__icon--darkweb {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 0 1 0 20M12 2a15 15 0 0 0 0 20'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 0 1 0 20M12 2a15 15 0 0 0 0 20'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__icon--detect {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3-3'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3-3'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__icon--breach {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__icon--creds {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 2l-2 2m-7.6 7.6a6.5 6.5 0 1 1-9-9L5 6'/%3E%3Cpath d='M15 9l6-6'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 2l-2 2m-7.6 7.6a6.5 6.5 0 1 1-9-9L5 6'/%3E%3Cpath d='M15 9l6-6'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__icon--feeds {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 11a9 9 0 0 1 9 9M4 4a16 16 0 0 1 16 16'/%3E%3Ccircle cx='5' cy='19' r='1'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 11a9 9 0 0 1 9 9M4 4a16 16 0 0 1 16 16'/%3E%3Ccircle cx='5' cy='19' r='1'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__icon--portal {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__icon--integrate {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 0 1 7 7l-2 2a5 5 0 0 1-7-7l1-1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7-7L5 6a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 0 1 7 7l-2 2a5 5 0 0 1-7-7l1-1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7-7L5 6a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic__step {
  font-size: 0.62rem;
  font-weight: 800;
  color: #b91c3c;
  letter-spacing: 0.04em;
}

.desoft-zf-cti-graphic__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0b1f3a;
  line-height: 1.25;
}

.desoft-zf-cti-graphic__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto 0.75rem;
  padding: 0.5rem 0.8rem;
  max-width: 22rem;
  border-radius: 9999px;
  background: rgba(136, 0, 21, 0.08);
  border: 1px dashed rgba(136, 0, 21, 0.28);
  color: #880015;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  transition:
    opacity 0.35s ease,
    max-height 0.35s ease,
    margin 0.35s ease,
    padding 0.35s ease;
  animation: desoft-zf-cti-hint-bob 2.4s ease-in-out infinite;
}

.desoft-zf-cti-graphic__hint-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-color: #880015;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath d='M13 13l6 6'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath d='M13 13l6 6'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.desoft-zf-cti-graphic--interacted .desoft-zf-cti-graphic__hint {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
  animation: none;
}

@keyframes desoft-zf-cti-hint-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.desoft-zf-cti-graphic__detail {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(136, 0, 21, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.desoft-zf-cti-graphic__detail.is-switching {
  animation: desoft-zf-cti-detail-fade 0.32s ease;
}

@keyframes desoft-zf-cti-detail-fade {
  0% {
    opacity: 0.55;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.desoft-zf-cti-graphic__detail-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.desoft-zf-cti-graphic__detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background: rgba(136, 0, 21, 0.12);
  color: #880015;
  font-size: 0.68rem;
  font-weight: 800;
}

.desoft-zf-cti-graphic__detail-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.desoft-zf-cti-graphic__detail-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1f3a;
  line-height: 1.3;
}

.desoft-zf-cti-graphic__detail-tag {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #880015;
}

.desoft-zf-cti-graphic__detail-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
}

@media (max-width: 767px) {
  .desoft-zf-cti-graphic__flow {
    flex-direction: column;
    align-items: stretch;
    border-radius: 1rem;
    gap: 0.35rem;
    padding: 0.75rem;
  }

  .desoft-zf-cti-graphic__flow-node {
    white-space: normal;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.35;
  }

  .desoft-zf-cti-graphic__flow-arrow {
    width: 0.35rem;
    height: 1rem;
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .desoft-zf-cti-graphic__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .desoft-zf-cti-graphic__label {
    font-size: 0.68rem;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desoft-zf-cti-graphic__tile,
  .desoft-zf-cti-graphic__hint,
  .desoft-zf-cti-graphic__detail {
    animation: none !important;
    transition: none;
  }

  .desoft-zf-cti-graphic__tile:hover {
    transform: none;
  }
}

.desoft-zf-dashboard--duo {
  padding: 1rem 0;
}

.desoft-zf-dashboard__inner--duo {
  max-width: 68rem;
}

.desoft-zf-duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .desoft-zf-duo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-items: start;
  }
}

.desoft-zf-duo-grid .desoft-zf-card {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  box-shadow: 0 6px 20px rgba(136, 0, 21, 0.06);
}

.desoft-zf-duo-grid .desoft-zf-card__title {
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

/* Compact insight tables */
.desoft-zf-mini-table-wrap {
  overflow-x: auto;
}

.desoft-zf-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
}

.desoft-zf-mini-table th,
.desoft-zf-mini-table td {
  padding: 0.38rem 0.35rem;
  border-bottom: 1px solid rgba(136, 0, 21, 0.1);
  text-align: center;
  vertical-align: middle;
}

.desoft-zf-mini-table th {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #880015;
  background: rgba(136, 0, 21, 0.05);
  white-space: nowrap;
}

.desoft-zf-mini-table__threat {
  text-align: left !important;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.desoft-zf-mini-table--matrix th {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.68rem;
}

.desoft-zf-mini-table--matrix .desoft-zf-mini-table__threat {
  max-width: 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desoft-zf-mini-table--time .desoft-zf-mini-table__threat {
  max-width: 8.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desoft-zf-mini-table tbody tr {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.desoft-zf-mini-table tbody tr.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-zf-mini-table tbody tr:last-child td,
.desoft-zf-mini-table tbody tr:last-child th {
  border-bottom: none;
}

.desoft-zf-mini-table__old {
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.72rem;
}

.desoft-zf-mini-table__new {
  color: #880015;
  font-weight: 700;
  font-size: 0.72rem;
}

.desoft-zf-mini-table th.desoft-zf-mini-table__zf {
  color: #880015;
}

.desoft-zf-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.2rem;
  border-radius: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.desoft-zf-score--5 {
  background: #880015;
  color: #fff;
}

.desoft-zf-score--4 {
  background: rgba(136, 0, 21, 0.72);
  color: #fff;
}

.desoft-zf-score--3 {
  background: rgba(136, 0, 21, 0.28);
  color: #880015;
}

.desoft-zf-matrix-block__subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b1f3a;
  margin: 1.35rem 0 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(136, 0, 21, 0.12);
}

/* Protection cycle cards */
.desoft-zf-cycle-cards .desoft-zf-cycle-card {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease !important;
}

.desoft-zf-cycle-cards .desoft-zf-cycle-card__title {
  display: inline-block;
  transition:
    color 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.45s ease;
}

.desoft-zf-cycle-cards .desoft-zf-cycle-card.is-zf-cycle-active {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 42px rgba(136, 0, 21, 0.22) !important;
  border-color: rgba(136, 0, 21, 0.55) !important;
}

.desoft-zf-cycle-cards .desoft-zf-cycle-card.is-zf-cycle-active .desoft-zf-cycle-card__title,
.desoft-zf-cycle-cards .desoft-zf-cycle-card.is-zf-cycle-active h3,
.desoft-zf-cycle-cards .desoft-zf-cycle-card.is-zf-cycle-active [class*="text-3xl"] {
  color: #880015 !important;
  transform: scale(1.06) !important;
  text-shadow: 0 0 24px rgba(185, 28, 60, 0.35);
  animation: desoft-zf-cycle-title-glow 2.4s ease-in-out infinite;
}

@keyframes desoft-zf-cycle-title-glow {
  0%,
  100% {
    letter-spacing: 0;
    filter: brightness(1);
  }
  50% {
    letter-spacing: 0.05em;
    filter: brightness(1.12);
  }
}

/* Protection cycle timeline */
.desoft-zf-cycle-widget {
  margin-top: 1.5rem;
}

.desoft-zf-cycle-widget__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 9999px;
  background: rgba(136, 0, 21, 0.08);
  border: 1px dashed rgba(136, 0, 21, 0.28);
  color: #880015;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  animation: desoftZfHintBob 2.4s ease-in-out infinite;
}

.desoft-zf-cycle-widget--interacted .desoft-zf-cycle-widget__hint {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  animation: none;
}

.desoft-zf-cycle-widget__hint-icon {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  background-color: #880015;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath d='M13 13l6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath d='M13 13l6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes desoftZfHintBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.desoft-zf-cycle-widget__track {
  position: relative;
  padding: 0.5rem 0 0.25rem;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

.desoft-zf-cycle-widget__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.15rem;
  height: 0.25rem;
  background: rgba(136, 0, 21, 0.16);
  border-radius: 9999px;
  overflow: hidden;
  z-index: 0;
}

.desoft-zf-cycle-widget__line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #b91c3c, #880015);
  border-radius: 9999px;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-cycle-widget__nodes {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.desoft-zf-cycle-widget__node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.desoft-zf-cycle-widget__node:hover {
  background: rgba(136, 0, 21, 0.08);
  transform: translateY(-2px);
}

.desoft-zf-cycle-widget__node.is-active {
  background: rgba(136, 0, 21, 0.08);
}

.desoft-zf-cycle-widget:not(.desoft-zf-cycle-widget--interacted) .desoft-zf-cycle-widget__node:not(.is-active) .desoft-zf-cycle-widget__dot {
  animation: desoftZfCyclePulse 2.2s ease-in-out infinite;
}

@keyframes desoftZfCyclePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 5px rgba(136, 0, 21, 0); }
  50% { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 7px rgba(136, 0, 21, 0.25); }
}

.desoft-zf-cycle-widget__dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 9999px;
  background: #fff;
  border: 2px solid rgba(136, 0, 21, 0.35);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.desoft-zf-cycle-widget__node.is-active .desoft-zf-cycle-widget__dot {
  background: #880015;
  border-color: #880015;
  transform: scale(1.15);
}

.desoft-zf-cycle-widget__level {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
}

.desoft-zf-cycle-widget__node.is-active .desoft-zf-cycle-widget__level {
  color: #880015;
}

.desoft-zf-cycle-widget__label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
}

.desoft-zf-cycle-widget__node.is-active .desoft-zf-cycle-widget__label {
  color: #0f172a;
}

.desoft-zf-cycle-widget__detail {
  max-width: 42rem;
  margin: 0 auto;
}

.desoft-zf-cycle-widget__detail.is-switching {
  animation: desoftZfCycleFade 0.35s ease;
}

@keyframes desoftZfCycleFade {
  0% { opacity: 0.55; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.desoft-zf-cycle-widget__detail-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.desoft-zf-cycle-widget__detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: rgba(136, 0, 21, 0.12);
  color: #880015;
  font-size: 0.72rem;
  font-weight: 800;
}

.desoft-zf-cycle-widget__detail-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.desoft-zf-cycle-widget__detail-sub {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #880015;
}

.desoft-zf-cycle-widget__detail-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
}

.desoft-zf-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(136, 0, 21, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(114, 47, 55, 0.07) 0%, transparent 40%);
  pointer-events: none;
}

.desoft-zf-dashboard__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .desoft-zf-dashboard__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .desoft-zf-dashboard__inner {
    padding: 5rem 2rem;
  }
}

.desoft-zf-dashboard__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.desoft-zf-dashboard__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #880015;
  background: rgba(136, 0, 21, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.desoft-zf-dashboard__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0b1f3a;
  margin: 0 0 0.75rem;
}

.desoft-zf-dashboard__subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* KPI cards */
.desoft-zf-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .desoft-zf-kpi-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.desoft-zf-kpi {
  background: #fff;
  border: 2px solid rgba(136, 0, 21, 0.15);
  border-radius: 1rem;
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(136, 0, 21, 0.07);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-kpi.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-zf-kpi__value {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #880015;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.desoft-zf-kpi__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.35;
}

.desoft-zf-dashboard__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .desoft-zf-dashboard__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.desoft-zf-card {
  background: #fff;
  border: 2px solid rgba(136, 0, 21, 0.18);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(136, 0, 21, 0.08);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .desoft-zf-card {
    padding: 1.75rem;
  }
}

.desoft-zf-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b1f3a;
  margin: 0 0 1.25rem;
}

.desoft-zf-bar-row {
  margin-bottom: 1.1rem;
}

.desoft-zf-bar-row:last-child {
  margin-bottom: 0;
}

.desoft-zf-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.desoft-zf-bar-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.desoft-zf-bar-value {
  font-size: 0.875rem;
  font-weight: 800;
  color: #880015;
  white-space: nowrap;
  min-width: 2.75rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.desoft-zf-bar-track {
  height: 0.65rem;
  background: rgba(136, 0, 21, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.desoft-zf-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, #880015 0%, #b91c3c 55%, #722f37 100%);
  transition: none;
}

.desoft-zf-bar-fill.is-animated {
  width: var(--zf-width, 0%);
}

/* Threat surface */
.desoft-zf-surface-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .desoft-zf-surface-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.desoft-zf-surface-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.desoft-zf-surface-item:last-child {
  margin-bottom: 0;
}

.desoft-zf-surface-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: rgba(136, 0, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.desoft-zf-surface-body {
  flex: 1;
  min-width: 0;
}

.desoft-zf-surface-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

.desoft-zf-surface-meta span:last-child {
  color: #880015;
  font-weight: 800;
}

.desoft-zf-surface-track {
  height: 0.5rem;
  background: rgba(136, 0, 21, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.desoft-zf-surface-fill {
  height: 100%;
  width: 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, #722f37, #880015);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-surface-fill.is-animated {
  width: var(--zf-surface-width, 0%);
}

/* Line chart */
.desoft-zf-chart-wrap {
  position: relative;
  margin-top: 0.5rem;
}

.desoft-zf-line-chart {
  width: 100%;
  height: auto;
  display: block;
}

.desoft-zf-line-chart__grid line {
  stroke: rgba(136, 0, 21, 0.1);
  stroke-width: 1;
}

.desoft-zf-line-chart__area {
  fill: url(#desoftZfAreaGrad);
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}

.desoft-zf-line-chart__area.is-animated {
  opacity: 1;
}

.desoft-zf-line-chart__path {
  fill: none;
  stroke: #880015;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-line-chart__path.is-animated {
  stroke-dashoffset: 0;
}

.desoft-zf-line-chart__dot {
  fill: #880015;
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.3s ease;
}

.desoft-zf-line-chart__dot.is-animated {
  opacity: 1;
}

.desoft-zf-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #9ca3af;
}

/* Heat matrix */
.desoft-zf-matrix {
  overflow-x: auto;
}

.desoft-zf-matrix table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.35rem;
  font-size: 0.78rem;
}

.desoft-zf-matrix th {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #880015;
  padding: 0.35rem 0.5rem;
  text-align: center;
}

.desoft-zf-matrix td:first-child {
  font-weight: 600;
  color: #374151;
  padding-right: 0.5rem;
  white-space: nowrap;
}

.desoft-zf-heat-cell {
  display: block;
  text-align: center;
  padding: 0.45rem 0.35rem;
  border-radius: 0.5rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.35;
  transform: scale(0.88);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    color 0.28s ease;
  font-variant-numeric: tabular-nums;
}

.desoft-zf-heat-cell.is-visible {
  opacity: 1;
  transform: scale(1);
}

.desoft-zf-heat-cell--0 {
  background: rgba(136, 0, 21, 0.06);
  color: rgba(136, 0, 21, 0.3);
}

.desoft-zf-heat-cell--1 { background: rgba(136, 0, 21, 0.25); color: #880015; }
.desoft-zf-heat-cell--2 { background: rgba(136, 0, 21, 0.45); }
.desoft-zf-heat-cell--3 { background: rgba(136, 0, 21, 0.65); }
.desoft-zf-heat-cell--4 { background: rgba(136, 0, 21, 0.85); }
.desoft-zf-heat-cell--5 { background: #880015; }

/* Table */
.desoft-zf-table-wrap {
  overflow-x: auto;
}

.desoft-zf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.desoft-zf-table th,
.desoft-zf-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(136, 0, 21, 0.12);
}

.desoft-zf-table th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #880015;
  background: rgba(136, 0, 21, 0.06);
}

.desoft-zf-table td:first-child {
  font-weight: 600;
  color: #1f2937;
}

.desoft-zf-table td:nth-child(2) {
  color: #6b7280;
}

.desoft-zf-table td:nth-child(3) {
  color: #880015;
  font-weight: 700;
}

.desoft-zf-table tr:last-child td {
  border-bottom: none;
}

.desoft-zf-table tbody tr {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.desoft-zf-table tbody tr.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.desoft-zf-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.desoft-zf-badge--bad {
  background: #fee2e2;
  color: #991b1b;
}

.desoft-zf-badge--good {
  background: rgba(136, 0, 21, 0.12);
  color: #880015;
}

/* Response time comparison */
.desoft-zf-response {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.desoft-zf-response-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: center;
  gap: 0.75rem;
}

.desoft-zf-response-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
}

.desoft-zf-response-bars {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.desoft-zf-response-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.desoft-zf-response-bar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  width: 4.5rem;
  flex-shrink: 0;
  color: #6b7280;
}

.desoft-zf-response-track {
  flex: 1;
  height: 0.55rem;
  background: rgba(136, 0, 21, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.desoft-zf-response-fill {
  height: 100%;
  width: 0;
  border-radius: 9999px;
  transition: none;
}

.desoft-zf-response-fill--old {
  background: #d1d5db;
}

.desoft-zf-response-fill--new {
  background: linear-gradient(90deg, #880015, #b91c3c);
}

.desoft-zf-response-fill.is-animated {
  width: var(--zf-resp-width, 0%);
}

/* Cycle */
.desoft-zf-cycle {
  margin-top: 0;
  background: #fff;
  border: 2px solid rgba(136, 0, 21, 0.18);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(136, 0, 21, 0.08);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-cycle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desoft-zf-cycle__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1f3a;
  margin: 0 0 1.25rem;
  text-align: center;
}

.desoft-zf-cycle__flow {
  display: none;
}

@media (min-width: 768px) {
  .desoft-zf-cycle__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }

  .desoft-zf-flow-node {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #880015;
    flex-shrink: 0;
    animation: desoftZfPulse 2s ease-in-out infinite;
  }

  .desoft-zf-flow-node:nth-child(3) {
    animation-delay: 0.4s;
  }

  .desoft-zf-flow-node:nth-child(5) {
    animation-delay: 0.8s;
  }

  .desoft-zf-flow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(136, 0, 21, 0.2), rgba(136, 0, 21, 0.6), rgba(136, 0, 21, 0.2));
    background-size: 200% 100%;
    animation: desoftZfFlowLine 2.5s linear infinite;
    max-width: 6rem;
  }
}

@keyframes desoftZfPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(136, 0, 21, 0.4); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(136, 0, 21, 0); }
}

@keyframes desoftZfFlowLine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.desoft-zf-cycle__steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .desoft-zf-cycle__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.desoft-zf-cycle-step {
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(136, 0, 21, 0.07), rgba(248, 232, 238, 0.5));
  border: 1px solid rgba(136, 0, 21, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desoft-zf-cycle-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(136, 0, 21, 0.12);
}

.desoft-zf-cycle-step__num {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #880015;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.desoft-zf-cycle-step__name {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 0.35rem;
}

.desoft-zf-cycle-step__desc {
  font-size: 0.78rem;
  color: #4b5563;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  min-height: 2.5rem;
}

.desoft-zf-donut {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto;
}

.desoft-zf-donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.desoft-zf-donut circle {
  fill: none;
  stroke-width: 3.2;
}

.desoft-zf-donut__bg {
  stroke: rgba(136, 0, 21, 0.15);
}

.desoft-zf-donut__fg {
  stroke: #880015;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.desoft-zf-donut__fg.is-animated {
  stroke-dasharray: var(--zf-dash, 0 100);
}

.desoft-zf-donut__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #880015;
  margin-top: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .desoft-zf-bar-fill,
  .desoft-zf-donut__fg,
  .desoft-zf-surface-fill,
  .desoft-zf-response-fill,
  .desoft-zf-line-chart__path,
  .desoft-zf-kpi,
  .desoft-zf-card,
  .desoft-zf-cycle,
  .desoft-zf-cycle-widget__hint,
  .desoft-zf-cycle-widget__node,
  .desoft-zf-cycle-widget__dot {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .desoft-zf-bar-fill.is-animated { width: var(--zf-width, 0%); }
  .desoft-zf-donut__fg.is-animated { stroke-dasharray: var(--zf-dash, 0 100); }
  .desoft-zf-surface-fill.is-animated { width: var(--zf-surface-width, 0%); }
  .desoft-zf-response-fill.is-animated { width: var(--zf-resp-width, 0%); }
  .desoft-zf-line-chart__path.is-animated { stroke-dashoffset: 0; }
  .desoft-zf-line-chart__area.is-animated { opacity: 1; }
  .desoft-zf-flow-node, .desoft-zf-flow-line { animation: none; }
  .desoft-zf-heat-cell { opacity: 1; transform: none; transition: none; }
  .desoft-zf-cycle-card,
  .desoft-zf-cycle-card__title {
    transition: none;
    animation: none;
    transform: none;
    text-shadow: none;
  }

  body.desoft-solution-zerofox .desoft-zf-hero-stats > div,
  body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div,
  body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div::before,
  body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div::after,
  body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div > div:first-child {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    text-shadow: none !important;
    letter-spacing: normal !important;
  }
}

/* ZeroFox — bordo çerçeve teması (React kartları + kalan mavi/lacivert sınıflar) */
body.desoft-solution-zerofox #desoft-bg-animation {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(136, 0, 21, 0.08), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(155, 35, 53, 0.06), transparent 50%),
    radial-gradient(ellipse 80% 50% at 0% 80%, rgba(114, 47, 55, 0.05), transparent 45%) !important;
}

body.desoft-solution-zerofox #desoft-bg-animation .desoft-bg-grid {
  background-image:
    linear-gradient(rgba(136, 0, 21, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 0, 21, 0.055) 1px, transparent 1px) !important;
}

body.desoft-solution-zerofox #desoft-bg-animation .desoft-bg-orb {
  background: rgba(136, 0, 21, 0.13) !important;
}

body.desoft-solution-zerofox :not(button):not(a)[class*="border-[#0077B6]"],
body.desoft-solution-zerofox :not(button):not(a)[class*="border-[#880015]"],
body.desoft-solution-zerofox :not(button):not(a)[class*="border-[#0B1F3A]"] {
  border-color: rgba(136, 0, 21, 0.22) !important;
}

body.desoft-solution-zerofox :not(button):not(a)[class*="hover:border-[#0077B6]"]:hover,
body.desoft-solution-zerofox :not(button):not(a)[class*="hover:border-[#880015]"]:hover,
body.desoft-solution-zerofox :not(button):not(a)[class*="hover:border-[#0B1F3A]"]:hover {
  border-color: rgba(136, 0, 21, 0.45) !important;
}

body.desoft-solution-zerofox [class*="text-[#0077B6]"],
body.desoft-solution-zerofox .text-\[\#0077B6\] {
  color: #880015 !important;
}

body.desoft-solution-zerofox [class*="text-[#00B4D8]"],
body.desoft-solution-zerofox [class*="text-[#b91c3c]"] {
  color: #b91c3c !important;
}

body.desoft-solution-zerofox :not(button):not(a)[class*="bg-[#0077B6]"],
body.desoft-solution-zerofox :not(button):not(a)[class*="bg-[#880015]"] {
  background-color: rgba(136, 0, 21, 0.1) !important;
}

body.desoft-solution-zerofox :not(button):not(a)[class*="hover:bg-[#0077B6]"]:hover,
body.desoft-solution-zerofox :not(button):not(a)[class*="hover:bg-[#880015]"]:hover {
  background-color: rgba(136, 0, 21, 0.08) !important;
}

body.desoft-solution-zerofox .desoft-zf-cycle-cards > div {
  border-color: rgba(136, 0, 21, 0.22) !important;
}

/* Hero stats — 3 kart yan yana, koyu arka plan + beyaz yazı */
body.desoft-solution-zerofox .desoft-zf-hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem;
  width: 100%;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats > div {
  background-color: #880015 !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 4px 14px rgba(136, 0, 21, 0.35);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(52px) scale(0.82) rotate(-2deg);
  will-change: transform, opacity, box-shadow;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div {
  animation:
    desoftZfStatEnter 1s cubic-bezier(0.34, 1.45, 0.64, 1) forwards,
    desoftZfStatPulse 2.2s ease-in-out 1.15s infinite;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(1) {
  animation-delay: 0s, 1.15s;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(2) {
  animation-delay: 0.2s, 1.45s;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(3) {
  animation-delay: 0.4s, 1.75s;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
  animation: desoftZfStatRing 2.2s ease-in-out infinite;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(2)::before {
  animation-delay: 0.35s;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(3)::before {
  animation-delay: 0.7s;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 70%
  );
  transform: translateX(-140%);
  pointer-events: none;
  z-index: 1;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(1)::after {
  animation: desoftZfStatShine 3.2s ease-in-out 0.9s infinite;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(2)::after {
  animation: desoftZfStatShine 3.2s ease-in-out 1.8s infinite;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(3)::after {
  animation: desoftZfStatShine 3.2s ease-in-out 2.7s infinite;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:hover {
  transform: translateY(-10px) scale(1.06) rotate(0deg);
  box-shadow: 0 20px 40px rgba(136, 0, 21, 0.62), 0 0 0 3px rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55) !important;
  transition: transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

@keyframes desoftZfStatEnter {
  0% {
    opacity: 0;
    transform: translateY(52px) scale(0.82) rotate(-2deg);
  }
  55% {
    opacity: 1;
    transform: translateY(-10px) scale(1.07) rotate(0.5deg);
  }
  75% {
    transform: translateY(4px) scale(0.98) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes desoftZfStatPulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(136, 0, 21, 0.4), 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 12px 32px rgba(136, 0, 21, 0.58), 0 0 0 4px rgba(255, 255, 255, 0.14);
  }
}

@keyframes desoftZfStatRing {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 0.55;
  }
  50% {
    border-color: rgba(255, 255, 255, 0.55);
    opacity: 1;
  }
}

@keyframes desoftZfStatShine {
  0%, 65%, 100% {
    transform: translateX(-140%);
  }
  35% {
    transform: translateX(140%);
  }
}

body.desoft-solution-zerofox .desoft-zf-hero-stats > div > div:first-child {
  color: #ffffff !important;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats > div > div:last-child {
  color: rgba(255, 255, 255, 0.88) !important;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div > div:first-child {
  position: relative;
  z-index: 3;
  animation: desoftZfStatValueGlow 1.8s ease-in-out infinite;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(2) > div:first-child {
  animation-delay: 0.35s;
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div:nth-child(3) > div:first-child {
  animation-delay: 0.7s;
}

@keyframes desoftZfStatValueGlow {
  0%, 100% {
    text-shadow: 0 0 0 transparent;
    transform: scale(1);
    letter-spacing: 0;
  }
  50% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.85),
      0 0 28px rgba(255, 200, 210, 0.55);
    transform: scale(1.1);
    letter-spacing: 0.04em;
  }
}

body.desoft-solution-zerofox .desoft-zf-hero-stats.is-ready > div > div:last-child {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  body.desoft-solution-zerofox .desoft-zf-hero-stats {
    gap: 0.5rem;
  }

  body.desoft-solution-zerofox .desoft-zf-hero-stats > div {
    padding: 0.75rem 0.4rem !important;
  }

  body.desoft-solution-zerofox .desoft-zf-hero-stats > div > div:first-child {
    font-size: 1.125rem !important;
  }

  body.desoft-solution-zerofox .desoft-zf-hero-stats > div > div:last-child {
    font-size: 0.6875rem !important;
    line-height: 1.35 !important;
  }
}

/* ZeroFox references — industry sectors marquee (Wallarm speed) */
.zerofox-sectors-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.zerofox-sectors-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: zerofox-sectors-scroll var(--zf-marquee-duration, 107s) linear infinite;
  animation-delay: 0s;
  will-change: transform;
}

.zerofox-sectors-set {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.zerofox-sector-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(136, 0, 21, 0.22);
  background: rgba(136, 0, 21, 0.06);
  color: #880015;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes zerofox-sectors-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--zf-marquee-shift, 50%)), 0, 0);
  }
}

@media (min-width: 640px) {
  .zerofox-sector-pill {
    font-size: 0.9375rem;
    padding: 0.65rem 1.25rem;
  }

  .zerofox-sectors-set {
    gap: 1.15rem;
  }

  .zerofox-sectors-track {
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .zerofox-sectors-set {
    gap: 1.25rem;
  }

  .zerofox-sectors-track {
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zerofox-sectors-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .zerofox-sectors-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }

  .zerofox-sectors-set {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .zerofox-sectors-set[aria-hidden="true"] {
    display: none;
  }
}

/* Takedown / Enforcement callout */
.desoft-zf-takedown-callout {
  position: relative;
  z-index: 10;
  padding: 0 1rem 2.5rem;
  margin-top: -0.5rem;
}

.desoft-zf-takedown-callout__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #5c0011 0%, #880015 50%, #b91c3c 100%);
  border: 2px solid rgba(255, 200, 210, 0.45);
  box-shadow:
    0 0 0 1px rgba(136, 0, 21, 0.25),
    0 16px 48px rgba(92, 0, 17, 0.32);
  color: #fff;
  text-align: center;
}

.desoft-zf-takedown-callout__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 220, 228, 0.55);
  color: #ffe4e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desoft-zf-takedown-callout__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.desoft-zf-takedown-callout__lead {
  max-width: 46rem;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.desoft-zf-takedown-callout__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 42rem;
  margin: 0 auto 1.35rem;
}

.desoft-zf-takedown-callout__stat {
  padding: 0.75rem 0.5rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.desoft-zf-takedown-callout__stat-value {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.desoft-zf-takedown-callout__stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.desoft-zf-takedown-callout__grid {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.desoft-zf-takedown-callout__mode {
  padding: 1rem 1.1rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.desoft-zf-takedown-callout__mode--automated {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 220, 228, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.desoft-zf-takedown-callout__mode:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 220, 228, 0.55);
}

.desoft-zf-takedown-callout__pill {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffe4e8;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desoft-zf-takedown-callout__mode--automated .desoft-zf-takedown-callout__pill {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.desoft-zf-takedown-callout__mode-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 768px) {
  .desoft-zf-takedown-callout {
    padding: 0 1.5rem 3rem;
  }

  .desoft-zf-takedown-callout__inner {
    padding: 2rem 2.25rem 1.75rem;
  }

  .desoft-zf-takedown-callout__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .desoft-zf-takedown-callout__stats {
    grid-template-columns: 1fr;
    max-width: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desoft-zf-takedown-callout__mode:hover {
    transform: none;
  }
}

.desoft-zf-what-is-grid {
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desoft-zf-what-is-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
    gap: 2.5rem 3rem;
    align-items: center;
  }
}

.desoft-zf-what-is-copy {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 2px solid #9b2335;
  border-left-width: 0.45rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 28, 60, 0.3), transparent 38%),
    linear-gradient(145deg, #0b1f3a 0%, #152f4c 100%);
  box-shadow:
    0 20px 44px rgba(11, 31, 58, 0.2),
    0 5px 14px rgba(136, 0, 21, 0.12);
}

.desoft-zf-what-is-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.3rem;
  background: linear-gradient(90deg, #b91c3c, #9b2335 55%, #d45a70);
}

.desoft-zf-what-is-copy h2 {
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 1.35rem !important;
}

.desoft-zf-what-is-copy .prose,
.desoft-zf-what-is-copy .prose p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.desoft-zf-what-is-copy .prose p {
  font-size: clamp(1rem, 1.35vw, 1.075rem);
  line-height: 1.8;
  letter-spacing: 0.005em;
}

.desoft-zf-what-is-copy .prose p + p {
  margin-top: 1.05rem;
}

@media (max-width: 640px) {
  .desoft-zf-what-is-copy {
    padding: 1.35rem 1.15rem 1.5rem;
    border-left-width: 0.3rem;
    border-radius: 1.15rem;
  }

  .desoft-zf-what-is-copy .prose p {
    font-size: 1rem;
    line-height: 1.72;
  }
}

.desoft-zf-what-is-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .desoft-zf-what-is-visual {
    margin-top: 0;
    justify-content: flex-end;
  }
}

.desoft-zf-what-is-visual__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(136, 0, 21, 0.14);
}

@media (max-width: 1023px) {
  .desoft-zf-what-is-visual__image {
    max-width: min(100%, 560px);
    max-height: none;
  }
}

/* Screenshot sections user asked to remove */
body.desoft-solution-zerofox .desoft-zf-hero-stats,
body.desoft-solution-zerofox .zerofox-sectors-track,
body.desoft-solution-zerofox .zerofox-sectors-marquee,
body.desoft-solution-zerofox .desoft-zf-native-hidden,
body.desoft-solution-zerofox [data-zf-screenshot-removed="1"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body.desoft-solution-zerofox section:has(.desoft-zf-hero-stats),
body.desoft-solution-zerofox section:has(.zerofox-sectors-track),
body.desoft-solution-zerofox section:has(.zerofox-sectors-marquee) {
  display: none !important;
}

/* Why ZeroFox + Protection features */
.desoft-zf-feature-section {
  position: relative;
  z-index: 10;
  padding: 3.5rem 0;
}

.desoft-zf-feature-section__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .desoft-zf-feature-section__inner {
    padding: 0 1.5rem;
  }
}

.desoft-zf-feature-section__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.25rem;
}

.desoft-zf-feature-section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #880015;
}

.desoft-zf-feature-section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

.desoft-zf-feature-section__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4b5563;
}

.desoft-zf-why-section__header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.desoft-zf-why-section__intro {
  margin-top: 0.35rem;
}

.desoft-zf-why-section__intro-p {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4b5563;
}

.desoft-zf-why-section__intro-p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #0b1f3a;
}

.desoft-zf-why-section__pillars {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .desoft-zf-why-section__pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.desoft-zf-why-pillar {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.desoft-zf-why-pillar__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.desoft-zf-why-pillar__num {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #880015;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.desoft-zf-why-pillar__meta {
  min-width: 0;
}

.desoft-zf-why-pillar__title {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0b1f3a;
}

.desoft-zf-why-pillar__tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #880015;
}

.desoft-zf-why-pillar__lead {
  margin: 0 0 0.95rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
}

.desoft-zf-why-pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.desoft-zf-why-pillar__point {
  display: grid;
  gap: 0.25rem;
}

.desoft-zf-why-pillar__point-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b1f3a;
}

.desoft-zf-why-pillar__point-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

.desoft-zf-why-compare {
  max-width: 56rem;
  margin: 0 auto;
}

.desoft-zf-why-compare__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}

.desoft-zf-why-compare__table-wrap {
  overflow-x: auto;
  border: 2px solid rgba(136, 0, 21, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(136, 0, 21, 0.08);
}

.desoft-zf-why-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 34rem;
}

.desoft-zf-why-compare__table th,
.desoft-zf-why-compare__table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(136, 0, 21, 0.12);
}

.desoft-zf-why-compare__table th {
  background: rgba(136, 0, 21, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #880015;
}

.desoft-zf-why-compare__table tr:last-child td {
  border-bottom: 0;
}

.desoft-zf-why-compare__need {
  width: 28%;
  font-weight: 700;
  color: #0b1f3a;
}

.desoft-zf-why-section {
  background: transparent !important;
  background-color: transparent !important;
  padding: 3.5rem 0 4.5rem;
}

.desoft-zf-why-showcase {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .desoft-zf-why-showcase {
    grid-template-columns: minmax(18rem, 22rem) minmax(0, 1fr);
    gap: 2rem;
  }
}

.desoft-zf-why-showcase__panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 1.5rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(185, 28, 60, 0.28), transparent 42%),
    linear-gradient(160deg, #0b1f3a 0%, #132d4f 52%, #880015 100%);
  color: #fff;
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.22);
}

.desoft-zf-why-showcase__panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.desoft-zf-why-showcase__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.desoft-zf-why-showcase__tagline {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.desoft-zf-why-showcase__visual {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.desoft-zf-why-showcase__image {
  display: block;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.desoft-zf-why-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.desoft-zf-why-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(136, 0, 21, 0.14);
  box-shadow: 0 8px 24px rgba(136, 0, 21, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.desoft-zf-why-item:hover {
  transform: translateX(4px);
  border-color: rgba(136, 0, 21, 0.28);
  box-shadow: 0 14px 30px rgba(136, 0, 21, 0.11);
}

.desoft-zf-why-item__marker {
  position: relative;
  padding-top: 0.15rem;
}

.desoft-zf-why-item__marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2.75rem;
  bottom: -1.35rem;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(136, 0, 21, 0.28), rgba(136, 0, 21, 0.06));
}

.desoft-zf-why-showcase__list .desoft-zf-why-item:last-child .desoft-zf-why-item__marker::before {
  display: none;
}

.desoft-zf-why-item__icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(136, 0, 21, 0.14), rgba(136, 0, 21, 0.05));
  border: 1px solid rgba(136, 0, 21, 0.16);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.3rem 1.3rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.desoft-zf-why-item[data-icon="resolve"] .desoft-zf-why-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.desoft-zf-why-item[data-icon="hybrid"] .desoft-zf-why-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8V4H8'/%3E%3Crect x='4' y='8' width='16' height='12' rx='2'/%3E%3Cpath d='M2 14h2'/%3E%3Cpath d='M20 14h2'/%3E%3Cpath d='M15 13v2'/%3E%3Cpath d='M9 13v2'/%3E%3C/svg%3E");
}

.desoft-zf-why-item[data-icon="visibility"] .desoft-zf-why-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.desoft-zf-why-item[data-icon="time"] .desoft-zf-why-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.desoft-zf-why-item[data-icon="protection"] .desoft-zf-why-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.desoft-zf-why-item__title {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0b1f3a;
}

.desoft-zf-why-item__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: #4b5563;
}

.desoft-zf-why-item__emphasis {
  display: inline-block;
  font-weight: 700;
  color: #880015;
  animation: desoft-zf-emphasis-pulse 2.4s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes desoft-zf-emphasis-pulse {
  0%,
  100% {
    color: #880015;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(136, 0, 21, 0);
  }

  50% {
    color: #b91c3c;
    transform: scale(1.045);
    text-shadow:
      0 0 10px rgba(136, 0, 21, 0.45),
      0 0 18px rgba(185, 28, 60, 0.28);
  }
}

@media (max-width: 1023px) {
  .desoft-zf-why-showcase__panel {
    text-align: center;
  }

  .desoft-zf-why-item:hover {
    transform: none;
  }

  .desoft-zf-why-item__marker::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desoft-zf-why-item:hover {
    transform: none;
  }

  .desoft-zf-why-item__emphasis {
    animation: none;
    transform: none;
    text-shadow: none;
  }
}

.desoft-zf-why-section__grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .desoft-zf-why-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .desoft-zf-why-section__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .desoft-zf-why-card:nth-child(1),
  .desoft-zf-why-card:nth-child(2) {
    grid-column: span 3;
  }

  .desoft-zf-why-card:nth-child(3),
  .desoft-zf-why-card:nth-child(4),
  .desoft-zf-why-card:nth-child(5) {
    grid-column: span 2;
  }
}

.desoft-zf-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.35rem;
  overflow: hidden;
}

.desoft-zf-why-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #880015 0%, rgba(136, 0, 21, 0.35) 100%);
  opacity: 0.85;
}

.desoft-zf-why-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.desoft-zf-why-card__icon {
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(136, 0, 21, 0.12), rgba(136, 0, 21, 0.04));
  border: 1px solid rgba(136, 0, 21, 0.14);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.35rem 1.35rem;
}

.desoft-zf-why-card[data-icon="resolve"] .desoft-zf-why-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.desoft-zf-why-card[data-icon="hybrid"] .desoft-zf-why-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8V4H8'/%3E%3Crect x='4' y='8' width='16' height='12' rx='2'/%3E%3Cpath d='M2 14h2'/%3E%3Cpath d='M20 14h2'/%3E%3Cpath d='M15 13v2'/%3E%3Cpath d='M9 13v2'/%3E%3C/svg%3E");
}

.desoft-zf-why-card[data-icon="visibility"] .desoft-zf-why-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.desoft-zf-why-card[data-icon="time"] .desoft-zf-why-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.desoft-zf-why-card[data-icon="protection"] .desoft-zf-why-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23880015' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.desoft-zf-why-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0b1f3a;
}

.desoft-zf-why-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: #4b5563;
}

.desoft-zf-protection-section__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .desoft-zf-protection-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .desoft-zf-protection-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.desoft-zf-feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(136, 0, 21, 0.2);
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 28px rgba(136, 0, 21, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.desoft-zf-feature-card:hover {
  border-color: rgba(136, 0, 21, 0.38);
  box-shadow: 0 16px 36px rgba(136, 0, 21, 0.12);
  transform: translateY(-2px);
}

.desoft-zf-feature-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0b1f3a;
}

.desoft-zf-feature-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4b5563;
}

.desoft-zf-protection-section {
  padding-top: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .desoft-zf-feature-card:hover {
    transform: none;
  }
}

/* ZeroFox Platform — zerofox.com style hero + tabs */
.desoft-zf-platform-section {
  position: relative;
  z-index: 10;
  padding: 4rem 0 3.25rem;
  background: #f3f4f6 !important;
  background-color: #f3f4f6 !important;
}

.desoft-zf-platform-section__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .desoft-zf-platform-section__inner {
    padding: 0 1.5rem;
  }
}

.desoft-zf-platform-section__top {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.desoft-zf-platform-section__copy {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .desoft-zf-platform-section__top {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }

  .desoft-zf-platform-section__top--copy-only {
    grid-template-columns: minmax(0, 1fr);
  }
}

.desoft-zf-platform-section__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e10600;
}

.desoft-zf-platform-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0b1f3a;
}

.desoft-zf-platform-section__lead {
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: #4b5563;
  max-width: 38rem;
}

.desoft-zf-platform-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.desoft-zf-platform-section__image,
.desoft-zf-platform-section__svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.desoft-zf-platform-section__tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0 1.35rem;
  padding: 1.25rem 0 0.25rem;
  border-top: 2px solid #880015;
}

.desoft-zf-platform-section__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  min-width: max-content;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .desoft-zf-platform-section__tabs {
    flex-wrap: wrap;
    min-width: 0;
    justify-content: center;
  }
}

.desoft-zf-platform-tab {
  appearance: none;
  border: 2px solid #880015;
  background: rgba(255, 255, 255, 0.95);
  color: #0b1f3a;
  border-radius: 999px;
  padding: 0.82rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
  text-align: center;
  max-width: 16rem;
}

.desoft-zf-platform-tab:hover {
  border-color: #a81931;
  background: rgba(136, 0, 21, 0.07);
}

.desoft-zf-platform-tab.is-active {
  background: #880015;
  border-color: #880015;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(136, 0, 21, 0.24);
}

.desoft-zf-platform-section__panels {
  max-width: 52rem;
  margin: 0 auto;
}

.desoft-zf-platform-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(136, 0, 21, 0.16);
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 12px 32px rgba(136, 0, 21, 0.08);
}

.desoft-zf-platform-panel[hidden] {
  display: none !important;
}

.desoft-zf-platform-panel__subtitle {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #880015;
}

.desoft-zf-platform-panel__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: #4b5563;
}
