.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2);
  align-items: center;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--ink-2); font-size: 16px; margin-bottom: 14px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.about-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.about-feat .ck {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--green-100);
  color: oklch(40% 0.18 145);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about-feat .ck svg { width: 14px; height: 14px; }

.about-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.about-photo {
  position: relative;
  flex: 1.4;
  background: linear-gradient(135deg, var(--blue-50), oklch(94% 0.08 145));
  overflow: hidden;
}
.about-photo-slot {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 0 !important;
}
.about-photo-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, oklch(18% 0.03 252));
  pointer-events: none;
}
.about-shield {
  position: relative;
  flex: 1;
  background: linear-gradient(135deg, var(--ink) 0%, oklch(25% 0.05 252) 100%);
  color: var(--white);
  padding: 22px 24px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-shield .placeholder-svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  opacity: 0.06;
}
.about-shield .ring {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(78% 0.22 145 / 0.4), transparent 65%);
  pointer-events: none;
}
.about-shield .shield-pill {
  background: oklch(28% 0.06 252);
  color: oklch(85% 0.04 252);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 12px;
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-shield .shield-pill svg { width: 12px; height: 12px; color: var(--green); }
.about-shield h3 {
  font-size: 22px;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.about-shield p {
  font-size: 14px;
  color: oklch(85% 0.04 252);
  position: relative; z-index: 1;
}

.about-visual .badge-float {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r);
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 5;
}
.bf-1 { top: 18px; right: 18px; animation: float 5s ease-in-out infinite; }
.bf-2 { top: 38%; left: 18px; animation: float 6s ease-in-out infinite reverse; }
.bf-3 { bottom: 18px; right: 18px; animation: float 5.5s ease-in-out infinite 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.bf-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--green-100);
  color: oklch(40% 0.18 145);
  display: grid; place-items: center;
}
.bf-icon svg { width: 14px; height: 14px; }

.placeholder-svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  opacity: 0.06;
}

@media (min-width: 720px) {
  .about-grid { grid-template-columns: 1fr 0.85fr; gap: var(--s3); }
}
