/* ==========================================================================
   Hero V2 — Homepage hero only
   Scoped entirely under .hero-v2 — do not use outside this block
   ========================================================================== */

.hero-v2 {
  background-color: #ffffff;
  padding: 190px 100px 105px;
}

.hero-v2__container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Content column
   -------------------------------------------------------------------------- */

.hero-v2__content {
  max-width: 580px;
}

.hero-v2__eyebrow {
  margin: 0 0 var(--stack-eyebrow-title);
  font-size: var(--text-caption);
  font-weight: var(--font-semibold);
  line-height: var(--lh-caption);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: #F37F0C;
}

.hero-v2__title {
  margin: 0 0 var(--stack-card-body-cta);
  font-size: var(--text-display-xl);
  font-weight: var(--font-bold);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  color: #252525;
}

.hero-v2__deck {
  margin: 0 0 var(--stack-body-action);
  font-size: var(--text-body-xl);
  font-weight: var(--text-body-weight);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--color-text-muted);
  max-width: 520px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.hero-v2__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.hero-v2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--space-6);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-lh);
  letter-spacing: var(--btn-ls);
  text-decoration: none;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  transition: var(--btn-transition);
}

.hero-v2__cta--primary {
  background-color: #174B71;
  color: #ffffff;
  border-color: #174B71;
  box-shadow: 0 1px 6px rgba(23, 75, 113, 0.18);
}

.hero-v2__cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(23, 75, 113, 0.22);
}

.hero-v2__cta--secondary {
  background-color: transparent;
  color: #252525;
  border-color: #d1d5db;
}

.hero-v2__cta--secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.hero-v2__cta:focus-visible {
  outline: 2px solid #174B71;
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Trust badges
   -------------------------------------------------------------------------- */

.hero-v2__badges {
  margin: 0;
}

.hero-v2__badges-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.hero-v2__badge {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 36px;
}

.hero-v2__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #fef3e2;
  color: #F37F0C;
  font-size: var(--text-body-s);
  line-height: 1;
}

.hero-v2__badge-icon i {
  display: block;
  width: 14px;
  text-align: center;
  line-height: 1;
}

.hero-v2__badge-text {
  font-size: var(--text-caption);
  font-weight: var(--font-semibold);
  line-height: var(--lh-title);
  color: #252525;
}

/* --------------------------------------------------------------------------
   Hero image
   -------------------------------------------------------------------------- */

.hero-v2__picture {
  display: block;
  width: 100%;
  max-width: 560px;
}

.hero-v2__media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-v2__image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* --------------------------------------------------------------------------
   Tablet — max 1199px
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .hero-v2 {
    padding: 170px 50px 90px;
  }

  .hero-v2__grid {
    gap: 40px;
  }

  .hero-v2__badges-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* --------------------------------------------------------------------------
   Tablet — max 991px
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .hero-v2 {
    padding: 160px 30px 80px;
  }

  .hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-v2__content {
    max-width: 100%;
  }

  .hero-v2__deck {
    max-width: 100%;
  }

  .hero-v2__media {
    justify-content: center;
  }

  .hero-v2__image {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Mobile — max 767px
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .hero-v2 {
    padding: 140px 15px 70px;
  }

  .hero-v2__buttons {
    flex-direction: column;
    margin-bottom: var(--space-6);
  }

  .hero-v2__cta {
    width: 100%;
    min-height: var(--btn-min-height-mobile);
  }

  .hero-v2__badges-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .hero-v2__image {
    border-radius: var(--space-4);
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .hero-v2__cta {
    transition: none;
  }

  .hero-v2__cta:hover {
    transform: none;
  }
}
