/* WeHealth brand colors from assets/styles/_colors.scss */
.sh-site {
  --sh-blue: #4C86C7;
  --sh-dark-blue: #2D527A;
  --sh-gold: #E9B657;
  --sh-auburn: #E15A00;
  --sh-orange: #F5A622;
  --sh-midnight: #05192D;
  --sh-light-blue: #9CBADD;
  --sh-gray: #767b8b;
  --sh-light-gray-bg: #f3f7f9;

  --sh-primary: var(--sh-blue);
  --sh-primary-dark: var(--sh-dark-blue);
  --sh-accent: var(--sh-orange);
  --sh-accent-alt: var(--sh-auburn);
  --sh-bg: var(--sh-light-gray-bg);
  --sh-card: #ffffff;
  --sh-foreground: var(--sh-midnight);
  --sh-muted: var(--sh-midnight);
  --sh-border: #d8dcde;
  --sh-secondary: #e8eef3;

  /* ~88% viewport width on desktop (no narrow max-width cap) */
  --sh-page-width: 100%;
  --sh-inline-pad: 1.25rem;

  /* Mobile-first type scale */
  --sh-text-base: 1.125rem;
  --sh-text-lg: 1.5rem;
  --sh-text-xl: 1.7rem;
  --sh-h3: 1.625rem;
  --sh-h2: 2rem;
  --sh-h1: 3rem;
  --sh-label: 1.2rem;
  --sh-nav-size: 1.0625rem;
  --sh-btn-size: 1.125rem;
  --sh-stat-size: 1.5rem;

  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--sh-text-base);
  color: var(--sh-foreground);
  background: var(--sh-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.sh-site *,
.sh-site *::before,
.sh-site *::after {
  box-sizing: border-box;
}

.sh-site a {
  color: inherit;
  text-decoration: none;
}

.sh-site img:not(.sh-logo__img) {
  max-width: 100%;
  height: auto;
  display: block;
}

.sh-site .sh-logo__img {
  display: block;
  width: auto;
  max-width: 128px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.sh-site .sh-serif {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

#wrapper.sh-wrapper-reset {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

#wrapper.sh-wrapper-reset .sh-site {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

.sh-site > main {
  width: 100%;
}

#confetti-background,
#overlay-loading {
  display: none !important;
}

@media (min-width: 768px) {
  .sh-site {
    --sh-inline-pad: 1.5rem;
    --sh-h3: 1.875rem;
    --sh-h2: 2.375rem;
    --sh-h1: 2.875rem;
    --sh-stat-size: 2rem;
  }
}

@media (min-width: 1100px) {
  .sh-site {
    --sh-page-width: 86%;
    --sh-inline-pad: 2.5rem;
    --sh-text-base: 1.3125rem;
    --sh-text-lg: 1.625rem;
    --sh-text-xl: 1.875rem;
    --sh-h3: 3rem;
    --sh-h2: 4rem;
    --sh-h1: 5rem;
    --sh-nav-size: 1.1875rem;
    --sh-btn-size: 1.3125rem;
    --sh-stat-size: 2.2rem;
  }
}

.sh-container,
.sh-nav,
.sh-announce__inner,
.sh-hero__inner {
  width: var(--sh-page-width);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sh-inline-pad);
  padding-right: var(--sh-inline-pad);
}

/* Announcement */
.sh-announce {
  background: var(--sh-dark-blue);
  color: #fff;
  font-size: var(--sh-text-base);
}

.sh-announce__inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.sh-announce__badge {
  font-weight: 600;
  display: none;
}

.sh-announce a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sh-announce a:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .sh-announce__badge {
    display: inline;
  }
}

/* Header */
.sh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 247, 249, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.sh-header.is-scrolled {
  border-bottom-color: var(--sh-border);
}

.sh-nav {
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .sh-nav {
    height: 4rem;
  }
}

.sh-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sh-site .sh-logo__img {
    height: 34px;
    max-width: 132px;
  }
}

.sh-logo--footer .sh-logo__img {
  height: 28px;
  max-width: 120px;
  filter: brightness(0) invert(1);
}

.sh-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .sh-nav__links {
    display: flex;
  }
}

