/* ============================================================
   MEILS – LOGISTICS SOLUTION PAGE
============================================================ */

/* Hero variant */
.ls-hero { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 55%, var(--teal-light) 100%); }

/* Solution highlights bar */
.ls-highlights {
  background: #fff;
  padding: 36px 24px;
  border-bottom: 1px solid var(--gray-border);
}
.ls-highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ls-highlight-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 20px 16px;
  border: 1.5px solid var(--gray-border); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ls-highlight-card:hover {
  border-color: var(--teal-mid); box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ls-hl-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(15,94,94,.08); color: var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.ls-highlight-card h4 { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.ls-highlight-card p  { font-size: .75rem; color: var(--text-muted); line-height: 1.5; }

/* Form header */
.ls-form-header {
  margin-bottom: 28px; padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-border);
}
.ls-form-header h2 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.ls-form-header p  { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* Mode checkboxes */
.ls-mode-checks { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.ls-check-card {
  display: flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--gray-border); border-radius: 10px;
  padding: 10px 18px; cursor: pointer;
  font-size: .84rem; font-weight: 500; color: var(--text-dark);
  transition: border-color .2s, background .2s, color .2s;
  flex: 1; min-width: 130px; justify-content: center;
}
.ls-check-card:hover { border-color: var(--teal-light); background: rgba(15,94,94,.03); }

.ls-check-card input[type="checkbox"],
.ls-check-card input[type="radio"] { display: none; }

.ls-check-custom {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--gray-border); background: #fff;
  position: relative; transition: background .2s, border-color .2s;
}
.ls-check-card input:checked + .ls-check-custom {
  background: var(--teal-mid); border-color: var(--teal-mid);
}
.ls-check-card input:checked + .ls-check-custom::after {
  content: ''; border-radius: 50%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 6px; height: 6px; background: #fff;
}
.ls-check-card:has(input:checked) {
  border-color: var(--teal-mid);
  background: rgba(15,94,94,.05);
  color: var(--teal-mid);
}

/* ===== 4PL Section ===== */
.ls-4pl {
  background: linear-gradient(135deg, #f7fbfb 0%, #eaf5f5 100%);
  padding: 72px 24px;
  border-bottom: 1px solid var(--gray-border);
}
.ls-4pl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ls-4pl-text .cc-label {
  display: inline-block; margin-bottom: 14px;
}
.ls-4pl-text h2 {
  font-size: 1.75rem; font-weight: 800; color: var(--text-dark);
  line-height: 1.25; margin-bottom: 18px;
}
.ls-4pl-text p {
  font-size: .9rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 14px;
}
.ls-4pl-cards {
  display: flex; flex-direction: column; gap: 16px;
}
.ls-4pl-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1.5px solid var(--gray-border);
  border-radius: var(--radius); padding: 20px 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ls-4pl-card:hover {
  border-color: var(--teal-mid); box-shadow: var(--shadow);
  transform: translateX(4px);
}
.ls-4pl-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(15,94,94,.09); color: var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ls-4pl-card h4 {
  font-size: .88rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 4px;
}
.ls-4pl-card p {
  font-size: .78rem; color: var(--text-muted); line-height: 1.55; margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .ls-4pl-inner { grid-template-columns: 1fr; gap: 32px; }
  .ls-4pl-text h2 { font-size: 1.4rem; }
}

/* Responsive */
@media (max-width: 768px) {
  .ls-highlights-grid { grid-template-columns: repeat(2,1fr); }
  .ls-mode-checks     { gap: 8px; }
  .ls-check-card      { min-width: 110px; }
}
@media (max-width: 480px) {
  .ls-highlights-grid { grid-template-columns: 1fr 1fr; }
}
