/* Cards, feature panels and visual content blocks. */
.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2vw, 32px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: 0.28s ease;
}

.card::before {
  position: absolute;
  inset: -1px;
  padding: 1px;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(72, 167, 255, 0.4), transparent 32%, rgba(140, 108, 255, 0.25));
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: 0.28s ease;
}

.card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  transform: translateY(-6px);
}

.card:hover::before {
  opacity: 1;
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  place-items: center;
  background: linear-gradient(145deg, rgba(72, 167, 255, 0.16), rgba(140, 108, 255, 0.12));
  border: 1px solid rgba(111, 195, 255, 0.18);
  border-radius: 15px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #a9dcff;
}

.card p {
  margin-bottom: 0;
  color: #9db1c6;
}

.aegis-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(140, 108, 255, 0.23), transparent 30%),
    radial-gradient(circle at 25% 80%, rgba(72, 167, 255, 0.13), transparent 38%),
    linear-gradient(160deg, #0a1a2a, #09121e);
  border: 1px solid rgba(140, 108, 255, 0.18);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.aegis-face {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 280px;
  border: 1px solid rgba(84, 229, 255, 0.42);
  border-radius: 46% 46% 42% 42%;
  box-shadow: 0 0 40px rgba(84, 229, 255, 0.08);
  transform: translate(-50%, -50%);
}

.aegis-face::before {
  position: absolute;
  inset: 18px;
  content: "";
  opacity: 0.8;
  background:
    radial-gradient(circle at 36% 38%, rgba(84, 229, 255, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 38%, rgba(84, 229, 255, 0.7) 0 3px, transparent 4px),
    linear-gradient(rgba(84, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 229, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 20px 20px, 20px 20px;
  border-radius: inherit;
}

.scan-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 310px;
  border: 1px dashed rgba(140, 108, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.feature-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.check {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #89f0c0;
  font-weight: 900;
  background: rgba(98, 230, 170, 0.1);
  border: 1px solid rgba(98, 230, 170, 0.2);
  border-radius: 8px;
}

.feature-item p {
  margin: 0;
  color: #a8bbcf;
}

.industry-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: clamp(24px, 2vw, 32px);
  background: #0a1726;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.industry-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(72, 167, 255, 0.17), transparent 68%);
  border-radius: 50%;
}

.industry-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: #83d8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(121, 197, 255, 0.18);
  border-radius: 0 0 20px 20px;
}

.process-card::before {
  display: block;
  margin-bottom: 34px;
  color: #7393b3;
  content: "0" counter(step);
  counter-increment: step;
  font-size: 0.88rem;
  font-weight: 900;
}

.cta {
  display: flex;
  padding: clamp(34px, 4vw, 62px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 85% 18%, rgba(140, 108, 255, 0.22), transparent 26%),
    radial-gradient(circle at 10% 80%, rgba(72, 167, 255, 0.16), transparent 34%),
    #0a1a2a;
  border: 1px solid rgba(91, 190, 255, 0.2);
  border-radius: 32px;
}

.cta h2 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta p {
  margin-bottom: 0;
  color: #abc0d4;
}

.info-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.product-card {
  padding: 28px;
  background: linear-gradient(180deg, #0c1b2b, #091624);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card ul {
  margin-bottom: 0;
  padding-left: 18px;
  color: #9fb3c8;
}
