/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: "Inter", Helvetica, sans-serif;
  color: var(--color-palette-base-black);
}

img {
  display: block;
  max-width: 100%;
}

/* ==============================================
   PAGE WRAPPER
   ============================================== */
.page-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ==============================================
   HERO BANNER
   ============================================== */
.hero-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 340px;
    background-image: url(https://im.enablementhub.com/storage/views/content-pages/ingram/header04.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right 0%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 48px 80px;
  width: 58%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-heading {
  margin: 0;
  color: #ffffff;
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero-description {
  margin: 0;
  color: #ffffff;
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.5;
}

/* Squirrel photo — right side, anchored at bottom, slightly overflowing */
.hero-person {
  position: absolute;
  right: 3%;
  bottom: -10px;
  height: 105%;
  width: auto;
  max-height: 460px;
  object-fit: contain;
  z-index: 3;
  display: block;
}


/* Bottom wave mask */
.hero-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

/* Right-edge mask (desktop only) */
.hero-mask-desktop {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 2;
  pointer-events: none;
}

/* ==============================================
   NAVIGATION BAR
   ============================================== */
.nav-bar {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 16px 32px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--colors-gray-200);
  flex-wrap: wrap;
}

.nav-logo {
  width: 117px;
  height: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

/* ==============================================
   SECTION INTRO (Services heading + Paragraph)
   ============================================== */
.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px 32px;
  text-align: center;
}

.section-heading {
  margin: 0;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  color: var(--color-palette-base-black);
}

.section-description {
  margin: 0;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  font-size: var(--text-md-regular-font-size);
  line-height: var(--text-md-regular-line-height);
  color: var(--color-palette-base-black);
  max-width: 740px;
}

/* ==============================================
   SERVICE CARDS (3 cards)
   ============================================== */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 32px 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--colors-gray-200);
  background-color: #ffffff;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}

