/* ============================================================
   ECT — base.css (cleaned & fully responsive)
   ------------------------------------------------------------
   Changes made vs. original:
   1. Removed 3x duplicated, UNUSED .ect-svc services block
      (your HTML actually uses .services/.card, not .ect-svc)
   2. Removed unused .business-section/.business-card/
      .business-btn-notch block (not referenced in HTML)
   3. Removed all debug borders (red/blue/pink outlines)
   4. Fixed .card class collision: Services section cards and
      Work section cards both used bare ".card" — Work section
      rules are now scoped under ".work" so they no longer
      fight with the Services card CSS
   5. .services__grid now uses fr units instead of fixed 397px
      columns so its own media queries actually take effect
   6. Added missing responsive rules: footer grid, products
      grid, small-mobile hero tightening
   7. Single `html { font-size: 62.5% }` instead of 4 repeats
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}

a {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================
   NAVBAR SHELL
========================================= */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar {
  background: #fff;
  border-radius: 0 0 20px 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  position: relative;
}

.logo {
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4aa8ff 0 45%, #ff9d2e 46% 100%);
  flex-shrink: 0;
}

/* =========================================
   DESKTOP MENU
========================================= */
.menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.menu>li>a {
  display: block;
  padding: 22px 12px;
  font-size: 15px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease, opacity .25s ease;
}

.menu:hover>li>a {
  color: #b3b3b3;
}

.menu>li:hover>a {
  color: #111;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kbd-search {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444;
  font-size: 14px;
  cursor: pointer;
}

.kbd-search .keys {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 12px;
  color: #666;
}

.login {
  color: #111;
  text-decoration: none;
  font-size: 15px;
}

.btn {
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-light {
  background: #f1f1ef;
  color: #111;
}

.btn-dark {
  background: #111;
  color: #fff;
}

/* =========================================
   MEGA DROPDOWNS (desktop)
========================================= */
.mega {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 32px 36px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
  pointer-events: none;
}

.menu>li:hover .mega,
.menu>li:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar:has(.menu > li:hover .mega),
.navbar:has(.menu > li:focus-within .mega) {
  border-radius: 0;
}

.mega h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #8a8a8a;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  text-decoration: none;
  color: #111;
  font-size: 15.5px;
}

.mega-item.active {
  font-weight: 600;
  color: #555;
}

.mega-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes iconPop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.mega-icon.pop {
  animation: iconPop .35s cubic-bezier(.34, 1.56, .64, 1) both;
}

.mega-item:hover .mega-icon {
  transform: scale(1.4);
}

.mega-item:hover {
  color: #555;
}

.menu>li>a.active {
  font-weight: 600;
  color: #111;
}

.menu:hover>li>a.active {
  color: #b3b3b3;
}

.menu>li:hover>a.active {
  color: #111;
}

.promo {
  grid-column: 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
  text-decoration: none;
}

