@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 {
  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;
  }
}

/* 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__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: rgba(26, 45, 54, 0.6);
  font-size: 1.5rem;
  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: inline-flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
  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);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 22px;
  max-width: 600px;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  z-index: 2;
}
@media (max-width: 768px) {
  .cover__badge {
    bottom: 24px;
    padding-inline: 14px;
    margin-inline: 16px;
    max-width: calc(100% - 32px);
  }
}
.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-chip--image {
  background: transparent;
}
.cover__badge-chip-text {
  display: inline-block;
}
.cover__badge-text {
  margin: 0;
  max-width: 420px;
  text-align: center;
}

.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);
}

/* 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: 15px;
    line-height: 1.7;
  }
}
.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;
}
.about-values h2 {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 65px;
  color: #1A2D36;
  margin-bottom: 24px;
}
.about-values h2 span {
  color: #02AE54;
}
.about-values p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
  line-height: 109%;
  color: #1A2D36;
  padding-top: 100px;
  max-width: 480px;
}
.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: 80px;
  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;
}
.about-values__block:nth-child(even) {
  margin-left: auto;
}

/* sections/about/_leading.scss */
.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);
}
.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;
}
.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;
}
.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;
}

.team {
  position: relative;
  color: #1E1E1F;
  padding: clamp(48px, 8vw, 120px) 0;
  min-height: 1500px;
  /* use your existing [data-bg] utility -> sets --bg-url */
  background-image: var(--bg-url), url(/wp-content/uploads/2025/11/teams-line.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, 100% 60%;
  /* adjust the size to match your artwork proportions */
  background-size: 100%;
  /* founders/mentors blocks */
}
.team__group {
  margin-top: 300px;
}
.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(28px, 4vw, 48px);
  font-weight: 400;
  font-size: 3.125rem;
  color: #1E1E1F;
}
.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 {
  /* founders cards */
}
.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 {
  /* Reuse existing .carousel_* styles; just fit card width nicely per slide */
}
.team .js-carousel--mentors .carousel__slide {
  /* Let the existing “slidesToShow” handle widths; keep content tidy */
  height: 100%;
}
.team__cards--founders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 56px);
  align-items: stretch;
  justify-items: center;
}
@media (max-width: 1024px) {
  .team__cards--founders {
    grid-template-columns: 1fr;
  }
}

.team--founders-bg {
  margin-top: 200px;
  min-height: 500px;
}

/* ===== Founder Card ===== */
.founder-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f7f8;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  /* animation prep */
}
.founder-card.is-hidden {
  opacity: 0;
  transform: translateY(40px);
}
.founder-card__media {
  height: 440px;
}
.founder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0));
  color: #fff;
}
.founder-card__label {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 400;
  margin-bottom: 6px;
}
.founder-card__name {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
.founder-card__role {
  margin: 4px 0 0;
  font-size: 1.875rem;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}
.founder-card__desc {
  margin: 12px 0 0;
  font-size: 0.875rem;
  line-height: 18px;
  color: #fff;
  font-weight: 400;
}

/* ===== Mentors slider (reusing your testimonials slider) ===== */
.mentors__slider {
  overflow: hidden;
  padding-block: clamp(16px, 4vw, 40px);
  /* your testimonials track already exists; just align and space */
}
.mentors__slider .testimonials__track {
  display: flex;
  align-items: center;
  gap: 24px; /* whatever you want between slides */
  padding-inline: 0; /* no extra padding at the seam */
  will-change: transform;
}

/* Base mentor card uses CSS vars so active/inactive is just variable flips */
.mentor-card.testimonial-card {
  --avatar: 120px; /* default (inactive) avatar size */
  --scale: .55; /* inactive scale */
  --meta-o: 0; /* hide meta by default */
  --img-filter: blur(2px) brightness(.65) saturate(.8); /* dim/blur sides */
  --img-opacity: .65;
  width: clamp(240px, 26vw, 360px); /* keep a consistent measured width for GSAP */
  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);
}

/* Round avatar with optional soft ring */
.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); /* soft drop */
}

/* Meta (name/role) fades in only for the active card */
.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); /* large when active */
  line-height: 1.1;
}

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

/* ===== Active (center) slide ===== */
.testimonial-card.is-active {
  --avatar: clamp(200px, 22vw, 320px);
  --scale: 1;
  --meta-o: 1;
  --img-filter: none;
  --img-opacity: 1;
  /* tiny lift for focus */
}
.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);
}

