/* Shared foundation for product detail pages. */
:root {
  --ink: #0f2442;
  --muted: #667085;
  --soft: #f6f8ff;
  --card: #ffffff;
  --line: #e7ecf5;
  --brand: #0e2344;
  --brand2: #082243;
  --section-y: 72px;
  --section-y-tablet: 60px;
  --section-y-mobile: 48px;
  --content-gap: 28px;
  --card-gap: 30px;
}

.section-pad,
.section-padding {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.h2,
.section-h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.section-h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 700;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #0057a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-card .cta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 32px;
}

.hero-card .btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 9px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero-card .btn-brand:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .16);
}

.intro-copy {
  max-width: 720px;
}

.intro-copy p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.TruckImg {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  margin: 0 0 0 auto;
  padding: 18px;
  border-radius: 18px 0 34px 0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 28, 52, .12);
  object-fit: contain;
  object-position: center;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1),
    transform .7s cubic-bezier(.2, .65, .3, 1);
}

[data-animate].active {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .section-pad,
  .section-padding {
    padding-top: var(--section-y-tablet);
    padding-bottom: var(--section-y-tablet);
  }

  .intro-copy {
    max-width: 100%;
  }

  .TruckImg {
    max-width: 560px;
    margin: 8px auto 0;
  }
}

@media (max-width: 767px) {
  .section-pad,
  .section-padding {
    padding-top: var(--section-y-mobile);
    padding-bottom: var(--section-y-mobile);
  }

  .section-h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.28;
  }

  .TruckImg {
    max-width: 100%;
    margin: 12px auto 0;
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .hero-card .cta-bar {
    gap: 10px;
  }

  .hero-card .btn-brand {
    width: 100%;
  }
}