.promo-blue {
  background: linear-gradient(180deg, #bfe9ff 0%, #2d5f7a 100%);
}

.promo-green {
  background: linear-gradient(180deg, #d8f7c0 0%, #2f6b3a 100%);
}

.promo-warm {
  background: linear-gradient(180deg, #ffe3bd 0%, #8a4b1f 100%);
}

.promo-violet {
  background: linear-gradient(180deg, #e4d6ff 0%, #4b2d7a 100%);
}

.promo-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: rgba(20, 30, 50, .85);
  margin: 10px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  color: #fff;
  transition: transform .3s ease;
}

.promo:hover .promo-logo {
  transform: scale(1.08) rotate(-3deg);
}

.promo small {
  font-size: 10.5px;
  letter-spacing: 1px;
  opacity: .85;
}

.promo p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

/* =========================================
   HAMBURGER (hidden on desktop)
========================================= */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #f1f1ef;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* =========================================
   MOBILE MENU PANEL
========================================= */
.mobile-panel {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  padding: 12px 20px 40px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}

.mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.acc-item {
  border-bottom: 1px solid #eee;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: #111;
  font-family: Montserrat;
  cursor: pointer;
  transition: color .25s ease;
  text-decoration: none;
}

.mobile-panel.has-active .acc-head {
  color: #b3b3b3;
}

.mobile-panel.has-active .acc-item.active .acc-head {
  color: #111;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.acc-body-inner {
  padding: 4px 4px 18px;
}

.acc-body h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #8a8a8a;
  text-transform: uppercase;
  margin: 14px 0 8px;
}

.acc-body .mega-item {
  padding: 9px 0;
}

.mobile-ctas {
  display: grid;
  gap: 10px;
  padding: 24px 4px;
}

.mobile-ctas .btn {
  text-align: center;
  padding: 14px;
  font-size: 16px;
}

/* =========================================
   NAVBAR BREAKPOINTS
========================================= */
@media (max-width: 1180px) {
  .kbd-search {
    display: none;
  }
}

@media (max-width: 1024px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-panel {
    display: block;
  }

  .nav-right .login,
  .nav-right .btn-light {
    display: none;
  }

  .navbar {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 14px;
    height: 60px;
  }

  .mobile-panel {
    top: 60px;
  }

  .mega,
  .navbar {
    border-radius: 0;
  }

  .btn-dark {
    padding: 9px 14px;
    font-size: 13.5px;
  }

  .logo {
    font-size: 21px;
    height: auto;
    width: auto;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 1320px) {
  .nav-wrap {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* ============================================================
   ECT HERO SECTION
============================================================ */
.ect-hero {
  --ect-ink: #101410;
  --ect-ink-soft: #4a534a;
  --ect-brand: #123b1e;
  --ect-brand-hov: #1a5229;
  --ect-white: #ffffff;
  --ect-glass: rgba(255, 255, 255, 0.92);
  --ect-placeholder: #9aa39a;
  --ect-hairline: rgba(16, 20, 16, 0.08);
  --ect-bg: #f4f4f1;

  --ect-shadow-soft: 0 0.4rem 2rem rgba(16, 20, 16, 0.07);
  --ect-shadow-lift: 0 1.6rem 4rem rgba(16, 20, 16, 0.14);

  --ect-radius-pill: 999rem;
  --ect-radius-card: 2rem;
  --ect-container: 140rem;

  --ect-fs-heading: clamp(3.2rem, 4.2vw + 1rem, 6.4rem);
  --ect-fs-subtitle: clamp(1.4rem, 0.5vw + 1.1rem, 1.8rem);
  --ect-fs-card-t: clamp(1.8rem, 1vw + 1.2rem, 2.2rem);
  --ect-fs-body: 1.5rem;
  --ect-fs-input: 1.6rem;

  --ect-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ect-dur: 0.35s;

  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(6rem, 10vh, 10rem);
  background: var(--ect-bg);
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  color: var(--ect-ink);
  line-height: 1.5;
  box-sizing: border-box;
}

.ect-hero *,
.ect-hero *::before,
.ect-hero *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;

}

.ect-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.ect-hero__container {
  width: min(var(--ect-container), 100% - 4rem);
  margin-inline: auto;
}

.ect-hero__heading {
  font-size: var(--ect-fs-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 100rem;
}

.ect-hero__subtitle {
  margin-top: 1.6rem;
  font-size: var(--ect-fs-subtitle);
  color: var(--ect-ink-soft);
  letter-spacing: 0.01em;
}

.ect-search {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(84rem, 100%);
  min-height: 6rem;
  padding: 0.6rem 0.6rem 0.6rem 2.4rem;
  background: var(--ect-glass);
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
  border: 1px solid var(--ect-hairline);
  border-radius: var(--ect-radius-pill);
  box-shadow: var(--ect-shadow-soft);
  transition: box-shadow var(--ect-dur) var(--ect-ease), transform var(--ect-dur) var(--ect-ease);
}

.ect-search:hover {
  box-shadow: var(--ect-shadow-lift);
  transform: translate3d(0, -0.2rem, 0);
}

.ect-search:focus-within {
  box-shadow: 0 0 0 0.3rem rgba(18, 59, 30, 0.15), var(--ect-shadow-lift);
  transform: translate3d(0, -0.2rem, 0);
}

.ect-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: var(--ect-fs-input);
  color: var(--ect-ink);
}

.ect-search__input::placeholder {
  color: var(--ect-placeholder);
}

.ect-search__input:focus {
  outline: none;
}

.ect-search__btn {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border: none;
  border-radius: 50%;
  background: var(--ect-brand);
  color: var(--ect-white);
  cursor: pointer;
  transition: transform var(--ect-dur) var(--ect-ease), background var(--ect-dur) ease;
}

.ect-search__btn svg {
  width: 2.2rem;
  height: 2.2rem;
}

.ect-search__btn:hover {
  transform: scale(1.08) rotate(8deg);
  background: var(--ect-brand-hov);
}

.ect-search__btn:focus-visible {
  outline: 0.2rem solid var(--ect-brand);
  outline-offset: 0.3rem;
}

.ect-cards {
  margin-top: clamp(4rem, 7vh, 7rem);
  width: 100%;
  overflow: hidden;
  height: 200px;
}

.ect-cards__track {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding-inline: 2rem;
  will-change: transform;
}

.ect-card {
  width: clamp(26rem, 28vw, 34rem);
  flex-shrink: 0;
  margin-top: 5px;
  background: var(--ect-white);
  border-radius: var(--ect-radius-card);
  padding: 2.8rem 2.8rem 2.4rem;
  box-shadow: var(--ect-shadow-soft);
  transition: transform var(--ect-dur) var(--ect-ease), box-shadow var(--ect-dur) var(--ect-ease);
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  animation: ect-rise 0.8s var(--ect-ease) forwards;
  animation-delay: var(--d, 0.6s);
}

.ect-card:hover {
  transform: translate3d(0, -0.8rem, 0) scale(1.02);
}

.ect-card__title {
  font-size: var(--ect-fs-card-t);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ect-card__desc {
  margin-top: 0.8rem;
  font-size: var(--ect-fs-body);
  color: var(--ect-ink-soft);
  min-height: 4.5rem;
}

.ect-explore {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: var(--ect-fs-body);
  font-weight: 500;
  color: var(--ect-ink);
  text-decoration: none;
}

.ect-explore__text {
  text-decoration: underline;
  text-underline-offset: 0.4rem;
  text-decoration-thickness: 0.1rem;
}

.ect-explore__icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  transform: translate3d(0, -50%, 0);
  transition: transform var(--ect-dur) var(--ect-ease);
  will-change: transform;
}

.ect-explore__icon svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

.ect-explore:hover .ect-explore__icon,
.ect-explore:focus-visible .ect-explore__icon {
  transform: translate3d(calc(-1 * var(--travel, 7.6rem)), -50%, 0);
}

.ect-anim {
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  animation: ect-rise 0.9s var(--ect-ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes ect-rise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 768px) {
  .ect-hero__container {
    width: calc(100% - 3.2rem);
  }

  .ect-search {
    width: 100%;
    min-height: 5.4rem;
    padding-left: 1.8rem;
  }

  .ect-cards__track {
    gap: 1.6rem;
  }

  .ect-card {
    width: clamp(22rem, 72vw, 26rem);
    padding: 2.2rem 2rem 2rem;
  }
}

@media (max-width: 425px) {
  .ect-search__btn {
    width: 4.2rem;
    height: 4.2rem;
  }

  .ect-card__desc {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .ect-search {
    padding-left: 1.6rem;
  }

  .ect-search__input {
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ect-anim,
  .ect-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .ect-search,
  .ect-search__btn,
  .ect-card,
  .ect-explore__icon {
    transition: none;
  }
}

/* ============================================================
   ECT ABOUT SECTION
============================================================ */
.ect-about {
  --ect-ink: #101410;
  --ect-ink-soft: #3d463d;
  --ect-green: #123b0a;
  --ect-green-hov: #1a5211;
  --ect-cream: #eef0e9;
  --ect-white: #ffffff;

  --ect-shadow-btn: 0 0.6rem 1.8rem rgba(18, 59, 10, 0.28);
  --ect-shadow-play: 0 0.6rem 2rem rgba(16, 20, 16, 0.18);

  --ect-container: 140rem;

  --ect-fs-label: 1.4rem;
  --ect-fs-heading: clamp(2.6rem, 2.2vw + 1.2rem, 3.6rem);
  --ect-fs-body: clamp(1.5rem, 0.4vw + 1.3rem, 1.6rem);
  --ect-fs-btn: 1.5rem;

  --ect-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ect-dur: 0.35s;

  position: relative;
  overflow: hidden;
  background: var(--ect-white);
  padding-block: clamp(6rem, 8vw, 10rem);
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  color: var(--ect-ink);
  line-height: 1.5;
  box-sizing: border-box;
}

.ect-about *,
.ect-about *::before,
.ect-about *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.ect-about__defs {
  position: absolute;
  width: 0;
  height: 0;
}

.ect-about__container {
  width: min(var(--ect-container), 100% - 4.8rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(4rem, 6vw, 10rem);
}

.ect-about__media {
  position: relative;
  aspect-ratio: 589 / 551;
}

.ect-about__shape {
  position: absolute;
  pointer-events: none;
  height: auto;
}

.ect-about__shape--bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 93.28%;
  z-index: 0;
}

.ect-about__shape--top {
  top: 3.81%;
  left: 62.31%;
  width: 32.09%;
  z-index: 2;
}

.ect-about__shape--left {
  top: 70.24%;
  left: 6.79%;
  width: 18.51%;
  z-index: 2;
}

.ect-about__shape--right {
  top: 82.21%;
  left: 74.7%;
  width: 9.85%;
  z-index: 2;
}

.ect-about__shape--drop {
  top: 84.57%;
  left: 66.89%;
  width: 6.96%;
  z-index: 2;
}

.ect-about__blob {
  position: absolute;
  top: 5.44%;
  left: 0.17%;
  width: 97.28%;
  height: 94.56%;
  z-index: 1;
  clip-path: url(#ectBlobClip);
  -webkit-clip-path: url(#ectBlobClip);
}

.ect-about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ect-about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 6.4rem;
  height: 6.4rem;
  display: grid;
  place-items: center;
  background: var(--ect-white);
  color: var(--ect-green);
  border: 0.2rem solid var(--ect-green);
  border-radius: 50%;
  box-shadow: var(--ect-shadow-play);
  cursor: pointer;
  transition: transform var(--ect-dur) var(--ect-ease), box-shadow var(--ect-dur) var(--ect-ease);
}

.ect-about__play:hover {
  transform: translate3d(-50%, -50%, 0) scale(1.1);
  box-shadow: 0 1rem 3rem rgba(16, 20, 16, 0.28);
}

.ect-about__play:focus-visible {
  outline: 0.2rem solid var(--ect-green);
  outline-offset: 0.3rem;
}

.ect-about__icon {
  width: 2.4rem;
  height: 2.4rem;
  grid-area: 1 / 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ect-about__icon--play {
  transform: translateX(0.2rem);
}

.ect-about__icon--pause {
  opacity: 0;
  transform: scale(0.8);
}

.ect-about__play.is-paused .ect-about__icon--play {
  opacity: 0;
  transform: scale(0.8);
}

.ect-about__play.is-paused .ect-about__icon--pause {
  opacity: 1;
  transform: scale(1);
}

.ect-about__label {
  font-size: var(--ect-fs-label);
  font-weight: 400;
  color: var(--ect-ink);
  letter-spacing: 0.01em;
}

.ect-about__heading {
  margin-top: 1.4rem;
  font-size: var(--ect-fs-heading);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ect-ink);
}

.ect-about__text {
  margin-top: 2rem;
  font-size: var(--ect-fs-body);
  line-height: 1.6;
  color: var(--ect-ink-soft);
  max-width: 58rem;
}

.ect-about__text+.ect-about__text {
  margin-top: 1.6rem;
}

.ect-about__btn {
  display: inline-block;
  margin-top: 3.2rem;
  padding: 1.2rem 2.2rem;
  background: var(--ect-green);
  color: var(--ect-white);
  font-size: var(--ect-fs-btn);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.8rem;
  box-shadow: var(--ect-shadow-btn);
  transition: background var(--ect-dur) ease, transform var(--ect-dur) var(--ect-ease), box-shadow var(--ect-dur) var(--ect-ease);
}

.ect-about__btn:hover {
  background: var(--ect-green-hov);
  transform: translate3d(0, -0.3rem, 0);
  box-shadow: 0 1rem 2.6rem rgba(18, 59, 10, 0.34);
}

.ect-about__btn:focus-visible {
  outline: 0.2rem solid var(--ect-green);
  outline-offset: 0.3rem;
}

.ect-about-anim {
  opacity: 0;
  transition: opacity 0.8s var(--ect-ease), transform 0.8s var(--ect-ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.ect-about-anim[data-anim="up"] {
  transform: translate3d(0, 3rem, 0);
}

.ect-about-anim[data-anim="fade"] {
  transform: translate3d(0, 1.6rem, 0);
}

.ect-about-anim[data-anim="blob"] {
  transform: translate3d(0, 3rem, 0) scale(0.94);
}

.ect-about-anim.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1024px) {
  .ect-about__container {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }

  .ect-about__media {
    max-width: 60rem;
    margin-inline: auto;
    width: 100%;
  }

  .ect-about__content {
    max-width: 64rem;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .ect-about__container {
    width: calc(100% - 3.2rem);
  }

  .ect-about__content {
    text-align: center;
  }

  .ect-about__text {
    margin-inline: auto;
  }

  .ect-about__play {
    width: 5.4rem;
    height: 5.4rem;
  }

  .ect-about__icon {
    width: 2rem;
    height: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ect-about-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ect-about__play,
  .ect-about__btn,
  .ect-about__icon {
    transition: none;
  }
}

/* ============================================================
   WHAT ECT DELIVER — FIGMA CARD + ARROW INTERACTION
   Scoped only to .ect-services

   Figma reference:
   - Card width: 397px
   - Expanded height: 463px
   - Compact height: 250px
   - Card radius: 16px
   - Top-right subtract area: 60px × 60px at x = 337px
   - Card fill: #FBFBFA
   - Section background: #FBFCFB
   - Brand green: #0C3C01
============================================================ */
.ect-services {
  --ect-green: #0c3c01;
  --ect-section: #fbfcfb;
  --ect-card-fill: #fbfbfa;
  --ect-text: #000000;
  --ect-content-width: 1244px;
  --ect-card-width: 397px;
  --ect-expanded-height: 463px;
  --ect-compact-height: 250px;
  --ect-radius: 16px;
  --ect-notch: 60px;
  --ect-arrow-size: 50px;

  width: 100%;
  min-height: 991px;
  padding: 52px 0 34px;
  overflow: hidden;
  background: var(--ect-section);
  color: var(--ect-text);
}

.ect-services *,
.ect-services *::before,
.ect-services *::after {
  box-sizing: border-box;
}

.ect-services button,
.ect-services a {
  font: inherit;
}

.ect-services__container {
  width: var(--ect-content-width);
  margin: 0 auto;
}

.ect-services__header {
  display: grid;
  grid-template-columns: 600px 478px;
  justify-content: space-between;
  min-height: 110px;
}

.ect-services__intro {
  padding-left: 3px;
}

.ect-services__eyebrow {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.ect-services__title {
  width: 499px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 31.25px;
  font-weight: 600;
  line-height: 1.25;
}

.ect-services__summary {
  width: 478px;
  margin: 38px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.ect-services__grid {
  display: grid;
  grid-template-columns: repeat(3, var(--ect-card-width));
  gap: 24px;
  align-items: start;
  margin-top: 32px;
}

.ect-services__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: var(--ect-card-width);
}

.ect-services__column--wide-gap {
  gap: 50px;
}

/* --------------------------------------------------------------------------
   CARD SURFACE
   The real Figma subtract path is rendered as the card background.
   -------------------------------------------------------------------------- */
.ect-services .service-card {
  position: relative;
  width: 100%;
  height: var(--ect-compact-height);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--ect-text);
  outline: none;
  box-shadow: none;
  transition:
    height 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 250ms ease;
}

.ect-services .service-card.is-active {
  height: var(--ect-expanded-height);
}

.ect-services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  pointer-events: none;
}

/* Exact compact geometry: 397 × 250 */
.ect-services .service-card:not(.is-active)::before {
  background-image: url("data:image/svg+xml,%3Csvg width='397' height='250' viewBox='0 0 397 250' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321 0C329.837 0 337 7.16344 337 16V44C337 52.8366 344.163 60 353 60H381C389.837 60 397 67.1634 397 76V234C397 242.837 389.837 250 381 250H16C7.16345 250 0 242.837 0 234V16C0 7.16344 7.16344 0 16 0H321Z' fill='%23FBFBFA'/%3E%3C/svg%3E");
}

/* Exact expanded geometry: 397 × 463 */
.ect-services .service-card.is-active::before {
  background-image: url("data:image/svg+xml,%3Csvg width='397' height='463' viewBox='0 0 397 463' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321 0C329.837 0 337 7.16344 337 16V44C337 52.8366 344.163 60 353 60H381C389.837 60 397 67.1634 397 76V447C397 455.837 389.837 463 381 463H16C7.16345 463 0 455.837 0 447V16C0 7.16344 7.16344 0 16 0H321Z' fill='%23FBFBFA'/%3E%3C/svg%3E");
}

/* Active elevation applies to every card, not only Website Development */
.ect-services .service-card.is-active {
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.14));
}

.ect-services .service-card:not(.is-active) {
  filter: none;
}

.ect-services .service-card:focus-visible {
  filter: drop-shadow(0 0 3px rgba(12, 60, 1, 0.32));
}

/* The SVG already contains the subtract notch. */
.ect-services .service-card__notch {
  display: none !important;
}

/* Keep content above the SVG card surface. */
.ect-services .service-card__icon,
.ect-services .service-card__title,
.ect-services .service-card__description,
.ect-services .service-card__link {
  z-index: 2;
}

/* --------------------------------------------------------------------------
   ARROW BUTTON
   Default: white circle + green diagonal arrow.
   Active: green core grows + arrow turns white and rotates 180deg.
   -------------------------------------------------------------------------- */
.ect-services .service-card__arrow {
  position: absolute;
  z-index: 5;
  top: 5px;
  right: 5px;
  display: grid;
  width: var(--ect-arrow-size);
  height: var(--ect-arrow-size);
  padding: 0;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ect-green);
  cursor: pointer;
  box-shadow: none;
  transform: rotate(0deg);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.ect-services .service-card__arrow:hover,
.ect-services .service-card__arrow:focus-visible {
  filter: drop-shadow(0 5px 8px rgba(12, 60, 1, 0.16));
}

.ect-services .service-card__arrow:focus-visible {
  outline: 3px solid rgba(12, 60, 1, 0.22);
  outline-offset: 3px;
}

.ect-services .service-card__arrow-core {
  position: absolute;
  inset: 4px;
  z-index: 1;
  border-radius: 50%;
  background: var(--ect-green);
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ect-services .service-card.is-active .service-card__arrow-core {
  opacity: 1;
  transform: scale(1);
}

.ect-services .service-card__arrow-icon {
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  object-fit: contain;
  transform-origin: center;
  pointer-events: none;
  transition:
    opacity 360ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Default arrow: green icon visible. */
.ect-services .service-card__arrow-icon--dark {
  color: var(--ect-green);
  opacity: 1;
  transform: rotate(0deg);
}

.ect-services .service-card__arrow-icon--light {
  color: #ffffff;
  opacity: 0;
  transform: rotate(0deg);
}

/* Active arrow: white icon visible and both icons rotate 180 degrees. */
.ect-services .service-card.is-active .service-card__arrow-icon--dark {
  opacity: 0;
  transform: rotate(180deg);
}

.ect-services .service-card.is-active .service-card__arrow-icon--light {
  opacity: 1;
  transform: rotate(180deg);
}

/* Pulse only when a card newly activates. */
.ect-services .service-card.is-activating .service-card__arrow-core {
  animation: ectServiceCorePulse 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ectServiceCorePulse {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  60% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* --------------------------------------------------------------------------
   CARD CONTENT
   -------------------------------------------------------------------------- */
.ect-services .service-card__icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  color: var(--ect-green);
}

.ect-services .service-card__icon--website {
  width: 64px;
  height: 64px;
}

.ect-services .service-card__icon--software {
  width: 53px;
  height: 53px;
}

.ect-services .service-card__icon--zoho {
  width: 195px;
  height: 64px;
}

.ect-services .service-card__icon--hr {
  width: 51px;
  height: 51px;
}

.ect-services .service-card__icon--digital {
  width: 48px;
  height: 48px;
}

.ect-services .service-card__icon--infrastructure {
  width: 53px;
  height: 53px;
}

.ect-services .service-card__title {
  position: absolute;
  top: 116px;
  left: 24px;
  max-width: calc(100% - 48px);
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 37.5px;
  white-space: nowrap;
  transition: top 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ect-services .service-card.is-active .service-card__title {
  top: 215px;
}

.ect-services .service-card--infrastructure.is-active .service-card__title {
  top: 239px;
}

.ect-services .service-card__description {
  position: absolute;
  left: 24px;
  width: calc(100% - 57px);
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  pointer-events: none;
}

.ect-services .service-card__description span {
  white-space: nowrap;
}

.ect-services .service-card__description--compact {
  top: 154px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.ect-services .service-card__description--full {
  top: 253px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 620ms;
}

.ect-services .service-card.is-active .service-card__description--compact {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 620ms;
}

.ect-services .service-card.is-active .service-card__description--full {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.ect-services .service-card--infrastructure.is-active .service-card__description--full {
  top: 277px;
}

.ect-services .service-card__link {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 620ms;
}

.ect-services .service-card.is-active .service-card__link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.ect-services .service-card__link span {
  position: relative;
  text-decoration: none;
}

.ect-services .service-card__link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ect-services .service-card__link img,
.ect-services .service-card__link svg {
  display: block;
  width: 16px;
  height: 20px;
  object-fit: contain;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ect-services .service-card__link:hover span,
.ect-services .service-card__link:focus-visible span {
  color: var(--ect-green);
}

.ect-services .service-card__link:hover span::after,
.ect-services .service-card__link:focus-visible span::after {
  transform: scaleX(1);
}

.ect-services .service-card__link:hover img,
.ect-services .service-card__link:focus-visible img,
.ect-services .service-card__link:hover svg,
.ect-services .service-card__link:focus-visible svg {
  transform: translate(4px, -4px);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1300px) {
  .ect-services {
    padding-right: 32px;
    padding-left: 32px;
  }

  .ect-services__container {
    width: 100%;
    max-width: var(--ect-content-width);
  }

  .ect-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ect-services__column {
    width: 100%;
  }

  .ect-services .service-card__title {
    font-size: clamp(20px, 1.75vw, 25px);
  }
}

@media (max-width: 1050px) {
  .ect-services {
    min-height: auto;
  }

  .ect-services__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ect-services__summary {
    width: min(100%, 620px);
    margin-top: 0;
  }

  .ect-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ect-services__column,
  .ect-services__column--wide-gap {
    gap: 24px;
  }

  .ect-services__column:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .ect-services {
    padding: 56px 20px;
  }

  .ect-services__title {
    width: 100%;
    font-size: clamp(27px, 8vw, 31.25px);
  }

  .ect-services__grid,
  .ect-services__column,
  .ect-services__column:last-child {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .ect-services .service-card,
  .ect-services .service-card.is-active {
    height: auto;
    min-height: 320px;
    padding: 126px 24px 72px;
    overflow: visible;
    border-radius: var(--ect-radius);
    background: var(--ect-card-fill) !important;
  }

  .ect-services .service-card::before {
    display: none;
  }

  .ect-services .service-card__arrow {
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
  }

  .ect-services .service-card__title,
  .ect-services .service-card.is-active .service-card__title,
  .ect-services .service-card--infrastructure.is-active .service-card__title {
    position: static;
    white-space: normal;
  }

  .ect-services .service-card__description,
  .ect-services .service-card__description--compact,
  .ect-services .service-card__description--full,
  .ect-services .service-card.is-active .service-card__description--full,
  .ect-services .service-card--infrastructure.is-active .service-card__description--full {
    position: static;
    display: block;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .ect-services .service-card__description--compact {
    display: none;
  }

  .ect-services .service-card__link,
  .ect-services .service-card.is-active .service-card__link {
    display: inline-flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ect-services .service-card,
  .ect-services .service-card__title,
  .ect-services .service-card__arrow,
  .ect-services .service-card__arrow-core,
  .ect-services .service-card__arrow-icon,
  .ect-services .service-card__description,
  .ect-services .service-card__link,
  .ect-services .service-card__link span::after,
  .ect-services .service-card__link img,
  .ect-services .service-card__link svg {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   WHY CHOOSE ECT SECTION
============================================================ */
.why-section {
  --green: #1f4d33;
  --green-soft: #2d6b48;
  --green-glow: rgba(45, 107, 72, 0.2);
  --ink: #171717;
  --muted: #555;
  --bg: #ffffff;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);

  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(6rem, 10vh, 12rem) clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: center;
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  overflow: hidden;
}

.why-section * {
  box-sizing: border-box;
}

.why-content {
  max-width: 56rem;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green);
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 1rem var(--green-glow);
}

.heading {
  font-size: clamp(2.8rem, 3.8vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: var(--ink);
}

.lede {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 3rem;
  max-width: 52rem;
}

.checklist {
  list-style: none;
  margin: 0 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  cursor: default;
}

.check-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.check-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.checklist li:hover .check-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0.4rem 1rem var(--green-glow);
}

.checklist li:hover span {
  transform: translateX(0.4rem);
}

.checklist li span {
  display: inline-block;
  transition: transform 0.4s var(--ease-out-expo);
}

.sub-heading {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.sub-lede {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 3.2rem;
  max-width: 50rem;
}

.cta-btn {
  position: relative;
  appearance: none;
  border: none;
  cursor: pointer;
  background: var(--green);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.6rem 3rem;
  border-radius: 10rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  align-self: flex-start;
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}

.cta-btn span,
.cta-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out-expo);
}

.cta-btn svg {
  width: 1.6rem;
  height: 1.6rem;
}

.cta-btn:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.5rem 3rem rgba(31, 77, 51, 0.25);
}

.cta-btn:hover::before {
  transform: translateY(0);
}

.cta-btn:hover svg {
  transform: rotate(45deg) scale(1.1);
}

.cta-btn:focus-visible {
  outline: 0.2rem solid var(--green-soft);
  outline-offset: 0.4rem;
}

.collage-wrap {
  position: relative;
  display: flex;
  gap: 2rem;
  will-change: transform;
}

.collage-wrap::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(6rem);
  z-index: 0;
  pointer-events: none;
  animation: ambient-float 18s ease-in-out infinite alternate;
}

@keyframes ambient-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-2rem, 3rem, 0) scale(1.1);
  }
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 0;
  position: relative;
  z-index: 1;
}

.collage-col.right {
  margin-top: 4rem;
}

.collage-img {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(1);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease, opacity 0.6s ease;
  will-change: transform;
}

.collage-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s ease;
  filter: grayscale(15%) brightness(0.95);
}

.collage-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  pointer-events: none;
}

.collage-img:hover {
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.collage-img:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

.collage-img:hover::after {
  border-color: var(--green);
}

.collage-wrap:hover .collage-img:not(:hover) {
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(0.97);
  opacity: 0.7;
}

.img-a {
  height: 22rem;
}

.img-b {
  height: 26rem;
}

.img-c {
  height: 30rem;
}

.img-d {
  height: 19rem;
}

.badge {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) translate3d(var(--bx, 0), var(--by, 0), 0) scale(1);
  width: 13rem;
  height: 13rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.4s var(--ease-out-expo);
}

.badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  transition: background 0.4s var(--ease-out-expo);
}

.badge:hover .badge-ring {
  background: #ffffff;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1);
}

.badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-badge 18s linear infinite;
}

@keyframes spin-badge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.badge-text text {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  fill: #fff;
  font-weight: 700;
  transition: fill 0.4s var(--ease-out-expo);
}

.badge:hover .badge-text text {
  fill: var(--green);
}

.badge-center {
  position: relative;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 0.8rem var(--bg);
  transition: box-shadow 0.4s var(--ease-out-expo);
}

.badge-center svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: #fff;
  transition: transform 0.4s var(--ease-out-expo);
}

.badge:hover .badge-center svg {
  transform: rotate(45deg) scale(1.1);
}

.badge:hover {
  transform: translate(-50%, -50%) translate3d(var(--bx, 0), var(--by, 0), 0) scale(1.08);
}

.why-section [data-animate] {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 1s var(--ease-out-expo);
}

.why-section [data-animate="fade-up"] {
  transform: translateY(3rem);
}

.why-section [data-animate="fade"] {
  transform: translateY(1rem);
}

.why-section [data-animate="scale"] {
  transform: scale(0.9);
  filter: blur(1rem);
}

.why-section .badge[data-animate] {
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.why-section .is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.why-section .badge.is-visible {
  transform: translate(-50%, -50%) scale(1) !important;
}

@media (max-width: 1024px) {
  .why-section {
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .why-content {
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .eyebrow,
  .checklist {
    justify-content: center;
  }

  .collage-wrap {
    max-width: 60rem;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .checklist {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .heading {
    font-size: 2.6rem;
  }

  .collage-col.right {
    margin-top: 2rem;
  }

  .img-a {
    height: 18rem;
  }

  .img-b {
    height: 20rem;
  }

  .img-c {
    height: 22rem;
  }

  .img-d {
    height: 16rem;
  }

  .badge {
    width: 10rem;
    height: 10rem;
  }

  .badge-center {
    width: 4.5rem;
    height: 4.5rem;
    box-shadow: 0 0 0 0.6rem var(--bg);
  }

  .badge-center svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* ============================================================
   ECT BUSINESS SOLUTIONS
   Exact Figma desktop layout
   Section: 1443 × 731
   Container: 1240px
   Cards: 608 × 485
============================================================ */

.ect-products {
  --ect-products-bg: #fbfcfb;
  --ect-products-white: #ffffff;
  --ect-products-green: #0c3c01;
  --ect-products-text: #000000;
  --ect-products-container: 1240px;
  --ect-products-card-width: 608px;
  --ect-products-card-height: 485px;
  --ect-products-grid-gap: 24px;
  width: 100%;
  min-height: 731px;
  padding: 52px 0;
  background: var(--ect-products-bg);
  color: var(--ect-products-text);
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.ect-products *,
.ect-products *::before,
.ect-products *::after {
  box-sizing: border-box;
}

.ect-products__inner {
  width: min(var(--ect-products-container), calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.ect-products__header {
  display: grid;
  grid-template-columns: 557px 527px;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  min-height: 110px;
  margin: 0 0 32px;
}

.ect-products__header-left {
  width: 557px;
  max-width: none;
  flex: none;
}

.ect-products__eyebrow {
  margin: 0 0 8px;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.ect-products__headline {
  width: 557px;
  min-height: 78px;
  margin: 0;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 31.25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.ect-products__header-right {
  width: 527px;
  padding: 38px 0 0;
  flex: none;
}

.ect-products__desc {
  width: 527px;
  min-height: 72px;
  margin: 0;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.ect-products__grid {
  display: grid;
  grid-template-columns: repeat(2, var(--ect-products-card-width));
  gap: var(--ect-products-grid-gap);
  align-items: start;
}

.ect-pcard {
  position: relative;
  width: var(--ect-products-card-width);
  height: var(--ect-products-card-height);
  min-height: 0;
  margin: 0;
  transform: none;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.ect-pcard:hover {
  transform: translateY(-4px);
}

.ect-pcard__body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  isolation: isolate;
}

.ect-pcard__body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='608' height='485' viewBox='0 0 608 485' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M608 417C608 425.837 600.837 433 592 433H446C437.163 433 430 440.163 430 449V469C430 477.837 422.837 485 414 485H16C7.16343 485 0 477.837 0 469V16C0 7.16344 7.16344 0 16 0H592C600.837 0 608 7.16344 608 16V417Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  pointer-events: none;
}

.ect-pcard__notch {
  display: none !important;
}

.ect-pcard__imgwrap {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  width: 576px;
  height: 297px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  display: block;
}

.ect-pcard__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.ect-pcard__content {
  position: static;
  padding: 0;
  min-height: 0;
}

.ect-pcard__title {
  position: absolute;
  z-index: 2;
  top: 325px;
  left: 19px;
  width: 400px;
  margin: 0;

  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0;
}

.ect-pcard__tagline {
  position: absolute;
  z-index: 2;
  top: 369px;
  left: 19px;
  width: 420px;
  margin: 0;

  color: #000000;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
}

.ect-pcard__desc {
  position: absolute;
  z-index: 2;
  top: 397px;
  left: 16px;
  width: 514px;
  height: 72px;
  margin: 0;

  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;

  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.ect-pcard__cta {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 166px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  display: block;
  transform: none;
  box-shadow: none;
}

.ect-pcard:hover .ect-pcard__cta {
  transform: none;
}

.ect-btn-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 40px;
  padding: 8px 10px;
  gap: 10px;
  margin: 0;
  border: 1px solid #0c3c01;
  border-radius: 8px;
  background: #0c3c01;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background 250ms ease, transform 250ms cubic-bezier(.22, 1, .36, 1);
}

.ect-btn-explore:hover {
  background: #082d01;
  transform: translateY(-2px);
}

.ect-btn-explore:active {
  transform: translateY(0);
}

.ect-btn-explore:focus-visible {
  outline: 3px solid rgba(12, 60, 1, .25);
  outline-offset: 3px;
}

@media (max-width: 1300px) {
  .ect-products {
    min-height: auto;
    padding-right: 32px;
    padding-left: 32px;
  }

  .ect-products__inner {
    width: 100%;
    max-width: var(--ect-products-container);
  }

  .ect-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ect-pcard {
    width: 100%;
  }

  .ect-pcard__imgwrap {
    width: calc(100% - 32px);
  }
}

@media (max-width: 1050px) {
  .ect-products__header {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .ect-products__header-left,
  .ect-products__headline,
  .ect-products__header-right,
  .ect-products__desc {
    width: 100%;
  }

  .ect-products__header-right {
    padding-top: 0;
  }

  .ect-products__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ect-pcard {
    width: min(608px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .ect-products {
    padding: 48px 20px;
  }

  .ect-products__inner {
    width: 100%;
  }

  .ect-products__headline {
    font-size: clamp(27px, 8vw, 31.25px);
  }

  .ect-pcard {
    width: 100%;
    height: auto;
    min-height: 500px;
  }

  .ect-pcard__body {
    min-height: 500px;
    padding: 16px 16px 72px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
  }

  .ect-pcard__body::before {
    display: none;
  }

  .ect-pcard__imgwrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 576 / 297;
  }

  .ect-pcard__title,
  .ect-pcard__tagline,
  .ect-pcard__desc {
    position: static;
    width: 100%;
    max-width: none;
  }

  .ect-pcard__title {
    margin-top: 12px;
    font-size: 22px;
    line-height: 32px;
  }

  .ect-pcard__tagline {
    margin-top: 2px;
  }

  .ect-pcard__desc {
    margin-top: 4px;
  }

  .ect-pcard__cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ect-pcard,
  .ect-btn-explore {
    transition: none !important;
  }
}


/* ============================================================
   ECT WORK — FINAL FIGMA GEOMETRY FIX
   Figma node: 3050:6500
   Exact card vector: 397 × 408
   Existing base.js auto-scroll timing and interaction are unchanged.
============================================================ */
.work {
  --work-green: #0C3C01;
  --work-frame-width: 1247px;
  --work-card-width: 397px;
  --work-card-height: 408px;
  --work-card-gap: 24px;
  --work-hover-lift: 10px;
  --work-card-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 397 408'%3E%3Cpath fill='white' d='M397 340C397 348.837 389.837 356 381 356H235C226.163 356 219 363.163 219 372V392C219 400.837 211.837 408 203 408H16C7.16345 408 0 400.837 0 392V16C0 7.16344 7.16344 0 16 0H381C389.837 0 397 7.16344 397 16V340Z'/%3E%3C/svg%3E");

  width: 100%;
  margin: 0;
  padding: 52px 0 50px;
  overflow: hidden;
  background: #FFFFFF;
  color: #000000;
  font-family: "Montserrat", sans-serif;
}

.work *,
.work *::before,
.work *::after {
  box-sizing: border-box;
}

.work__inner {
  width: min(var(--work-frame-width), calc(100% - 40px));
  margin: 0 auto;
}

.work__head {
  display: grid;
  grid-template-columns: 362px 493px;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  min-height: 110px;
  margin: 0 0 32px;
}

.work__head-left {
  width: 362px;
}

.work__label {
  width: auto;
  height: auto;
  margin: 0 0 8px;
  color: #000000;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work__title {
  width: 362px;
  min-height: 78px;
  margin: 0;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 31.25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.work__description {
  width: 493px;
  min-height: 72px;
  margin: 38px 0 0;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.work__nav {
  display: none !important;
}

/*
  The 10px top buffer prevents the existing hover lift from being
  cropped. The negative margin keeps the non-hovered card row in the
  exact original Figma position.
*/
.work__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--work-card-gap);
  width: 100%;
  margin: calc(-1 * var(--work-hover-lift)) 0 0;
  padding: var(--work-hover-lift) 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.work__grid::-webkit-scrollbar {
  display: none;
}

.work .card {
  position: relative;
  flex: 0 0 var(--work-card-width);
  width: var(--work-card-width);
  height: var(--work-card-height);
  margin: 0;
  scroll-snap-align: start;
  transform: translateY(0);
  transition: transform .35s ease;
}

.work .card:hover,
.work .card:focus-within {
  transform: translateY(calc(-1 * var(--work-hover-lift)));
}

.work .card__body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.work .card__imgwrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #FFFFFF;

  -webkit-mask-image: var(--work-card-mask);
  mask-image: var(--work-card-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.work .card__imgwrap>.ph {
  display: block;
  width: 100%;
  height: 100%;
}

.work .card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Preserve the existing overlay effect inside the exact same mask. */
.work .card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 64px;
  background: rgba(17, 17, 17, .52);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.work .card__overlay p {
  margin: 0;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  transform: translateY(10px);
  transition: transform .35s ease;
}

.work .card__overlay p b {
  font-weight: 700;
}

.work .card:hover .card__overlay,
.work .card:focus-within .card__overlay {
  opacity: 1;
}

.work .card:hover .card__overlay p,
.work .card:focus-within .card__overlay p {
  transform: translateY(0);
}

/* The exact vector mask now creates the notch. */
.work .card__notch {
  display: none !important;
}

.work .card__cta {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 166px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  transition: transform .35s ease;
}

.work .card:hover .card__cta,
.work .card:focus-within .card__cta {
  transform: scale(1.02);
}

.work .btn-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 40px;
  margin: 0;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid #F1F1EF;
  border-radius: 8px;
  background: var(--work-green);
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s ease;
}

.work .btn-view:hover {
  background: #082D01;
}

.work .btn-view:focus-visible {
  outline: 2px solid var(--work-green);
  outline-offset: 3px;
}

@media (max-width: 1300px) {
  .work {
    padding-right: 32px;
    padding-left: 32px;
  }

  .work__inner {
    width: 100%;
    max-width: var(--work-frame-width);
  }

  .work .card {
    flex-basis: calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    height: auto;
    aspect-ratio: 397 / 408;
  }
}

@media (max-width: 900px) {
  .work__head {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .work__head-left,
  .work__title,
  .work__description {
    width: 100%;
  }

  .work__description {
    max-width: 620px;
    margin-top: 0;
  }

  .work .card {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .work {
    padding: 48px 20px;
  }

  .work__inner {
    width: 100%;
  }

  .work__title {
    font-size: clamp(27px, 8vw, 31.25px);
  }

  .work__grid {
    gap: 16px;
  }

  .work .card {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .work *,
  .work *::before,
  .work *::after {
    transition: none !important;
  }

  .work .card:hover,
  .work .card:focus-within,
  .work .card:hover .card__cta,
  .work .card:focus-within .card__cta {
    transform: none;
  }
}

/* ============================================================
   ECT CLIENTS TESTIMONIAL CAROUSEL
============================================================ */
.ect-clients {
  --ect-bg: #f7f6f3;
  --ect-ink: #1c1c1c;
  --ect-muted: #8a8a85;
  --ect-green: #1f4d2c;
  --ect-green-dark: #163a20;
  --ect-card-bg: #ffffff;
  --ect-card-border: #ebe9e4;
  --ect-card-w: 397px;
  --ect-card-pad: 24px 24px 26px;
  --ect-stage-h: 410px;
  --ect-off-x: 430px;
  --ect-off-y: -55px;
  --ect-scale-c: 1;
  --ect-scale-s: 1;

  background: var(--ect-bg);
  color: var(--ect-ink);
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 40px);
}

.ect-clients__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.ect-clients__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: clamp(30px, 5vw, 50px);
  opacity: 0;
  animation: ectFadeUp .7s ease forwards;
  flex-wrap: wrap;
}

.ect-clients__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--ect-ink);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ect-clients__heading {
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
  max-width: 420px;
}

.ect-clients__desc {
  max-width: 400px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #55554f;
  margin: 6px 0 0;
}

.ect-clients__stage {
  position: relative;
  height: var(--ect-stage-h);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.ect-clients__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ect-clients__card {
  position: absolute;
  width: var(--ect-card-w);
  height: 280px;
  background: var(--ect-card-bg);
  border-radius: 18px;
  padding: var(--ect-card-pad);
  border: 1px solid var(--ect-card-border);
  cursor: pointer;
  transition: transform .7s cubic-bezier(.65, .05, .36, 1), opacity .7s ease, box-shadow .7s ease, border-color .7s ease, height .4s ease;
}

.ect-clients__card--expanded {
  height: auto;
  z-index: 6;
}

.ect-clients__card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 20px;
  height: 20px;
  background: var(--ect-card-bg);
  border-right: 1px solid var(--ect-card-border);
  border-bottom: 1px solid var(--ect-card-border);
  transform: rotate(45deg);
  border-radius: 0 0 3px 0;
  opacity: 1;
  transition: opacity .4s ease, border-color .4s ease;
}

.ect-clients__avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ect-clients__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}

.ect-clients__name {
  font-weight: 700;
  font-size: 14.5px;
}

.ect-clients__role {
  font-size: 12px;
  color: var(--ect-muted);
  margin-top: 2px;
}

.ect-clients__quote {
  font-size: 13.5px;
  line-height: 1.75;
  color: #3c3c38;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ect-clients__card--expanded .ect-clients__quote {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.ect-clients__readmore {
  display: inline-block;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ect-green);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ect-clients__readmore:hover {
  color: var(--ect-green-dark);
}

.ect-clients__card--center {
  transform: translateX(0) translateY(0) scale(var(--ect-scale-c));
  z-index: 5;
  opacity: 1;
  border: 1px solid var(--ect-green);
  box-shadow: none;
}

.ect-clients__card--center::after {
  border-right: 1px solid var(--ect-green);
  border-bottom: 1px solid var(--ect-green);
}

.ect-clients__card--left {
  transform: translateX(calc(var(--ect-off-x) * -1)) translateY(var(--ect-off-y)) scale(var(--ect-scale-s));
  z-index: 3;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(20, 30, 20, .05);
}

.ect-clients__card--right {
  transform: translateX(var(--ect-off-x)) translateY(var(--ect-off-y)) scale(var(--ect-scale-s));
  z-index: 3;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(20, 30, 20, .05);
}

.ect-clients__card--hidden-left {
  transform: translateX(calc(var(--ect-off-x) * -2.1)) translateY(var(--ect-off-y)) scale(0.9);
  opacity: 0;
  z-index: 1;
}

.ect-clients__card--hidden-right {
  transform: translateX(calc(var(--ect-off-x) * 2.1)) translateY(var(--ect-off-y)) scale(0.9);
  opacity: 0;
  z-index: 1;
}

.ect-clients__card--far {
  transform: translateX(0) translateY(var(--ect-off-y)) scale(0.85);
  opacity: 0;
  z-index: 0;
}

.ect-clients--no-side .ect-clients__card--left,
.ect-clients--no-side .ect-clients__card--right {
  opacity: 0;
  pointer-events: none;
}

.ect-clients__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.ect-clients__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--ect-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}

.ect-clients__btn:hover {
  background: var(--ect-green-dark);
  transform: translateY(-2px);
}

.ect-clients__btn:active {
  transform: translateY(0) scale(.94);
}

.ect-clients__btn svg {
  width: 16px;
  height: 16px;
}

.ect-clients__progress {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}

.ect-clients__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8d5cc;
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}

.ect-clients__dot--active {
  background: var(--ect-green);
  width: 20px;
  border-radius: 4px;
}

@keyframes ectFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .ect-clients__top {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ect-clients__btn {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ect-clients__card {
    transition: none;
  }

  .ect-clients__top {
    animation: none;
    opacity: 1;
  }
}

/* ============================================================
   CLIENTS / BLOG ARTICLE CARDS (.clients / .ccard)
============================================================ */
.clients {
  width: 100%;
  background: #FFFFFF;
  margin-bottom: 100px;
}

.clients__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.clients__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4%;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.clients__label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  margin-bottom: .875rem;
}

.clients__title {
  font-size: clamp(1.625rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.clients__intro {
  max-width: 36%;
  font-size: clamp(.8125rem, 1vw, .9375rem);
  font-weight: 500;
  line-height: 1.55;
  color: #3a3a3a;
  padding-bottom: .25rem;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2%;
}

.ccard {
  background: #FFFFFF;
  border: 1px solid #EDEDEA;
  border-radius: .75rem;
  padding: 3.2%;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ccard:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 1.5rem 3.125rem rgba(0, 0, 0, .10);
}

.ccard__media {
  position: relative;
  width: 100%;
  aspect-ratio: 266/188;
  background: #E9E4DA;
  border-radius: .5rem;
  overflow: hidden;
}

.ccard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ccard__media .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A79F8F;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .03125rem;
}

.ccard__date {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  padding: .45rem .9rem .45rem .7rem;
  font-size: clamp(.6875rem, .85vw, .8125rem);
  font-weight: 600;
  border-top-right-radius: .5rem;
}

.ccard__date::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #0E3B12;
  flex: 0 0 auto;
}

.ccard__title {
  font-size: clamp(.875rem, 1.05vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 5% 0 4.5%;
}

.ccard__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: clamp(.75rem, .9vw, .875rem);
  font-weight: 600;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: .25rem;
  transition: color .25s ease;
}

.ccard__link:hover {
  color: #0E3B12;
}

.ccard__link svg {
  width: .7em;
  height: .7em;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 64em) {
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3%;
    row-gap: 1.5rem;
  }

  .clients__intro {
    max-width: 42%;
  }
}

@media (max-width: 45em) {
  .clients {
    padding: 3rem 5% 3.5rem;
  }

  .clients__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .clients__intro {
    max-width: 100%;
    padding-bottom: 0;
  }

  .clients__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ccard {
    padding: 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ccard {
    transition: none !important;
  }

  .ccard:hover {
    transform: none;
  }
}

/* ============================================================
   FOOTER
============================================================ */
.ect-footer-section {
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin-bottom: 0;
}

.ect-cta-section {
  position: relative;
  padding: 0 68px;
}

.ect-cta-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #fff;
  z-index: 0;
}

.ect-cta-bot-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #1b3a10;
  z-index: 0;
}

.ect-cta-card {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 80px 48px;
  min-height: 288px;
  background:
    linear-gradient(rgba(18, 34, 12, 0.55), rgba(18, 34, 12, 0.55)),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.ect-cta-card h1 {
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.ect-cta-card p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 24px;
  letter-spacing: 0.1px;
}

.ect-cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.ect-cta-btns a {
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.2px;
  transition: opacity 0.15s ease;
}

.ect-cta-btns a:hover {
  opacity: 0.85;
}

.ect-btn-dark {
  background: #1b3a10;
  color: #fff;
}

.ect-btn-light {
  background: #eeeeea;
  color: #1a1a1a;
}

.ect-footer {
  background: #1b3a10;
  color: #fff;
  padding: 44px 68px 48px;
}

.ect-footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 0.6fr;
  gap: 24px 32px;
}

.ect-f-brand-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff !important;
}

.ect-f-brand-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.72;
  color: #cddcc4 !important;
  margin-bottom: 24px;
}

.ect-f-nl-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff !important;
}

.ect-f-nl-desc {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.6;
  color: #c4d8bc !important;
  margin-bottom: 12px;
}

.ect-f-nl-form {
  display: flex;
  width: 100%;
  max-width: 400px;
}

.ect-f-nl-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 8px 10px;
  font-size: 11px;
  border-radius: 5px 0 0 5px;
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  background: #fff;
  color: #333;
}

.ect-f-nl-form input::placeholder {
  color: #999;
  font-size: 11px;
}

.ect-f-nl-form button {
  background: #2d5a1a;
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.ect-f-nl-form button:hover {
  background: #3a7522;
}

.ect-f-nl-msg {
  margin-top: 8px;
  font-size: 11px;
  min-height: 16px;
  transition: opacity 0.3s ease;
}

.ect-f-col-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff !important;
  letter-spacing: 0.3px;
}

.ect-no-upper {
  text-transform: none;
}

.ect-f-col ul {
  list-style: none;
}

.ect-f-col ul li {
  margin-bottom: 11px;
}

.ect-f-col ul li a {
  color: #c8dcc0 !important;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.ect-f-col ul li a:hover {
  color: #fff !important;
}

.ect-f-sub-title {
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 14px;
  color: #fff !important;
}

.ect-social-bar {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 68px;
  flex-wrap: wrap;
  gap: 12px;
}

.ect-follow-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ect-follow-label {
  font-size: 13px;
  font-weight: 500;
  color: #222 !important;
}

.ect-s-icons {
  display: flex;
  gap: 8px;
}

.ect-s-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1b3a10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease;
}

.ect-s-icons a:hover {
  background: #2d5a1a;
}

.ect-s-icons svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.ect-contact-section {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ect-c-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #222 !important;
  font-size: 12.5px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.ect-c-item:hover {
  color: #1b3a10;
}

.ect-c-item svg {
  width: 14px;
  height: 14px;
  fill: #1b3a10;
}

.ect-bottom-bar {
  background: #1b3a10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 68px;
  flex-wrap: wrap;
  gap: 8px;
}

.ect-b-links {
  font-size: 11.5px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.ect-b-links a {
  color: #c8dcc0 !important;
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
}

.ect-b-links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -8px;
  color: #c8dcc0;
  pointer-events: none;
}

.ect-b-links a:hover {
  text-decoration: underline;
  color: #fff !important;
}

.ect-b-copy {
  font-size: 11.5px;
  color: #c8dcc0 !important;
  margin-top: 8px;
}

@media (max-width: 1024px) {

  .ect-cta-section,
  .ect-footer,
  .ect-social-bar,
  .ect-bottom-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  .ect-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .ect-f-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {

  .ect-cta-section,
  .ect-footer,
  .ect-social-bar,
  .ect-bottom-bar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ect-cta-card {
    padding: 40px 24px;
  }

  .ect-cta-card h1 {
    font-size: 24px;
  }

  .ect-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }

  .ect-f-col-title {
    margin-bottom: 12px;
  }

  .ect-f-sub-title {
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .ect-social-bar,
  .ect-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .ect-b-links {
    justify-content: center;
  }

  .ect-contact-section {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* =========================================================
   FEATURE SECTION — FIGMA MATCHED
   Exact exported card geometry:
   397 × 130, 16px radius, 60 × 60 top-corner subtraction,
   fill #FBFBFA and active border #0C3C01.
   ========================================================= */

.features {
  --features-surface: #ffffff;
  --feature-card-fill: #fbfbfa;
  --feature-line: #e8e8e8;
  --feature-line-active: #0c3c01;
  --feature-gap: 24px;

  width: 100%;
  padding: 96px 0;
  overflow: hidden;
  background: var(--features-surface);
  font-family: "Montserrat", sans-serif;
}

.features *,
.features *::before,
.features *::after {
  box-sizing: border-box;
}

.features__container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.features__header {
  display: grid;
  grid-template-columns: minmax(0, 530px) minmax(300px, 448px);
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  margin-bottom: 36px;
}

.features__subtitle {
  display: block;
  margin: 0 0 10px;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.features__heading {
  max-width: 530px;
  margin: 0;
  color: #000;
  font-size: clamp(30px, 2.55vw, 40px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.features__description {
  max-width: 448px;
  margin: 22px 0 0;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

/* Three equal columns; the exported 397:130 card ratio stays intact. */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--feature-gap);
  align-items: stretch;
}

.features__column {
  display: flex;
  flex-direction: column;
  gap: var(--feature-gap);
  min-width: 0;
}

/* Exact card ratio means the SVG notch never stretches or deforms. */
.feature-card {
  position: relative;
  width: 100%;
  aspect-ratio: 397 / 130;
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #000;
}

/* The original exported Figma path is the complete card surface. */
.feature-card__shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.feature-card__shape-surface {
  fill: var(--feature-card-fill);
  stroke: var(--feature-line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke .28s ease;
}

.feature-card:hover .feature-card__shape-surface,
.feature-card.is-active .feature-card__shape-surface {
  stroke: var(--feature-line-active);
}

/* Content */
.feature-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px 19px;
}

.feature-card--left .feature-card__content {
  padding-right: 18%;
}

.feature-card--right .feature-card__content {
  padding-left: 18%;
}

.feature-card__title {
  margin: 0 0 8px;
  color: #000;
  font-size: clamp(18px, 1.65vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
  transition: color .28s ease;
}

.feature-card__desc {
  margin: 0;
  color: #111;
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  transition: color .28s ease;
}

.feature-card:hover .feature-card__title,
.feature-card:hover .feature-card__desc,
.feature-card.is-active .feature-card__title,
.feature-card.is-active .feature-card__desc {
  color: var(--feature-line-active);
}

/* Exported 50 × 50 action circle, scaled proportionally with the card. */
.feature-card__action {
  position: absolute;
  top: 3.846%;
  z-index: 4;
  width: 12.594%;
  max-width: 50px;
  min-width: 40px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--feature-line-active);
  cursor: pointer;
  transition: transform .25s ease;
}

.feature-card__action--tr {
  right: 1.26%;
}

.feature-card__action--tl {
  left: 1.26%;
}

.feature-card__action-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-card__action:hover {
  transform: translateY(-2px);
}

.feature-card__action:focus-visible {
  outline: 2px solid rgba(12, 60, 1, .32);
  outline-offset: 3px;
}

/* Center image height exactly follows the three cards plus two gaps. */
.features__image-wrapper {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #ececea;
}

.features__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .35s ease, transform .45s ease;
}

.features__image-wrapper:hover .features__image {
  transform: scale(1.025);
}

.features__image.is-fading {
  opacity: 0;
}

/* Reveal */
.features [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1);
}

.features [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features__column--left .feature-card:nth-child(2) {
  transition-delay: .08s;
}

.features__column--left .feature-card:nth-child(3) {
  transition-delay: .16s;
}

.features__image-wrapper[data-reveal] {
  transition-delay: .06s;
}

.features__column--right .feature-card:nth-child(1) {
  transition-delay: .12s;
}

.features__column--right .feature-card:nth-child(2) {
  transition-delay: .20s;
}

.features__column--right .feature-card:nth-child(3) {
  transition-delay: .28s;
}

/* Medium desktop / browser zoom: keep all three columns visible. */
@media (max-width: 1180px) {
  .features {
    --feature-gap: 18px;
    padding: 78px 0;
  }

  .features__container {
    width: min(1040px, calc(100% - 36px));
  }

  .features__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 32px;
  }

  .feature-card__content {
    padding: 14px 16px;
  }

  .feature-card--left .feature-card__content {
    padding-right: 19%;
  }

  .feature-card--right .feature-card__content {
    padding-left: 19%;
  }

  .feature-card__title {
    margin-bottom: 6px;
    font-size: clamp(16px, 2vw, 22px);
  }

  .feature-card__desc {
    font-size: clamp(11px, 1.35vw, 14px);
  }
}

/* Tablet: image first, then two card columns. */
@media (max-width: 900px) {
  .features {
    padding: 68px 0;
  }

  .features__container {
    width: calc(100% - 36px);
  }

  .features__header {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .features__description {
    margin-top: 0;
    max-width: 620px;
  }

  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features__image-wrapper {
    grid-column: 1 / -1;
    grid-row: 1;
    height: clamp(280px, 45vw, 390px);
  }

  .features__column--left {
    grid-column: 1;
    grid-row: 2;
  }

  .features__column--right {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Mobile: image and all cards in one column. */
@media (max-width: 640px) {
  .features {
    --feature-gap: 14px;
    padding: 54px 0;
  }

  .features__container {
    width: calc(100% - 28px);
  }

  .features__heading {
    font-size: clamp(26px, 8vw, 34px);
  }

  .features__description {
    font-size: 14px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__image-wrapper {
    grid-column: 1;
    grid-row: 1;
    height: 250px;
  }

  .features__column--left {
    grid-column: 1;
    grid-row: 2;
  }

  .features__column--right {
    grid-column: 1;
    grid-row: 3;
  }

  .feature-card__content {
    padding: 16px 18px;
  }

  .feature-card--left .feature-card__content {
    padding-right: 19%;
  }

  .feature-card--right .feature-card__content {
    padding-left: 19%;
  }

  .feature-card__title {
    font-size: clamp(18px, 6vw, 24px);
  }

  .feature-card__desc {
    font-size: clamp(12px, 3.8vw, 15px);
  }

  .features [data-reveal] {
    transition-delay: 0s !important;
  }
}

@media (max-width: 390px) {
  .features__container {
    width: calc(100% - 20px);
  }

  .feature-card__content {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .feature-card__title {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .feature-card__desc {
    font-size: 12px;
    line-height: 1.42;
  }

  .feature-card__action {
    min-width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .features [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .features__image,
  .feature-card__shape-surface,
  .feature-card__action {
    transition: none;
  }
}


/* homepage video 3 section */




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
}

.ect-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #04150f;
  /* fallback while video loads */
}

/* ---- VIDEO BACKGROUND ---- */
.ect-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

/* Dark overlay so text stays readable over the video */
.ect-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center,
      rgba(4, 21, 15, 0.35) 0%,
      rgba(4, 21, 15, 0.7) 100%);
}

/* ---- CONTENT OVER THE VIDEO ---- */
.ect-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 50px;
  color: #ffffff;
}

.ect-hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #d7efe4;
  margin-bottom: 14px;
}

.ect-hero__title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.ect-hero__desc {
  font-size: 15px;
  /* slightly bumped for readability */
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0 auto 28px;
}

.ect-hero__btn {
  display: inline-block;
  background: #ffffff;
  color: #0a2018;
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ect-hero__btn:hover {
  background: #d7efe4;
  transform: translateY(-1px);
}

.ect-hero__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ect-hero__btn {
    transition: none;
  }
}




/* connected business soluction */

/* ============================================================
   Connected Business Solutions
   Layout: CSS Grid outer, Flexbox columns, images flex-grow.
   Animations:
   - Heading: word-by-word masked rise on reveal
   - Intro: soft fade-up
   - Images: curtain wipe reveal + slow scale settle
   - Content: staggered fade-up
   - Micro-interactions: link arrow swap, underline draw,
     category tracking expand, image tilt-on-hover, subtle
     parallax on scroll. Reduced motion fully respected.
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  background: #FFFFFF;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Section ---------- */
.cbs-section {
  /* max-width: 80rem; */
  max-width: 1240px;

  margin: 0 auto 4.5rem;
  padding: 4.5rem 50px;
}

/* ---------- Header ---------- */
.cbs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.cbs-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1125rem;
  text-transform: uppercase;
  color: #7B7B7B;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity .7s ease, transform .7s ease;
}

.cbs-heading {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.0625rem;
  color: #111111;
  max-width: 26.25rem;
}

/* word-by-word masked rise */
.cbs-heading .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.cbs-heading .w>span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}

.cbs-intro {
  width: 19.375rem;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #555555;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .8s ease .35s, transform .8s ease .35s;
}

/* revealed state (added by JS) */
.is-revealed .cbs-label {
  opacity: 1;
  transform: none;
}

.is-revealed .cbs-heading .w>span {
  transform: translateY(0);
}

.is-revealed .cbs-intro {
  opacity: 1;
  transform: none;
}

/* ---------- Grid & columns ---------- */
.cbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3rem;
}

.cbs-col {
  display: flex;
  flex-direction: column;
  height: 33.75rem;
}

/* ---------- Images ---------- */
.cbs-media {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 10.625rem;
  border-radius: 1.25rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .5s ease, box-shadow .5s ease;
}

/* curtain wipe overlay */
.cbs-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
  z-index: 2;
}

.cbs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.18);
  transition: transform 1.4s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

/* reveal states, staggered per column via CSS var --d */
.cbs-col {
  --d: 0s;
}

.cbs-col.in .cbs-media::after {
  transform: scaleY(0);
  transition-delay: var(--d);
}

.cbs-col.in .cbs-media img {
  transform: scale(1);
  transition-delay: var(--d);
}

/* hover: gentle lift + zoom */
.cbs-media:hover {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .12);
}

.cbs-col.in .cbs-media:hover img {
  transform: scale(1.06);
  transition-duration: .8s;
  transition-delay: 0s;
}

/* Left/Right: image top → content */
.cbs-col--side .cbs-media {
  margin-bottom: 1rem;
}

/* Middle: content top → image */
.cbs-col--middle .cbs-content {
  margin-bottom: 1rem;
}

/* ---------- Content ---------- */
.cbs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

/* staggered fade-up of content children */
.cbs-content>* {
  opacity: 0;
  transform: translateY(1.125rem);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.cbs-col.in .cbs-content>* {
  opacity: 1;
  transform: none;
}

.cbs-col.in .cbs-content>*:nth-child(1) {
  transition-delay: calc(var(--d) + .25s);
}

.cbs-col.in .cbs-content>*:nth-child(2) {
  transition-delay: calc(var(--d) + .35s);
}

.cbs-col.in .cbs-content>*:nth-child(3) {
  transition-delay: calc(var(--d) + .45s);
}

.cbs-col.in .cbs-content>*:nth-child(4) {
  transition-delay: calc(var(--d) + .55s);
}

.cbs-category {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09375rem;
  color: #8A8A8A;
  margin-bottom: 0.5rem;
  transition: letter-spacing .4s ease, color .4s ease,
    opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

/* micro-interaction: tracking expands when hovering the column */
.cbs-col:hover .cbs-category {
  letter-spacing: 0.1875rem;
  color: #555;
}

.cbs-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  max-width: 92%;
  margin-bottom: 0.75rem;
}

.cbs-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #666666;
  margin-bottom: 1.125rem;
}

/* ---------- Link with arrow-swap + underline draw ---------- */
.cbs-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  padding-bottom: 0.125rem;
}

/* underline draws in from the left */
.cbs-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.cbs-link:hover::after {
  transform: scaleX(1);
}

/* arrow swap: old arrow flies out →, clone flies in from ← */
.cbs-link .arrow-box {
  position: relative;
  width: 1em;
  height: 1em;
  overflow: hidden;
  display: inline-block;
}

.cbs-link .arrow-box span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.cbs-link .arrow-box span:nth-child(2) {
  transform: translate(-110%, 110%);
}

.cbs-link:hover .arrow-box span:nth-child(1) {
  transform: translate(110%, -110%);
}

.cbs-link:hover .arrow-box span:nth-child(2) {
  transform: translate(0, 0);
}

/* ============ Responsive ============ */
@media (max-width: 89.9375em) and (min-width: 64em) {
  .cbs-heading {
    font-size: 2.5rem;
  }

  .cbs-col {
    height: 31.25rem;
  }
}

@media (max-width: 63.9375em) and (min-width: 48em) {
  .cbs-section {
    padding: 2rem;
  }

  .cbs-heading {
    font-size: 2.125rem;
  }

  .cbs-header {
    flex-direction: column;
  }

  .cbs-intro {
    width: 100%;
    max-width: 26.25rem;
  }

  .cbs-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 2.5rem;
  }

  .cbs-col {
    height: 30rem;
  }
}

@media (max-width: 47.9375em) {
  .cbs-section {
    padding: 1.25rem;
  }

  .cbs-heading {
    font-size: 1.875rem;
  }

  .cbs-header {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .cbs-intro {
    width: 100%;
    font-size: 0.9375rem;
  }

  .cbs-desc {
    font-size: 0.9375rem;
  }

  .cbs-grid {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .cbs-col {
    height: auto;
  }

  .cbs-media {
    flex: 0 0 auto;
    height: 13.75rem;
    min-height: 0;
  }

  .cbs-col--middle {
    flex-direction: column-reverse;
  }

  .cbs-col--middle .cbs-media {
    margin-bottom: 1rem;
  }

  .cbs-col--middle .cbs-content {
    margin-bottom: 0;
  }
}

/* ---------- Reduced motion: show everything instantly ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .cbs-label,
  .cbs-intro,
  .cbs-content>* {
    opacity: 1 !important;
    transform: none !important;
  }

  .cbs-heading .w>span {
    transform: none !important;
  }

  .cbs-media::after {
    display: none !important;
  }

  .cbs-media img {
    transform: none !important;
  }
}





/* hero section */


:root {
  --color-bg: #FAFAF8;
  --color-heading: #111111;
  --color-accent: #0B5A2A;
  --color-accent-light: #E8F2EB;
  --color-body: #666666;
  --color-pill-border: #9AA58D;
  --color-ring: #DDE5DA;
  --color-white: #FFFFFF;
  --radius-pill: 999px;
  --radius-btn: 0.625rem;
  --shadow-card: 0 0.5rem 1.5625rem rgba(0, 0, 0, .08);
  --shadow-logo: 0 1.5625rem 3.75rem rgba(0, 0, 0, .12);
  --tr: 0.35s cubic-bezier(.4, 0, .2, 1);
  --ring-inner: 7.25rem;
  --ring-mid: 10.25rem;
  --ring-outer: 13.25rem;
  --rs: 1.15;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  background: var(--color-bg);
  color: var(--color-heading);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin-top: 50px;

}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ---------- Navbar ---------- */
.nav {
  background: var(--color-white);
}

.nav__inner {
  max-width: 87.5rem;
  margin: auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

.nav__logo img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-size: .95rem;
  font-weight: 500;
  color: #9aa5a0;
  transition: color .25s;
}

.nav__links a:hover {
  color: var(--color-heading);
}

.nav__links a.is-active {
  color: var(--color-accent);
  font-weight: 700;
}

.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav__search {
  display: flex;
  align-items: center;
  color: #9aa5a0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__search svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav__login {
  font-size: .95rem;
  color: #9aa5a0;
  transition: color .25s;
}

.nav__login:hover {
  color: var(--color-heading);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  height: 2.9rem;
  padding: 0 1.4rem;
  background: #0B3D1E;
  color: var(--color-white);
  border-radius: .5rem;
  font-size: .95rem;
  font-weight: 600;
  transition: transform .3s, background .3s;
}

.nav__cta:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  border-radius: 0 0 2.5rem 2.5rem;
  background: var(--color-bg);
}

.hero__container {
  /* border: 2px solid red; */
  max-width: 87.5rem;
  margin: 100px auto 0;
  padding-top: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 3.5vw, 3.5rem);
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  animation: heroFadeUp .8s ease-out both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero__content {
  flex: 0 1 50%;
  min-width: 0;
}

.hero__visual {
  flex: 0 1 50%;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hero__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero__accent {
  color: var(--color-accent);
}

.hero__paragraph {
  max-width: 35rem;
  font-size: 16px;
  color: #000;
  line-height: 1.65;
  margin-bottom: 24px;
  /* border: 2px solid red; */

}

.hero__eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  color: var(--color-heading);
  /* border: 2px solid red; */

}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-bottom: 16px;
  /* border: 2px solid red; */

}

.pill {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 1rem;
  border: 1px solid var(--color-pill-border);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--color-accent);
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
  cursor: default;

}

.pill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ---------- Dropdown ---------- */
.dropdown {
  position: relative;
  max-width: 558px;
  margin-bottom: 33px;
  /* border: 2px solid red; */

}

.dropdown__shell {
  position: relative;
  border-radius: var(--radius-pill);
}

.dropdown__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from var(--spin, 0deg), #0B5A2A, #4CAF50, #A5D6A7, #0B5A2A);
  opacity: 0;
  transition: opacity .4s;
  animation: borderSpin 3s linear infinite paused;
}

@property --spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderSpin {
  to {
    --spin: 360deg;
  }
}

.dropdown:hover .dropdown__shell::before,
.dropdown.is-open .dropdown__shell::before {
  opacity: 1;
  animation-play-state: running;
}

.dropdown__toggle {
  position: relative;
  z-index: 21;
  width: 100%;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .3125rem 0 1.25rem;
  background: var(--color-white);
  border: 1px solid #E7E9E5;
  border-radius: var(--radius-pill);
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  cursor: pointer;
  transition: transform .4s;
}

.dropdown__toggle:active {
  transform: translateY(0) scale(.985) !important;
}

.dropdown.is-open .dropdown__toggle {
  transform: translateY(0);
}

.dropdown__label {
  font-size: .875rem;
  color: var(--color-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  flex: 1;
  position: relative;
}

.dropdown__label[data-placeholder="true"] {
  color: #9a9a9a;
}

.dropdown__label[data-placeholder="true"]::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #0B5A2A;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: caretBlink 1s step-end infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.dropdown__label.swap-in {
  animation: labelSwap .45s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes labelSwap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.dropdown__arrow {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: #0B5A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr);
}

.dropdown__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .45) 0%, transparent 65%);
  transform: scale(0);
  opacity: 0;
}

.dropdown__toggle:active .dropdown__arrow::after {
  animation: rippleFx .5s ease-out;
}

@keyframes rippleFx {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.dropdown__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
  overflow: visible;
  transform-style: preserve-3d;
  animation: flipLoop 3.2s ease-in-out infinite;
}

.dropdown__toggle:hover .dropdown__arrow svg {
  animation-duration: 1.4s;
}

@keyframes flipLoop {
  0% {
    transform: rotateY(0);
  }

  45% {
    transform: rotateY(360deg);
  }

  55% {
    transform: rotateY(360deg);
  }

  100% {
    transform: rotateY(720deg);
  }
}

.dropdown__toggle:hover .dropdown__arrow {
  transform: scale(1.08);
}

.dropdown.is-open .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown.is-open .dropdown__toggle:hover .dropdown__arrow {
  transform: rotate(180deg) scale(1.08);
}

.dropdown__list {
  position: absolute;
  top: 1.8rem;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 0 .6rem;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0 round 1.5rem);
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1), opacity .3s, clip-path .55s cubic-bezier(.34, 1.56, .64, 1), visibility 0s linear .5s, padding .5s;
}

.dropdown.is-open .dropdown__list {
  position: absolute;
  top: 1.8rem;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.3rem .6rem .6rem;
  max-height: min(26rem, 60vh);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0 round 1.5rem);
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1), opacity .25s, clip-path .55s cubic-bezier(.34, 1.56, .64, 1), padding .5s;
}

.dropdown__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  border-radius: .85rem;
  font-size: .9375rem;
  color: #333;
  cursor: pointer;
  transition: background .25s, color .25s, padding-left .3s cubic-bezier(.34, 1.56, .64, 1);
  opacity: 0;
  transform: translateY(10px);
}

.dropdown.is-open .dropdown__option {
  opacity: 1;
  transform: none;
  transition: background .25s, color .25s, padding-left .3s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease var(--d, 0s), transform .45s cubic-bezier(.34, 1.56, .64, 1) var(--d, 0s);
}

.dropdown__option::before {
  content: "";
  position: absolute;
  left: .15rem;
  top: 50%;
  width: .2rem;
  height: 0;
  border-radius: .2rem;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: height .3s cubic-bezier(.34, 1.56, .64, 1);
}

.dropdown__option:hover::before,
.dropdown__option.is-focused::before {
  height: 55%;
}

.dropdown__option:hover,
.dropdown__option.is-focused {
  background: var(--color-accent-light);
  padding-left: 1.4rem;
  color: #0B5A2A;
}

.dropdown__option .opt-check {
  margin-left: auto;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.dropdown__option .opt-check path {
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}

.dropdown__option[aria-selected="true"] {
  background: var(--color-accent);
  color: var(--color-white);
}

.dropdown__option[aria-selected="true"]::before {
  background: #fff;
  height: 55%;
}

.dropdown__option[aria-selected="true"] .opt-check {
  animation: checkPop .5s cubic-bezier(.34, 1.56, .64, 1);
}

.dropdown__option[aria-selected="true"] .opt-check path {
  animation: drawCheck .4s ease .1s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkPop {
  0% {
    transform: scale(0) rotate(-40deg);
  }

  70% {
    transform: scale(1.25) rotate(8deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.dropdown.pulse .dropdown__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(11, 90, 42, .5);
  animation: selectPulse .7s ease-out forwards;
  pointer-events: none;
}

@keyframes selectPulse {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(1.06);
  }
}

/* ---------- Buttons ---------- */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  padding: 0 1.375rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 600;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr);
  --mx: 0px;
  --my: 0px;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.25) translateY(100%);
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
  animation: sweep-move 1s linear infinite alternate;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn.is-magnet {
  transform: translate(var(--mx), var(--my)) translateY(-.1875rem);
}

.btn:active {
  transform: scale(.96) !important;
}


.btn--primary:hover {
  transform: translateY(-.1875rem);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn--secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-.1875rem);
}

/* ---------- Orbit ---------- */
.orbit {
  position: relative;
  width: calc(32rem * var(--rs));
  height: calc(27rem * var(--rs));
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(1rem * var(--rs));
}

.orbit__glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(11, 90, 42, .08);
  filter: blur(5rem);
  pointer-events: none;
}

.orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(8, 63, 20, .14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit__ring--inner {
  width: calc(var(--ring-inner) * 2 * var(--rs));
  height: calc(var(--ring-inner) * 2 * var(--rs));
}

.orbit__ring--mid {
  width: calc(var(--ring-mid) * 2 * var(--rs));
  height: calc(var(--ring-mid) * 2 * var(--rs));
}

.orbit__ring--outer {
  width: calc(var(--ring-outer) * 2 * var(--rs));
  height: calc(var(--ring-outer) * 2 * var(--rs));
}

.orbit__track {
  position: absolute;
  inset: 0;
}

.orbit__track--inner {
  animation: spinCW 40s linear infinite;
}

.orbit__track--mid {
  animation: spinCCW 40s linear infinite;
}

.orbit__track--outer {
  animation: spinCW 40s linear infinite;
}

@keyframes spinCW {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCCW {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }
}

.orbit-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateX(calc(var(--radius) * var(--rs))) rotate(calc(-1 * var(--angle)));
}

.orbit-pill>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 1.875rem;
  background: var(--color-white);
  border: 1px solid #DBE4DC;
  border-radius: 2.06rem;
  box-shadow: 0 .5rem 1.25rem rgba(8, 63, 20, .08);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .05rem;
  text-transform: uppercase;
  color: #083F14;
  transform: translate(-50%, -50%) rotate(calc(var(--angle) + 90deg));
}