/* Optional: make edges feel further away on very wide screens */
@media (min-width: 1200px) {
  .mentor-card.testimonial-card:not(.is-active) {
    transform: scale(var(--scale)) translateY(6px);
  }
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mentor-card.testimonial-card {
    transition: none;
  }
  .mentor-card__avatar {
    transition: none;
  }
}
/* Base (already in your mentor-card rules) */
.mentor-card.testimonial-card {
  --scale: .55; /* default small */
}

/* Active center */
.testimonial-card.is-active {
  --scale: 1;
}

/* Neighbours grow a bit using :has() */
.testimonials__track:has(.is-active) {
  display: flex; /* just ensure it’s flex */
}

.testimonials__track:has(.is-active) .testimonial-card:is(.is-active + .testimonial-card, .is-active ~ .testimonial-card:first-child) {
  --scale: .75;
}

/* For the one on the left */
/* fallback if you need more control – we’ll adjust below */
/* Better approach — use general sibling and previous sibling selector combo */
.testimonials__track:has(.is-active) .testimonial-card {
  transform: scale(var(--scale));
  transition: transform 0.35s ease;
}

/* Next sibling */
.testimonials__track:has(.is-active) .is-active + .testimonial-card {
  --scale: .75;
}

/* Previous sibling */
.testimonials__track:has(.is-active) .testimonial-card:has(+ .is-active) {
  --scale: .75;
}

/* components/_cover.scss */
.timeline {
  position: relative;
  isolation: isolate;
  color: #0f2630;
  margin-bottom: 200px;
  /* Background image from --bg-url */
}
.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--bg-url);
  background-repeat: no-repeat;
  background-size: 100% 100%; /* crisp containment */
  background-position: 100% left; /* tweak as you like */
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.timeline {
  /* Soft scrim for legibility */
}
.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 {
  min-height: 900px;
  display: grid;
  align-content: end;
  padding-block: clamp(32px, 6vw, 80px);
}
.timeline {
  /* Card */
}
.timeline__card {
  max-width: min(720px, 70ch);
  margin-left: clamp(12px, 4vw, 64px);
  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: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(55, 65, 81, 0.55);
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  /* Note: backdrop-filter has minimal browser support */
  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;
  columns: #000000;
}
.timeline__body {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}
.timeline {
  /* Tabs row */
}
.timeline__tabs {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin: clamp(14px, 3vw, 0px) clamp(12px, 4vw, 64px) 0 auto;
  position: relative;
  top: -50px;
}
.timeline__tab {
  -webkit-tap-highlight-color: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  min-width: 64px;
  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;
}
.timeline {
  /* Mobile tweaks */
}
@media (max-width: 720px) {
  .timeline::before {
    background-position: center 30%;
    background-size: min(1200px, 140vw) auto;
  }
  .timeline__wrap {
    align-content: end;
  }
  .timeline__card {
    margin-inline: 12px;
  }
  .timeline__tabs {
    justify-content: center;
    margin-right: 12px;
  }
}

/* Optional: background crossfade when swapping */
.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("https://cultyvate.georgephilip.in/wp-content/uploads/2025/10/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: 450px;
  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: 0.75rem;
    text-align: center;
    line-height: 27px;
  }
}

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

.button--pill {
  display: inline-block;
  background: #fff;
  color: #111827;
  padding: 12px 22px;
  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;
  }
}
/* 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: 470px;
}
.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 .feature-card {
  margin-bottom: 2rem;
}
.solutions-features .feature-card__content-wrap {
  background: #F6F5F2;
  border-radius: 16px;
  padding: 33px 14px;
  margin-top: 60px;
}
.solutions-features .feature-card__inner {
  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;
  height: 100%;
}
.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 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);
}

/* sections/about/_banner.scss */
.solutions {
  padding: 8rem 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 .solution:nth-child(odd) {
  background: #EBEBEF;
}
.solutions .solution {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 6rem;
  position: relative;
  background: #fff;
  padding: 40px;
  /* IMAGE BOX */
}
.solutions .solution__image {
  flex: 0 0 auto;
  background: rgba(199, 248, 195, 0.21);
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 23rem;
  box-sizing: border-box;
  overflow: hidden;
}
.solutions .solution__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.solutions .solution__image:hover img {
  transform: scale(2);
  filter: brightness(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.solutions .solution {
  /* CONTENT */
}
.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 {
  /* WRAPPER for text + button */
}
.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;
}
@media (max-width: 900px) {
  .solutions .solution {
    flex-direction: column;
    align-items: flex-start;
  }
  .solutions .solution.solution--reverse {
    flex-direction: column;
  }
  .solutions .solution__image {
    width: 100%;
    max-width: 24rem;
    height: auto;
  }
  .solutions .solution .solution__body {
    flex-direction: column;
    align-items: flex-start;
  }
  .solutions .solution .button.button--pill {
    margin-top: 1rem;
  }
  .solutions .solution .solution__number {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    margin-bottom: 0.5rem;
  }
}

/* components/_cover.scss */
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-xl, .how-it-works__title {
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 4.0625rem;
  color: #1A2D36;
}

.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;
}
.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: #7e7e7e;
  margin: 0 0 2rem;
}
.solutions-application__media-box {
  background-color: #ebebef;
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: clamp(280px, 34vw, 520px);
}
.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;
  }
}