.sh-nav__links a {
  padding: 0.5rem 0.875rem;
  font-size: var(--sh-nav-size);
  font-weight: 500;
  color: var(--sh-muted);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.sh-nav__links a:hover,
.sh-nav__links a.is-active {
  color: var(--sh-foreground);
  background: rgba(76, 134, 199, 0.08);
}

.sh-nav__links a.is-active {
  color: var(--sh-primary);
}

.sh-nav__dropdown {
  position: relative;
}

.sh-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: var(--sh-nav-size);
  font-weight: 500;
  font-family: inherit;
  color: var(--sh-muted);
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.sh-nav__dropdown-toggle:hover,
.sh-nav__dropdown.is-open .sh-nav__dropdown-toggle {
  color: var(--sh-foreground);
  background: rgba(76, 134, 199, 0.08);
}

.sh-nav__chevron {
  transition: transform 0.2s;
}

.sh-nav__dropdown.is-open .sh-nav__chevron,
.sh-mobile-nav__group.is-open .sh-nav__chevron {
  transform: rotate(180deg);
}

.sh-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  min-width: 13rem;
  padding: 0.375rem;
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgba(5, 25, 45, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 110;
}

.sh-nav__dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: var(--sh-nav-size);
  font-weight: 500;
  color: var(--sh-muted);
  border-radius: 0.375rem;
  white-space: nowrap;
}

.sh-nav__dropdown-menu a:hover {
  color: var(--sh-foreground);
  background: rgba(76, 134, 199, 0.08);
}

@media (min-width: 1024px) {
  .sh-nav__dropdown:hover .sh-nav__dropdown-menu,
  .sh-nav__dropdown.is-open .sh-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .sh-nav__dropdown-menu {
    display: none;
  }
}

.sh-nav__actions {
  display: none;
  align-items: center;
  gap: 0.375rem;
}

@media (min-width: 1024px) {
  .sh-nav__actions {
    display: flex;
  }
}

.sh-nav__actions .sh-btn--primary {
  padding: 0.5rem 1rem;
  font-size: var(--sh-nav-size);
  min-height: 2.25rem;
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--sh-btn-size);
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.sh-btn--primary {
  background: var(--sh-primary);
  color: #fff;
}

.sh-btn--primary:hover {
  background: var(--sh-dark-blue);
  color: #fff;
}

.sh-btn--outline {
  background: var(--sh-card);
  color: var(--sh-foreground);
  border: 1px solid var(--sh-border);
}

.sh-btn--outline:hover {
  background: var(--sh-secondary);
}

.sh-hero .sh-btn--primary {
  background: var(--sh-primary);
  color: #fff;
}

.sh-hero .sh-btn--outline {
  border-color: rgba(76, 134, 199, 0.25);
}

.sh-btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: var(--sh-btn-size);
  font-weight: 600;
  border-radius: 0.5rem;
  min-height: 3rem;
}

@media (min-width: 1024px) {
  .sh-btn--lg {
    padding: 0.875rem 1.75rem;
    min-height: 3.25rem;
  }
}

.sh-btn--xl {
  padding: 1rem 1.5rem;
  min-height: 3.25rem;
  font-size: var(--sh-btn-size);
  border-radius: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  .sh-btn--xl {
    width: auto;
    height: 3rem;
    border-radius: 0.5rem;
  }
}

.sh-btn--ghost {
  background: transparent;
  color: var(--sh-muted);
}

.sh-btn--ghost:hover {
  color: var(--sh-foreground);
  background: rgba(0, 0, 0, 0.04);
}

.sh-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  border-radius: 0.75rem;
  cursor: pointer;
}

.sh-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .sh-menu-toggle {
    display: none;
  }
}

.sh-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--sh-bg);
  padding: 5rem var(--sh-inline-pad) 2rem;
  overflow-y: auto;
}

.sh-mobile-nav.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .sh-mobile-nav {
    display: none !important;
  }
}

.sh-mobile-nav__group {
  border-bottom: 1px solid var(--sh-border);
}

.sh-mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  font-size: var(--sh-text-lg);
  font-weight: 500;
  font-family: inherit;
  color: var(--sh-foreground);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.sh-mobile-nav__sub {
  padding-bottom: 0.5rem;
}

.sh-mobile-nav__sub[hidden] {
  display: none;
}

