/* ---- Hero ---- */
.cp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -1px;
}

.cp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(15, 37, 80, 0.92) 0%,
      rgba(26, 58, 110, 0.78) 45%,
      rgba(15, 37, 80, 0.55) 100%);
}

.cp-hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 5rem;
  max-width: 720px;
  margin-left: max(2rem, calc((100vw - 1100px) / 2 + 2rem));
  animation: fadeUp 0.7s ease both;
}

.cp-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 99px;
  background: rgba(245, 166, 35, 0.1);
}

.cp-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cp-hero h1 span {
  color: var(--accent);
}

.cp-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.cp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 58, 110, 0.35);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 110, 0.45);
}

/* ---- About ---- */
.cp-about {
  padding: 6rem 0;
  background: var(--white);
}

.cp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cp-about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cp-about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.cp-about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cp-about-image-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.cp-about-image-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.cp-about-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cp-about-list {
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cp-about-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 600;
}

.cp-about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.cp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition:
    gap var(--transition),
    color var(--transition);
}

.cp-read-more:hover {
  color: var(--accent);
  gap: 0.7rem;
}

/* ---- Stats ---- */
.cp-stats {
  background: var(--navy-deep);
  padding: 3.5rem 0;
}

.cp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.cp-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cp-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* ---- Services ---- */
.cp-services {
  padding: 6rem 0;
  background: var(--light-bg);
}

.cp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cp-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.cp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 58, 110, 0.2);
}

.cp-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(26, 58, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.cp-service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.cp-service-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- Vision & Mission ---- */
.cp-vision {
  padding: 6rem 0;
  background: linear-gradient(135deg,
      var(--navy-deep) 0%,
      var(--navy-mid) 100%);
}

.cp-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title-light {
  color: var(--white) !important;
}

.section-title-light span {
  color: var(--accent) !important;
}

.badge-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  border-color: rgba(245, 166, 35, 0.3);
}

.cp-vision-block {
  margin-top: 1.75rem;
}

.cp-vision-block h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cp-vision-block p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.93rem;
}

.cp-vision-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cp-vision-block ul li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  line-height: 1.6;
}

.cp-vision-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.cp-vision-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.cp-vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ---- Why Choose Us ---- */
.cp-why {
  padding: 6rem 0;
  background: var(--white);
}

.cp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cp-why-item {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.cp-why-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.cp-why-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(26, 58, 110, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.cp-why-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cp-why-item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Zona Pengiriman (card grid) ---- */
.zona-section {
  padding: 5rem 0;
  background: #f0f2f6;
}

.zona-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.5s ease both;
}

.zona-section-header .section-sub {
  margin: 0.75rem auto 0;
}

.zona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zona-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 1px 3px rgba(26, 58, 110, 0.06), 0 4px 16px rgba(26, 58, 110, 0.04);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.zona-card:hover {
  box-shadow: 0 4px 12px rgba(26, 58, 110, 0.1), 0 12px 32px rgba(26, 58, 110, 0.08);
  transform: translateY(-3px);
}

.zona-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.zona-card-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.zona-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.zona-card-identity h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zona-card-code {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-weight: 500;
}

.zona-card-link {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
}

.zona-card-link:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(26, 58, 110, 0.04);
}

.zona-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zona-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.zona-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-dark);
  background: #f4f6fa;
  border: 1px solid #e8ecf2;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.zona-section-foot {
  text-align: center;
  margin-top: 2.5rem;
}

.couriers-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.couriers-section p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.couriers-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.courier-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-dark);
  transition: all var(--transition);
}

.courier-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(26, 58, 110, 0.05);
}

.courier-chip span {
  font-size: 1.1rem;
}

.how-section {
  padding: 5rem 0;
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  width: calc(75% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  opacity: 0.2;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  animation: fadeUp 0.5s ease both;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 58, 110, 0.25);
}

.step h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.cta-banner {
  margin: 5rem auto;
  max-width: 860px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border: none;
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.3), transparent 70%);
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.06),
      transparent 70%);
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-banner h2 span {
  color: var(--accent) !important;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {

  .cp-services-grid,
  .cp-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .cp-about-grid,
  .cp-vision-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cp-vision-grid {
    direction: ltr;
  }

  .cp-vision-image {
    order: -1;
  }

  .cp-hero-inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
  }

  .cp-hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .cp-hero-actions {
    justify-content: center;
  }

  .cp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .zona-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {

  .cp-services-grid,
  .cp-why-grid,
  .zona-grid,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .cp-about-image img,
  .cp-vision-image img {
    height: 280px;
  }

  .cp-about,
  .cp-services,
  .cp-vision,
  .cp-why {
    padding: 4rem 0;
  }

  .cp-hero {
    min-height: 75vh;
  }
}