.orbit__center {
  position: relative;
  z-index: 5;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 1.5rem 4.5rem rgba(8, 63, 20, .22), inset 0 0 0 .45rem rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: centerBreathe 4s ease-in-out infinite;
}

.orbit__center img {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
}

@keyframes centerBreathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

/* ---------- Float cards ---------- */
.float-card {
  position: absolute;
  z-index: 6;
  width: 8.75rem;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #DBE4DC;
  border-radius: .75rem;
  padding: .75rem .8rem .85rem 1.6rem;
  box-shadow: 0 1.5rem 4rem rgba(7, 52, 17, .09);
  animation: floatY 5s ease-in-out infinite alternate;
}

.float-card__label {
  position: relative;
  font-size: .5625rem;
  color: #5F6B62;
  margin-bottom: .25rem;
  white-space: nowrap;
}

.float-card .dot {
  position: absolute;
  left: -0.85rem;
  top: .12rem;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #5B6D49;
  box-shadow: 0 0 0 .25rem #E7F6DE;
}

.float-card__value {
  font-family: "Montserrat Variable", "Montserrat", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: #101713;
  line-height: 1.25;
}

.float-card--tl {
  top: 16%;
  left: 2%;
}

.float-card--bl {
  bottom: 14%;
  left: 9%;
  animation-delay: 1.2s;
}

