@charset "UTF-8";
/* IBM Plex Sans */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");
.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* _breakpoints.scss */
/* Fluid type + spacing */
:root {
  --space: clamp(12px, 1.8vw, 20px);
}

body {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

.btn, .chip {
  min-height: 44px;
  padding: 10px 16px;
}

/* Media helpers */
.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aspect-16x9 {
  aspect-ratio: 16/9; /* safe fallback below */
}
@supports not (aspect-ratio: 16/9) {
  .aspect-16x9 {
    position: relative;
    padding-top: 56.25%;
  }
  .aspect-16x9 > * {
    position: absolute;
    inset: 0;
  }
}

@media (max-width: 768px) {
  .frow-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#testimonials {
  scroll-margin-top: 120px;
}

html {
  scroll-behavior: smooth;
}

.wp-block-embed,
.wp-block-embed-youtube,
.wp-block-embed-iframe {
  max-width: 100%;
  width: 80%;
  margin: 0 auto;
}

.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper embed,
.wp-block-embed__wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-video {
  max-width: 900px;
  margin: 0 auto;
}
.custom-video iframe {
  width: 100%;
  height: auto;
}

.wp-block-embed-aspect-4-3 .wp-block-embed__wrapper {
  padding-bottom: 75%;
}

.contact-icon {
  color: #fff;
  display: inline;
  position: relative;
  top: 8px;
}

/* components/_cover.scss */
.cover {
  position: relative;
  /* keeps pseudo behind content */
  color: #1a2d36;
  /* Bottom “tray” curve */
}
.cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px; /* avoid hairline gap */
  height: 80px;
  background: #fff;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
  z-index: 0; /* sits under text */
}
.cover {
  /* Image controls height — no vh anywhere */
}
.cover__media {
  position: relative;
  z-index: 0;
}
.cover__media img {
  display: block;
  width: 100%;
  height: auto; /* natural aspect controls section height */
  object-fit: cover; /* protects from tiny rounding mismatch */
}
.cover__media {
  /* optional soft darken gradient for legibility */
}
.cover__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(8deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 35%);
  pointer-events: none;
}
.cover__content {
  position: absolute;
  inset: 0; /* overlay on top of the image */
  display: grid;
  align-content: start;
  padding-top: clamp(32px, 8vw, 72px);
  padding-bottom: clamp(32px, 8vw, 72px);
  z-index: 1; /* above gradient */
  /* simple two-column when wide; stacks on small screens */
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}
@media (max-width: 1024px) {
  .cover__content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cover {
  /* Eyebrow chip */
}
.cover__eyebrow {
  grid-column: 1/-1;
  align-self: start;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A2D36;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  border-radius: 999px;
  padding: 6px 20px;
  justify-self: start;
  width: max-content;
  margin-bottom: clamp(8px, 1.6vw, 12px);
}
.cover {
  /* Breadcrumb chips (Solutions cover) */
}
.cover__breadcrumbs {
  grid-column: 1/-1;
  align-self: start;
  display: inline-flex;
  align-items: center;
  padding: 5px 21px;
  gap: 10px;
  margin-bottom: clamp(8px, 1.6vw, 12px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  width: max-content;
}
.cover__crumb {
  display: inline-flex;
  align-items: center;
  padding: 8px 21px 8px 40px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.14) url(../images/breadcrumb-arrow.svg) no-repeat;
  background-position: 20px 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 12px;
  color: #1A2D36;
}
.cover__crumb--current {
  background: none;
  color: #1A2D36;
  border-radius: 0;
  border: 0;
  padding-left: 21px;
}
.cover__crumb a:hover {
  text-decoration: none;
}
.cover__crumb:hover {
  text-decoration: none;
}
.cover__title {
  grid-column: 1/2;
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  font-size: 3.125rem;
  color: #1A2D36;
  max-width: 764px;
}
.cover__title .cover__accent,
.cover__title span {
  color: #02AE54; /* your green */
}
.cover__note {
  grid-column: 2/3;
  align-self: start;
  margin: 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  max-width: 430px;
  color: rgb(26, 45, 54);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .cover__note {
    grid-column: 1/-1;
    max-width: 60ch;
  }
}
.cover {
  /* Small pill at bottom of hero (Solutions cover) */
}
.cover__badge {
  position: absolute;
  left: 50%;
  bottom: 182px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  width: min(90%, 620px);
  color: #ffffff;
  z-index: 2;
}
@media (max-width: 768px) {
  .cover__badge {
    bottom: 132px;
    width: calc(100% - 32px);
    padding: 16px;
    gap: 14px;
  }
}
.cover__badge-chip {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover__badge-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover__badge-text {
  margin: 0;
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 768px) {
  .cover__badge-text {
    font-size: 1rem;
    line-height: 1.45;
  }
}

.single-post .cover__title,
.single-casestudies .cover__title {
  color: #fff;
}
.single-post .cover__action img,
.single-casestudies .cover__action img {
  width: 42px;
  height: 36px;
  display: block;
}
.single-post .cover__actions,
.single-casestudies .cover__actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  left: -100px;
}
.single-post .cover__actions .cover__share-popover img,
.single-casestudies .cover__actions .cover__share-popover img {
  width: 24px;
  height: 24px;
  display: block;
}
.single-post .cover__action--trigger,
.single-casestudies .cover__action--trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.single-post .cover__share-popover,
.single-casestudies .cover__share-popover {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.single-post .cover__share-popover a,
.single-casestudies .cover__share-popover a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.single-post .cover__actions:hover .cover__share-popover,
.single-post .cover__actions:focus-within .cover__share-popover,
.single-casestudies .cover__actions:hover .cover__share-popover,
.single-casestudies .cover__actions:focus-within .cover__share-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .cover__title {
    font-size: 2.142rem;
  }
  .cover__note {
    font-size: 1rem;
  }
  .cover {
    min-height: 520px;
    overflow: hidden;
  }
  .cover::after {
    height: 120px;
    border-top-left-radius: 52px;
    border-top-right-radius: 52px;
    z-index: 0;
  }
  .cover__media {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
  .cover__media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
  }
  .cover__content {
    position: relative;
    inset: auto;
    min-height: 520px;
    padding: 32px 20px 150px;
    grid-template-columns: 1fr;
    z-index: 2;
  }
  .cover__title {
    font-size: 1.875rem;
    line-height: 1.15;
    max-width: 100%;
  }
  .cover__note {
    grid-column: 1/-1;
    font-size: 1rem;
    line-height: 1.45;
    max-width: 100%;
    margin-top: 10px;
  }
}
/* sections/about/_index.scss */
/* sections/about/_banner.scss */
.about-banner {
  position: relative;
  background: #f9fbfa;
  color: #1a2d36;
  overflow: hidden;
}
.about-banner .frow-container {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 1024px) {
  .about-banner .frow-container {
    grid-template-columns: 1fr;
  }
}
.about-banner__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #56707c;
  background: #eef3f1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: clamp(12px, 2vw, 20px);
  grid-column: 1/-1;
  justify-self: start;
  width: max-content;
  display: none;
}
.about-banner__title {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0;
  color: #21414f;
}
.about-banner__title .about-banner__accent {
  color: #2ecc71;
  font-weight: 700;
}
.about-banner__note {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(33, 65, 79, 0.85);
  margin-top: clamp(12px, 2vw, 20px);
  max-width: 58ch;
}
.about-banner__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: #e6ecea;
}
.about-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* sections/about/_leading.scss */
.about-leading {
  position: relative;
  background: #fff;
  color: #1a2d36;
  padding: clamp(48px, 8vw, 120px) 0;
  /* For smooth stacking spacing between sections */
}
.about-leading__content {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
  font-size: 2rem;
  line-height: 39px;
  color: #1A2D36;
}
.about-leading__content span {
  color: #C1C1C1;
}
@media (max-width: 768px) {
  .about-leading__content {
    font-size: 1.01rem;
    line-height: 1.7;
    margin-bottom: 40px;
    margin: 0 20px 40px 20px;
  }
}
.about-leading__content p {
  margin: 0;
}
.about-leading__content p:not(:last-child) {
  margin-bottom: clamp(16px, 2vw, 28px);
}

