
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --navy: #0B1D3F;
      --navy2: #152B56;
      --navy3: #1E3A72;
      --green: #1A7A5E;
      --green2: #22A67C;
      --green3: #2EC993;
      --cream: #FAF8F3;
      --cream2: #F3EFE6;
      --cream3: #E8E0D0;
      --cream4: #DDD3BF;
      --txt: #1C1A16;
      --txt2: #6B6355;
      --bdr: rgba(11, 29, 63, .09);
      --fd: 'Cormorant Garamond', Georgia, serif;
      --fb: 'DM Sans', system-ui, sans-serif;
      --fn: 'Oswald', sans-serif;
      --r: 4px;
      --ease: .38s cubic-bezier(.4, 0, .2, 1)
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--cream);
      color: var(--txt);
      font-family: var(--fb);
      font-size: 15px;
      overflow-x: hidden;
      cursor: none
    }

    #cur {
      width: 8px;
      height: 8px;
      background: var(--green2);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%)
    }

    #cur2 {
      width: 30px;
      height: 30px;
      border: 1.5px solid var(--green2);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .28s, height .28s
    }

    /* Broken image fallback */
    img {
      background: var(--cream3)
    }

    img::after {
      content: '';
      display: block
    }

    img[src=''],
    img:not([src]),
    img.error-img {
      background: var(--cream3);
      position: relative
    }

    .nav-logo img {
      background: transparent !important
    }

    .foot-logo img {
      background: transparent !important
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 72px;
      height: 74px;
      transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
      background: rgba(11, 29, 63, .18);
      backdrop-filter: blur(18px);
      box-shadow: none
    }

    nav.scrolled {
      background: rgba(8, 20, 46, .97);
      backdrop-filter: blur(24px);
      box-shadow: 0 2px 24px rgba(0, 0, 0, .35)
    }

    nav.on-hero {
      background: rgba(11, 29, 63, .18);
      backdrop-filter: blur(14px);
      box-shadow: none
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0
    }

    .nav-logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
      display: block;
      max-width: 160px;
      transition: filter var(--ease);
      mix-blend-mode: normal
    }

    nav.on-hero .nav-logo img {
      mix-blend-mode: normal
    }

    .nav-mark {
      width: 32px;
      height: 32px;
      background: var(--green);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .nav-mark svg {
      width: 16px;
      height: 16px;
      color: #fff
    }

    .nav-name {
      font-family: var(--fd);
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -.3px;
      color: #fff;
      transition: color var(--ease)
    }

    nav.on-hero .nav-name {
      color: #fff
    }

    .nav-links {
      display: flex;
      gap: 34px;
      list-style: none
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(255, 255, 255, .8);
      position: relative;
      transition: color var(--ease)
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--green3);
      transition: width var(--ease)
    }

    .nav-links a:hover::after {
      width: 100%
    }

    nav.on-hero .nav-links a {
      color: rgba(255, 255, 255, .8)
    }

    nav.on-hero .nav-links a:hover {
      color: #fff
    }

    .nav-links a:hover {
      color: #fff
    }

    .nav-cta {
      background: var(--green);
      color: #fff;
      padding: 9px 26px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: background var(--ease), transform var(--ease)
    }

    .nav-cta:hover {
      background: var(--green2);
      transform: translateY(-1px)
    }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      z-index: 1001
    }

    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s
    }

    nav.on-hero .nav-burger span {
      background: #fff
    }

    .nav-burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .nav-burger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .nav-burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    nav.on-hero .nav-burger.open span {
      background: #fff
    }

    /* Mobile drawer */
    .mob-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--navy);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      padding: 90px 36px 40px;
      gap: 0;
      transition: right .4s cubic-bezier(.77, 0, .175, 1);
      box-shadow: -4px 0 30px rgba(0, 0, 0, .3)
    }

    .mob-drawer.open {
      right: 0
    }

    .mob-drawer a {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(255, 255, 255, .7);
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      transition: color .3s;
      display: block
    }

    .mob-drawer a:hover {
      color: var(--green3)
    }

    .mob-drawer .mob-logo {
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .mob-drawer .mob-logo img {
      height: 36px;
      width: auto;
      object-fit: contain;
      mix-blend-mode: screen;
      background: transparent
    }

    .mob-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .5);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s
    }

    .mob-overlay.open {
      opacity: 1;
      pointer-events: all
    }

    .mob-cta {
      margin-top: 28px !important;
      border: 1px solid var(--green) !important;
      border-bottom: 1px solid var(--green) !important;
      padding: 14px 0 !important;
      text-align: center;
      border-radius: 4px;
      color: var(--green3) !important
    }

    /* HERO SLIDER */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 720px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: var(--navy)
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.2s ease
    }

    .hero-slide.active {
      opacity: 1
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.06);
      transition: transform 8s ease
    }

    .hero-slide.active img {
      transform: scale(1)
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to right, rgba(11, 29, 63, .88) 0%, rgba(11, 29, 63, .55) 55%, rgba(11, 29, 63, .1) 100%), linear-gradient(to top, rgba(11, 29, 63, .6) 0%, transparent 40%)
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 72px 80px;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      gap: 0
    }

    .hero-left-col {
      max-width: 620px;
      width: 100%
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(46, 201, 147, .3);
      background: rgba(26, 122, 94, .15);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green3);
      margin-bottom: 28px;
      opacity: 0
    }

    .hero-tag-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green3);
      animation: blink 2s infinite
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .2
      }
    }

    .hero-h1 {
      font-family: var(--fd);
      font-size: clamp(52px, 7vw, 106px);
      font-weight: 600;
      line-height: .94;
      color: #fff;
      letter-spacing: -2px;
      overflow: hidden;
      max-width: 700px
    }

    .hero-h1 .line {
      display: block;
      overflow: hidden
    }

    .hero-h1 .line span {
      display: block
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--green3)
    }

    .hero-sub {
      font-size: clamp(14px, 1.3vw, 17px);
      font-weight: 300;
      line-height: 1.9;
      color: rgba(255, 255, 255, .6);
      max-width: 540px;
      margin-top: 24px;
      margin-bottom: 36px;
      opacity: 0
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      opacity: 0
    }

    .btn-g {
      background: var(--green);
      color: #fff;
      padding: 14px 38px;
      font-family: var(--fb);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: background var(--ease), transform var(--ease), box-shadow var(--ease)
    }

    .btn-g:hover {
      background: var(--green2);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(26, 122, 94, .35)
    }

    .btn-ghost {
      border: 1.5px solid rgba(255, 255, 255, .28);
      color: #fff;
      padding: 13px 32px;
      font-family: var(--fb);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: border-color var(--ease), background var(--ease)
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, .55);
      background: rgba(255, 255, 255, .06)
    }

    .hero-stats {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, .12);
      margin-top: 44px;
      padding-top: 26px;
      opacity: 0
    }

    .hero-stat {
      padding-right: 36px;
      margin-right: 36px;
      border-right: 1px solid rgba(255, 255, 255, .12)
    }

    .hero-stat:last-child {
      border-right: none;
      margin-right: 0;
      padding-right: 0
    }

    .hero-stat-n {
      font-family: var(--fn);
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: -.5px
    }

    .hero-stat-n em {
      font-style: normal;
      color: var(--green3)
    }

    .hero-stat-l {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-top: 4px
    }

    /* Slide label badge — top-left, same pill style as hero-tag */
    .hero-slide-label {
      position: absolute;
      top: 96px;
      left: 72px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(46, 201, 147, .3);
      background: rgba(26, 122, 94, .15);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green3);
      opacity: 0;
      transition: opacity .5s ease;
      backdrop-filter: blur(6px)
    }

    .hero-slide-label.visible {
      opacity: 1
    }

    .hero-slide-label-cat {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green3)
    }

    .hero-slide-label-sep {
      opacity: .45;
      font-size: 10px
    }

    .hero-slide-label-name {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green3)
    }

    /* Hero slider controls */
    .hero-slider-nav {
      position: absolute;
      bottom: 90px;
      right: 72px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .hero-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25);
      cursor: pointer;
      transition: background .3s, transform .3s
    }

    .hero-dot.active {
      background: var(--green3);
      transform: scale(1.5)
    }

    .hero-slider-arrows {
      position: absolute;
      bottom: 70px;
      top: 59;
      left: 72px;
      z-index: 3;
      display: flex;
      gap: 8px
    }

    .hero-arr {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 50%;
      background: rgba(0, 0, 0, .2);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      font-size: 13px;
      transition: background .3s, border-color .3s
    }

    .hero-arr:hover {
      background: var(--green);
      border-color: var(--green)
    }

    .hero-scroll {
      position: absolute;
      right: 72px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px
    }

    .scroll-track {
      width: 1px;
      height: 80px;
      background: rgba(255, 255, 255, .15);
      position: relative;
      overflow: hidden
    }

    .scroll-track::after {
      content: '';
      position: absolute;
      top: -100%;
      width: 100%;
      height: 100%;
      background: var(--green3);
      animation: scrollV 2.2s ease-in-out infinite
    }

    @keyframes scrollV {
      0% {
        top: -100%
      }

      100% {
        top: 100%
      }
    }

    .hero-scroll-txt {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      writing-mode: vertical-rl
    }

    /* STRIP */
    .strip {
      background: var(--navy);
      padding: 20px 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      overflow: hidden
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 9px;
      flex-shrink: 0
    }

    .strip-ic {
      width: 16px;
      height: 16px;
      color: var(--green2)
    }

    .strip-t {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .5px;
      color: rgba(255, 255, 255, .6)
    }

    .strip-sep {
      width: 1px;
      height: 16px;
      background: rgba(255, 255, 255, .12);
      flex-shrink: 0
    }

    /* COMMONS */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 16px
    }

    .eyebrow::before {
      content: '';
      width: 22px;
      height: 1.5px;
      background: var(--green)
    }

    .sh {
      font-family: var(--fd);
      font-size: clamp(36px, 4.2vw, 62px);
      font-weight: 600;
      line-height: 1.02;
      color: var(--navy);
      letter-spacing: -.5px;
      margin-bottom: 20px
    }

    .sd {
      font-size: 14px;
      line-height: 1.85;
      color: var(--txt2)
    }

    .btn-n {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--navy);
      color: #fff;
      padding: 12px 30px;
      font-family: var(--fb);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: background var(--ease), transform var(--ease)
    }

    .btn-n:hover {
      background: var(--navy3);
      transform: translateY(-2px)
    }

    .btn-n svg {
      width: 13px;
      height: 13px;
      transition: transform var(--ease)
    }

    .btn-n:hover svg {
      transform: translateX(4px)
    }

    .rv {
      opacity: 0;
      transform: translateY(32px)
    }

    .rvl {
      opacity: 0;
      transform: translateX(-40px)
    }

    .rvr {
      opacity: 0;
      transform: translateX(40px)
    }

    /* SERVICES */
    .svc {
      padding: 120px 72px;
      background: var(--cream)
    }

    .svc-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
      gap: 48px
    }

    .svc-top .sh {
      margin-bottom: 0
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--cream3)
    }

    .sc {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--navy);
      aspect-ratio: 4/5
    }

    .sc.wide {
      grid-column: span 2;
      aspect-ratio: auto;
      min-height: 460px
    }

    .sc-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.25, .46, .45, .94), filter .5s;
      filter: brightness(.6) saturate(.8)
    }

    .sc:hover .sc-bg {
      transform: scale(1.07);
      filter: brightness(.35) saturate(.6)
    }

    .sc-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 29, 63, .96) 0%, rgba(11, 29, 63, .2) 50%, transparent 100%);
      transition: background .5s
    }

    .sc:hover .sc-ov {
      background: linear-gradient(to top, rgba(11, 29, 63, 1) 25%, rgba(11, 29, 63, .7) 65%, rgba(11, 29, 63, .1) 100%)
    }

    .sc-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px 28px
    }

    .sc-num {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      color: var(--green2);
      margin-bottom: 8px;
      opacity: .7
    }

    .sc-name {
      font-family: var(--fd);
      font-size: clamp(20px, 2.1vw, 28px);
      font-weight: 600;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 8px
    }

    .sc-sub {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, .4);
      text-transform: uppercase;
      transition: color var(--ease)
    }

    .sc:hover .sc-sub {
      color: rgba(255, 255, 255, .72)
    }

    .sc-desc {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, .65);
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s ease, margin .4s
    }

    .sc:hover .sc-desc {
      max-height: 110px;
      margin-top: 14px
    }

    .sc-arr {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255, 255, 255, .22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 16px;
      opacity: 0;
      transform: translateY(8px);
      color: #fff;
      font-size: 14px;
      transition: opacity .3s, transform .3s, background .3s, border-color .3s
    }

    .sc:hover .sc-arr {
      opacity: 1;
      transform: translateY(0);
      background: var(--green);
      border-color: var(--green)
    }

    /* ABOUT */
   /* ABOUT */
