/* ── MISSION ── */
.mission { background: var(--white); }
.mission-inner { max-width: 1160px; margin: 0 auto; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-quote {
  background: linear-gradient(135deg, #0b2554, #1a4fa0);
  border-radius: var(--radius-lg); padding: 52px 44px; color: white; position: relative; overflow: hidden;
}
.mission-quote::before {
  content: '"'; position: absolute; top: -20px; left: 24px;
  font-size: 160px; font-family: 'Lexend', sans-serif; font-weight: 900;
  color: rgba(255,255,255,0.07); line-height: 1;
}
.mission-quote blockquote {
  font-size: clamp(1.15rem, 2vw, 1.4rem); font-family: 'Lexend', sans-serif;
  font-weight: 600; line-height: 1.6; color: white; position: relative; z-index: 1; margin-bottom: 28px;
}
.mission-quote blockquote em { color: #6cdea0; font-style: normal; }
.mission-quote cite { font-size: 13px; opacity: 0.6; font-style: normal; font-family: 'DM Sans', sans-serif; display: block; }

/* ── THE PROBLEM ── */
.the-problem { background: var(--gray-50); }
.problem-inner { max-width: 1160px; margin: 0 auto; }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.problem-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border-top: 4px solid var(--blue); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.problem-stat { font-family: 'Lexend', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--blue); margin-bottom: 8px; line-height: 1; }
.problem-stat span { font-size: 1.4rem; }
.problem-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ── VALUES ── */
.values { background: var(--white); }
.values-inner { max-width: 1160px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.value-card {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 30px 26px;
  border: 1px solid var(--gray-200); transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--blue-light); }
.value-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.v1 .value-icon { background: var(--blue-light); }
.v2 .value-icon { background: var(--green-light); }
.v3 .value-icon { background: var(--orange-light); }
.v4 .value-icon { background: #f3f0ff; }
.value-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-text p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }

/* ── DIFFERENTIATION ── */
.differentiation { background: var(--blue-xlight); }
.diff-inner { max-width: 1160px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-top: 48px; font-size: 14.5px;
}
.compare-table th {
  padding: 18px 22px; font-family: 'Lexend', sans-serif; font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gray-900); color: white; text-align: left;
}
.compare-table th:nth-child(2) { background: var(--blue); }
.compare-table td { padding: 16px 22px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table .feature-col { font-weight: 600; color: var(--gray-900); }
.check { color: var(--green); font-weight: 700; font-size: 16px; }
.cross { color: #e53e3e; font-weight: 700; font-size: 16px; }
.neutral { color: var(--gray-400); }

/* ── SERVICE AREA ── */
.service-area { background: var(--white); text-align: center; }
.states-visual { display: flex; gap: 24px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.state-card { background: var(--blue); color: white; border-radius: var(--radius-lg); padding: 32px 40px; min-width: 200px; text-align: center; }
.state-card.coming { background: var(--gray-100); color: var(--gray-500); }
.state-name { font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 4px; }
.state-status { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.state-card.coming .state-status { color: var(--gray-400); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
}
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}