/* sections/about/_leading.scss */
.about-values {
  padding: 200px 0;
}
@media (max-width: 768px) {
  .about-values {
    padding: 50px 0;
  }
}
.about-values h2 {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 65px;
  color: #1A2D36;
  margin-bottom: 24px;
}
.about-values h2 span {
  color: #02AE54;
}
@media (max-width: 768px) {
  .about-values h2 {
    font-size: 1.571rem;
  }
}
.about-values p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
  line-height: 109%;
  color: #1A2D36;
  padding-top: 100px;
  max-width: 480px;
}
@media (max-width: 768px) {
  .about-values p {
    padding-top: 0px;
    font-size: 1rem;
    line-height: 18px;
  }
}
.about-values__image-holder {
  margin: auto;
}
.about-values__image-holder img {
  display: block;
  margin: auto;
}
.about-values__block {
  border-bottom: 1px solid #62575c;
  padding-bottom: 10px;
  margin-bottom: 25px;
  max-width: 380px;
  margin-left: 40px;
}
.about-values__block h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 48px;
  color: #1A2D36;
  margin-bottom: 10px;
}
.about-values__block p {
  padding-top: 0;
  color: #7E7E7E;
  font-size: 1.125rem;
  line-height: 109%;
  font-weight: 400;
}

/* sections/about/_leading.scss */
.section--about-video h2 {
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: 400;
  color: #000000;
  line-height: 58px;
  margin-top: 30px;
  margin-bottom: 18px;
  text-align: center;
  width: 80%;
  margin: 30px auto;
}
@media (max-width: 768px) {
  .section--about-video h2 {
    font-size: 1.571rem;
    line-height: 27px;
  }
}
.section--about-video p {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 80%;
  margin: 0 auto 30px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .section--about-video p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}

.about-video__wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  width: 70%;
  margin: 50px auto;
}
.about-video__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* sections/about/_leading.scss */
.about-mission {
  padding: 200px 0;
}
@media (max-width: 768px) {
  .about-mission {
    padding: 50px 0;
  }
}
.about-mission .col-md-2-5:nth-child(2) {
  margin-left: auto;
}
.about-mission h2 {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 65px;
  color: #1A2D36;
  margin-bottom: 24px;
}
.about-mission h2 span {
  font-weight: 600;
  color: #02AE54;
}
@media (max-width: 768px) {
  .about-mission h2 {
    font-size: 1.571rem;
    line-height: 27px;
  }
}
.about-mission p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
  line-height: 109%;
  color: #1A2D36;
  max-width: 480px;
}
.about-mission .about-mission__block {
  max-width: 490px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .about-mission figure img {
    width: 80%;
    margin: auto;
    display: block;
    margin-bottom: 50px;
  }
}

