body { overflow-x: hidden; }

.hero .body-18 { max-width: 780px; }

/* Story sections - two column with visual */
.story-row { display: flex; gap: 80px; align-items: center; }
.story-row.reverse { flex-direction: row-reverse; }
.story-text { flex: 1; }
.story-visual { flex: 1; }
.story-text .h2 { margin-bottom: 20px; }

/* Mission / Vision */
.mv-row { display: flex; gap: 80px; align-items: center; }
.mv-row.reverse { flex-direction: row-reverse; }
.mv-text { flex: 1; }
.mv-visual { flex: 1; display: flex; justify-content: center; }
.mv-text .tag { margin-bottom: 20px; }
.mv-text .h2 { margin-bottom: 16px; }

/* Core Principles */
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.principle-card {
  background: var(--neutral-01); border: 1px solid var(--neutral-03);
  border-radius: 12px; padding: 32px;
}
.principle-card h3 { color: var(--neutral-08); margin-bottom: 10px; }
.principle-card p { color: var(--neutral-06); font-size: 16px; line-height: 24px; }
.principle-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.principle-icon svg { width: 24px; height: 24px; }

/* Why Choose */
.why-list {
  list-style: none; display: flex; flex-direction: column; gap: 20px;
  max-width: 800px; margin: 0 auto;
}
.why-list li {
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--font-inter); font-weight: 500; font-size: 18px; line-height: 28px;
  color: var(--neutral-06);
}
.why-check {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; }