/* sections/about/_banner.scss */
.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__stack {
  position: relative;
  max-width: 920px;
  margin: 220px auto;
  padding-top: 2.75rem;
  height: 640px;
}
.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);
}

/* --- Card stack --- */
/* Base card look */
.how-it-works__stack > .step-card {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  border-radius: 22px;
  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;
  border-radius: 23.42px;
  color: #111827;
  transition: box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
  opacity: 8;
}
.how-it-works__stack > .step-card .card__content {
  flex: 1;
  display: none;
}
.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__stack > .step-card .card__title {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 55px;
  color: #FFFFFF;
  padding: 25px 0;
}
.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);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 18px;
  padding: 25px;
}
.how-it-works__stack > .step-card .card__box .icon {
  margin-bottom: 30px;
}
.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__stack > .step-card .buttonwrap .button {
  color: #fff;
}

/* Active card */
.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;
}
.step-card.is-active .card__content {
  display: block;
}
.step-card.is-active .buttonwrap {
  opacity: 1;
  pointer-events: auto;
}

.step-card:not(.is-active) {
  opacity: 0.3;
  background: #000000;
  background-image: none !important;
}

/* Back panels get lighter backgrounds so the stack is visible */
.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__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__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;
}

.step-card.is-active {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  filter: none;
}

.step-card:not(.is-active) {
  filter: brightness(1.02) saturate(0.9);
}

/* content inside the active card (heading + 4 sub-cards) you can style as usual */
.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;
  }
}

.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;
}
.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("https://cultyvate.georgephilip.in/wp-content/uploads/2025/12/grass-hardware.webpls") 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;
}
.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;
}
.hardware__card--moisture {
  margin-left: auto;
  right: 60px;
  top: 120px;
}
@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;
  }
  .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;
}
.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: 1/1;
  }
  .crop-support__feature {
    position: static;
    width: 100%;
    margin-top: 1rem;
    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;
}
.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: 1 0.75rem;
    text-align: center;
  }
}
.corporate-engagement__details {
  background: #10562c;
  border-top-right-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: 0;
  }
}
.corporate-engagement .corporate-engagement__details-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 16px 30px 16px;
  max-width: 537px;
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 768px) {
  .corporate-engagement .corporate-engagement__details-box {
    width: 100%;
    border-radius: 0;
  }
}
.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: #fff;
  width: 100%;
  padding: 50px 30px;
  border-top-right-radius: 24px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  margin-left: 20px;
}
@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%;
}

/* keep your curved green bar */
.corporate-engagement__details::after {
  content: "";
  position: relative;
  bottom: -80px;
  left: -5px;
  width: calc(100% + 30px);
  height: 30px;
  background: #10562c;
  border-radius: 24px;
  border-top-left-radius: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .corporate-engagement__details::after {
    display: none;
  }
}

/* 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: 2;
}

.blog-filters__label {
  display: none;
}

.blog-filters__form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .blog-filters__form {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

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

/* Individual control wrapper */
.blog-filters__control {
  position: relative;
}

/* Styled select (pill look) */
.blog-filters__control select {
  -webkit-appearance: none;
  appearance: none;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 2px 24px;
  font-size: 1rem;
  line-height: 1.2;
  color: #1A2D36;
  height: 40px;
  cursor: pointer;
  min-width: 140px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Hover / focus */
.blog-filters__control select:hover {
  background-color: #eef0f2;
}

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

/* Custom chevron icon */
.blog-filters__control::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  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: 4rem 0 2.5rem;
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 3rem 0 2rem;
  }
}

.blog-hero__inner {
  max-width: 720px;
}

/* Heading */
.blog-hero__title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--color-text);
}

/* Highlight */
.blog-hero__title-highlight {
  color: var(--color-accent);
}

.blog-article {
  padding: var(--space-xxl) 0;
}
.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: var(--space-xl) 0;
}
.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;
}

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