.team {
  position: relative;
  color: #1E1E1F;
  padding: clamp(80px, 8vw, 130px) 0;
  min-height: auto;
  background: #fff;
  overflow: visible;
}
.team::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #f3eff8 0%, #edf3f8 55%, #e9f1f6 100%);
  /* COMBINED MASK (this is the key) */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
}
.team__wrap {
  position: relative;
  z-index: 1;
}
.team__group {
  margin-top: 0;
}
.team__group--founders {
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(50px, 6vw, 90px);
}
.team__eyebrow {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #02AE54;
  margin: 0 0 8px;
}
.team__title {
  text-align: center;
  margin: 0 0 clamp(44px, 5vw, 72px);
  font-weight: 400;
  font-size: 3.125rem;
  color: #1E1E1F;
}
@media (max-width: 768px) {
  .team__title {
    font-size: 1.571rem;
    line-height: 27px;
  }
}
.team__subtitle {
  margin: 24px 0 12px;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
}
.team__grid--founders {
  margin-bottom: clamp(24px, 4vw, 48px);
}
.team__mentors {
  margin-top: clamp(16px, 3vw, 32px);
}
.team__cards {
  display: grid;
  gap: clamp(16px, 3vw, 36px);
  align-items: stretch;
  justify-items: center;
  margin-left: 0;
}
@media (max-width: 1024px) {
  .team__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }
}
.team__cards--founders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 80px);
  margin-top: 0;
  align-items: start;
  justify-items: center;
  width: 80%;
  margin: auto;
}
@media (max-width: 1024px) {
  .team__cards--founders {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.team--founders-bg {
  margin-top: 0;
  min-height: auto;
  padding: clamp(80px, 8vw, 130px) 0;
  background: #fff;
  overflow: visible;
}
.team--founders-bg::before {
  background: linear-gradient(180deg, #f3eff8 0%, #edf3f8 55%, #e9f1f6 100%);
}

/* =========================================================
   FOUNDERS
========================================================= */
.founder-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  text-align: center;
}
.founder-card.is-hidden {
  opacity: 0;
  transform: translateY(40px);
}
.founder-card__media {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f7f8;
  transform-origin: top center;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.founder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transform: none;
}
.founder-card__overlay {
  position: relative;
  inset: auto;
  max-width: 340px;
  margin: 24px auto 0;
  padding: 0;
  background: none;
  color: inherit;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
}
.founder-card__label {
  display: none;
}
.founder-card__desc {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 21px;
  color: #6C6C6C;
  font-weight: 400;
}
.founder-card__name {
  margin: 50px 0 8px;
  font-size: 1.5rem;
  line-height: 38px;
  font-weight: 500;
  color: #12122A;
}
.founder-card__role {
  margin: 0;
  font-size: 1.3rem;
  line-height: 30px;
  color: #6C6C6C;
  font-weight: 400;
}
.founder-card:hover .founder-card__media, .founder-card:focus-within .founder-card__media {
  transform: scale(1.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.founder-card:hover .founder-card__overlay, .founder-card:focus-within .founder-card__overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .founder-card {
    max-width: 420px;
  }
  .founder-card__overlay {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-top: 24px;
  }
  .founder-card:hover .founder-card__media, .founder-card:focus-within .founder-card__media {
    transform: none;
    box-shadow: none;
  }
}

/* =========================================================
   MENTORS SLIDER
========================================================= */
.mentors__slider {
  overflow: hidden;
  padding-block: clamp(16px, 4vw, 40px);
}
.mentors__slider .testimonials__track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 0;
  will-change: transform;
}

/* =========================================================
   MENTOR CARD
========================================================= */
.mentor-card.testimonial-card {
  --avatar: 120px;
  --scale: .55;
  --meta-o: 0;
  --img-filter: blur(2px) brightness(.65) saturate(.8);
  --img-opacity: .65;
  width: clamp(240px, 26vw, 360px);
  height: auto;
  padding: clamp(10px, 2vw, 16px) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  transform: scale(var(--scale));
  transform-origin: center center;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  margin: 0;
  display: grid;
  justify-items: center;
  row-gap: clamp(6px, 1.2vw, 10px);
}

.mentor-card__avatar {
  width: var(--avatar);
  height: var(--avatar);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: var(--img-filter);
  opacity: var(--img-opacity);
  transition: inherit;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.35), 0 10px 24px rgba(0, 0, 0, 0.1);
}

.mentor-card__name,
.mentor-card__role {
  margin: 0;
  opacity: var(--meta-o);
  transition: opacity 0.25s ease;
}

.mentor-card__name {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.1;
}

.mentor-card__role {
  font-size: clamp(13px, 1.5vw, 18px);
  color: #6a7a82;
}

.testimonial-card.is-active {
  --avatar: clamp(200px, 22vw, 320px);
  --scale: 1;
  --meta-o: 1;
  --img-filter: none;
  --img-opacity: 1;
}
.testimonial-card.is-active .mentor-card__avatar {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.55), 0 16px 36px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1200px) {
  .mentor-card.testimonial-card:not(.is-active) {
    transform: scale(var(--scale)) translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mentor-card.testimonial-card,
  .mentor-card__avatar {
    transition: none;
  }
}
.timeline {
  position: relative;
  isolation: isolate;
  color: #0f2630;
  margin-bottom: 200px;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--bg-url);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.timeline__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 25, 30, 0.25) 0%, rgba(10, 25, 30, 0.45) 70%, rgba(10, 25, 30, 0.55) 100%);
  pointer-events: none;
}
.timeline__wrap {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(32px, 6vw, 80px) clamp(12px, 4vw, 64px) clamp(32px, 6vw, 56px);
  gap: 32px;
}
.timeline__card {
  max-width: 720px;
  width: min(720px, 100%);
  padding: clamp(16px, 3vw, 28px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.timeline__chip {
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 20px;
  padding: 8px 15px 4px 15px;
  background: transparent;
  border: 1px solid rgba(55, 65, 81, 0.55);
  border-radius: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(55, 65, 81, 0.55);
}
.timeline__heading {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1.1;
  margin: 6px 0 130px 0;
  color: #0f2630;
}
.timeline__body {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
  max-width: 560px;
}
.timeline__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-bottom: 0;
}
.timeline__tab {
  -webkit-tap-highlight-color: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  min-width: 160px;
  font-weight: 600;
  font-size: 14px;
  color: #574e45;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.timeline__tab[aria-selected=true], .timeline__tab.is-active {
  color: #0f2630;
  background: #ffe9df;
  box-shadow: inset 0 0 0 2px rgba(15, 38, 48, 0.1), 0 4px 16px rgba(0, 0, 0, 0.1);
}
.timeline__tab:focus-visible {
  outline: 3px solid #2aa6ff;
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  .timeline__wrap {
    min-height: 760px;
    gap: 20px;
  }
  .timeline__card {
    max-width: 620px;
  }
  .timeline__heading {
    font-size: 2.5rem;
    margin: 6px 0 80px;
  }
}
@media (max-width: 768px) {
  .timeline {
    margin-bottom: 80px;
  }
  .timeline::before {
    background-size: cover;
    background-position: center top;
  }
  .timeline__scrim {
    background: linear-gradient(180deg, rgba(10, 25, 30, 0.05) 0%, rgba(10, 25, 30, 0.18) 45%, rgba(10, 25, 30, 0.45) 100%);
  }
  .timeline__wrap {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 220px 12px 24px;
  }
  .timeline__card {
    width: 100%;
    margin: 0;
    padding: 14px;
    border-radius: 14px;
  }
  .timeline__heading {
    font-size: 1.5rem;
    margin: 6px 0 18px;
  }
  .timeline__body {
    font-size: 0.875rem;
    line-height: 1.45;
  }
  .timeline__tabs {
    margin-top: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
  }
  .timeline__tab {
    min-width: auto;
    padding: 9px 12px;
    font-size: 12px;
  }
}

.timeline.is-fading::before {
  opacity: 0.25;
  transform: scale(1.01);
}

.callout {
  --callout-h: 314px; /* from the design */
  --callout-r: 24px;
  --callout-pad-x: 60px;
  --callout-pad-y: 64px;
  --green-1: #1d6c3f; /* base bg */
  --green-2: #0f5a34; /* darker right */
  --text: #ffffff;
  --chip-bg: #ffeae0; /* pill bg from mock */
  --chip-fg: #23493a; /* pill text */
  margin: 80px 0;
}

.callout__wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(270deg, #1d6c3f, #0f5a34);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.callout__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/callout-bg.webp") no-repeat right center/cover;
  /* no global opacity on the element itself */
  /* soften with blend if you want: */
  /* mix-blend-mode: overlay; */
  z-index: 0; /* << behind content */
  pointer-events: none;
}

/* make the inner row define height & padding */
.callout__row {
  min-height: var(--callout-h);
  padding: var(--callout-pad-y) var(--callout-pad-x);
  position: relative;
  z-index: 1; /* << above the pattern */
}

/* text styles */
.callout__content h2 {
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 64px;
  max-width: 750px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .callout__content h2 {
    font-size: 1.375rem;
    text-align: center;
    line-height: 27px;
  }
}

.callout__content p {
  color: var(--text);
  margin: 0;
  font-size: 1.125rem;
  line-height: 29px;
}
@media (max-width: 768px) {
  .callout__content p {
    font-size: 1rem;
    text-align: center;
    line-height: 27px;
  }
}

/* right side action */
.callout__actions {
  text-align: right;
}

.button--pill {
  display: inline-block;
  background: #fff;
  color: #111827;
  padding: 15px 22px;
  width: 206px;
  text-align: center;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
}

/* responsive */
@media (max-width: 768px) {
  .callout__row {
    min-height: auto;
    row-gap: 16px;
  }
  .callout__actions {
    text-align: center;
  }
  .button--pill {
    padding: 12px 18px;
    font-size: 1.3rem;
  }
}
/* sections/about/_banner.scss */
.solutions-overview {
  padding: 6rem 0;
  background-color: #ffffff;
}
.solutions-overview__intro {
  margin-bottom: 80px;
}
.solutions-overview__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  color: rgba(55, 65, 81, 0.55);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(55, 65, 81, 0.55);
  border-radius: 12px;
  padding: 0.3125rem 1.3125rem;
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  margin-bottom: 2rem;
}
.solutions-overview__heading {
  font-size: 3.125rem;
  color: #1A2D36;
  line-height: 65px;
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 670px;
}
.solutions-overview__heading span {
  display: block;
}
.solutions-overview__body {
  margin-left: auto;
  max-width: 500px;
}
.solutions-overview__body p {
  font-size: 1.125rem;
  color: rgba(26, 45, 54, 0.6);
  line-height: 109%;
}

