/* =========================
   ABOUT HERO
========================= */
.about-hero {
  padding: 90px 0 70px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
}

.about-hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.about-hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.about-hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(15, 123, 108, 0.16),
    rgba(79, 175, 61, 0.12),
    rgba(245, 154, 35, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  isolation: isolate;
}

.about-hero-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background-color: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  top: 40px;
  right: 50px;
  filter: blur(10px);
  z-index: 0;
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto auto 35px 35px;
  width: 180px;
  height: 180px;
  background: rgba(245, 154, 35, 0.16);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 0;
}

.about-hero-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.main-about-card {
  position: relative;
  max-width: 340px;
  padding: 36px 28px;
  z-index: 2;
  text-align: left;
  border-top: 4px solid var(--color-primary);
}

.main-about-card h3 {
  margin-bottom: 12px;
}

.small-about-card {
  padding: 14px 20px;
  font-weight: 700;
  color: var(--color-primary);
  z-index: 2;
}

.top-about-chip {
  top: 70px;
  left: 20px;
}

.mid-about-chip {
  top: 165px;
  right: 20px;
}

.bottom-about-chip {
  bottom: 60px;
  right: 30px;
}

/* =========================
   WHO WE ARE
========================= */
.who-we-are {
  background-color: rgba(255, 255, 255, 0.48);
}

/* =========================
   VISION & MISSION
========================= */
.vision-mission {
  background-color: rgba(79, 175, 61, 0.05);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background-color: var(--color-surface);
  padding: 40px 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 123, 108, 0.08);
}

.vm-card h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.highlight-card {
  background: linear-gradient(
    135deg,
    rgba(15, 123, 108, 0.08),
    rgba(245, 154, 35, 0.08)
  );
}

/* =========================
   CORE VALUES
========================= */
.core-values {
  background-color: rgba(255, 255, 255, 0.55);
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   WHY CAN EXISTS
========================= */
.why-can-exists {
  background-color: rgba(245, 154, 35, 0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.why-content p + p {
  margin-top: 18px;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-point {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--color-primary);
  transition: var(--transition);
}

.why-point:hover {
  transform: translateY(-5px);
}

.why-point h3 {
  margin-bottom: 10px;
}

/* =========================
   ABOUT CTA
========================= */
.about-cta {
  background-color: transparent;
}
