.about-story,
.identity-strip,
.mission-vision,
.values-section,
.swot-section {
  padding: 88px clamp(20px, 7vw, 92px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.story-image {
  width: 100%;
  height: auto;
  min-height: 420px;
  aspect-ratio: 10 / 12;
  object-fit: cover;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 26px 68px rgba(8, 44, 92, 0.16);
  transform: rotate(-2deg);
}

.story-panel,
.owner-panel,
.mission-vision article,
.values-grid article,
.swot-grid article {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 44, 92, 0.06);
}

.story-panel h2,
.owner-panel h2,
.mission-vision h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.story-panel,
.owner-panel {
  padding: clamp(24px, 4vw, 38px);
}

.story-panel p,
.owner-panel li,
.mission-vision p,
.swot-grid p {
  color: var(--muted);
}

.owner-panel {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-color: var(--line);
  border-top: 0;
  border-left: 3px solid var(--yellow);
}

.owner-panel::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -74px;
  width: 150px;
  height: 150px;
  background: var(--yellow);
  border-radius: 999px;
  opacity: 0.72;
}

.owner-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 24px 0 0;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background:
    radial-gradient(circle at 85% 18%, rgba(247, 199, 47, 0.18), transparent 24%),
    #0b1f3a;
}

.identity-strip article {
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 3px solid var(--yellow);
}

.identity-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-strip strong {
  display: block;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background:
    linear-gradient(168deg, transparent 0 44%, rgba(246, 248, 251, 0.95) 44% 100%),
    var(--white);
}

.mission-vision article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 0;
  border-top: 3px solid var(--yellow);
}

.mission-vision span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.values-grid article {
  min-height: 190px;
  padding: 24px;
  border-left: 0;
  border-top: 3px solid var(--blue);
}

.values-grid p {
  color: var(--muted);
}

.swot-section {
  background: var(--white);
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.swot-grid article {
  min-height: 220px;
  padding: 24px;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 18px 42px rgba(8, 44, 92, 0.06);
}

.values-grid h3,
.swot-grid h3 {
  font-size: 1.15rem;
}

@media (max-width: 900px) {
  .about-story,
  .identity-strip,
  .mission-vision,
  .values-section,
  .values-grid,
  .swot-grid {
    grid-template-columns: 1fr;
  }
}
