/* Mobiment corporate landing — mobiment.co.kr tone */
.mobiment-landing {
  --mob-navy: #0a1628;
  --mob-blue: #1e6fd9;
  --mob-accent: #00a8e8;
  --mob-text: rgba(255,255,255,0.72);
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  background: var(--mob-navy);
  min-height: 100vh;
}

.mobiment-landing a { text-decoration: none; color: inherit; }

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.mob-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #fff;
}

.mob-logo span { color: var(--mob-accent); font-weight: 700; font-size: 11px; display: block; letter-spacing: 0.35em; margin-bottom: 4px; }

.mob-nav { display: flex; gap: 24px; font-size: 13px; font-weight: 600; color: var(--mob-text); }
.mob-nav a:hover { color: #fff; }

.mob-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.mob-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--mob-accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.mob-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.mob-hero p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mob-text);
  margin: 0 0 32px;
}

.mob-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.mob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mob-btn-primary {
  background: linear-gradient(135deg, var(--mob-blue), var(--mob-accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(30,111,217,0.35);
}

.mob-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.mob-btn:hover { transform: translateY(-1px); }

.mob-cards {
  display: grid;
  gap: 12px;
}

.mob-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}

.mob-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; }
.mob-card p { margin: 0; font-size: 13px; color: var(--mob-text); line-height: 1.7; }

.mob-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mob-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
}

.mob-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mob-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mob-hero { grid-template-columns: 1fr; padding-top: 48px; }
  .mob-grid-3 { grid-template-columns: 1fr; }
  .mob-nav { display: none; }
}
