/* ============================================
   SECTION: Hero — reference image rebuild
   Full-screen dark image, optically centered copy,
   single ordering CTA
============================================ */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: var(--color-primary-deep);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../assets/hero-hands-original.jpg");
  background-size: cover;
  background-position: 48% 50%;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, transparent 72%, rgba(255, 255, 255, 0.10) 88%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.64) 0%, rgba(10, 10, 10, 0.44) 32%, rgba(10, 10, 10, 0.60) 72%, rgba(10, 10, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.22) 48%, rgba(10, 10, 10, 0.52) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(124px, 18svh, 178px);
  padding-bottom: clamp(72px, 11svh, 118px);
}

.hero__content {
  width: min(100%, 920px);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 28px);
  text-align: center;
  color: #ffffff;
}

.hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.35rem, 5.5vw, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-on-primary);
  margin: 0 auto clamp(20px, 3svh, 30px);
  max-width: 20ch;
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(11, 30, 69, 0.46);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto clamp(26px, 3.5svh, 34px);
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(11, 30, 69, 0.48);
}

.hero__ctas {
  display: flex;
  justify-content: center;
  margin: 0;
}

.hero__order-btn {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: var(--r-md);
  background: var(--color-button-primary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 38px rgba(11, 30, 69, 0.32);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.hero__order-btn:hover {
  background: var(--color-button-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(11, 30, 69, 0.36);
}

@media (min-width: 1024px) {
  .hero::before { background-position: 50% 50%; }
  .hero__inner { padding-top: clamp(140px, 18svh, 190px); }
  .hero__title { max-width: 20ch; }
  .hero__subtitle { max-width: 720px; }
}

@media (max-width: 767px) {
  .hero::before { background-position: 47% 50%; }
  .hero::after {
    background:
      linear-gradient(180deg, transparent 0%, transparent 72%, rgba(255, 255, 255, 0.10) 88%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(180deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.48) 34%, rgba(10, 10, 10, 0.68) 70%, rgba(10, 10, 10, 0.84) 100%),
      linear-gradient(90deg, rgba(10, 10, 10, 0.54) 0%, rgba(10, 10, 10, 0.22) 45%, rgba(10, 10, 10, 0.52) 100%);
  }
  .hero__inner {
    align-items: center;
    padding-top: clamp(118px, 17svh, 148px);
    padding-bottom: clamp(52px, 8svh, 76px);
  }
  .hero__content { padding-inline: 28px; }
  .hero__title {
    font-size: clamp(2rem, 8.6vw, 2.45rem);
    line-height: 1.08;
    max-width: 14ch;
    margin-bottom: 20px;
  }
  .hero__subtitle {
    font-size: clamp(0.98rem, 4vw, 1.06rem);
    line-height: 1.5;
    max-width: 23rem;
    margin-bottom: 26px;
  }
  .hero__order-btn {
    width: min(100%, 260px);
    min-height: 54px;
    padding: 15px 22px;
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .hero__inner { padding-top: 112px; }
  .hero__content { padding-inline: 22px; }
  .hero__title { font-size: 1.95rem; }
  .hero__subtitle { font-size: 0.94rem; }
}

/* ---- Trust Strip below hero ---- */
.hero-trust {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, #ffffff 100%);
  position: relative;
  z-index: 3;
  margin-top: -44px;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--color-border);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 54px rgba(11, 30, 69, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 1024px) { .hero-trust { padding: var(--space-7) 0; } }
@media (max-width: 767px) {
  .hero-trust {
    margin-top: -28px;
    border-radius: 22px 22px 0 0;
  }
}

.hero-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-6);
}
@media (min-width: 768px) { .hero-trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) {
  .hero-trust__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.hero-trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
}
@media (min-width: 768px) {
  .hero-trust__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(var(--space-3) * -1);
    top: 14%; bottom: 14%;
    width: 1px;
    background: var(--color-border);
  }
}
.hero-trust__item .icon-circle--sm { margin-bottom: 0; }
.hero-trust__item .icon-circle--sm::before { display: none; }
.hero-trust__item__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hero-trust__item strong {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  font-size: 0.9375rem;
  line-height: 1.25;
  letter-spacing: var(--tracking-normal);
}
.hero-trust__item__text > span {
  font-size: var(--fs-tagline);
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-top: 2px;
}