.solutions-features .frow {
  align-items: stretch;
}
.solutions-features .feature-card {
  margin-bottom: 2rem;
  display: flex;
}
.solutions-features .feature-card__content-wrap {
  background: #F6F5F2;
  border-radius: 16px;
  padding: 33px 14px;
  margin-top: 60px;
  flex: 1;
}
.solutions-features .feature-card__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(26, 45, 54, 0.08);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 0 0 1px rgb(255, 255, 255);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.solutions-features .feature-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
}
.solutions-features .feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.solutions-features .feature-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1A2D36;
  margin-bottom: 0.5rem;
  line-height: 38px;
}
.solutions-features .feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #494848;
  margin: 0;
  line-height: 16px;
}
.solutions-features .feature-card:hover .feature-card__inner {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .solutions-overview {
    padding: 0 0;
  }
  .solutions-overview__heading,
  .solutions__intro h2 {
    font-size: 2rem;
    line-height: 40px;
  }
  .solutions-overview__body p {
    font-size: 1rem;
    line-height: 24px;
  }
}
/* sections/about/_banner.scss */
.page-template-page-solutions .wrapper,
.page-template-page-products .wrapper {
  background-color: #f4f4f4;
}
.page-template-page-solutions .wrapper .solutions-overview,
.page-template-page-solutions .wrapper .solutions,
.page-template-page-solutions .wrapper .how-it-works,
.page-template-page-products .wrapper .solutions-overview,
.page-template-page-products .wrapper .solutions,
.page-template-page-products .wrapper .how-it-works {
  background-color: #f4f4f4;
}
.page-template-page-solutions .wrapper .cover::after,
.page-template-page-products .wrapper .cover::after {
  background-color: #f4f4f4;
}
.page-template-page-solutions .wrapper .site-footer::before,
.page-template-page-products .wrapper .site-footer::before {
  background-color: #f4f4f4;
}

.solutions {
  padding: 60px 0;
  background-color: #fff;
}
.solutions__intro {
  text-align: center;
  margin-bottom: 6rem;
}
.solutions__intro h2 {
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 4.0625rem;
  color: #1A2D36;
  max-width: 55rem;
  margin: 0 auto;
}
.solutions__subheading {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: 400;
  color: #1A2D36;
}
.solutions .solution {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 1rem;
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  overflow: hidden;
}
.solutions .solution__image {
  flex: 0 0 auto;
  background: rgba(199, 248, 195, 0.21);
  border-radius: 9px;
  width: 24rem;
  max-width: 100%;
  height: 23rem;
  position: relative;
  overflow: hidden;
}
.solutions .solution__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 213px;
  max-width: 80%;
  height: 186px;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 9px;
  display: block;
  transition: width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: width, height;
}
.solutions .solution__image:hover img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.solutions .solution__content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}
.solutions .solution .solution__number {
  font-weight: 700;
  font-size: 9.375rem;
  line-height: 9rem;
  color: rgba(155, 156, 159, 0.21);
  opacity: 0.3;
  position: absolute;
  top: -5rem;
  left: 0;
  z-index: 0;
}
.solutions .solution .solution__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.solutions .solution .solution__title {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 3rem;
  color: #10562C;
  margin: 0;
}
.solutions .solution .solution__text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 16px;
  color: #7E7E7E;
  margin: 0;
  max-width: 28.4rem;
}
.solutions .solution.solution--reverse {
  flex-direction: row-reverse;
}
.solutions .solution.solution--reverse .solution__number {
  left: auto;
  right: 0;
}
.solutions .solution.solution--reverse .solution__body {
  flex-direction: row-reverse;
  text-align: right;
}
.solutions .solution.solution--reverse .solution__textwrap {
  text-align: right;
}

