/* ===== Group Logistics Page ===== */

.logistics-page {
  background: #000;
}

/* Hero */
.logistics-hero {
  padding: 4rem 0 4rem;
  text-align: center;
}

.logistics-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.logistics-hero-sub {
  color: var(--text-secondary);

  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
}

/* Feature Sections */
.logistics-feature {
  padding: 3.5rem 0;
}

.feature-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  background: #000;
}

.feature-copy {
  padding-right: 1rem;
}

.feature-copy-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.feature-title-blue {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.88);

  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: none;
}

.btn-logistics {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 1.05rem 2rem;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s;
}

.btn-logistics:hover {
  background: var(--blue-light);
  color: #fff;
}

/* Detail Boxes Stack */
.detail-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.detail-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: #141419;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 1.35rem 1.5rem;

  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  line-height: 1.6;
  transition: border-color 0.2s;
}

.detail-box:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Technical Advantages */
.tech-advantages-section {
  padding: 4rem 0 6rem;
  border-top: 1px solid var(--border-color);
}

.tech-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);

  font-weight: 300;
  line-height: 1.65;
}

.tech-list li:first-child {
  padding-top: 0;
}

.tech-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Lang globe icon variant */
.logistics-page .lang-circle {

}

.logistics-footer {
  padding-top: 3rem;
}

@media (max-width: 991.98px) {
  .feature-copy {
    padding-right: 0;
  }

  .feature-copy-inner {
    min-height: auto;
    gap: 1.75rem;
  }

  .btn-logistics {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .logistics-hero {
    padding-top: 3rem;
  }

  .feature-panel {
    padding: 1.75rem 1.25rem;
    border-radius: 14px;
  }

  .detail-box {
    padding: 0.95rem 1rem;

  }
}