.sh-mobile-nav__sub a {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: var(--sh-text-base);
  font-weight: 500;
  color: var(--sh-muted);
}

.sh-mobile-nav__sub a:hover {
  color: var(--sh-primary);
}

.sh-mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: var(--sh-text-lg);
  font-weight: 500;
  border-bottom: 1px solid var(--sh-border);
}

.sh-mobile-nav__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Hero */
.sh-hero {
  position: relative;
  background: rgba(76, 134, 199, 0.04);
  width: 100%;
}

@media (max-width: 639px) {
  .sh-hero {
    min-height: auto;
  }
}

.sh-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sh-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.sh-hero__blob--1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(76, 134, 199, 0.12);
  transform: translate(50%, -50%);
}

.sh-hero__blob--2 {
  bottom: 0;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: rgba(245, 166, 34, 0.12);
  transform: translate(-50%, 50%);
}

.sh-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .sh-hero__inner {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .sh-hero__inner {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}

.sh-hero__mobile-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45, 82, 122, 0.15);
  margin-bottom: 1.25rem;
}

.sh-hero__mobile-only {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sh-hero__desktop {
  display: none;
  width: 100%;
}

@media (min-width: 640px) {
  .sh-hero__mobile-only {
    display: none;
  }

  .sh-hero__desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 3vw, 3.5rem);
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .sh-hero__desktop {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 4vw, 4.5rem);
  }
}

.sh-hero__content {
  min-width: 0;
  max-width: none;
}

.sh-hero__eyebrow {
  color: var(--sh-auburn);
  font-size: var(--sh-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.875rem;
}

@media (min-width: 640px) {
  .sh-hero__eyebrow {
    font-size: var(--sh-label);
    margin-bottom: 1.25rem;
  }
}

.sh-hero h1 {
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  font-size: var(--sh-h1);
  color: var(--sh-foreground);
}

@media (min-width: 640px) {
  .sh-hero h1 {
    font-size: var(--sh-h1);
    margin-bottom: 1.5rem;
  }
}

.sh-hero h1 .sh-text-accent {
  color: var(--sh-primary);
  font-weight: 500;
}

.sh-hero__lead {
  color: var(--sh-muted);
  font-size: var(--sh-text-lg);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-weight: 400;
  max-width: 34rem;
}

@media (min-width: 1024px) {
  .sh-hero__lead {
    font-size: var(--sh-text-xl);
    max-width: 42rem;
    margin-bottom: 2rem;
  }
}

.sh-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .sh-hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
}

.sh-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  padding-top: 0;
  border-top: none;
  margin: 0 6px 0 6px;
}

@media (min-width: 640px) {
  .sh-hero__stats {
    gap: 2.5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .sh-hero__stats {
    gap: 2.5rem 5.5rem;
  }
}

.sh-hero__stat-val {
  font-family: 'Newsreader', Georgia, serif;
  font-size: var(--sh-stat-size);
  font-weight: 600;
  color: var(--sh-primary);
  line-height: 1;
}

.sh-hero__stat-label {
  font-size: var(--sh-label);
  color: var(--sh-auburn);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.375rem;
  font-weight: 500;
}

.sh-hero__image-col {
  min-width: 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .sh-hero__image-col {
    justify-content: flex-end;
  }
}

.sh-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 82, 122, 0.18);
}

@media (min-width: 1024px) {
  .sh-hero__image-wrap {
    max-width: none;
    min-height: 28rem;
    max-height: 54rem;
  }
}

.sh-hero__image-wrap img,
.sh-hero__mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partners */
.sh-partners {
  padding: 3rem 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  overflow: hidden;
}

.sh-partners__title {
  text-align: center;
  font-size: var(--sh-label);
  font-weight: 600;
  color: var(--sh-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: var(--sh-page-width);
  max-width: none;
  margin: 0 auto 2rem;
  padding: 0 var(--sh-inline-pad);
}

@media (min-width: 640px) {
  .sh-partners__title {
    font-size: var(--sh-text-base);
    margin-bottom: 2.5rem;
  }
}

.sh-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: var(--sh-page-width);
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--sh-inline-pad);
}

@media (min-width: 640px) {
  .sh-partners__grid {
    display: none;
  }
}

