.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.about-text p:last-of-type { margin-bottom: 0; }

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted2);
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.about-location svg {
  width: 15px; height: 15px;
  stroke: var(--muted2);
  fill: none;
  stroke-width: 2;
}

.about-visual {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-shape {
  position: absolute;
  border-radius: 16px;
  border: 1px solid;
}
.about-shape:nth-child(1) {
  width: 200px; height: 200px;
  border-color: rgba(16,185,129,0.2);
  transform: rotate(15deg);
  animation: shape-float 8s ease-in-out infinite;
}
.about-shape:nth-child(2) {
  width: 160px; height: 160px;
  border-color: rgba(6,182,212,0.15);
  transform: rotate(-10deg) translate(40px, -30px);
  animation: shape-float 10s ease-in-out infinite reverse;
}
.about-shape:nth-child(3) {
  width: 120px; height: 120px;
  border-color: rgba(52,211,153,0.2);
  transform: rotate(35deg) translate(-30px, 20px);
  animation: shape-float 12s ease-in-out infinite;
  background: rgba(16,185,129,0.03);
}
.about-stat-cluster {
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
  margin-bottom: 0.4rem;
}
.about-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shape-float {
  0%, 100% { transform: rotate(15deg) translate(0, 0); }
  50% { transform: rotate(18deg) translate(8px, -12px); }
}