.abt {
  padding: 120px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start; /* ← was center; start lets each column grow naturally */
  background: var(--cream2);
}

.abt-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  position: sticky;      /* ← sticky so images stay visible while right side scrolls */
  top: 120px;            /* matches section padding */
}

.abt-img {
  overflow: hidden;
  border-radius: var(--r);
}

.abt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s;
}

.abt-img:hover img {
  transform: scale(1.04);
}

.abt-img {
  height: 207px;
}

.abt-img[data-pos="1"] {
  grid-row: span 2;
  height: 430px;
}

.abt-img[data-pos="2"] {
  height: 207px;
}

.abt-img[data-pos="3"] {
  height: 207px;
}

.abt-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: 0 18px 48px rgba(26, 122, 94, .28);
}

.abt-badge-n {
  font-family: var(--fn);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.5px;
}

.abt-badge-t {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  opacity: .85;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ─── RIGHT COLUMN TEXT SPACING ─── */
.abt-info .sd {
  line-height: 1.85;        /* ← was likely 1.5 or less; now matches screenshot feel */
  margin-bottom: 20px;      /* ← breathing room between paragraphs */
}

.abt-info h2.sh {
  margin-bottom: 28px;      /* ← gap below heading before first paragraph */
}

.abt-info .eyebrow {
  margin-bottom: 12px;
}

.abt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;                /* ← slightly tighter list gap */
  margin-top: 28px;
}