.float-card--r {
  top: 36%;
  right: -2%;
  animation-delay: 2.4s;
}

@keyframes floatY {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-.5rem);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ===== LAPTOP (≤1280px) ===== */
@media (max-width: 80rem) {
  .hero__container {
    gap: 2.25rem;
  }

  .hero__heading {
    font-size: 2.35rem;
  }

  .orbit {
    width: 27rem;
    height: 23rem;
  }

  :root {
    --rs: .88;
  }

  .orbit__center {
    width: 7.25rem;
    height: 7.25rem;
  }

  .orbit__center img {
    width: 5.375rem;
    height: 5.375rem;
  }

  .float-card {
    width: 7.75rem;
    padding: .625rem .7rem .75rem 1.4rem;
  }
}

/* ===== TABLET (≤1024px) ===== */
@media (max-width: 64rem) {
  .nav__inner {
    padding: 1rem 1.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__login {
    display: none;
  }

  .nav__cta {
    height: 2.6rem;
    padding: 0 1.1rem;
    font-size: .875rem;
  }

  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    padding-left: 50px;
    padding-right: 50px;
    gap: 0;
  }

  .hero__content,
  .hero__visual {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero__content {
    max-width: 34rem;
  }

  .hero__heading {
    font-size: 2.15rem;
  }

  .hero__paragraph {
    max-width: 30rem;
  }

  .hero__visual {
    justify-content: center;
    margin-top: 2.5rem;
  }

  .orbit {
    width: 24rem;
    height: 21rem;
  }

  :root {
    --rs: .8;
  }
}

/* ===== TABLET / large mobile (≤768px) ===== */
@media (max-width: 48rem) {
  .nav__inner {
    padding: .875rem 1.25rem;
  }

  .hero__container {
    padding: 2rem 1.25rem 4rem;
    /* increased bottom padding */
  }

  .hero__heading {
    font-size: 1.85rem;
    letter-spacing: -.015em;
  }

  .hero__paragraph {
    font-size: .875rem;
    max-width: 26rem;
  }

  .hero__pills {
    gap: .5rem;
  }

  .pill {
    height: 2.125rem;
    padding: 0 .875rem;
    font-size: .75rem;
  }

  .dropdown__toggle {
    height: 3rem;
  }

  .btn {
    height: 2.75rem;
    padding: 0 1.25rem;
    font-size: .8125rem;
  }

  .orbit {
    width: 20rem;
    height: 17.5rem;
  }

  :root {
    --rs: .72;
  }

  .orbit__center {
    width: 5.75rem;
    height: 5.75rem;
  }

  .orbit__center img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .float-card--tl {
    top: 8%;
    left: -5%;
  }

  .float-card--bl {
    bottom: 4%;
    left: -5%;
  }

  .float-card--r {
    top: 30%;
    right: 5%;
  }
}

/* ===== MOBILE (≤640px) ===== */
@media (max-width: 40rem) {
  .nav__inner {
    gap: .75rem;
  }

  .nav__cta {
    padding: 0 .9rem;
    font-size: .8125rem;
  }

  .nav__search {
    display: none;
  }

  .hero__container {
    padding: 1.75rem 1.25rem 4.5rem;
    /* increased bottom padding */
  }

  .hero__heading {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .hero__paragraph {
    max-width: 100%;
  }

  .hero__pills {
    margin-bottom: 1.25rem;
  }

  .dropdown {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .btn {
    width: 100%;
  }

  .hero__visual {
    margin-top: 2rem;
    margin-bottom: 3rem;
    /* add extra space for overlapping elements */
  }

  .orbit {
    width: 17.5rem;
    height: 15.5rem;
  }

  :root {
    --rs: .6;
  }

  .orbit__center {
    width: 5.25rem;
    height: 5.25rem;
  }

  .orbit__center img {
    width: 3.875rem;
    height: 3.875rem;
  }

  .float-card {
    transform: scale(0.85);
    /* scale down float cards on mobile */
  }
}

/* ===== SMALL MOBILE (≤400px) ===== */
@media (max-width: 25rem) {
  .nav__inner {
    padding: .75rem 1rem;
  }

  .hero__container {
    padding: 1.5rem 1rem 2rem;
  }

  .hero__heading {
    font-size: 1.4rem;
  }

  .hero__paragraph {
    font-size: .8125rem;
  }

  .hero__eyebrow {
    font-size: .625rem;
  }

  .pill {
    height: 1.875rem;
    padding: 0 .75rem;
    font-size: .6875rem;
  }

  .dropdown__toggle {
    height: 2.75rem;
    padding: 0 .25rem 0 1rem;
  }

  .dropdown__arrow {
    width: 2.25rem;
    height: 2.25rem;
  }

  .btn {
    height: 2.625rem;
    padding: 0 1rem;
    font-size: .75rem;
  }

  .orbit {
    width: 14.5rem;
    height: 13rem;
  }

  :root {
    --rs: .48;
  }

  .orbit__center {
    width: 4.5rem;
    height: 4.5rem;
  }

  .orbit__center img {
    width: 3.25rem;
    height: 3.25rem;
  }

  .float-card {
    padding: .5rem .6rem;
    width: 6.25rem;
  }

  .float-card__label {
    font-size: .5rem;
  }

  .float-card__value {
    font-size: .625rem;
  }

  .float-card--tl {
    left: 2%;
  }

  .float-card--bl {
    left: 2%;
  }

  .float-card--r {
    right: 8%;
  }
}

@keyframes sweep-move {
  from {
    transform: scale(1.25) translateY(100%);
  }

  to {
    transform: scale(1.25) translateY(-100%);
  }
}




/* =========================================
   FOOTER
========================================= */
.footer {
  font-family: "Montserrat";
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

/* ---- Top dark green section ---- */
.footer-top {
  background: #12380a;
  color: #fff;
  padding: 56px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto auto auto;
  gap: 48px;
}

.f-col a,
.f-col .f-head {
  white-space: nowrap;
}

/* SERVICES column pushed right */
.footer-grid>.f-col:nth-child(2) {
  padding-left: 170px;
}

.f-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.f-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #e9efe6;
  max-width: 380px;
  margin-bottom: 26px;
}

.f-news-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.f-news-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #e9efe6;
  margin-bottom: 16px;
}

.f-subscribe {
  display: flex;
  max-width: 300px;
}

.f-subscribe input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  background: #f5f2ea;
  color: #333;
  font-size: 14px;
  font-family: "Montserrat";
  outline: none;
}

.f-subscribe input::placeholder {
  color: #9aa79a;
}

.f-subscribe button {
  padding: 11px 18px;
  border: none;
  border-radius: 6px;
  margin-left: -6px;
  background: #1f5c13;
  color: #fff;
  font-size: 14px;
  font-family: "Montserrat";
  cursor: pointer;
  transition: background .2s ease;
}

.f-subscribe button:hover {
  background: #2a7a1a;
}

.f-col {
  display: flex;
  flex-direction: column;
}

.f-head {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
  color: #fff;
}

.f-head-gap {
  margin-top: 28px;
}

.f-head-normal {
  text-transform: none;
}

.f-col a {
  color: #eef3ec;
  text-decoration: none;
  font-size: 15.5px;
  line-height: 1.4;
  margin-bottom: 16px;
  transition: color .2s ease, transform .2s ease;
}

.f-col a:hover {
  color: #a8d99a;
}

/* ---- Cream middle strip ---- */
.footer-mid {
  background: #f5f2ea;
  padding: 22px 0;
}

.footer-mid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.f-follow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.f-follow>span {
  font-size: 16px;
  color: #1a1a1a;
  margin-right: 8px;
}

.f-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #12380a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease;
}