.sh-partners__grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--sh-card);
  border: 1px solid rgba(231, 229, 228, 0.5);
  border-radius: 0.5rem;
  font-size: var(--sh-text-base);
  font-weight: 500;
  color: var(--sh-muted);
  text-align: center;
  line-height: 1.3;
}

.sh-marquee {
  display: none;
  position: relative;
}

@media (min-width: 640px) {
  .sh-marquee {
    display: block;
  }
}

.sh-marquee::before,
.sh-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}

.sh-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(245, 245, 244, 0.9), transparent);
}

.sh-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(245, 245, 244, 0.9), transparent);
}

.sh-marquee__track {
  display: flex;
  animation: sh-marquee 40s linear infinite;
  width: max-content;
}

.sh-marquee__item {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  font-size: var(--sh-text-xl);
  font-weight: 500;
  color: var(--sh-muted);
  white-space: nowrap;
}

.sh-marquee__dot {
  margin: 0 2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sh-gold);
  flex-shrink: 0;
}

@keyframes sh-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.sh-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .sh-section {
    padding: 6rem 0;
  }
}

.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(76, 134, 199, 0.12);
  border-radius: 9999px;
  font-size: var(--sh-label);
  font-weight: 600;
  color: var(--sh-dark-blue);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .sh-badge {
    font-size: var(--sh-text-base);
  }
}

.sh-section h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: var(--sh-h2);
  line-height: 1.12;
  margin: 0 0 1.25rem;
  color: var(--sh-foreground);
}

.sh-section h2 .sh-italic {
  font-style: italic;
  color: var(--sh-primary);
  font-weight: 500;
}

.sh-prose {
  color: var(--sh-muted);
  font-size: var(--sh-text-lg);
  line-height: 1.7;
  font-weight: 300;
}

.sh-prose p + p {
  margin-top: 1.25rem;
}

.sh-prose strong {
  color: var(--sh-foreground);
  font-weight: 600;
}

.sh-prose em {
  font-style: italic;
}

.sh-two-col {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sh-two-col {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.sh-quote-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(245, 245, 244, 0.8);
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  position: relative;
}

@media (min-width: 640px) {
  .sh-quote-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

.sh-quote-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: rgba(76, 134, 199, 0.25);
  font-family: Georgia, serif;
}

.sh-quote-card p {
  margin: 0;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}

.sh-quote-card cite {
  display: block;
  margin-top: 0.75rem;
  font-size: var(--sh-text-base);
  color: var(--sh-muted);
  font-style: normal;
}

.sh-media-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .sh-media-card {
    border-radius: 1.5rem;
  }
}

.sh-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-stats-float {
  margin-top: 1.5rem;
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .sh-stats-float {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    right: 2rem;
    margin-top: 0;
  }
}

.sh-stats-float__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: center;
}

.sh-stats-float__val {
  font-family: 'Newsreader', Georgia, serif;
  font-size: var(--sh-stat-size);
  font-weight: 600;
  color: var(--sh-primary);
  line-height: 1;
}

.sh-stats-float__label {
  font-size: var(--sh-label);
  font-weight: 500;
  margin-top: 0.375rem;
}

@media (min-width: 640px) {
  .sh-stats-float__label {
    font-size: var(--sh-text-base);
  }
}

.sh-stats-float__sub {
  display: none;
  font-size: var(--sh-label);
  color: var(--sh-muted);
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .sh-stats-float__sub {
    display: block;
  }
}

.sh-media-col {
  position: relative;
}

/* Features */
.sh-section--muted {
  background: var(--sh-secondary);
  position: relative;
  overflow: hidden;
}

.sh-section--muted .sh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.sh-section--muted .sh-blob--tr {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(76, 134, 199, 0.08);
  transform: translate(30%, -50%);
}

.sh-section--muted .sh-blob--bl {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(245, 166, 34, 0.08);
  transform: translate(-30%, 50%);
}

.sh-section__intro {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 1024px) {
  .sh-section__intro {
    max-width: 48rem;
  }
}

@media (min-width: 640px) {
  .sh-section__intro {
    margin-bottom: 4rem;
  }
}

