/* About page */
.about-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  background: var(--bg3);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.about-image-badge .stat-num  { color: var(--blue); font-family: var(--font-heading); font-size: 28px; font-weight: 800; line-height: 1; }
.about-image-badge .stat-label{ color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border2); }

.value-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--bg3);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.value-item h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.value-item p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Why us cards on about page */
.card { background: var(--white); }
.card h3 { color: var(--text); font-size: 17px; margin-bottom: 8px; }
.card p   { color: var(--muted); font-size: 14px; }

@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .values-grid { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
