.defend-home {
  overflow: hidden;
}

.defend-home .topo-bg {
  opacity: .6;
}

.defend-orb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: hsl(141 90% 28% / .1);
  filter: blur(54px);
  pointer-events: none;
}

.defend-inner {
  position: relative;
  z-index: 1;
}

.defend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.defend-image-card {
  position: relative;
  min-height: 28.75rem;
  height: 100%;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(7, 28, 74, .28);
}

.defend-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.defend-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(221 86% 20% / .55), hsl(221 86% 20% / .1), transparent);
}

.defend-seal {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 20px 32px rgba(7, 28, 74, .22);
  transform: rotate(6deg);
}

.defend-seal svg {
  width: 2.5rem;
  height: 2.5rem;
}

.defend-image-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
}

.defend-image-caption p {
  margin-bottom: .25rem;
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.defend-image-caption strong {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
}

.defend-home .defense-mini-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 20px 34px rgba(7, 28, 74, .12);
}

.defense-items-grid {
  display: grid;
  flex: 1;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.25rem;
}

.defend-home .mini-defense {
  display: flex;
  gap: .75rem;
  margin: 0;
}

.defend-home .mini-defense span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .5rem;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease;
}

.defend-home .mini-defense:hover span {
  transform: scale(1.1);
}

.defend-home .mini-defense strong {
  display: block;
  color: var(--navy);
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.35;
  transition: color .25s ease;
}

.defend-home .mini-defense:hover strong {
  color: var(--blue);
}

.defend-home .mini-defense p {
  margin-top: .125rem;
  color: var(--text-secondary);
  font-size: .75rem;
  line-height: 1.6;
}

.defense-action {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.defense-action a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25;
  transition: background-color .25s ease, transform .25s ease;
}

.defense-action a:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.defense-action svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .defend-home .defense-mini-card {
    padding: 2rem;
  }
}

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

@media (max-width: 767px) {
  .defend-image-card {
    min-height: 24rem;
  }
}

@media (max-width: 639px) {
  .defense-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .defend-home .mini-defense span,
  .defend-home .mini-defense strong,
  .defense-action a {
    transition-duration: .01ms !important;
  }
}