.abt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--txt2);
}

.abt-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 9px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream3);
  margin-top: 44px;
  border: 1px solid var(--cream3);
}

.stat-box {
  padding: 26px 20px;
  background: var(--cream2);
  text-align: center;
}

.stat-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.5px;
}

.stat-n em {
  font-style: normal;
  color: var(--green);
}

.stat-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txt2);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .abt-imgs {
    position: static;
  }
}

    /* PORTFOLIO — EXHIBITION STYLE */
    .port {
      padding: 120px 72px;
      background: var(--cream)
    }

    .port-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 40px
    }

    .port-top .sh {
      margin-bottom: 0
    }

    .port-filter {
      display: flex;
      gap: 8px;
      flex-wrap: wrap
    }

    .pf-btn {
      padding: 7px 18px;
      font-family: var(--fb);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border: 1.5px solid var(--cream3);
      background: transparent;
      color: var(--txt2);
      border-radius: 100px;
      cursor: pointer;
      transition: all .22s
    }

    .pf-btn:hover,
    .pf-btn.active {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff
    }

    /* Masonry-style portfolio grid */
    .port-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 10px
    }

    .pc {
      position: relative;
      overflow: hidden;
      border-radius: var(--r);
      cursor: pointer;
      background: var(--navy)
    }

    .pc {
      grid-column: span 4;
      height: 300px
    }

    .pc[data-span="7"] {
      grid-column: span 7;
      height: 480px
    }

    .pc[data-span="5"] {
      grid-column: span 5;
      height: 480px
    }

    .pc[data-span="4"] {
      grid-column: span 4;
      height: 320px
    }

    .pc[data-span="4s"] {
      grid-column: span 4;
      height: 280px
    }

    .pc[data-span="5s"] {
      grid-column: span 5;
      height: 300px
    }

    .pc[data-span="7s"] {
      grid-column: span 7;
      height: 300px
    }

    .pc img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .75s cubic-bezier(.25, .46, .45, .94), filter .5s;
      filter: brightness(.88)
    }

    .pc:hover img {
      transform: scale(1.06);
      filter: brightness(.48)
    }

    .pc-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px;
      background: linear-gradient(to top, rgba(11, 29, 63, .95) 0%, transparent 100%);
      transform: translateY(12px);
      opacity: 0;
      transition: opacity .35s, transform .35s
    }

    .pc:hover .pc-info {
      opacity: 1;
      transform: translateY(0)
    }

    .pc-tag {
      display: inline-block;
      background: var(--green);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 8px
    }

    .pc-title {
      font-family: var(--fd);
      font-size: clamp(16px, 1.5vw, 22px);
      font-weight: 600;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 4px
    }

    .pc-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, .55)
    }

    .pc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      font-size: 11px;
      font-weight: 600;
      color: var(--green3);
      text-decoration: none;
      letter-spacing: .5px;
      transition: gap .22s
    }

    .pc-link:hover {
      gap: 10px
    }

    /* CAPABILITIES SECTION */
    .capabilities {
      padding: 100px 72px;
      background: var(--navy);
      position: relative;
      overflow: hidden
    }

    .capabilities::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(26, 122, 94, .06);
      pointer-events: none
    }

    .cap-head {
      margin-bottom: 64px
    }

    .cap-head .eyebrow {
      color: var(--green3)
    }

    .cap-head .eyebrow::before {
      background: var(--green3)
    }

    .cap-head .sh {
      color: #fff
    }

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .06)
    }

    .cap-item {
      padding: 40px 32px;
      background: var(--navy);
      position: relative;
      overflow: hidden;
      transition: background .4s
    }

    .cap-item:hover {
      background: rgba(255, 255, 255, .03)
    }

    .cap-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--green2);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s
    }

    .cap-item:hover::after {
      transform: scaleX(1)
    }

    .cap-ic {
      width: 48px;
      height: 48px;
      border-radius: var(--r);
      background: rgba(46, 201, 147, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px
    }

    .cap-ic svg {
      width: 22px;
      height: 22px;
      color: var(--green2)
    }

    .cap-title {
      font-family: var(--fd);
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px
    }

    .cap-desc {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .42)
    }

    .cap-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 18px
    }

    .cap-tag {
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green3);
      border: 1px solid rgba(46, 201, 147, .2);
      padding: 3px 9px;
      border-radius: 100px
    }

    /* CLIENTS */
    .clients {
      padding: 68px 0;
      background: var(--cream2);
      overflow: hidden;
      border-top: 1px solid var(--bdr);
      border-bottom: 1px solid var(--bdr)
    }

    .clients-lbl {
      text-align: center;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--txt2);
      margin-bottom: 34px
    }

    .clients-inner {
      position: relative
    }

    .clients-inner::before,
    .clients-inner::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2
    }

    .clients-inner::before {
      left: 0;
      background: linear-gradient(to right, var(--cream2), transparent)
    }

    .clients-inner::after {
      right: 0;
      background: linear-gradient(to left, var(--cream2), transparent)
    }

    .logo-track {
      display: flex;
      align-items: center;
      gap: 40px;
      animation: lscroll 36s linear infinite;
      width: max-content
    }

    .logo-track:hover {
      animation-play-state: paused
    }

    @keyframes lscroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .brand-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 56px;
      padding: 0 24px;
      background: #fff;
      border: 1.5px solid var(--bdr);
      border-radius: 10px;
      flex-shrink: 0;
      transition: all .3s;
      min-width: 120px;
      cursor: default
    }

    .brand-logo:hover {
      border-color: var(--green);
      box-shadow: 0 4px 20px rgba(0, 0, 0, .09)
    }

    .brand-logo span {
      font-family: var(--fb);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .3px;
      color: var(--navy);
      white-space: nowrap;
      opacity: .5;
      transition: opacity .3s
    }

    .brand-logo:hover span {
      opacity: 1
    }

    /* TESTIMONIALS */
    .testi {
      padding: 120px 72px;
      background: var(--navy);
      position: relative;
      overflow: hidden
    }

    .testi::before {
      content: '"';
      position: absolute;
      top: -80px;
      right: 40px;
      font-family: var(--fd);
      font-size: 600px;
      font-weight: 700;
      color: rgba(255, 255, 255, .016);
      line-height: 1;
      pointer-events: none
    }

    .testi .eyebrow {
      color: var(--green3)
    }

    .testi .eyebrow::before {
      background: var(--green3)
    }

    .testi .sh {
      color: #fff
    }

    .testi-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
      gap: 40px
    }

    .t-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, .38);
      max-width: 300px;
      line-height: 1.8
    }

    .t-slide {
      display: none
    }

    .t-slide.active {
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 72px;
      align-items: center
    }

    .t-img {
      overflow: hidden;
      border-radius: var(--r);
      position: relative
    }

    .t-img img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block
    }

    .t-img::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid rgba(26, 122, 94, .35);
      border-radius: var(--r);
      pointer-events: none
    }

    .t-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px
    }

    .t-stars span {
      font-size: 15px;
      color: var(--green2)
    }

    .t-quote {
      font-family: var(--fd);
      font-size: clamp(18px, 1.8vw, 26px);
      font-style: italic;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255, 255, 255, .88);
      margin-bottom: 28px
    }

    .t-author {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .t-line {
      width: 22px;
      height: 1.5px;
      background: var(--green2)
    }

    .t-name {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45)
    }

    .t-nav {
      display: flex;
      gap: 10px;
      margin-top: 36px;
      align-items: center
    }

    .t-btn {
      width: 44px;
      height: 44px;
      border: 1.5px solid rgba(255, 255, 255, .16);
      background: none;
      cursor: pointer;
      color: #fff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--r);
      transition: background var(--ease), border-color var(--ease)
    }

    .t-btn:hover {
      background: var(--green);
      border-color: var(--green)
    }

    .t-dots {
      display: flex;
      gap: 7px;
      margin-left: 8px
    }

    .t-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .16);
      cursor: pointer;
      transition: background .3s, transform .3s
    }

    .t-dot.active {
      background: var(--green2);
      transform: scale(1.4)
    }

    /* PROCESS — Wavy S-curve timeline matching reference image */
    .proc {
      padding: 100px 72px 80px;
      background: #1a1a1a;
      position: relative;
      overflow: hidden
    }

    .proc::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=30&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      opacity: .18;
      pointer-events: none
    }

    .proc-head {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1
    }

    .proc-head .eyebrow {
      justify-content: center;
      color: var(--green3)
    }

    .proc-head .eyebrow::before {
      background: var(--green3);
      display: none
    }

    .proc-head .sh {
      color: #fff
    }

    .proc-head .sd {
      color: rgba(255, 255, 255, .42)
    }

    /* SVG wave container */
    .proc-wave-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      overflow: visible
    }

    .proc-wave-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
      overflow: visible
    }

    /* Steps grid */
    .proc-outer {
      position: relative;
      z-index: 1;
      padding: 0
    }

    .proc-steps {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0;
      position: relative;
      z-index: 1;
      min-height: 300px;
      align-items: center
    }

    .ps {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 4px;
      position: relative
    }

    /* Odd steps: circle top + stem down + label below */
    .ps:nth-child(odd) {
      flex-direction: column;
      justify-content: center
    }

    /* Even steps: label above + stem up + circle */
    .ps:nth-child(even) {
      flex-direction: column-reverse;
      justify-content: center
    }

    .ps-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .ps-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
      transition: transform .35s, box-shadow .35s, filter .35s;
      border: 2px solid rgba(255, 255, 255, .15);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3)
    }

    .ps:hover .ps-circle {
      transform: scale(1.12)
    }

    .ps-circle svg {
      width: 32px;
      height: 32px;
      color: #fff;
      flex-shrink: 0
    }

    /* Outer glow ring */
    .ps-ring {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 2px solid;
      opacity: .4;
      transition: opacity .35s, transform .35s;
      pointer-events: none
    }

    .ps:hover .ps-ring {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.08)
    }

    /* Stem connecting circle to the wave path */
    .ps-stem {
      width: 2px;
      height: 38px;
      flex-shrink: 0;
      margin: 0 auto
    }

    /* Label text */
    .ps-label {
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .92);
      line-height: 1.6;
      max-width: 100px;
      margin: 0 auto;
      padding: 4px 0
    }

    /* Per-step color system */
    .ps:nth-child(1) .ps-circle {
      background: linear-gradient(135deg, #f5a623, #e8751a)
    }

    .ps:nth-child(1) .ps-ring {
      border-color: #f5a623
    }

    .ps:nth-child(1) .ps-stem {
      background: linear-gradient(to bottom, #f5a623, rgba(245, 166, 35, .2))
    }

    .ps:nth-child(2) .ps-circle {
      background: linear-gradient(135deg, #d63fd6, #9b1fde)
    }

    .ps:nth-child(2) .ps-ring {
      border-color: #d63fd6
    }

    .ps:nth-child(2) .ps-stem {
      background: linear-gradient(to top, #d63fd6, rgba(214, 63, 214, .2))
    }

    .ps:nth-child(3) .ps-circle {
      background: linear-gradient(135deg, #5b6cf5, #4444dd)
    }

    .ps:nth-child(3) .ps-ring {
      border-color: #5b6cf5
    }

    .ps:nth-child(3) .ps-stem {
      background: linear-gradient(to bottom, #5b6cf5, rgba(91, 108, 245, .2))
    }

    .ps:nth-child(4) .ps-circle {
      background: linear-gradient(135deg, #2cb5f0, #1a8fd1)
    }

    .ps:nth-child(4) .ps-ring {
      border-color: #2cb5f0
    }

    .ps:nth-child(4) .ps-stem {
      background: linear-gradient(to top, #2cb5f0, rgba(44, 181, 240, .2))
    }

    .ps:nth-child(5) .ps-circle {
      background: linear-gradient(135deg, #44cc55, #22aa33)
    }

    .ps:nth-child(5) .ps-ring {
      border-color: #44cc55
    }

    .ps:nth-child(5) .ps-stem {
      background: linear-gradient(to bottom, #44cc55, rgba(68, 204, 85, .2))
    }

    .ps:nth-child(6) .ps-circle {
      background: linear-gradient(135deg, #e8541a, #cc2211)
    }

    .ps:nth-child(6) .ps-ring {
      border-color: #e8541a
    }

    .ps:nth-child(6) .ps-stem {
      background: linear-gradient(to top, #e8541a, rgba(232, 84, 26, .2))
    }

    .ps:nth-child(7) .ps-circle {
      background: linear-gradient(135deg, #e81a6e, #cc1155)
    }

    .ps:nth-child(7) .ps-ring {
      border-color: #e81a6e
    }

    .ps:nth-child(7) .ps-stem {
      background: linear-gradient(to bottom, #e81a6e, rgba(232, 26, 110, .2))
    }

    /* Wave SVG connector */
    .proc-wave-svg path {
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    /* Bottom title */
    .proc-title {
      text-align: center;
      margin-top: 48px;
      position: relative;
      z-index: 1
    }

    .proc-title strong {
      font-family: var(--fd);
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 400;
      color: rgba(255, 255, 255, .72);
      letter-spacing: 8px;
      display: block;
      text-transform: uppercase
    }

    .proc-title strong::after {
      content: '';
      display: block;
      width: 48px;
      height: 2px;
      background: linear-gradient(to right, #e8751a, #e81a6e);
      margin: 14px auto 0;
      border-radius: 2px
    }

    /* BLOG */
    .blog {
      padding: 120px 72px;
      background: var(--cream2)
    }

    .blog-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 52px;
      gap: 40px
    }

    .blog-top .sh {
      margin-bottom: 0
    }

    .blog-grid {
      display: grid;
      grid-template-columns: 1.65fr 1fr 1fr;
      gap: 20px
    }

    .bc {
      background: var(--cream);
      border-radius: var(--r);
      overflow: hidden;
      cursor: pointer;
      transition: transform var(--ease), box-shadow var(--ease)
    }

    .bc:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 44px rgba(11, 29, 63, .09)
    }

    .bc-img {
      overflow: hidden
    }

    .bc-img img {
      width: 100%;
      display: block;
      object-fit: cover;
      transition: transform .65s
    }

    .bc:hover .bc-img img {
      transform: scale(1.04)
    }

    .bc.featured .bc-img img {
      height: 260px
    }

    .bc:not(.featured) .bc-img img {
      height: 172px
    }

    .bc-body {
      padding: 22px 22px 26px
    }

    .bc-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px
    }

    .bc-cat {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      background: rgba(26, 122, 94, .1);
      padding: 4px 10px;
      border-radius: 100px
    }

    .bc-date {
      font-size: 11px;
      color: var(--txt2)
    }

    .bc-title {
      font-family: var(--fd);
      font-size: clamp(17px, 1.5vw, 22px);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.3
    }

    .bc-ex {
      font-size: 13px;
      line-height: 1.65;
      color: var(--txt2)
    }

    .bc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 11px;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      letter-spacing: .5px;
      transition: gap var(--ease)
    }

    .bc-link:hover {
      gap: 10px
    }

    /* CONTACT */
    .contact {
      padding: 120px 72px;
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start
    }

    .contact-info {
      padding-right: 20px
    }

    .contact-dets {
      margin-top: 44px;
      display: flex;
      flex-direction: column;
      gap: 26px
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start
    }

    .contact-ic {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: var(--r);
      background: rgba(26, 122, 94, .1);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .contact-ic svg {
      width: 18px;
      height: 18px;
      color: var(--green)
    }

    .contact-lbl {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--txt2);
      margin-bottom: 3px
    }

    .contact-val {
      font-size: 14px;
      color: var(--navy);
      font-weight: 500;
      line-height: 1.6
    }

    .contact-val a {
      color: var(--navy);
      text-decoration: none;
      transition: color .3s
    }

    .contact-val a:hover {
      color: var(--green)
    }

    .contact-socials {
      display: flex;
      gap: 8px;
      margin-top: 32px
    }

    .contact-soc-link {
      width: 40px;
      height: 40px;
      border: 1.5px solid var(--cream3);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--r);
      color: var(--txt2);
      text-decoration: none;
      transition: all .3s
    }

    .contact-soc-link:hover {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff
    }

    .contact-soc-link svg {
      width: 15px;
      height: 15px
    }

    .contact-form {
      background: var(--cream2);
      padding: 44px;
      border-radius: 10px;
      border: 1.5px solid var(--cream3)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px
    }

    .fg label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--navy)
    }

    .fg input,
    .fg select,
    .fg textarea {
      background: var(--cream);
      border: 1.5px solid var(--cream3);
      padding: 12px 14px;
      font-family: var(--fb);
      font-size: 13px;
      color: var(--txt);
      border-radius: var(--r);
      outline: none;
      transition: border-color .3s;
      appearance: none
    }

    .fg select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6355' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-color: var(--cream)
    }

    .fg textarea {
      resize: vertical;
      min-height: 110px
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
      color: #bbb
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      border-color: var(--green)
    }

    .btn-form {
      width: 100%;
      background: var(--navy);
      color: #fff;
      border: none;
      cursor: pointer;
      padding: 15px;
      font-family: var(--fb);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-radius: var(--r);
      transition: background .3s, transform .3s
    }

    .btn-form:hover {
      background: var(--green);
      transform: translateY(-1px)
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(120deg, var(--navy) 0%, var(--navy3) 50%, rgba(26, 122, 94, .75) 100%);
      padding: 80px 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden
    }

    .cta-band::before {
      content: '';
      position: absolute;
      right: -50px;
      top: -60px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .025)
    }

    .cta-band h2 {
      font-family: var(--fd);
      font-size: clamp(30px, 4vw, 54px);
      font-weight: 600;
      color: #fff;
      line-height: 1.05;
      max-width: 580px
    }

    .cta-band h2 em {
      font-style: italic;
      color: var(--green3)
    }

    .btn-white {
      flex-shrink: 0;
      background: #fff;
      color: var(--navy);
      padding: 16px 44px;
      font-family: var(--fb);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      white-space: nowrap;
      transition: transform var(--ease), box-shadow var(--ease), color var(--ease)
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
      color: var(--green)
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      padding: 80px 72px 40px
    }

    .foot-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      margin-bottom: 30px
    }

    .foot-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px
    }

    .foot-logo img {
      mix-blend-mode: screen;
      background: transparent
    }

    .foot-mark {
      width: 30px;
      height: 30px;
      background: var(--green);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .foot-mark svg {
      width: 15px;
      height: 15px;
      color: #fff
    }

    .foot-word {
      font-family: var(--fd);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.3px
    }

    .foot-desc {
      font-size: 13px;
      line-height: 1.85;
      color: rgba(255, 255, 255, .33);
      margin-bottom: 22px
    }

    .foot-contact {
      font-size: 12px;
      color: rgba(255, 255, 255, .33);
      line-height: 2.2
    }

    .foot-contact a {
      color: var(--green2);
      text-decoration: none
    }

    .foot-col-t {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green2);
      margin-bottom: 18px
    }

    .foot-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    .foot-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, .33);
      text-decoration: none;
      transition: color .3s
    }

    .foot-links a:hover {
      color: #fff
    }

    .foot-nl input {
      width: 100%;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      padding: 11px 14px;
      color: #fff;
      font-family: var(--fb);
      font-size: 12px;
      margin-bottom: 8px;
      outline: none;
      border-radius: var(--r);
      transition: border-color .3s
    }

    .foot-nl input::placeholder {
      color: rgba(255, 255, 255, .18)
    }

    .foot-nl input:focus {
      border-color: var(--green)
    }

    .foot-nl button {
      width: 100%;
      padding: 12px;
      background: var(--green);
      border: none;
      color: #fff;
      font-family: var(--fb);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: var(--r);
      transition: background .3s
    }

    .foot-nl button:hover {
      background: var(--green2)
    }

    .foot-bot {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .foot-copy {
      font-size: 11px;
      color: rgba(255, 255, 255, .18)
    }

    .foot-soc {
      display: flex;
      gap: 8px
    }

    .foot-soc a {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, .09);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: rgba(255, 255, 255, .33);
      border-radius: var(--r);
      transition: all .3s
    }

    .foot-soc a:hover {
      background: var(--green);
      border-color: var(--green);
      color: #fff
    }

    .wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      background: #25D366;
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
      transition: transform .3s, box-shadow .3s
    }

    .wa:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 28px rgba(37, 211, 102, .55)
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {

      nav,
      .hero-content,
      .strip,
      .svc,
      .abt,
      .port,
      .blog,
      .contact,
      .cta-band,
      footer,
      .testi,
      .proc,
      .capabilities {
        padding-left: 32px;
        padding-right: 32px
      }

      .hero-content {
        padding-bottom: 60px;
        padding-left: 32px;
        padding-right: 32px
      }

      .hero-slide-label {
        top: 90px;
        left: 32px
      }

      .hero-scroll {
        display: none
      }

      .proc-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 0
      }

      .ps:nth-child(5),
      .ps:nth-child(6),
      .ps:nth-child(7) {
        display: none
      }

      .hero-scroll {
        display: none
      }

      .svc-grid {
        grid-template-columns: 1fr 1fr
      }

      .sc.wide {
        grid-column: span 2;
        min-height: 380px
      }

      .abt,
      .contact {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .port-grid {
        grid-template-columns: 1fr 1fr
      }

      .pc[data-span="7"],
      .pc[data-span="5"] {
        grid-column: span 2;
        height: 360px
      }

      .pc[data-span="4"],
      .pc[data-span="4s"],
      .pc[data-span="5s"],
      .pc[data-span="7s"] {
        grid-column: span 1;
        height: 240px
      }

      .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px
      }

      .blog-grid {
        grid-template-columns: 1fr 1fr
      }

      .bc.featured {
        grid-column: span 2
      }

      .proc-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px
      }

      .proc-steps::before {
        display: none
      }

      .cap-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:768px) {

      .nav-links,
      .nav-cta {
        display: none
      }

      .nav-burger {
        display: flex
      }

      .nav-logo img {
        height: 34px;
        max-width: 130px
      }

      .svc-grid {
        grid-template-columns: 1fr
      }

      .sc.wide {
        grid-column: span 1;
        min-height: 300px
      }

      .blog-grid {
        grid-template-columns: 1fr
      }

      .bc.featured {
        grid-column: span 1
      }

      .port-grid {
        grid-template-columns: 1fr
      }

      .pc {
        grid-column: span 1 !important;
        height: 260px !important
      }

      .pc[data-span="7"],
      .pc[data-span="5"] {
        height: 300px !important
      }

      .cta-band {
        flex-direction: column;
        text-align: center
      }

      .t-slide.active {
        grid-template-columns: 1fr
      }

      .t-img img {
        height: 220px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      nav {
        padding: 0 18px
      }

      .foot-top {
        grid-template-columns: 1fr
      }

      .testi-top,
      .blog-top,
      .svc-top,
      .port-top {
        flex-direction: column;
        align-items: flex-start
      }

      .contact-form {
        padding: 24px
      }

      .proc-steps {
        grid-template-columns: 1fr
      }

      .cap-grid {
        grid-template-columns: 1fr
      }

      .hero-slide-label {
        display: none
      }

      .hero-slider-arrows,
      .hero-slider-nav {
        display: none
      }

      .hero-content {
        padding-bottom: 60px;
        padding-left: 24px;
        padding-right: 24px
      }

      .hero-h1 {
        font-size: clamp(44px, 11vw, 72px)
      }

      .proc-steps {
        grid-template-columns: repeat(3, 1fr)
      }

      .ps:nth-child(5),
      .ps:nth-child(6),
      .ps:nth-child(7) {
        display: none
      }

      .proc-connector {
        display: none
      }
    }
