/* ===========================
   ABOUT US PAGE
   =========================== */

/* Hero */
.about-hero {
  background: #437cff;
  padding: 6rem 2rem;
  text-align: center;
}

.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-hero strong { color: white; font-weight: 700; }

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.value-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Why Shiok POS */
.about-why {
  background: #437cff;
  padding: 6rem 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.why-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #fff400;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-feature {
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.why-feature.why-feature-active {
  border-left-color: #fff400;
}

.why-feature h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
  transition: var(--transition);
}

.why-feature:not(.why-feature-active) h4 {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.why-feature p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-top: 0.5rem;
  display: none;
}

.why-feature.why-feature-active p { display: block; }

.why-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { order: -1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-hero { padding: 4rem 1.25rem; }
  .about-why { padding: 4rem 1.25rem; }
}

@media (max-width: 400px) {
  .values-grid { grid-template-columns: 1fr; }
}
