/**
 * Delivery partner landing — enterprise logistics aesthetic
 */
.gp-dl-page { background: var(--gp-bg, #f8fafc); overflow-x: hidden; }
.gp-dl-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.gp-dl-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 40%, #2f80ed 100%);
}
.gp-dl-hero--has-bg .gp-dl-hero__bg {
  background-size: cover;
  background-position: center;
}
.gp-dl-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,40 C360,80 720,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
}
.gp-dl-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  animation: gp-dl-orb 14s ease-in-out infinite;
}
@keyframes gp-dl-orb {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .5; }
  50% { transform: translate(3%,-4%) scale(1.1); opacity: .75; }
}
.gp-dl-hero__inner { position: relative; z-index: 1; }
.gp-dl-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .gp-dl-hero__grid { grid-template-columns: 1fr 1fr; }
}
.gp-dl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gp-dl-hero__title {
  margin-top: 1rem;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.gp-dl-hero__lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  max-width: 32rem;
}
.gp-dl-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
.gp-dl-stat {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  min-width: 7rem;
}
.gp-dl-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}
.gp-dl-stat span { font-size: 0.75rem; color: rgba(255,255,255,.75); }
.gp-dl-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gp-dl-rider {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gp-dl-float 5s ease-in-out infinite;
}
@keyframes gp-dl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.gp-dl-package {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.25);
  animation: gp-dl-package 3s ease-in-out infinite;
}
@keyframes gp-dl-package {
  0%, 100% { transform: translate(60px, -40px) rotate(6deg); }
  50% { transform: translate(80px, -55px) rotate(-4deg); }
}

.gp-dl-section { padding: clamp(3rem, 7vw, 5rem) 0; }
.gp-dl-section--alt { background: #fff; border-block: 1px solid var(--gp-border, #e2e8f0); }
.gp-dl-section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.gp-dl-section__kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gp-primary);
}
.gp-dl-section__title {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--gp-text);
  letter-spacing: -0.02em;
}
.gp-dl-section__lead {
  margin-top: 0.65rem;
  color: var(--gp-text-secondary);
  line-height: 1.6;
}

.gp-dl-grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .gp-dl-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.gp-dl-grid-4 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .gp-dl-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gp-dl-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.gp-dl-card {
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md, 20px);
  padding: 1.5rem;
  box-shadow: var(--gp-shadow-xs);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s;
}
.gp-dl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gp-shadow-md);
  border-color: rgba(47,128,237,.35);
}
.gp-dl-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-dl-card h3 {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gp-text);
}
.gp-dl-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gp-text-secondary);
  line-height: 1.55;
}

.gp-dl-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gp-dl-step:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--gp-shadow-md);
}
.gp-dl-step__num {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1e40af, #2f80ed);
  box-shadow: 0 12px 24px -10px rgba(47,128,237,.55);
}

.gp-dl-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--gp-radius-lg, 24px);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1e40af, #2f80ed 60%, #0f172a);
  box-shadow: var(--gp-shadow-lg);
}
.gp-dl-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: .9;
  font-size: 0.8125rem;
}

@media (prefers-reduced-motion: reduce) {
  .gp-dl-hero__orb, .gp-dl-rider, .gp-dl-package { animation: none !important; }
  .gp-dl-card:hover, .gp-dl-step:hover { transform: none; }
}