/* Tablet + small laptop */
@media (max-width: 1024px) {
  .solutions {
    padding: 6rem 0;
  }
  .solutions .solution {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 30px 20px;
  }
  .solutions .solution.solution--reverse {
    flex-direction: column;
  }
  .solutions .solution.solution--reverse .solution__body {
    flex-direction: column;
    text-align: left;
  }
  .solutions .solution.solution--reverse .solution__textwrap {
    text-align: left;
  }
  .solutions .solution__image {
    width: 100%;
    height: 280px;
  }
  .solutions .solution__image img {
    width: 70%;
    max-width: 100%;
    height: 170px;
  }
  .solutions .solution__image:hover img {
    width: 100%;
    height: 100%;
  }
  .solutions .solution .solution__body {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .solutions .solution .solution__text {
    max-width: 100%;
  }
  .solutions .solution .solution__number {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    margin-bottom: 0.5rem;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .solutions {
    padding: 4rem 0;
  }
  .solutions__intro {
    margin-bottom: 3rem;
  }
  .solutions__intro h2 {
    font-size: 2rem;
    line-height: 40px;
  }
  .solutions .solution {
    padding: 24px 16px;
  }
  .solutions .solution__image {
    height: 248px;
  }
  .solutions .solution__image img {
    width: 75%;
    height: 150px;
  }
  .solutions .solution .solution__number {
    font-size: 5rem;
    line-height: 5rem;
  }
  .solutions .solution .solution__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .solutions .solution .solution__text {
    font-size: 0.9375rem;
    line-height: 24px;
  }
  .solutions-overview__body p {
    font-size: 1rem;
    line-height: 24px;
  }
}
.page-template-page-solutions .wrapper .how-it-works {
  margin-bottom: 250px;
}

/* components/_cover.scss */
html {
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.5;
}

.heading-xxl {
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 5rem;
}
@media (max-width: 768px) {
  .heading-xxl {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

.heading-xl, .how-it-works__title {
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 4.0625rem;
}
@media (max-width: 768px) {
  .heading-xl, .how-it-works__title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

.heading-lg {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.25rem;
}
@media (max-width: 768px) {
  .heading-lg {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.heading-md {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.75rem;
}
@media (max-width: 768px) {
  .heading-md {
    font-size: 1.75rem;
    line-height: 2.2rem;
  }
}

.heading-sm {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
}

.heading-xs {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.step__number {
  font-size: 3rem;
  font-weight: 700;
  color: #a0a78f;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
@media (max-width: 768px) {
  .step__number {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .step__number {
    font-size: 2rem;
  }
}

.eyebrow, .how-it-works__eyebrow, .solutions-application__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  color: rgba(55, 65, 81, 0.55);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(55, 65, 81, 0.55);
  border-radius: 12px;
  padding: 0.3125rem 1.3125rem;
  -moz-backdrop-filter: blur(11.1px);
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  text-transform: none;
  margin-bottom: 2rem;
}
.eyebrow--tight {
  padding: 0.25rem 1rem;
}

.solutions-application {
  margin: 200px 0;
  position: relative;
  padding: 200px 0;
  z-index: 10;
}
.solutions-application__eyebrow {
  color: #fff;
}
.solutions-application__slider {
  position: relative;
  overflow: hidden;
}
.solutions-application__slide {
  width: 100%;
}
.solutions-application__slide:first-child {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.solutions-application__content {
  max-width: 34rem;
  color: #ffffff;
}
.solutions-application__eyebrow {
  margin-bottom: 1rem;
  color: #ffffff;
}
.solutions-application__title {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 3.4375rem;
  color: #ffffff;
  margin: 0 0 1.5rem;
}
.solutions-application__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 2rem;
}
.solutions-application__media-box {
  background-color: transparent;
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: clamp(280px, 34vw, 610px);
}
.solutions-application__media img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.solutions-application__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.solutions-application__dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.solutions-application__dots button.is-active {
  width: 0.75rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .solutions-application {
    padding: 4rem 0;
  }
  .solutions-application__title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .solutions-application__content {
    margin-bottom: 2rem;
  }
}

.how-it-works {
  margin: 4rem 0 6rem;
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.how-it-works__eyebrow {
  margin-bottom: 0.5rem;
}
.how-it-works__steps {
  position: absolute;
  top: 0;
  left: 3rem;
  transform: translateY(-45%);
  display: flex;
  gap: 0.4rem;
  z-index: 40;
}
.how-it-works__step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: #dbe5dc;
  color: #1d3a2a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.how-it-works__step.is-active {
  background: #1fb265;
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================
   OLD STACKED VERSION
========================================= */
.how-it-works:not(.how-it-works--linear) .how-it-works__stack {
  position: relative;
  max-width: 920px;
  margin: 220px auto;
  padding-top: 2.75rem;
  height: 640px;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  border-radius: 23.42px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem 3rem;
  transform-origin: center top;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
  background: #1a2d36;
  color: #111827;
  transition: box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .card__content {
  flex: 1;
  display: none;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .card__number {
  background: #10562c;
  border-radius: 57.94px;
  width: 57.94px;
  height: 57.94px;
  font-weight: 400;
  font-size: 1.5625rem;
  line-height: 57.94px;
  color: #ffffff;
  text-align: center;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .card__title {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 55px;
  color: #ffffff;
  padding: 25px 0;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .card__box {
  background: rgba(55, 65, 81, 0.12);
  border: 0.75px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8.4px);
  backdrop-filter: blur(8.4px);
  border-radius: 18px;
  padding: 25px;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .card__box .icon {
  margin-bottom: 30px;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .buttonwrap {
  position: absolute;
  left: 50%;
  bottom: -44px;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card .buttonwrap .button {
  color: #fff;
}
.how-it-works:not(.how-it-works--linear) .step-card.is-active {
  background: #1a2d36;
  border-radius: 23.42px;
  color: #ffffff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  filter: none;
  opacity: 1;
}
.how-it-works:not(.how-it-works--linear) .step-card.is-active .card__content {
  display: block;
}
.how-it-works:not(.how-it-works--linear) .step-card.is-active .buttonwrap {
  opacity: 1;
  pointer-events: auto;
}
.how-it-works:not(.how-it-works--linear) .step-card:not(.is-active) {
  opacity: 0.3;
  background: #000000;
  background-image: none !important;
  filter: brightness(1.02) saturate(0.9);
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card:nth-of-type(1) {
  background: #1a2d36 url("http://cultyvate-new.local/wp-content/uploads/2025/11/howitworks-step1.webp");
  background-repeat: no-repeat;
  background-position: bottom;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card:nth-of-type(2) {
  background: #1a2d36 url("http://cultyvate-new.local/wp-content/uploads/2025/11/step2-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.how-it-works:not(.how-it-works--linear) .how-it-works__stack > .step-card:nth-of-type(3) {
  background: #1a2d36 url("http://cultyvate-new.local/wp-content/uploads/2025/11/step3-bg.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

/* =========================================
   COMMON CARD TYPOGRAPHY / GRID
========================================= */
.step-card__title {
  font-size: 1.75rem;
  line-height: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   NEW LINEAR / SAFE BASE VERSION
   - no overlap in CSS
   - no absolute positioning
   - no transform assumptions
   - JS can animate this safely later
========================================= */
/* =========================================
   NEW LINEAR / STABLE BASE VERSION
========================================= */
.how-it-works.how-it-works--linear {
  padding-bottom: 7rem;
}
.how-it-works.how-it-works--linear .how-it-works__stack {
  position: relative;
  max-width: 920px;
  margin: 4rem auto 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 640px;
  overflow: visible;
}
.how-it-works.how-it-works--linear .how-it-works__steps {
  position: static;
  transform: none;
  margin: 0 0 1.5rem;
  justify-content: flex-start;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100%;
  height: auto !important;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem 3rem;
  border-radius: 23.42px;
  overflow: visible;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
  background-color: #1a2d36 !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom !important;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card + .step-card {
  margin-top: 2rem;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card:nth-of-type(1) {
  z-index: 1;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card:nth-of-type(2) {
  z-index: 2;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card:nth-of-type(3) {
  z-index: 3;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card:nth-of-type(4) {
  z-index: 4;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card:nth-of-type(5) {
  z-index: 5;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__content {
  display: block !important;
  flex: 1;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__number {
  background: #10562c;
  border-radius: 57.94px;
  width: 57.94px;
  height: 57.94px;
  font-weight: 400;
  font-size: 1.5625rem;
  line-height: 57.94px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__title {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 55px;
  color: #ffffff;
  padding: 0 0 25px;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__box {
  background: rgba(55, 65, 81, 0.12);
  border: 0.75px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8.4px);
  backdrop-filter: blur(8.4px);
  border-radius: 18px;
  padding: 25px;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__box h3 {
  color: #fff;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__box .icon {
  margin-bottom: 30px;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .buttonwrap {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: -36px !important;
  transform: translateX(-50%) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  margin-top: 0 !important;
  z-index: 5;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card .buttonwrap .button {
  color: #fff;
  white-space: nowrap;
}
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card,
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card.is-active,
.how-it-works.how-it-works--linear .how-it-works__stack > .step-card:not(.is-active) {
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card {
    min-height: 520px;
  }
}
@media (max-width: 768px) {
  .how-it-works.how-it-works--linear .how-it-works__stack {
    margin-top: 2rem;
  }
  .how-it-works.how-it-works--linear .how-it-works__steps {
    margin-bottom: 1rem;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card {
    min-height: auto;
    padding: 2rem;
    will-change: auto;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card + .step-card {
    margin-top: 1.5rem;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__title {
    font-size: 2.2rem;
    line-height: 1.15;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card .buttonwrap {
    margin-top: 1.5rem;
  }
  .how-it-works.how-it-works--linear .two-col-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card {
    min-height: auto;
    padding: 2rem 1.5rem 2rem;
    overflow: visible;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card .buttonwrap {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 1.25rem auto 0 !important;
    display: flex;
    justify-content: center;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card:last-child {
    margin-bottom: 2rem;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack {
    min-height: 100vh;
    overflow: visible;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card {
    min-height: auto;
    height: auto !important;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__box {
    padding: 15px 25px;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__box .icon {
    margin-bottom: 0px;
  }
  .how-it-works.how-it-works--linear .how-it-works__stack > .step-card .card__title {
    font-size: 1.2rem;
  }
}
/* sections/about/_banner.scss */
.hardware {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #F7F9FA;
}
.hardware__header {
  text-align: center;
  margin-bottom: 4rem;
}
.hardware__header h2 {
  color: #1A2D36;
  line-height: 1.2;
  font-size: 3.125rem;
  font-weight: 400;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hardware__header h2 {
    font-size: 1.571rem;
    line-height: 2.25rem;
  }
}
.hardware {
  /* don't touch display – Frow handles that */
}
.hardware__photo img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}
.hardware__panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  height: 100%;
}
.hardware__panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/grass-hardware.webp") bottom center/cover no-repeat;
  z-index: 1;
}
.hardware__panel > * {
  position: relative;
  z-index: 2;
}
.hardware__text {
  color: #111827;
  font-size: 1.125rem;
  line-height: 22px;
  font-weight: 500;
  max-width: 85%;
  margin-bottom: 2.5rem;
  margin-left: 40px;
  margin-top: 18px;
}
.hardware__card {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
  box-shadow: 0px 0.602187px 0.602187px -1.25px rgba(0, 0, 0, 0.18), 0px 2.28853px 2.28853px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  width: clamp(240px, 45%, 330px);
  margin-bottom: 1.5rem;
  position: absolute;
}
@media (max-width: 768px) {
  .hardware__card {
    position: relative;
    margin-top: 50px;
    left: 20px;
  }
}
.hardware__card h4 {
  color: #374151;
  margin-bottom: 6px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hardware__card p {
  color: #7E7E7E;
  opacity: 0.85;
  font-size: 0.8125rem;
  line-height: 1.45;
}
.hardware__card--gateway {
  margin-top: auto;
  bottom: 70px;
  left: 150px;
}
@media (max-width: 768px) {
  .hardware__card--gateway {
    margin-top: 50px;
    left: 20px;
  }
}
.hardware__card--moisture {
  margin-left: auto;
  right: 60px;
  top: 120px;
}
@media (max-width: 768px) {
  .hardware__card--moisture {
    top: -50px;
    margin-top: 0px;
    left: 0px;
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .hardware__grid {
    flex-direction: column;
  }
}

.product-range {
  margin-top: 150px;
  text-align: center;
  border-top: 0.5px solid #7E7E7E;
}
.product-range h3 {
  margin-bottom: 2rem;
  color: #1A2D36;
  font-weight: 500;
  padding-top: 100px;
  font-size: 1.5rem;
}
.product-range__list {
  list-style: none;
  padding: 0;
  margin: 70px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.product-range__list li {
  background: #F6F5F2;
  border-radius: 100px;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #10562C;
  min-width: 260px;
  flex: 1;
  max-width: 350px;
  font-size: 1.125rem;
}
.product-range__list li .icon img {
  width: 31px;
  height: 31px;
  margin-left: 0.75rem;
}

.croplist {
  padding: 200px 0;
}
.croplist__cards {
  display: flex;
  gap: 1.5rem;
  padding-block: 1rem;
}
.croplist__card {
  position: relative;
  flex: 0 0 calc((100% - 7.5rem) / 6);
  height: 31.3125rem;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(168.44deg, #FFFFFF 66.35%, #B8BABD 100%);
  box-shadow: 0px 0.602187px 0.602187px -1.25px rgba(0, 0, 0, 0.18), 0px 2.28853px 2.28853px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.063), 0px 0px 0px 1px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.croplist__card:hover, .croplist__card.is-active {
  background: linear-gradient(0deg, #02AE54, #02AE54), linear-gradient(168.44deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow: none;
}
.croplist__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.croplist__label, .croplist__cta {
  position: absolute;
  left: 1.125rem;
  bottom: 1.5rem;
  z-index: 2;
  font-size: 1.125rem;
  font-weight: 500;
}
.croplist__label {
  color: #000;
}
.croplist__cta {
  display: none;
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 6px;
  align-items: center;
  text-align: center;
  background: none;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.croplist__cta:hover {
  color: #ffffff;
  background: none;
  text-decoration: none;
}
.croplist__card:hover .croplist__label, .croplist__card.is-active .croplist__label {
  display: none;
}
.croplist__card:hover .croplist__cta, .croplist__card.is-active .croplist__cta {
  display: flex;
}
.croplist .croplist__card--paddy .croplist__image {
  object-fit: contain;
  object-position: right top;
  padding: 0;
}
.croplist .croplist__card--sugarcane .croplist__image {
  object-fit: cover;
  object-position: right top;
  padding: 20px 0 0;
}
.croplist .croplist__card--grapes .croplist__image,
.croplist .croplist__card--oranges .croplist__image,
.croplist .croplist__card--pomegranate .croplist__image {
  object-fit: contain;
  object-position: right top;
  padding: 0px 0 30px;
}
.croplist {
  /* Tablet: 3 cards per row, wrapping */
}
@media (max-width: 1024px) {
  .croplist__cards {
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
  .croplist__card {
    flex: 0 0 calc((100% - 3rem) / 3);
    height: 26rem;
  }
}
.croplist {
  /* Mobile: horizontal scroll, big cards */
}
@media (max-width: 640px) {
  .croplist__cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* stylelint-disable-next-line property-no-unknown */
    scrollbar-width: none;
    flex-direction: column;
  }
  .croplist__cards::-webkit-scrollbar {
    display: none;
  }
  .croplist__card {
    flex: 0 0 72vw;
    height: 24rem;
    scroll-snap-align: start;
  }
}

.crop-support {
  padding: 6rem 0;
  text-align: center;
}
.crop-support .crop-support__container {
  background: #F9F9F9;
  border: 1px solid #D8D8DB;
  border-radius: 24px;
  padding: 80px;
}
@media (max-width: 768px) {
  .crop-support .crop-support__container {
    padding: 40px 20px;
  }
}
.crop-support .crop-support__container .buttonwrap {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .crop-support .crop-support__container .buttonwrap {
    text-align: center;
  }
}
.crop-support__inner {
  max-width: 960px;
  margin: 0 auto;
}
.crop-support__eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  background: #F5F6F9 url(../images/icon-support.svg) no-repeat 15px center;
  padding-left: 35px;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08), inset 4px 4px 4px rgba(255, 255, 255, 0.25);
}
.crop-support__title {
  max-width: 40rem;
  margin: 0 auto 3rem;
  font-size: 2.75rem;
  color: #0C0C0C;
  line-height: 55px;
  font-weight: 500;
}
.crop-support__title .highlight {
  color: #02AE54;
}
.crop-support {
  /* ORBIT WRAPPER */
}
.crop-support__orbit {
  position: relative;
  max-width: 640px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.crop-support {
  /* BACKGROUND CIRCLE AS IMAGE */
}
.crop-support__circle-bg {
  position: absolute;
  inset: 0;
  background-image: url("/wp-content/uploads/2025/11/support-bg.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.crop-support {
  /* CENTER ICON */
}
.crop-support__center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
.crop-support__center-icon img {
  width: 96px;
  height: 96px;
  display: block;
  margin: 0 auto 0.75rem;
}
.crop-support__center-icon .crop-support__center-label {
  display: block;
  font-weight: 500;
  margin-top: 0.25rem;
}
.crop-support {
  /* FEATURE CARDS */
}
.crop-support__feature {
  position: absolute;
  z-index: 4;
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  width: 428px;
  text-align: left;
  opacity: 1;
}
.crop-support__feature img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 20px;
}
.crop-support__feature p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 21px;
  color: #7E7E7E;
}
.crop-support {
  /* POSITIONS AROUND THE CIRCLE (tweak percentages if needed) */
}
.crop-support__feature--top {
  top: 6%;
  left: 20%;
  transform: translateX(-50%);
}
.crop-support__feature--top-left {
  top: 32%;
  left: -30%;
}
.crop-support__feature--top-right {
  top: 22%;
  right: -24%;
}
.crop-support__feature--bottom-left {
  bottom: 28%;
  left: -42%;
}
.crop-support__feature--bottom-right {
  bottom: 40%;
  right: -42%;
}
.crop-support__feature--bottom {
  bottom: 6%;
  left: 80%;
  transform: translateX(-50%);
}
.crop-support {
  /* RESPONSIVE: stack cards below on mobile */
}
@media (max-width: 768px) {
  .crop-support__orbit {
    max-width: 100%;
    aspect-ratio: auto;
  }
  .crop-support__feature {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 1rem auto 0;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }
  .crop-support__circle-bg {
    position: relative;
    width: 70%;
    margin: 0 auto 2rem;
  }
  .crop-support__center-icon {
    position: absolute;
    top: 35%;
  }
}

.corporate-engagement {
  padding: 10px 0 100px 0;
  margin: clamp(32px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.corporate-engagement::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 0;
  width: 52%;
  height: 62%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 35% 60%, rgba(16, 86, 44, 0.14) 0%, rgba(16, 86, 44, 0.08) 38%, rgba(16, 86, 44, 0.03) 58%, transparent 74%);
  filter: blur(18px);
}
.corporate-engagement .buttonwrap {
  margin-left: 0;
  width: 80%;
  text-align: left;
  padding: 28px 16px 30px 16px;
}
@media (max-width: 768px) {
  .corporate-engagement .buttonwrap {
    padding: 28px 0 30px 0;
  }
}
.corporate-engagement .buttonwrap .button {
  color: #fff;
}
.corporate-engagement__wrapper {
  background: #10562c;
  padding: 50px 42px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .corporate-engagement__wrapper {
    background: #ffffff;
    border: 0;
    padding: 0px 20px;
  }
}
.corporate-engagement__wrapper h2 {
  font-weight: 500;
  color: #ffffff;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .corporate-engagement__wrapper h2 {
    color: #1A2D36;
    border: 0;
    font-size: 1.375rem;
    text-align: center;
  }
}
.corporate-engagement__wrapper p {
  font-size: 1rem;
  line-height: 21px;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 768px) {
  .corporate-engagement__wrapper p {
    color: #1A2D36;
    border: 0;
    font-size: 1rem;
    text-align: center;
  }
}
.corporate-engagement__details {
  background: #10562c;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 50px 25px 62px 25px;
  position: relative;
  z-index: 3;
  align-content: stretch;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .corporate-engagement__details {
    border-radius: 25px;
    margin-top: 20px;
  }
}
.corporate-engagement .corporate-engagement__details-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 16px 30px 16px;
  max-width: 80%;
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 768px) {
  .corporate-engagement .corporate-engagement__details-box {
    width: 100%;
    border-radius: 25px;
    max-width: 100%;
  }
}
.corporate-engagement .corporate-engagement__details-box h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #1a2d36;
}
.corporate-engagement .corporate-engagement__details-box p {
  font-size: 0.875rem;
  line-height: 21px;
  color: rgba(26, 45, 54, 0.6);
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.corporate-engagement__image {
  background: transparent;
  width: 100%;
  padding: 30px 30px 0 30px;
  border-top-right-radius: 24px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  margin-left: 0px;
}
@media (max-width: 768px) {
  .corporate-engagement__image {
    padding: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 10px;
  }
}
.corporate-engagement__image img {
  width: 100%;
  display: block;
}

/* keep your curved green bar */
/* Layout alignment rules */
.corporate-engagement .col-md-2-5 {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* full width for children */
}

.corporate-engagement__wrapper {
  flex: 1 1 auto;
  padding-bottom: 50px;
}

.corporate-engagement__wrapper h2,
.corporate-engagement__wrapper p {
  margin-bottom: 0;
}

.corporate-engagement__image {
  flex: 0 0 auto;
  margin-top: 0;
}
@media (max-width: 768px) {
  .corporate-engagement__image {
    margin-top: 10px;
  }
}

.corporate-engagement .col-md-2-5 {
  min-height: 100%;
}

.corporate-engagement .items-stretch {
  align-items: stretch;
}

.crop-benefits__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 150px;
  margin-right: 30px;
}
.crop-benefits__card--full {
  grid-column: 1/-1;
}
.crop-benefits__card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.crop-benefits__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.crop-benefits__heading {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
}
.crop-benefits__text {
  color: #7E7E7E;
  font-size: 0.75rem;
  line-height: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.crop-benefits {
  /* Responsive */
}
@media (max-width: 768px) {
  .crop-benefits__grid {
    grid-template-columns: 1fr;
  }
  .crop-benefits__card--full {
    grid-column: auto;
  }
}

.blog-filters {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 5;
}

.blog-filters__label {
  display: none;
}

.blog-filters__form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.blog-filters__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .blog-filters__form {
    justify-content: flex-start;
  }
  .blog-filters__controls {
    flex-wrap: wrap;
  }
}
.blog-filters__control {
  position: relative;
  flex: 0 0 auto;
}

.blog-filters__control select {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #f3f3f3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  height: 40px;
  min-width: 140px;
  width: auto;
  max-width: none;
  padding: 2px 2.2rem 2px 1.25rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #1A2D36;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 768px) {
  .blog-filters__control select {
    min-width: 0;
    width: 100%;
  }
}

.blog-filters__control--category select {
  min-width: 200px;
}

.blog-filters__control--sort select {
  min-width: 140px;
}

.blog-filters__control select:hover {
  background-color: #eef0f2;
}

.blog-filters__control select:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #fff;
}

.blog-filters__control::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.blog-hero {
  padding-top: 30px;
}
.blog-hero .blog-hero__row {
  align-items: end;
}
.blog-hero .blog-hero__content .eyebrow {
  margin-bottom: 1.5rem;
  display: inline-flex;
}
.blog-hero .blog-hero__content .heading {
  margin: 0;
  max-width: 900px;
}
.blog-hero .blog-hero__filters {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .blog-hero .blog-hero__row {
    align-items: flex-start;
  }
  .blog-hero .blog-hero__filters {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}

.blog-article {
  padding: var(--space-xxl) 0;
}
.blog-article__featured-image {
  margin: 2rem auto 2.5rem;
  width: 70%;
  max-width: 720px;
  border-radius: 24px;
  overflow: hidden;
}
.blog-article__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}
@media (max-width: 768px) {
  .blog-article__featured-image {
    width: 100%;
  }
}
.blog-article__wrap {
  background: #fff;
  border-radius: var(--radius-lg);
}
.blog-article__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  margin-top: 100px;
}
.blog-article__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.blog-article__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-article__author-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 2px;
  margin-left: 10px;
}
.blog-article__author-name {
  font-weight: 700;
}
.blog-article__author-meta {
  color: #1A2D36;
}
.blog-article__content {
  line-height: 1.7;
  margin-top: 30px;
  margin-bottom: 150px;
}
.blog-article__content h2,
.blog-article__content h3 {
  margin-top: var(--space-xl);
}
.blog-article__content p {
  margin-bottom: var(--space-md);
  color: #1A2D36;
  font-size: 1.375rem;
  line-height: 29px;
  font-weight: 400;
}
.blog-article__content figure {
  margin: 30px auto;
  text-align: center;
}
.blog-article__content figure img {
  display: block;
  margin: auto;
}
.blog-article__content img {
  border-radius: var(--radius-md);
}
.blog-article__content figcaption {
  margin-top: var(--space-xs);
  text-align: center;
  font-size: var(--text-sm);
  opacity: 0.65;
}

.contact-meet {
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
}
.contact-meet__wrap {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-meet__wrap {
    padding: 4rem 3rem 5rem;
    border-radius: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .contact-meet__wrap {
    padding: 5rem 4rem 6rem;
  }
}
.contact-meet__head {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto 3rem;
}
.contact-meet__tag {
  margin-bottom: 1rem;
}
.contact-meet__title {
  margin: 0;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 65px;
}
@media (max-width: 768px) {
  .contact-meet__title {
    font-size: 1.571rem;
  }
}
.contact-meet__title span {
  background: url(../images/hands.webp) no-repeat;
  background-position: 0 70%;
  display: inline-block;
  padding-left: 150px;
}
.contact-meet__main {
  align-items: flex-start;
  row-gap: 2rem;
  margin-bottom: 5rem;
}
.contact-meet__form {
  padding-right: 0;
}
@media (min-width: 768px) {
  .contact-meet__form {
    padding-right: 2rem;
  }
}
@media (min-width: 1280px) {
  .contact-meet__form {
    padding-right: 3rem;
  }
}
.contact-meet__form .wpcf7 {
  width: 100%;
}
.contact-meet__form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-meet__form .wpcf7-form {
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
  }
}
.contact-meet__form .wpcf7-form p {
  margin: 0;
}
.contact-meet__form .wpcf7-form br {
  display: none;
}
.contact-meet__form .fieldrow,
.contact-meet__form .fieldrowfull {
  width: 100%;
}
@media (min-width: 768px) {
  .contact-meet__form .fieldrowfull {
    grid-column: 1/-1;
  }
}
.contact-meet__form .fieldrow input,
.contact-meet__form .fieldrow select,
.contact-meet__form .fieldrowfull textarea,
.contact-meet__form .fieldrowfull input[type=submit] {
  width: 100%;
}
.contact-meet__form .fieldrow input,
.contact-meet__form .fieldrow select,
.contact-meet__form .fieldrowfull textarea {
  appearance: none;
  border: 1px solid rgba(26, 45, 54, 0.12);
  background: #f6efee;
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1a2d36;
  box-shadow: none;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.contact-meet__form .fieldrow textarea,
.contact-meet__form .fieldrowfull textarea {
  min-height: 10rem;
  resize: vertical;
}
.contact-meet__form .fieldrow input::placeholder,
.contact-meet__form .fieldrow select::placeholder,
.contact-meet__form .fieldrowfull textarea::placeholder {
  color: rgba(26, 45, 54, 0.5);
}
.contact-meet__form .fieldrow input:focus,
.contact-meet__form .fieldrow select:focus,
.contact-meet__form .fieldrowfull textarea:focus {
  border-color: #134025;
  background: #fff;
}
.contact-meet__form .contact-submit,
.contact-meet__form .wpcf7-submit {
  min-width: 12rem;
  border: 0;
  border-radius: 999px;
  background: #19a64a;
  color: #fff;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.contact-meet__form .contact-submit:hover,
.contact-meet__form .wpcf7-submit:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.contact-meet__form .wpcf7-spinner {
  margin: 0.75rem 0 0 0.75rem;
}
.contact-meet__form .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #c0392b;
}
.contact-meet__form .wpcf7-response-output {
  grid-column: 1/-1;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
}
.contact-meet__faq {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .contact-meet__faq {
    padding-top: 3rem;
  }
}

.contact-card {
  background: #134025;
  border-radius: 20px;
  color: #fff;
  padding: 2rem 1.5rem;
  height: 100%;
}
@media (min-width: 768px) {
  .contact-card {
    margin-top: 0.5rem;
  }
}
.contact-card__title {
  color: #fff;
  margin-bottom: 1.5rem;
}
.contact-card__item {
  margin-bottom: 1.5rem;
}
.contact-card__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.contact-card__item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.contact-card__item a:hover {
  color: #fff;
}
.contact-card__label {
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
}
.contact-card__social-links {
  display: flex;
  gap: 0.75rem;
}
.contact-card__social-links a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.contact-card__social-links a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.contact-faq__title {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 65px;
}
@media (max-width: 768px) {
  .contact-faq__title {
    font-size: 1.571rem;
  }
}
.contact-faq__desc {
  margin: 0.75rem 0 1.5rem;
  color: #7E7E7E;
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
}
.contact-faq__list {
  margin-left: 100px;
}
@media (max-width: 768px) {
  .contact-faq__list {
    margin-left: 0;
  }
}
.contact-faq__item {
  border-bottom: 1px solid #7E7E7E;
}
.contact-faq__question {
  cursor: pointer;
  position: relative;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 22px;
  color: #1A2D36;
}
.contact-faq__question-text {
  display: block;
  flex: 1 1 auto;
}
.contact-faq__icon {
  position: relative;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid rgba(26, 45, 54, 0.16);
  background: #f5f5f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-faq__icon-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #1a2d36;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}
.contact-faq__icon-bar--horizontal {
  width: 14px;
  height: 2px;
}
.contact-faq__icon-bar--vertical {
  width: 2px;
  height: 14px;
}
.contact-faq__answer {
  height: 0;
  overflow: hidden;
}
.contact-faq__answer-inner {
  padding: 0 0 1.5rem;
}
.contact-faq__answer p {
  margin: 0;
  color: #7E7E7E;
  font-size: 1rem;
  line-height: 22px;
}

/*# sourceMappingURL=inside.css.map */
