/* ============================================================
   UPS Authorized Reseller — Page Styles
   ============================================================ */

/* ── Hero ── */
.ups-page-hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ups-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ups-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ups-hero-overlay {
  position: absolute;
  inset: 0;
  background: #300a6e;
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.ups-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 80px;
}

.ups-eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e60a54;
  margin-bottom: 16px;
}

.ups-hero-content h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ups-hero-sub {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Sections ── */
.ups-section {
  padding: 100px 0;
}

.ups-section-alt {
  background-color: #f7f6fb;
}

.cs-service-style2-wrap {
  padding-top: 120px;
}

.cs-counter-item {
  text-align: center;
}

.cs-ser-content {
  text-align: center;
}

.ups-label,
.cs-sec-caption .ups-label {
  font-family: "Outfit", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #e60a54 !important;
  margin-bottom: 14px;
}

.ups-section h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #300a6e;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ups-intro-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-top: 8px;
}

/* ── Cards ── */
.ups-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid #ece9f5;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ups-card:hover {
  box-shadow: 0 12px 40px rgba(48, 10, 110, 0.12);
  transform: translateY(-4px);
}

.ups-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #300a6e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ups-card-icon i {
  font-size: 24px;
  color: #fff;
}

.ups-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #300a6e;
  margin-bottom: 12px;
}

.ups-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Highlight Box ── */
.ups-highlight-box {
  background: #300a6e;
  border-radius: 16px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}

.ups-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ups-highlight-num {
  font-family: "Syne", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ups-highlight-num span {
  font-size: 32px;
  color: #e60a54;
}

.ups-highlight-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── Why It Matters text ── */
.ups-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── CTA Button ── */
.ups-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #300a6e;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.ups-cta-btn:hover {
  background: #3434e8;
  color: #fff;
}

.ups-cta-btn-light {
  background: #fff;
  color: #300a6e;
}

.ups-cta-btn-light:hover {
  background: #e60a54;
  color: #fff;
}

/* ── CTA Band ── */
.ups-cta-band {
  background: #300a6e;
  padding: 100px 0;
}

.ups-cta-band h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.ups-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Service List ── */
.ups-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  grid-column: 1 / -1;
}

.ups-service-list li {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ups-service-list li i {
  color: #e60a54;
  font-size: 20px;
  flex-shrink: 0;
}

.ups-highlight-box:has(.ups-service-list) {
  display: block;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .ups-card {
    text-align: center;
  }

  .ups-card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .ups-section .ups-label,
  .ups-section h2,
  .ups-section p,
  .ups-cta-btn {
    text-align: center;
  }

  .ups-cta-btn {
    display: flex;
    justify-content: center;
  }


  .ups-page-hero { height: 70vh; }
  .ups-section { padding: 64px 0; }
  .ups-cta-band { padding: 64px 0; }

  .ups-highlight-box {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
    gap: 28px 20px;
  }

  .ups-highlight-num { font-size: 36px; }
}

@media (max-width: 480px) {
  .ups-highlight-box {
    grid-template-columns: 1fr;
  }

  .ups-service-list {
    grid-template-columns: 1fr;
  }
}
