/* ═══════════════════════════════════════════
   TRUST BAR & ABOUT SECTION
═══════════════════════════════════════════ */

/* ── Trust Bar ── */
.trust-bar {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  background: rgba(5, 15, 30, 0.8);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  white-space: nowrap;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--glass-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid var(--glass-border);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */

#about {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  background: var(--ink-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Visual Box ── */
.about-visual {
  position: relative;
}

.about-visual-box {
  width: 100%;
  aspect-ratio: 1;
  max-height: 460px;
  background: linear-gradient(135deg, rgba(30,106,255,0.15), rgba(0,212,170,0.1));
  border-radius: var(--r-xl);
  border: 1px solid var(--glass-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(30,106,255,0.2), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(0,212,170,0.15), transparent 55%);
}

.about-visual-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(0,194,255,0.06)' stroke-width='1'%3E%3Cline x1='0' y1='20' x2='40' y2='20'/%3E%3Cline x1='20' y1='0' x2='20' y2='40'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── Badges ── */
.about-badge {
  position: absolute;
  background: rgba(5, 15, 30, 0.92);
  border: 1px solid var(--glass-border-2);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.about-badge-1 {
  bottom: -16px;
  right: -16px;
}

.about-badge-2 {
  top: 20px;
  left: -16px;
}

.ab-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ab-val {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.ab-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Text Content ── */
.about-text h2 {
  color: white;
  margin-bottom: 14px;
}

.about-text > p {
  margin-bottom: 32px;
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: all 0.25s;
}

.about-feat:hover {
  border-color: var(--glass-border-2);
  background: rgba(0,194,255,0.04);
  transform: translateX(4px);
}

.feat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.fi-blue {
  background: rgba(30, 106, 255, 0.15);
  box-shadow: 0 0 16px rgba(30, 106, 255, 0.2);
  border: 1px solid rgba(30, 106, 255, 0.2);
}

.fi-cyan {
  background: rgba(0, 194, 255, 0.1);
  box-shadow: 0 0 16px rgba(0, 194, 255, 0.15);
  border: 1px solid rgba(0, 194, 255, 0.2);
}

.fi-teal {
  background: rgba(0, 212, 170, 0.1);
  box-shadow: 0 0 16px rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.2);
}

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

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