.f-social svg {
  width: 17px;
  height: 17px;
}

.f-social:hover {
  transform: scale(1.15);
  background: #1f5c13;
}

.f-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.f-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #12380a;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease;
}

.f-contact a:hover {
  color: #2a7a1a;
}

.f-ci {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ---- Bottom dark strip ---- */
.footer-bottom {
  background: #12380a;
  padding: 34px 0 44px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.f-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.f-legal a {
  color: #eef3ec;
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease;
}

.f-legal a:hover {
  color: #a8d99a;
}

.f-legal span {
  color: #eef3ec;
  font-size: 14px;
}

.f-copy {
  color: #eef3ec;
  font-size: 15px;
}

/* =========================================
   FOOTER RESPONSIVE
========================================= */
/* Laptop */
@media (max-width: 1280px) {
  .footer-inner {
    padding: 0 48px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-grid>.f-col:nth-child(2) {
    padding-left: 60px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-grid>.f-col:nth-child(2) {
    padding-left: 0;
  }

  .f-col a,
  .f-col .f-head {
    white-space: normal;
  }

  .f-brand {
    grid-column: 1 / -1;
  }

  .f-desc {
    max-width: 520px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    padding: 44px 0 48px;
  }

  /* mobile grid system: brand full width, link columns 2-per-row */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .f-brand {
    grid-column: 1 / -1;
  }

  .f-col a {
    font-size: 14.5px;
    margin-bottom: 13px;
  }

  .f-head {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .f-subscribe {
    max-width: 100%;
  }

  .footer-mid-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-legal {
    row-gap: 6px;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .f-follow {
    flex-wrap: wrap;
  }

  .f-contact a {
    font-size: 14.5px;
    word-break: break-all;
  }
}

/* ==========================================================================
   HOME FEATURES — ARROW DEFAULT + HOVER INTERACTION FIX
   Default:
   - light card/circle border
   - black text
   - green diagonal arrow

   Hover/focus:
   - green card/circle border
   - green text
   - arrow becomes horizontal
   ========================================================================== */

/* ----------------------------------------------------------
   DEFAULT CARD STATE
   ---------------------------------------------------------- */

.features .feature-card__shape-surface {
  fill: #fbfbfa;
  stroke: #e8e8e8;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;

  transition:
    stroke 0.35s ease;
}

.features .feature-card__title,
.features .feature-card__desc {
  color: #000000;

  transition:
    color 0.35s ease;
}

/* ----------------------------------------------------------
   DEFAULT ACTION CIRCLE
   ---------------------------------------------------------- */

.features .feature-card__action {
  color: #0c3c01;

  transform: translateY(0);

  transition:
    transform 0.35s ease;
}

/* Circle is light grey before hover */
.features .feature-card__action-svg circle {
  stroke: #e8e8e8 !important;

  transition:
    stroke 0.35s ease;
}

/* Arrow icon remains green */
.features .feature-card__action-svg path {
  stroke: #0c3c01 !important;

  transform-box: fill-box;
  transform-origin: center;

  transition:
    transform 0.35s ease;
}

/* ----------------------------------------------------------
   DEFAULT DIAGONAL ARROW
   ---------------------------------------------------------- */

/* Left cards: ↖ */
.features .feature-card--left .feature-card__action-svg path {
  transform: rotate(-45deg);
}

/* Right cards: ↗
   Right-side SVG is already mirrored, so the same rotation
   creates the correct upward-left direction.
*/
.features .feature-card--right .feature-card__action-svg path {
  transform: rotate(-45deg);
}

/* ----------------------------------------------------------
   HOVER / KEYBOARD FOCUS CARD STATE
   ---------------------------------------------------------- */

.features .feature-card:hover .feature-card__shape-surface,
.features .feature-card:focus-within .feature-card__shape-surface {
  stroke: #0c3c01;
}

.features .feature-card:hover .feature-card__title,
.features .feature-card:hover .feature-card__desc,
.features .feature-card:focus-within .feature-card__title,
.features .feature-card:focus-within .feature-card__desc {
  color: #0c3c01;
}

/* Circle outline changes to green */
.features .feature-card:hover .feature-card__action-svg circle,
.features .feature-card:focus-within .feature-card__action-svg circle {
  stroke: #0c3c01 !important;
}

/* Arrow becomes horizontal */
.features .feature-card:hover .feature-card__action-svg path,
.features .feature-card:focus-within .feature-card__action-svg path {
  transform: rotate(0deg);
}

/* Slight circle lift */
.features .feature-card:hover .feature-card__action,
.features .feature-card:focus-within .feature-card__action {
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   REMOVE PERMANENT ACTIVE APPEARANCE
   ---------------------------------------------------------- */

.features .feature-card.is-active .feature-card__shape-surface {
  stroke: #e8e8e8;
}

.features .feature-card.is-active .feature-card__title,
.features .feature-card.is-active .feature-card__desc {
  color: #000000;
}

.features .feature-card.is-active .feature-card__action-svg circle {
  stroke: #e8e8e8 !important;
}

.features .feature-card--left.is-active .feature-card__action-svg path,
.features .feature-card--right.is-active .feature-card__action-svg path {
  transform: rotate(-45deg);
}

/* Active appearance only while hovered or focused */
.features .feature-card.is-active:hover .feature-card__shape-surface,
.features .feature-card.is-active:focus-within .feature-card__shape-surface {
  stroke: #0c3c01;
}

.features .feature-card.is-active:hover .feature-card__title,
.features .feature-card.is-active:hover .feature-card__desc,
.features .feature-card.is-active:focus-within .feature-card__title,
.features .feature-card.is-active:focus-within .feature-card__desc {
  color: #0c3c01;
}

.features .feature-card.is-active:hover .feature-card__action-svg circle,
.features .feature-card.is-active:focus-within .feature-card__action-svg circle {
  stroke: #0c3c01 !important;
}

.features .feature-card.is-active:hover .feature-card__action-svg path,
.features .feature-card.is-active:focus-within .feature-card__action-svg path {
  transform: rotate(0deg);
}

/* ----------------------------------------------------------
   TOUCH DEVICES
   Avoid cards remaining visually hovered after tapping.
   ---------------------------------------------------------- */

@media (hover: none) {
  .features .feature-card__shape-surface {
    stroke: #e8e8e8;
  }

  .features .feature-card__title,
  .features .feature-card__desc {
    color: #000000;
  }

  .features .feature-card__action-svg circle {
    stroke: #e8e8e8 !important;
  }

  .features .feature-card--left .feature-card__action-svg path,
  .features .feature-card--right .feature-card__action-svg path {
    transform: rotate(-45deg);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .features .feature-card__shape-surface,
  .features .feature-card__title,
  .features .feature-card__desc,
  .features .feature-card__action,
  .features .feature-card__action-svg circle,
  .features .feature-card__action-svg path {
    transition: none !important;
  }
}

/* ============================================================
   ECT HOMEPAGE — FIGMA BACKGROUND COLOR NORMALIZATION
   Figma homepage node: 2086:820

   Scope:
   - Background, surface, fill and footer-strip colors only
   - Existing dimensions, typography, animation, card geometry,
     responsive behavior and JavaScript are preserved
============================================================ */
:root {
  --ect-bg-page: #FFFFFF;
  --ect-bg-soft: #FBFBFA;
  --ect-bg-section: #FBFCFB;
  --ect-bg-muted: #F1F2ED;
  --ect-bg-clients: rgba(241, 242, 237, 0.35);
  --ect-bg-footer-strip: #F4F3EF;
  --ect-brand-green: #0C3C01;
  --ect-brand-green-dark: #083F14;
}

/* ---------- Global page canvas ---------- */
html,
body {
  background: var(--ect-bg-page);
}

/* ---------- Navigation surfaces ---------- */
.navbar,
.mega,
.mobile-panel {
  background: var(--ect-bg-page);
}

.btn-light,
.hamburger {
  background: var(--ect-bg-muted);
}

/* ---------- Main homepage hero ---------- */
.hero {
  background: var(--ect-bg-soft);
}

/*
  Keep the Figma light hero surface even though the older root token
  uses a different off-white value elsewhere in the stylesheet.
*/
.hero,
.hero__container {
  --color-bg: var(--ect-bg-soft);
}

/* ---------- Business challenges / Features ---------- */
.features {
  --features-surface: var(--ect-bg-page);
  --feature-card-fill: var(--ect-bg-soft);
  background: var(--ect-bg-page);
}

.feature-card__shape-surface {
  fill: var(--ect-bg-soft);
}

.features__image-wrapper {
  background: var(--ect-bg-muted);
}

/* ---------- Diagnostic video section ---------- */
.ect-hero {
  background: var(--ect-brand-green);
}

.ect-hero__overlay {
  background:
    radial-gradient(ellipse at center,
      rgba(12, 60, 1, 0.30) 0%,
      rgba(12, 60, 1, 0.72) 100%);
}

/* ---------- Three connected systems ---------- */
.cbs-section {
  background: var(--ect-bg-page);
}

.cbs-col {
  /* background: var(--ect-bg-soft); */
  border-radius: 24px;
}

.cbs-media::after {
  background: var(--ect-bg-soft);
}

/* ---------- What ECT Deliver ---------- */
.ect-services {
  --ect-section: var(--ect-bg-section);
  --ect-card-fill: var(--ect-bg-soft);
  background: var(--ect-bg-section);
}

/* The service-card SVGs already contain #FBFBFA.
   This mobile fallback keeps the same Figma surface. */
@media (max-width: 700px) {

  .ect-services .service-card,
  .ect-services .service-card.is-active {
    background: var(--ect-bg-soft) !important;
  }
}

/* ---------- Practical systems / ECT story ---------- */
.custom-cbs-section {
  background: var(--ect-bg-page) !important;
}

.custom-cbs-image-wrap {
  background: var(--ect-bg-muted);
}

/* ---------- Business Solutions ---------- */
.ect-products {
  --ect-products-bg: var(--ect-bg-section);
  --ect-products-white: var(--ect-bg-page);
  background: var(--ect-bg-section);
}

.ect-pcard__body::before {
  /* Card vector remains white as in Figma. */
  filter: none;
}

.ect-pcard__imgwrap {
  background: var(--ect-bg-page);
}

/* ---------- ECT Work ---------- */
.work {
  background: var(--ect-bg-page);
}

.work .card__imgwrap {
  background: var(--ect-bg-page);
}

/* ---------- Client / testimonial section ---------- */
.ect-clients {
  --ect-bg: var(--ect-bg-clients);
  --ect-card-bg: var(--ect-bg-page);
  --ect-green: var(--ect-brand-green);
  --ect-green-dark: var(--ect-brand-green-dark);
  background: var(--ect-bg-clients);
}

.clients {
  background: var(--ect-bg-page);
}

.ccard {
  background: var(--ect-bg-soft);
}

.ccard__date {
  background: var(--ect-bg-soft);
}

/* ---------- Blog / article card surfaces ---------- */
.blog-section,
.ect-blog,
.business-insights {
  background: var(--ect-bg-page);
}

/* ---------- CTA transition into footer ---------- */
.ect-cta-top-bg {
  background: var(--ect-bg-page);
}

.ect-cta-bot-bg {
  background: var(--ect-brand-green);
}

.ect-cta-card {
  background:
    linear-gradient(rgba(12, 60, 1, 0.54), rgba(12, 60, 1, 0.54)),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1400&q=80') center / cover no-repeat;
}

.ect-btn-dark {
  background: var(--ect-brand-green);
}

.ect-btn-light {
  background: var(--ect-bg-muted);
}

/* ---------- Footer ---------- */
.ect-footer {
  background: var(--ect-brand-green);
}

.ect-f-nl-form input {
  background: #EAEBE4;
}

.ect-f-nl-form button {
  background: #2D6B47;
}

.ect-f-nl-form button:hover {
  background: var(--ect-brand-green-dark);
}

/* Figma middle contact/social strip */
.ect-social-bar {
  background: var(--ect-bg-footer-strip);
}

.ect-s-icons a {
  background: var(--ect-brand-green);
}

.ect-s-icons a:hover {
  background: var(--ect-brand-green-dark);
}

.ect-c-item:hover {
  color: var(--ect-brand-green);
}

.ect-c-item svg {
  fill: var(--ect-brand-green);
}

/* Policies and copyright remain inside the dark footer area in Figma. */
.ect-bottom-bar {
  background: var(--ect-brand-green);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.ect-b-links,
.ect-b-links a,
.ect-b-copy {
  color: #FFFFFF;
}

.ect-b-links a:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.55);
}

.ect-b-links a:hover {
  color: #FFFFFF;
}

/* ============================================================
   ECT BUSINESS SOLUTIONS — SAME-IMAGE HOVER RESTORE
   Video-matched behavior:
   - Keep the current image; never swap image sources
   - Small upward hover
   - Soft drop shadow
   - Very subtle image zoom
   - Keyboard and touch support through .is-interacting
============================================================ */

.ect-products {
  overflow: visible;
}

.ect-products__grid {
  overflow: visible;
}

/* Card movement and shadow */
.ect-products .ect-pcard {
  position: relative;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ect-products .ect-pcard:hover,
.ect-products .ect-pcard:focus-within,
.ect-products .ect-pcard.is-interacting {
  z-index: 3;
  transform: translate3d(0, -8px, 0);
  filter: drop-shadow(0 16px 22px rgba(12, 60, 1, 0.13));
}

/* Keep the same image and add only a mild zoom */
.ect-products .ect-pcard__imgwrap {
  overflow: hidden;
}

.ect-products .ect-pcard__img {
  transform: scale(1);
  transform-origin: center center;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease;
  will-change: transform;
}

.ect-products .ect-pcard:hover .ect-pcard__img,
.ect-products .ect-pcard:focus-within .ect-pcard__img,
.ect-products .ect-pcard.is-interacting .ect-pcard__img {
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.01);
}

/* Small button reaction, without changing its dimensions or position */
.ect-products .ect-pcard__cta {
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.ect-products .ect-pcard:hover .ect-pcard__cta,
.ect-products .ect-pcard:focus-within .ect-pcard__cta,
.ect-products .ect-pcard.is-interacting .ect-pcard__cta {
  transform: translateY(-2px);
  filter: drop-shadow(0 7px 10px rgba(12, 60, 1, 0.16));
}

/* Do not allow any alternate-image layer to appear */
.ect-products .ect-pcard__img-alt,
.ect-products [data-hover-image],
.ect-products .ect-pcard__hover-image {
  display: none !important;
}

/* Avoid clipping when the card rises */
.ect-products__grid {
  padding-top: 12px;
  margin-top: -12px;
}

/* Touch devices: JS adds .is-interacting briefly */
@media (hover: none),
(pointer: coarse) {
  .ect-products .ect-pcard:hover {
    transform: translate3d(0, 0, 0);
    filter: none;
  }

  .ect-products .ect-pcard.is-interacting {
    transform: translate3d(0, -5px, 0);
    filter: drop-shadow(0 12px 18px rgba(12, 60, 1, 0.12));
  }
}

@media (prefers-reduced-motion: reduce) {

  .ect-products .ect-pcard,
  .ect-products .ect-pcard__img,
  .ect-products .ect-pcard__cta {
    transition: none !important;
  }

  .ect-products .ect-pcard:hover,
  .ect-products .ect-pcard:focus-within,
  .ect-products .ect-pcard.is-interacting {
    transform: none;
  }

  .ect-products .ect-pcard:hover .ect-pcard__img,
  .ect-products .ect-pcard:focus-within .ect-pcard__img,
  .ect-products .ect-pcard.is-interacting .ect-pcard__img {
    transform: none;
  }
}