/* ═══════════════════════════════════════════
   TRUST / WHY AI SECTIONS
═══════════════════════════════════════════ */

/* ── Trust Section ── */
#trust {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  background: var(--ink);
  overflow: hidden;
}

#trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124,58,237,0.06), transparent 60%);
}

/* ── Trust Grid ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ── Trust Card ── */
.trust-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.trust-card:hover {
  border-color: rgba(0,194,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,194,255,0.06);
}

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

.tc-1::before {
  background: linear-gradient(90deg, var(--blue-glow), var(--cyan));
}

.tc-2::before {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.tc-3::before {
  background: linear-gradient(90deg, var(--purple), var(--blue-glow));
}

.tc-4::before {
  background: linear-gradient(90deg, var(--yellow), #ff9f00);
}

/* ── Trust Icon ── */
.trust-t-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  border: 1px solid;
}

.tci-1 {
  background: rgba(30, 106, 255, 0.12);
  border-color: rgba(30, 106, 255, 0.25);
}

.tci-2 {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.25);
}

.tci-3 {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.25);
}

.tci-4 {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.25);
}

/* ── Text ── */
.trust-card h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
  font-weight: 700;
}

.trust-card p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   WHY AI SECTION
═══════════════════════════════════════════ */

#why-ai {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  background: var(--navy);
  overflow: hidden;
}

/* ── Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Visual ── */
.why-visual {
  background: linear-gradient(135deg, rgba(30,106,255,0.12), rgba(0,194,255,0.06));
  border: 1px solid rgba(30,106,255,0.2);
  border-radius: var(--r-xl);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 5rem;
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(30,106,255,0.2), transparent 55%);
}

/* ── Text ── */
.why-text h2 {
  color: white;
  margin-bottom: 12px;
}

/* ── Features ── */
.why-feats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.why-feat {
  display: flex;
  gap: 12px;
}

.wf-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e6aff, #00c2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.62rem;
  margin-top: 2px;
  box-shadow: var(--glow-blue);
}

.why-feat h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.why-feat p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}
