/* ==============================================
   ANTI-THEFT SECTION — css/antitheft.css
   ============================================== */

.antitheft-section {
  background: #0d0f1c;
  position: relative;
}
.antitheft-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59,130,246,0.3), transparent);
}

/* ── Grid ── */
.antitheft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* ── Card ── */
.antitheft-card {
  background: #111320;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.antitheft-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* ── Icon ── */
.at-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.at-icon-wrap.gps    { background: rgba(59,130,246,0.12);  }
.at-icon-wrap.geo    { background: rgba(16,185,129,0.12);  }
.at-icon-wrap.lock   { background: rgba(232,25,44,0.12);   }
.at-icon-wrap.wipe   { background: rgba(245,158,11,0.12);  }
.at-icon-wrap.immob  { background: rgba(139,92,246,0.12);  }
.at-icon-wrap.alarm  { background: rgba(239,68,68,0.12);   }
.at-icon-wrap.motion { background: rgba(249,115,22,0.12);  }
.at-icon-wrap.bio    { background: rgba(6,182,212,0.12);   }
.at-icon-wrap.pin    { background: rgba(16,185,129,0.12);  }

/* ── Content ── */
.at-content { flex: 1; min-width: 0; }
.at-content h3 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.at-content p {
  font-size: 0.81rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.at-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.at-tags span {
  font-size: 0.68rem;
  padding: 0.15rem 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: var(--gray-light);
}

/* ── CTA ── */
.antitheft-cta {
  background: linear-gradient(135deg, #111320, #1a1d2e);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px;
  padding: 2.5rem;
}
.at-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.at-cta-text h3 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.at-cta-text p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .antitheft-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .antitheft-grid { grid-template-columns: 1fr; }
  .at-cta-inner { flex-direction: column; text-align: center; }
}