.service-card__image--financial {
  background-image: url(https://c.animaapp.com/BxJO0zGM/img/image-6@2x.png);
}

.service-card__image--professional {
  background-image: url(https://c.animaapp.com/BxJO0zGM/img/image-7@2x.png);
}

.service-card__image--lifecycle {
  background-image: url(https://c.animaapp.com/BxJO0zGM/img/image-8@2x.png);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  flex: 1;
}

.service-card__heading {
  margin: 0;
  color: var(--color-palette-base-black);
  font-family: "Roboto", Helvetica;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.service-card__text {
  margin: 0;
  color: var(--colors-base-black);
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* ==============================================
   7 WAYS SCROLLABLE CARDS
   ============================================== */
.ways-scroll-track {
  width: 100%;
  overflow: hidden;
  padding: 0 0 40px;
}

.ways-scroll-inner {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.ways-scroll-inner:active {
  cursor: grabbing;
}

.ways-scroll-inner::-webkit-scrollbar {
  display: none;
}

.ways-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: 1px solid #d4dce7;
  background-color: #ffffff;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  user-select: none;
	  -webkit-user-select: none; /* Safari */
}

/* Numbered card thumb wrapper */
.ways-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ways-card__thumb-bg {
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  inset: 0;
}

.ways-card__thumb-bg--alt {
  background-color: #000000;
}

.ways-card__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(21, 112, 239, 1) 0%, rgba(255, 11, 151, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ways-card__badge--top {
  top: 24%;
}

.ways-card__badge span {
  font-family: "Helvetica Neue LT Std-75Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 64px;
  line-height: 1;
}

.ways-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 14px 16px;
}

.ways-card__title {
  margin: 0;
  font-family: var(--display-xs-semibold-font-family);
  font-weight: var(--display-xs-semibold-font-weight);
  font-size: var(--display-xs-semibold-font-size);
  line-height: var(--display-xs-semibold-line-height);
  color: var(--color-palette-base-black);
}

.ways-card__text {
  margin: 0;
  font-family: var(--text-md-light-font-family);
  font-weight: var(--text-md-light-font-weight);
  font-size: var(--text-md-light-font-size);
  line-height: var(--text-md-light-line-height);
  color: var(--color-palette-base-black);
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
    background-color: #156fee;
    padding: 40px 48px;
    margin: 40px 32px;
    background-image: url(https://im.enablementhub.com/storage/views/content-pages/ingram/dog_unicorn.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}

.cta-text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.cta-heading {
  margin: 0;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.25;
}

.cta-btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background-color: var(--colors-base-white);
  border-radius: 40px;
  cursor: pointer;
  width: fit-content;
}

.cta-btn:focus-visible {
  outline: 2px solid #4a90e2;
}

.cta-btn__label {
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  font-size: var(--text-md-semibold-font-size);
  color: var(--colors-primary-600);
  white-space: nowrap;
}

.cta-image {
  width: clamp(200px, 30%, 452px);
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0;
}

/* ==============================================
   TABLET: 641px – 1024px
   ============================================== */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-banner {
    min-height: 360px;
  }

  .hero-content {
    width: 56%;
    padding: 44px 36px 80px;
  }

  .hero-person {
    right: 2%;
    max-height: 400px;
    height: 106%;
  }


  .hero-mask-desktop {
    display: none;
  }

  .nav-link {
    font-size: 18px;
  }

  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 24px 40px;
  }

  .ways-card {
    flex: 0 0 300px;
  }

  .cta-section {
    margin: 32px 24px;
    padding: 32px 38px;
  }

  .cta-image {
    width: clamp(220px, 35%, 380px);
  }
}

/* ==============================================
   MOBILE: ≤ 640px
   ============================================== */
@media (max-width: 640px) {
  .hero-banner {
    min-height: 260px;
  }

  .hero-content {
    width: 62%;
    padding: 28px 20px 60px;
    gap: 12px;
  }

  .hero-person {
    right: -10px;
    bottom: -6px;
    height: 100%;
    max-height: 280px;
    opacity: 1;
  }


  .hero-mask-desktop {
    display: none;
  }

  /* Nav stacks on small screens */
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    font-size: 15px;
  }

  .section-intro {
    padding: 32px 20px 24px;
  }

  /* Service cards stack vertically on mobile */
  .services-cards {
    grid-template-columns: 1fr;
    padding: 0 20px 32px;
    gap: 16px;
  }

  /* On mobile, cards are horizontal (image left, text right) */
  .service-card {
    flex-direction: row;
    border: 1px solid var(--colors-gray-200);
  }

  .service-card__image {
    width: 130px;
    min-height: 140px;
    aspect-ratio: unset;
    flex-shrink: 0;
  }

  .service-card__body {
    padding: 12px;
    gap: 8px;
  }

  /* Scrollable cards narrower on mobile */
  .ways-scroll-inner {
    padding: 0 20px;
    gap: 14px;
  }

  .ways-card {
    flex: 0 0 220px;
  }

  .ways-card__badge {
    width: 84px;
    height: 84px;
  }

  .ways-card__badge span {
    font-size: 42px;
  }

  .ways-card__title {
    font-size: 16px;
    line-height: 1.3;
  }

  .ways-card__text {
    font-size: 14px;
  }

  /* CTA stacks vertically on mobile */
  .cta-section {
    margin: 24px 20px;
    padding: 28px 24px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-image {
    width: 100%;
    max-width: 340px;
    align-self: center;
  }

  .cta-heading {
    font-size: 20px;
  }
}

/* ==============================================
   DESKTOP: ≥ 1025px
   ============================================== */
@media (min-width: 1025px) {
  .hero-banner {
    min-height: 420px;
  }

  .hero-content {
    padding: 56px 56px 100px;
    width: 58%;
    gap: 24px;
  }

  .hero-person {
    right: 4%;
    bottom: -10px;
    height: 108%;
    max-height: 500px;
  }


  .nav-bar {
    padding: 18px 48px;
  }

  .nav-link {
    font-size: 18px;
  }

  .section-intro {
    padding: 56px 40px 32px;
  }

  .services-cards {
    padding: 0 40px 56px;
    gap: 24px;
  }

  .service-card__image {
    height: 200px;
    aspect-ratio: unset;
  }

  .ways-scroll-inner {
    padding: 0 40px;
  }

  .ways-card {
    flex: 0 0 320px;
  }

  .cta-section {
    margin: 48px 40px;
    padding: 40px 48px;
  }
}
