/* ---- Hero: full-width navy band, big headline, product carousel as the visual anchor ---- */
.hero-band {
  position: relative;
  overflow: hidden;
  color: var(--color-text-inverse);
  background:
    radial-gradient(900px 480px at 88% 30%, rgba(26, 94, 163, 0.55), transparent 65%),
    linear-gradient(135deg, var(--color-navy) 0%, #0a1c31 100%);
}
.hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  pointer-events: none;
}
.hero {
  position: relative;
  padding-block: var(--space-8) var(--space-8);
  display: grid;
  gap: var(--space-7);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 1.02fr 0.98fr; gap: var(--space-8); padding-block: var(--space-9); }
}
.hero-copy, .hero-media { position: relative; z-index: 1; }
.hero-copy .eyebrow { color: var(--color-cta); font-size: var(--fs-micro); letter-spacing: 0.14em; margin-bottom: var(--space-4); }
.hero-copy h1 { color: #fff; margin-bottom: var(--space-5); }
.hero-copy p { font-size: 1.1875rem; line-height: 1.65; max-width: 48ch; margin-bottom: var(--space-6); color: rgba(244, 244, 242, 0.84); }
.hero .btn-row { gap: var(--space-4); }

.hero-media {
  aspect-ratio: 4 / 3.35;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-media img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-6); }

.hero-carousel, .hero-carousel .product-carousel-viewport, .hero-carousel .product-carousel-track {
  width: 100%;
  height: 100%;
}
.hero-carousel .product-carousel-track { display: flex; gap: 0; padding: 0; }
.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel-slide > img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-6) var(--space-6) 96px; }
.hero-carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-4) var(--space-5);
  background: #fff;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.hero-carousel-brand {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2px;
}
.hero-carousel-caption h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-carousel-caption .btn { flex-shrink: 0; padding: 10px 20px; font-size: var(--fs-small); }
.hero-carousel .product-carousel-nav.prev { left: 12px; top: calc(50% - 48px); }
.hero-carousel .product-carousel-nav.next { right: 12px; top: calc(50% - 48px); }
@media (max-width: 700px) {
  .hero-carousel .product-carousel-nav { display: flex; }
}

/* Phones: fixed-ratio card left no room for the caption. Stack image over caption instead. */
@media (max-width: 600px) {
  .hero-media { aspect-ratio: auto; }
  .hero-carousel, .hero-carousel .product-carousel-viewport, .hero-carousel .product-carousel-track { height: auto; }
  .hero-carousel-slide { flex-direction: column; height: auto; align-items: stretch; }
  .hero-carousel-slide > img { height: 250px; padding: var(--space-4); }
  .hero-carousel-caption { position: static; flex-direction: column; align-items: stretch; gap: var(--space-3); }
  .hero-carousel-caption .btn { width: 100%; }
  .hero-carousel .product-carousel-nav.prev, .hero-carousel .product-carousel-nav.next { top: 125px; }
}

/* ---- Stats strip (sits directly under the hero) ---- */
.trust-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-6);
}
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 900px) { .trust-strip ul { grid-template-columns: repeat(4, 1fr); } }
.trust-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--space-3);
  position: relative;
}
@media (min-width: 900px) {
  .trust-strip li + li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 1px;
    background: var(--color-border);
  }
}
.trust-strip strong {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-navy);
}
/* Cells may shrink below their content width, and translated text (Google Translate, e.g. Thai or Lao,
   which have no spaces between words) may wrap. Without this a long translation widened the whole page. */
.trust-strip li { min-width: 0; }
html[class*="translated-"] .trust-strip strong { white-space: normal; overflow-wrap: anywhere; }
.trust-strip span {
  overflow-wrap: anywhere;
  margin-top: 4px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ---- About teaser ---- */
.about-teaser {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .about-teaser { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-teaser p { font-size: 1.125rem; margin-bottom: var(--space-5); }