.sh-features {
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .sh-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .sh-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-feature-card {
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .sh-feature-card {
    padding: 1.75rem;
    border-radius: 1rem;
  }
}

.sh-feature-card:hover {
  border-color: rgba(76, 134, 199, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.sh-feature-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.sh-feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(76, 134, 199, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-primary);
}

.sh-feature-card__metric {
  text-align: right;
}

.sh-feature-card__metric-val {
  font-family: 'Newsreader', Georgia, serif;
  font-size: calc(var(--sh-stat-size) * 1.1);
  font-weight: 700;
  color: var(--sh-auburn);
  line-height: 1;
}

.sh-feature-card__metric-label {
  font-size: var(--sh-text-base);
  font-weight: 600;
  color: var(--sh-auburn);
  margin-top: 0.125rem;
  line-height: 1.2;
}

.sh-feature-card h3 {
  font-size: var(--sh-h3);
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--sh-primary);
}

.sh-feature-card p {
  margin: 0;
  font-size: var(--sh-text-base);
  color: var(--sh-muted);
  line-height: 1.6;
  font-weight: 300;
}

.sh-feature-card__metric .sh-feature-card__metric-val {
  color: var(--sh-auburn);
  font-size: calc(var(--sh-stat-size) * 1.1);
  font-weight: 700;
}

.sh-feature-card__metric .sh-feature-card__metric-label {
  color: var(--sh-auburn);
  font-size: var(--sh-text-base);
  font-weight: 600;
  margin-top: 0.125rem;
  line-height: 1.2;
}

/* Testimonial carousel */
.sh-testimonial {
  padding: 4.5rem var(--sh-inline-pad) 3.5rem;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0) 0 0 / 24px 24px,
    linear-gradient(165deg, #0a2e3d 0%, var(--sh-midnight) 45%, #0d3a4a 100%);
  color: #fff;
}

@media (min-width: 1024px) {
  .sh-testimonial {
    padding: 6rem var(--sh-inline-pad) 4.5rem;
  }
}

.sh-testimonial__carousel {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: var(--sh-inline-pad);
  padding-right: var(--sh-inline-pad);
}

.sh-testimonial__track {
  display: grid;
  grid-template-columns: 1fr;
}

.sh-testimonial__slide {
  grid-area: 1 / 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
  padding: 0 0.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

@media (min-width: 768px) {
  .sh-testimonial__slide {
    width: min(90%, 40rem);
    padding: 0 1rem;
  }
}

@media (min-width: 1100px) {
  .sh-testimonial__slide {
    width: min(72vw, 72rem);
    padding: 0 1.5rem;
  }
}

.sh-testimonial__slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sh-testimonial__eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--sh-label);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sh-testimonial__quote-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
}

.sh-testimonial blockquote {
  margin: 0 auto;
  max-width: none;
  font-size: var(--sh-text-xl);
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

@media (min-width: 640px) {
  .sh-testimonial blockquote {
    font-size: var(--sh-h3);
    line-height: 1.45;
  }
}

@media (min-width: 1100px) {
  .sh-testimonial blockquote {
    font-size: clamp(1.75rem, 2.2vw, 2.5rem);
    line-height: 1.4;
  }
}

.sh-testimonial__metric-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sh-testimonial__metric-val {
  font-family: 'Newsreader', Georgia, serif;
  font-size: calc(var(--sh-stat-size) * 0.85);
  font-weight: 700;
  color: var(--sh-auburn);
  line-height: 1;
}

@media (min-width: 640px) {
  .sh-testimonial__metric-val {
    font-size: var(--sh-stat-size);
  }
}

.sh-testimonial__metric-label {
  font-size: var(--sh-text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.sh-testimonial__author {
  margin: 1.75rem 0 0;
  font-weight: 700;
  font-size: var(--sh-text-lg);
  color: #fff;
}

.sh-testimonial__role {
  margin: 0.25rem 0 0;
  font-size: var(--sh-text-base);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.sh-testimonial__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.sh-testimonial__arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.sh-testimonial__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.sh-testimonial__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sh-testimonial__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.sh-testimonial__dot.is-active {
  width: 2rem;
  background: #fff;
}

.sh-testimonial__dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.45);
}

/* Case studies */
.sh-cases__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sh-cases__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.sh-case-card {
  display: block;
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sh-case-card:hover {
  border-color: rgba(76, 134, 199, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.sh-case-card__img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(76, 134, 199, 0.18), rgba(245, 166, 34, 0.12));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.sh-case-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.sh-case-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.sh-case-card__tag {
  font-size: var(--sh-label);
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sh-foreground);
}

.sh-case-card__tag--accent {
  background: var(--sh-primary);
  color: #fff;
}

.sh-case-card__body {
  padding: 1.25rem;
}

.sh-case-card h3 {
  font-size: var(--sh-h3);
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--sh-primary);
}

.sh-case-card p {
  margin: 0 0 1rem;
  font-size: var(--sh-text-base);
  color: var(--sh-muted);
  line-height: 1.55;
  font-weight: 300;
}

.sh-case-card__link {
  font-size: var(--sh-text-base);
  font-weight: 600;
  color: var(--sh-dark-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.sh-assessment {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(76, 134, 199, 0.1), rgba(245, 166, 34, 0.08));
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  text-align: center;
}

.sh-assessment h3 {
  font-size: var(--sh-h3);
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--sh-primary);
}

.sh-assessment p {
  color: var(--sh-muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--sh-text-lg);
  font-weight: 300;
}

.sh-assessment small {
  display: block;
  margin-top: 0.75rem;
  font-size: var(--sh-label);
  color: var(--sh-muted);
}

/* CTA */
.sh-cta {
  padding: 4rem 0;
  width: 100%;
  background: linear-gradient(135deg, var(--sh-dark-blue) 0%, var(--sh-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sh-cta__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sh-cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.sh-cta h2 {
  font-size: var(--sh-h2);
  font-weight: 300;
  margin: 0 0 1rem;
  color: #fff;
}

.sh-cta__lead {
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: var(--sh-text-lg);
  font-weight: 300;
}

.sh-cta__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.sh-cta__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: var(--sh-text-base);
}

.sh-cta__checks svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--sh-gold);
}

.sh-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .sh-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.sh-btn--white {
  background: var(--sh-orange);
  color: var(--sh-midnight);
}

.sh-btn--white:hover {
  background: var(--sh-gold);
  color: var(--sh-midnight);
}

.sh-btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.sh-btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sh-cta__metrics {
  display: grid;
  gap: 1rem;
}

.sh-cta-metric {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
}

.sh-cta-metric__val {
  font-family: 'Newsreader', Georgia, serif;
  font-size: var(--sh-stat-size);
  font-weight: 600;
  line-height: 1;
}

.sh-cta-metric__label {
  font-weight: 600;
  margin-top: 0.25rem;
  font-size: var(--sh-text-base);
}

.sh-cta-metric__sub {
  font-size: var(--sh-label);
  opacity: 0.85;
  margin-top: 0.125rem;
}

.sh-cta__trust {
  margin-top: 2rem;
  font-size: var(--sh-text-base);
  opacity: 0.9;
  text-align: center;
}

@media (min-width: 1024px) {
  .sh-cta__trust {
    text-align: left;
    grid-column: 1 / -1;
  }
}

/* Footer */
.sh-footer {
  background: var(--sh-midnight);
  color: #fafaf9;
  padding: 3rem 0 2rem;
  width: 100%;
}

.sh-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .sh-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.sh-footer__brand p {
  color: var(--sh-light-blue);
  font-size: var(--sh-text-base);
  line-height: 1.6;
  margin: 0.75rem 0;
  font-weight: 300;
}

.sh-footer__brand a {
  color: #fff;
  font-size: var(--sh-text-base);
}

.sh-footer__location {
  color: var(--sh-light-blue);
  font-size: var(--sh-text-base);
  margin-top: 0.25rem;
}

.sh-footer h4 {
  font-size: var(--sh-text-lg);
  font-weight: 600;
  margin: 0 0 1rem;
}

.sh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-footer li {
  margin-bottom: 0.5rem;
}

.sh-footer a {
  color: var(--sh-light-blue);
  font-size: var(--sh-text-base);
  transition: color 0.2s;
}

.sh-footer a:hover {
  color: #fff;
}

.sh-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #292524;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: var(--sh-label);
  color: #78716c;
}

@media (min-width: 640px) {
  .sh-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.sh-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.sh-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sh-icon--sm {
  width: 1rem;
  height: 1rem;
}
