:root{
  --lime: #D3FF55;
  --deep: rgba(18,44,36,.76);
  --deep-solid: rgb(18,44,36);
  --ink: #0a0d0b;
  --white: #ffffff;

  --container: 1400px;
  --pad: 22px;

  --pill-radius: 999px;
  --nav-h: 86px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #070a08;
  color: var(--white);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration:none; }
button{ font: inherit; color: inherit; background: none; border: 0; padding: 0; }

/* HERO SCENE */
.scene{
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== Background ===== */
.bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}

/* Desktop ribbons + vignette */
.bg::before{
  content:"";
  position:absolute;
  inset:-12%;
  pointer-events:none;

  background:
    radial-gradient(900px 640px at 18% 16%, rgba(210,255,150,.55), rgba(0,0,0,0) 62%),
    radial-gradient(820px 620px at 82% 48%, rgba(170,255,120,.40), rgba(0,0,0,0) 64%),
    linear-gradient(125deg, rgba(205,255,140,.28) 0 12%, rgba(0,0,0,0) 12% 46%),
    linear-gradient(305deg, rgba(150,235,110,.22) 0 14%, rgba(0,0,0,0) 14% 58%),
    linear-gradient(35deg, rgba(0,0,0,.55) 0 18%, rgba(0,0,0,0) 18% 62%);

  opacity: .95;
  filter: blur(2px) saturate(1.15);
  transform: rotate(-10deg);
}

.bg::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background:
    radial-gradient(1000px 680px at 50% 46%,
      rgba(0,0,0,.10),
      rgba(0,0,0,.72) 68%,
      rgba(0,0,0,.92) 100%
    );
}

.blob{
  position:absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: .95;
  transform: rotate(-22deg);
}

.b1{
  width: 1200px; height: 680px;
  left: -240px; top: -80px;
  background: radial-gradient(circle at 30% 40%, rgba(200,255,120,.55), rgba(40,90,55,.05) 62%, rgba(0,0,0,0) 70%);
}
.b2{
  width: 1100px; height: 680px;
  right: -330px; top: 170px;
  background: radial-gradient(circle at 35% 45%, rgba(170,240,100,.45), rgba(35,80,55,.05) 62%, rgba(0,0,0,0) 72%);
  transform: rotate(18deg);
}
.b3{
  width: 980px; height: 560px;
  left: 260px; top: 260px;
  background: radial-gradient(circle at 40% 45%, rgba(145,220,80,.32), rgba(10,35,25,.06) 58%, rgba(0,0,0,0) 72%);
  transform: rotate(8deg);
}

.ring{
  position:absolute;
  border-radius: 999px;
  border: 10px solid rgba(190,255,110,.22);
  filter: blur(.2px);
  opacity: .55;
}
.r1{
  width: 1180px; height: 740px;
  right: -520px; top: 80px;
  transform: rotate(16deg);
}
.r2{
  width: 1320px; height: 820px;
  left: -640px; top: 110px;
  border-color: rgba(190,255,110,.16);
  transform: rotate(-18deg);
}

/* ===== NAV ===== */
.nav-wrap{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 28px;
}

.nav-pill{
  height: 82px;
  width: min(1480px, calc(100% - 140px));
  margin: 0 auto;
  padding: 0 28px 0 30px;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;

  background: rgba(18,44,36,.92);
  border: 0;
  border-radius: 999px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 12px 28px rgba(0,0,0,.32);
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 190px;
}
.brand-ic{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.brand-txt{
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 24px;
}
.brand-dot{ color: rgba(255,255,255,.9); }

.nav-links{
  display:flex;
  align-items:center;
  gap: 54px; /* single source of truth */
}

.nav-link{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .95;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-link:hover{ opacity: 1; }

.nav-link.is-active{ color: var(--lime); }
.nav-link.is-active::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
}

.nav-dd{
  display:flex;
  align-items:center;
  gap: 8px;
  cursor: pointer;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap: 14px;
}

.cta{
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--lime);
  color: rgba(0,0,0,.92);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  display:flex;
  align-items:center;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.26);
}
.cta:hover{ filter: brightness(.98); }

/* hamburger only on mobile */
.hamburger{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  display:none;
  place-items:center;
  cursor:pointer;
  position: relative;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  margin: 3px 0;
}

/* Mobile menu */
.mobile-menu{
  width: min(680px, calc(100% - 160px));
  margin: 12px auto 0;
  background: rgba(18,44,36,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.38);
}
.m-link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
}
.m-link:hover{ background: rgba(255,255,255,.06); }
.m-link.is-active{ color: var(--lime); }

.m-cta{
  margin-top: 10px;
  height: 52px;
  border-radius: 999px;
  background: var(--lime);
  color: rgba(0,0,0,.92);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 0 18px;
}
.m-cta-ic{
  width: 28px; height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.12);
}

/* ===== HERO ===== */
.hero{
  position: relative;
  z-index: 5;
  height: 100%;
  display:grid;
  place-items:center;
  padding: 140px var(--pad) 190px;
  text-align:center;
}

.hero-inner{ margin-top: 0; }

.hero-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .92;
}

.hero-title{
  margin: 26px 0 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: .92;
  font-size: clamp(52px, 5.8vw, 118px);
  text-shadow: 0 10px 30px rgba(0,0,0,.40);
}

/* ===== Bottom logo slab + continuous slider ===== */
.brands{
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(980px, 58vw);
  height: 140px;
  z-index: 9;
}

.brands-shape{
  position:absolute;
  inset: 0;
  width:100%;
  height:100%;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.20));
}

.brands-marquee{
  position:absolute;
  left: 46px;
  right: 64px;
  top: 58px;
  height: 53px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* no edge fade */
.brands-marquee::before,
.brands-marquee::after{
  content:none !important;
  display:none !important;
}

.marquee-track{
  position: relative;
  z-index: 1;
  display:flex;
  width: max-content;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

.marquee-set{
  display:flex;
  align-items:center;
  gap: 84px;
  padding-right: 84px;
}

.brand-logo{
  height: 44px;
  width: auto;
  display:block;
  opacity: .95;
  filter: grayscale(1) contrast(1.2) brightness(.55);
}

@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; transform: translateX(0); }
}

/* ===== Stats badge ===== */
.stats{
  position: absolute;
  right: 64px;
  bottom: 42px;
  z-index: 10;
  display:flex;
  align-items:center;
  gap: 18px;
}

.stats-ic{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: var(--lime);
  display:grid;
  place-items:center;
  box-shadow: 0 12px 30px rgba(0,0,0,.26);
}

.stats-txt{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.stats-num{
  font-weight: 600;
  font-size: 66px;
  line-height: .9;
  letter-spacing: -0.02em;
}
.stats-sub{
  font-weight: 600;
  font-size: 16px;
  opacity: .95;
}

/* ===== Responsive (tablet) ===== */
@media (max-width: 1100px){
  .nav-pill{ width: min(var(--container), calc(100% - 60px)); }
  .mobile-menu{ width: calc(100% - 60px); }
  .brands{ width: min(980px, 70vw); }
}

@media (max-width: 900px){
  .nav-links{ display:none; }
  .hamburger{ display:grid; }
  .cta{ display:none; }

  .hero{ padding: 130px var(--pad) 190px; }

  .brands{
    width: calc(100% - 22px);
    left: 11px;
  }
  .brands-marquee{
    left: 28px;
    right: 28px;
    top: 64px;
  }
  .marquee-set{
    gap: 52px;
    padding-right: 52px;
  }
  .brand-logo{ height: 36px; }

  .stats{
    right: 18px;
    bottom: 26px;
    gap: 12px;
  }
  .stats-ic{ width: 64px; height: 64px; }
  .stats-num{ font-size: 52px; }
  .stats-sub{ font-size: 14px; }
}

@media (min-width: 1600px){
  .nav-pill{
    width: min(1480px, calc(100% - 420px));
  }
}

/* =========================================================
   MOBILE – MATCH ORIGINAL (fixes your flat green + slab)
   ========================================================= */
@media (max-width: 600px){

  .scene{
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  /* mobile ribbon look (stronger vignette, better contrast) */
  .bg::before{
    inset:-18%;
    background:
      radial-gradient(520px 520px at 18% 38%, rgba(210,255,150,.40), rgba(0,0,0,0) 62%),
      radial-gradient(560px 560px at 78% 44%, rgba(170,255,120,.28), rgba(0,0,0,0) 66%),
      linear-gradient(115deg, rgba(200,255,140,.20) 0 12%, rgba(0,0,0,0) 12% 56%),
      linear-gradient(305deg, rgba(150,235,110,.18) 0 13%, rgba(0,0,0,0) 13% 60%);
    opacity: .95;
    filter: blur(1.5px) saturate(1.15);
    transform: rotate(-10deg);
  }

  .bg::after{
    background: radial-gradient(680px 620px at 50% 48%,
      rgba(0,0,0,.08),
      rgba(0,0,0,.70) 70%,
      rgba(0,0,0,.92) 100%
    );
  }

  /* Move blobs/rings into view on mobile */
  .b1{
    width: 820px; height: 520px;
    left: -260px; top: -140px;
    opacity: .85;
  }
  .b2{
    width: 760px; height: 520px;
    right: -360px; top: 80px;
    opacity: .85;
  }
  .b3{
    width: 720px; height: 480px;
    left: -40px; top: 220px;
    opacity: .70;
  }
  .r1{
    width: 980px; height: 640px;
    right: -640px; top: 10px;
    border-width: 8px;
    opacity: .35;
  }
  .r2{
    width: 1040px; height: 720px;
    left: -720px; top: -40px;
    border-width: 8px;
    opacity: .25;
  }

  /* Header like original mobile */
  .nav-wrap{ padding-top: 12px; }

  .nav-pill{
    height: 74px;
    width: calc(100% - 36px);
    padding: 0 16px;
  }

  .brand{ min-width: 0; }
  .brand-ic{
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
  }
  .brand-txt{ font-size: 22px; }

  .nav-links{ display:none !important; }
  .cta{ display:none !important; }

  .hamburger{
    display:grid !important;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: var(--lime);
    border: 0;
    box-shadow: 0 10px 22px rgba(0,0,0,.16);
  }
  .hamburger span{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width: 18px;
    height: 2px;
    background: rgba(0,0,0,.9);
    border-radius: 999px;
    margin: 0;
  }
  .hamburger span:nth-child(1){ top: 15px; }
  .hamburger span:nth-child(2){ top: 22px; }
  .hamburger span:nth-child(3){ top: 29px; }

  /* Hero spacing */
  .hero{
    padding: 112px 18px 170px;
  }

  .hero-pill{
    width: calc(100% - 36px);
    max-width: 440px;
    white-space: nowrap;
    padding: 11px 16px;
    font-size: 11px;
    letter-spacing: .03em;
  }

  .hero-title{
    margin-top: 22px;
    font-size: clamp(44px, 11vw, 70px);
    line-height: .92;
  }

  /* Stats above slab */
  .stats{
    right: 18px;
    bottom: 92px;
    gap: 14px;
  }
  .stats-ic{ width: 68px; height: 68px; }
  .stats-num{ font-size: 56px; }
  .stats-sub{ font-size: 14px; }

  /* Slab: only thin strip visible like original + logos visible */
  .brands{
    width: calc(100% - 14px);
    left: 7px;
    height: 220px;
    bottom: -150px; /* thin strip visible */
  }

  .brands-shape{ filter: none; }

  .brands-marquee{
    left: 18px;
    right: 18px;
    top: 22px; /* logos appear in visible strip */
    height: 60px;
  }

  .marquee-set{
    gap: 38px;
    padding-right: 38px;
  }

  .brand-logo{
    height: 30px;
    opacity: .90;
    filter: grayscale(1) contrast(1.15) brightness(.35);
  }
}


/* =========================
   SERVICE EXPERTISE (EXACT)
   ========================= */
.svc-section{
  background:#fff;
  color:#0f2a23;
  padding: 90px 0;
}

.svc-wrap{
  width: min(1220px, calc(100% - 140px));
  margin: 0 auto;
}

.svc-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
  margin-bottom: 44px;
}

.svc-title{
  margin:0;
  font-weight:600;
  letter-spacing:-.03em;
  line-height:1.02;
  text-transform:uppercase;
  font-size: 74px;
  color:#0f2a23;
}

.svc-sub{
  margin:10px 0 0;
  font-size:16px;
  line-height:1.55;
  color:#6f7c77;
  max-width: 320px;
}

.svc-list{ display:flex; flex-direction:column; gap:28px; }

/* CARD */
.svc-card{
  /* ORIGINAL SPLIT: image ~36.5% of card width */
  --imgW: 36.5%;
  --ctaSize: 106px;
  --ctaTop: 44%;
  /* ORIGINAL circle sits inside image panel (~40% of image width from right) */
  --ctaRight: calc(var(--imgW) / 2.5); /* 36.5% / 2.5 = 14.6% of card */

  position: relative;
  display:flex;
  min-height: 270px;

  border-radius: 16px;
  overflow:hidden;

  background:#fff;
  border:1px solid #e3ece7;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.svc-left{
  flex: 1 1 auto;
  /* ORIGINAL has more left inset */
  padding: 70px 70px 70px 92px;
  transition: background .28s ease, color .28s ease;
}

.svc-icon{
  width:56px; height:56px;
  border-radius:999px;
  background: var(--lime);
  color: rgba(0,0,0,.92);
  display:grid;
  place-items:center;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  margin-bottom: 20px;
}

.svc-name{
  margin:0 0 12px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing:-.02em;
  text-transform: uppercase;
}

.svc-desc{
  margin:0;
  color:#8a9791;
  font-size:15px;
  line-height:1.55;
}

/* right image panel (hidden until hover) */
.svc-right{
  flex: 0 0 var(--imgW);
  width: 0;
  overflow:hidden;
  transition: width .32s ease;
}

.svc-right img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .28s ease, transform .45s ease;
}

/* CTA default (first screenshot) */
.svc-cta{
  position:absolute;
  top: 50%;
  right: 70px;               /* far right arrow */
  transform: translateY(-50%);
  display:grid;
  place-items:center;
  color:#0f2a23;
  z-index: 5;
  transition:
    right .32s ease,
    top .28s ease,
    width .28s ease,
    height .28s ease,
    background .28s ease,
    color .28s ease,
    border-radius .28s ease,
    box-shadow .28s ease;
}

.svc-cta svg{
  transition: transform .28s ease;
}

/* HOVER/ACTIVE (second screenshot) */
.svc-card:hover,
.svc-card:focus-within,
.svc-card.is-active{
  box-shadow: 0 22px 44px rgba(0,0,0,.10);
}

.svc-card:hover .svc-left,
.svc-card:focus-within .svc-left,
.svc-card.is-active .svc-left{
  background: var(--deep-solid);
  color:#fff;
}

.svc-card:hover .svc-desc,
.svc-card:focus-within .svc-desc,
.svc-card.is-active .svc-desc{
  color: rgba(255,255,255,.70);
}

.svc-card:hover .svc-right,
.svc-card:focus-within .svc-right,
.svc-card.is-active .svc-right{
  width: var(--imgW);
}

.svc-card:hover .svc-right img,
.svc-card:focus-within .svc-right img,
.svc-card.is-active .svc-right img{
  opacity:1;
  transform: scale(1);
}

/* lime circle CTA positioned INSIDE the image panel */
.svc-card:hover .svc-cta,
.svc-card:focus-within .svc-cta,
.svc-card.is-active .svc-cta{
  width: var(--ctaSize);
  height: var(--ctaSize);
  border-radius: 999px;
  background: var(--lime);
  color: rgba(0,0,0,.92);

  top: var(--ctaTop);
  right: var(--ctaRight);

  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

/* rotate the normal arrow to become ↗ like original */
.svc-card:hover .svc-cta svg,
.svc-card:focus-within .svc-cta svg,
.svc-card.is-active .svc-cta svg{
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 1100px){
  .svc-wrap{ width: min(1220px, calc(100% - 60px)); }
  .svc-title{ font-size: 60px; }
}

@media (max-width: 860px){
  .svc-head{ flex-direction: column; }
  .svc-title{ font-size: 52px; }
  .svc-left{ padding: 54px 34px; }
}

@media (max-width: 600px){
  .svc-wrap{ width: calc(100% - 34px); }
  .svc-title{ font-size: 44px; }
  .svc-cta{ right: 22px; }
  .svc-card{ --ctaSize: 86px; }
}
/* ============================
   CASE STUDIES — MATCH ORIGINAL
   ============================ */
.cs-section{
  background: #0f2a23;
  padding: 110px 0 120px;
}

.cs-container{
  width: min(1500px, calc(90% - 130px));
  margin: 0 auto;
}

.cs-head{
  text-align: center;
  margin-bottom: 74px;
}

.cs-title{
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(46px, 4.6vw, 86px);
  line-height: 1.02;

  /* prevent any global outline/stroke/shadow */
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.cs-sub{
  margin: 16px auto 0;
  max-width: 880px;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.55;
}

/* Grid */
.cs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

/* Card */
.cs-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 4px;                /* important: creates the inner inset look */
  display: grid;
  grid-template-columns: 1fr 43%;
  gap: 15px;
  align-items: stretch;
}

/* Left content spacing like original */
.cs-content{
  padding: 34px 20px 26px 28px;
}

.cs-name{
  margin: 0 0 12px;
  color: #0f2a23;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 26px;

  text-shadow: none;
  -webkit-text-stroke: 0;
}

.cs-dot{ color: #0f2a23; }

.cs-desc{
  margin: 0 0 28px;
  color: rgba(15,42,35,.55);
  font-size: 16px;
  line-height: 1.55;
}

/* FULL CASE STUDY pill */
.cs-btn{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 240px;

  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(15,42,35,.14);
  background: #fff;
  color: #0f2a23;

  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

.cs-btn-ic{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Right media panel (NO broken image icons) */
.cs-media{
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0,0,0,.06), rgba(0,0,0,.06)),
    var(--img) center / cover no-repeat;
  min-height: 260px;
}

/* Footer button */
.cs-footer{
  display:flex;
  justify-content:center;
  margin-top: 64px;
}

.cs-all{
  display:inline-flex;
  align-items:center;
  gap: 14px;

  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: transparent;

  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

.cs-all-ic{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Hover (subtle) */
.cs-card:hover{
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  transform: translateY(-1px);
  transition: box-shadow .25s ease, transform .25s ease;
}

.cs-btn:hover{ background: rgba(15,42,35,.03); }
.cs-all:hover{ background: rgba(255,255,255,.06); }

/* Responsive */
@media (max-width: 1100px){
  .cs-container{ width: calc(100% - 60px); }
}

@media (max-width: 900px){
  .cs-grid{
    grid-template-columns: 1fr;
  }
  .cs-card{
    grid-template-columns: 1fr;
  }
  .cs-media{
    min-height: 240px;
  }
}

/* ==========================
   YEARLY GROWTH (Exact)
   ========================== */
.yg{
  background: #e7f3ef; /* pale mint like screenshot */
  padding: clamp(70px, 6vw, 110px) 0 clamp(80px, 6vw, 120px);
  color: #0f2a23;
}

.yg-container{
  width: min(1480px, calc(100% - 140px));
  margin: 0 auto;
}

.yg-head{
  text-align: center;
  margin-bottom: clamp(50px, 4.8vw, 80px);
}

.yg-title{
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(46px, 5.2vw, 86px);
  line-height: 1.05;
}

.yg-sub{
  margin: 14px auto 0;
  max-width: 820px;
  color: rgba(15,42,35,.55);
  font-size: 16px;
  line-height: 1.6;
}

.yg-body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 4vw, 70px);
}

/* LEFT */
.yg-left{
  flex: 0 0 46%;
  padding-left: 6px;
}

.yg-kpi{
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: clamp(86px, 7.2vw, 140px);
  line-height: .95;
}

.yg-kpi-label{
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: rgba(15,42,35,.90);
}

.yg-big{
  margin-top: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(72px, 6.2vw, 120px);
  line-height: .95;
}

.yg-desc{
  margin: 22px 0 0;
  color: rgba(15,42,35,.55);
  font-size: 16px;
  line-height: 1.65;
}

.yg-cta{
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--lime);
  color: rgba(0,0,0,.92);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.yg-cta-ic{
  display: grid;
  place-items: center;
}

/* RIGHT */
/* ===== RIGHT (MATCH ORIGINAL) ===== */
.yg-right{
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;

  /* THIS is what moves the stack left so it matches the original */
  padding-right: 150px;
}

.yg-bars{
  position: relative;
  width: 860px;         /* exact working width for original look */
  height: 420px;
}

/* bar base */
.yg-bar{
  position: absolute;
  right: 0;             /* IMPORTANT: all bars share same right edge */
  height: 96px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* original has more inner padding */
  padding: 0 70px 0 68px;

  /* softer shadow like original */
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
}

.yg-pct{
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.02em;
}

.yg-label{
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 18px;
}

/* colors */
.yg-bar--lime{
  background: var(--lime);
  color: rgba(0,0,0,.92);
}
.yg-bar--dark{
  background: var(--deep-solid);
  color: #fff;
}

/* EXACT widths + overlap spacing (original rhythm) */
.yg-b1{ width: 560px; top: 0px;   z-index: 1; }   /* 16% */
.yg-b2{ width: 810px; top: 82px;  z-index: 3; }   /* 22% (on top) */
.yg-b3{ width: 650px; top: 164px; z-index: 2; }   /* 18% */
.yg-b4{ width: 500px; top: 246px; z-index: 3; }   /* 12% (on top) */
.yg-b5{ width: 400px; top: 328px; z-index: 1; }   /* 8% */

/* ===== responsive ===== */
@media (max-width: 1300px){
  .yg-right{ padding-right: 90px; }
  .yg-bars{ width: 820px; }
}

@media (max-width: 1100px){
  .yg-right{ padding-right: 40px; }
  .yg-bars{ width: 760px; }
}

@media (max-width: 900px){
  .yg-body{
    flex-direction: column;
    align-items: flex-start;
  }
  .yg-right{
    padding-right: 0;
    width: 100%;
    justify-content: flex-start;
  }

  /* stack list on mobile */
  .yg-bars{
    width: 100%;
    height: auto;
    display: grid;
    gap: 14px;
    margin-top: 26px;
  }
  .yg-bar{
    position: relative;
    right: auto;
    top: auto;
    width: 100% !important;
    height: 82px;
    padding: 0 22px;
  }
  .yg-pct{ font-size: 30px; }
  .yg-label{ font-size: 16px; }
}


/* ==========================
   YEARLY GROWTH — FINAL EXACT
   ========================== */

.yearly-growth{
  background: #e7f3ef;
  padding: clamp(70px, 6vw, 110px) 0 clamp(80px, 6vw, 120px);
  color: #0f2a23;
  overflow: hidden; /* avoids horizontal scroll if anything shifts */
}

.yearly-growth .yg-container{
  width: min(1480px, calc(100% - 140px));
  margin: 0 auto;
}

.yearly-growth .yg-head{
  text-align: center;
  margin-bottom: clamp(50px, 4.8vw, 80px);
}

.yearly-growth .yg-title{
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(46px, 5.2vw, 86px);
  line-height: 1.05;
}

.yearly-growth .yg-sub{
  margin: 14px auto 0;
  max-width: 820px;
  color: rgba(15,42,35,.55);
  font-size: 16px;
  line-height: 1.6;
}

.yearly-growth .yg-body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 4vw, 70px);
}

/* LEFT */
.yearly-growth .yg-left{
  flex: 0 0 46%;
}

.yearly-growth .yg-kpi{
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: clamp(86px, 7.2vw, 140px);
  line-height: .95;
}

.yearly-growth .yg-kpi-label{
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: rgba(15,42,35,.9);
}

.yearly-growth .yg-big{
  margin-top: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(72px, 6.2vw, 120px);
  line-height: .95;
}

.yearly-growth .yg-desc{
  margin: 22px 0 0;
  color: rgba(15,42,35,.55);
  font-size: 16px;
  line-height: 1.65;
}

.yearly-growth .yg-cta{
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--lime);
  color: rgba(0,0,0,.92);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

/* RIGHT */
.yearly-growth .yg-right{
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  overflow: visible !important;
}

/* === KEY FIX ===
   Original has ~151px space from bars to the right edge.
   We force that exact offset with translateX(-151px).
*/
.yearly-growth .yg-bars{
  position: relative;
  width: 860px;
  height: 420px;

  /* this guarantees the right gap even if flex/margins fail */
  transform: translateX(-151px);
  will-change: transform;
}

/* BAR BASE */
.yearly-growth .yg-bar{
  position: absolute;
  right: 0; /* align all right edges */
  height: 96px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 70px 0 68px;
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
}

.yearly-growth .yg-pct{
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.02em;
}

.yearly-growth .yg-label{
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 18px;
}

/* colors */
.yearly-growth .yg-bar--lime{
  background: var(--lime);
  color: rgba(0,0,0,.92);
}
.yearly-growth .yg-bar--dark{
  background: var(--deep-solid);
  color: #fff;
}

/* exact widths + rhythm */
.yearly-growth .yg-b1{ width: 560px; top: 0px;   z-index: 1; }
.yearly-growth .yg-b2{ width: 810px; top: 82px;  z-index: 3; }
.yearly-growth .yg-b3{ width: 650px; top: 164px; z-index: 2; }
.yearly-growth .yg-b4{ width: 500px; top: 246px; z-index: 3; }
.yearly-growth .yg-b5{ width: 400px; top: 328px; z-index: 1; }

/* Responsive: reduce the fixed 151px shift gradually */
@media (max-width: 1400px){
  .yearly-growth .yg-container{ width: calc(100% - 60px); }
  .yearly-growth .yg-bars{ transform: translateX(-110px); width: 820px; }
}
@media (max-width: 1200px){
  .yearly-growth .yg-bars{ transform: translateX(-60px); width: 760px; }
}

/* Mobile stack */
@media (max-width: 900px){
  .yearly-growth .yg-body{
    flex-direction: column;
    align-items: flex-start;
  }

  .yearly-growth .yg-right{
    width: 100%;
    justify-content: flex-start;
  }

  .yearly-growth .yg-bars{
    width: 100%;
    height: auto;
    transform: none;
    display: grid;
    gap: 14px;
    margin-top: 26px;
  }

  .yearly-growth .yg-bar{
    position: relative;
    right: auto;
    top: auto;
    width: 100% !important;
    height: 82px;
    padding: 0 22px;
  }

  .yearly-growth .yg-pct{ font-size: 30px; }
  .yearly-growth .yg-label{ font-size: 16px; }
}


/* ==========================
   WHY WE ARE YOUR BEST CHOICE
   ========================== */

.choice{
  background: #ffffff;
  padding: 92px 0 108px;
  color: #0f2a23;
}

.choice__container{
  width: min(1480px, calc(100% - 140px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 92px;
  align-items: start;
}

/* LEFT */
.choice__title{
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(44px, 4.4vw, 78px);
}

.choice__title > span{
  display: block;
}

.choice__lead{
  margin: 26px 0 0;
  max-width: 620px;
  color: rgba(15,42,35,.55);
  font-size: 16.5px;
  line-height: 1.7;
}

.choice__list{
  margin-top: 44px;
  display: grid;
  gap: 38px;
}

.choice__item{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}

.choice__icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: rgba(15,42,35,.92);
}

.choice__content{ padding-top: 2px; }

.choice__itemTitle{
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 22px;
  color: rgba(15,42,35,.95);
}

.choice__itemText{
  margin-top: 10px;
  color: rgba(15,42,35,.55);
  font-size: 16.5px;
  line-height: 1.7;
}

/* RIGHT */
.choice__right{
  display: flex;
  justify-content: flex-end;
}

.choice__img{
  width: min(680px, 100%);
  height: 610px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 1100px){
  .choice__container{
    width: calc(100% - 60px);
    gap: 60px;
  }
  .choice__img{
    height: 560px;
  }
}

@media (max-width: 900px){
  .choice{
    padding: 72px 0 88px;
  }
  .choice__container{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .choice__right{
    justify-content: flex-start;
  }
  .choice__img{
    width: 100%;
    height: 520px;
    border-radius: 14px;
  }
}

@media (max-width: 520px){
  .choice__container{
    width: calc(100% - 36px);
  }
  .choice__lead,
  .choice__itemText{
    font-size: 15.5px;
  }
  .choice__item{
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .choice__icon{
    width: 42px;
    height: 42px;
  }
  .choice__img{
    height: 420px;
  }
}


/* ==========================
   WORDS OF OUR CLIENTS
   Right side = vertical slider
   ========================== */

.wowc{
  background: #ffffff;
  padding: 110px 0 120px;
  color: #0f2a23;
}

.wowc__container{
  width: min(1480px, calc(100% - 140px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

/* LEFT */
.wowc__miniStat{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px; /* like screenshot */
}

.wowc__miniIc{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--lime, #D3FF55);
  display: grid;
  place-items: center;
  color: rgba(0,0,0,.92);
}

.wowc__miniTxt{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wowc__miniNum{
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wowc__miniLbl{
  font-size: 18px;
  line-height: 1.1;
  color: rgba(15,42,35,.55);
  font-weight: 600;
}

.wowc__title{
  margin: 110px 0 0; /* big whitespace like screenshot */
  font-size: clamp(58px, 5.2vw, 88px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.wowc__desc{
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(15,42,35,.55);
  font-weight: 600;
}

/* RIGHT */
.wowc__right{
  display: flex;
  justify-content: flex-end;
}

.wowc__viewport{
  width: min(700px, 100%);
  height: 760px;               /* shows 2 cards + partial third like screenshot */
  overflow: hidden;            /* hides extra cards */
  position: relative;
  padding-right: 10px;         /* subtle inner gutter like screenshot */
}

/* top/bottom fade (soft) */
.wowc__viewport::before,
.wowc__viewport::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  height: 70px;
  pointer-events:none;
  z-index: 3;
}
.wowc__viewport::before{
  top: 0;
  background: linear-gradient(#fff 35%, rgba(255,255,255,0));
}
.wowc__viewport::after{
  bottom: 0;
  background: linear-gradient(rgba(255,255,255,0), #fff 65%);
}

.wowc__list{
  display: grid;
  gap: 34px;                 /* spacing between cards */
  padding: 4px 0 160px;      /* creates breathing room like screenshot */
}

/* Card */
.wowc__card{
  background: #ffffff;
  border: 1px solid rgba(15,42,35,.08);
  border-radius: 18px;
  padding: 34px 34px 28px;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* keep clean like original */
}

/* Quote text */
.wowc__quote{
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(15,42,35,.92);
  font-size: 19px;
  line-height: 1.55;
}

/* Person row */
.wowc__person{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wowc__avatar{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(15,42,35,.10);
}

.wowc__name{
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 18px;
  color: rgba(15,42,35,.92);
}

.wowc__role{
  margin-top: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 13px;
  color: rgba(15,42,35,.45);
}

/* Responsive */
@media (max-width: 1200px){
  .wowc__container{ width: calc(100% - 60px); gap: 60px; }
  .wowc__title{ margin-top: 70px; }
  .wowc__viewport{ height: 720px; }
}

@media (max-width: 900px){
  .wowc{
    padding: 80px 0 90px;
  }
  .wowc__container{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wowc__right{ justify-content: flex-start; }
  .wowc__viewport{
    width: 100%;
    height: 640px;
  }
  .wowc__title{
    margin-top: 46px;
  }
}

@media (max-width: 520px){
  .wowc__container{ width: calc(100% - 36px); }
  .wowc__miniNum{ font-size: 40px; }
  .wowc__miniLbl{ font-size: 16px; }
  .wowc__card{ padding: 26px 22px 22px; border-radius: 16px; }
  .wowc__quote{ font-size: 16px; }
  .wowc__viewport{ height: 580px; }
}


/* =========================
   BLOG / INSIGHTS SECTION (ONLY)
   ========================= */

:root{
  --ins-ink: #0e2b22;
  --ins-muted: #7a8682;
  --ins-border: #e3e9e7;
  --ins-pill-border: #d9e2df;
  --ins-shadow: 0 8px 22px rgba(0,0,0,.03);

  --ins-wrap: 1320px;
  --ins-card-radius: 22px;
  --ins-media-radius: 18px;
  --ins-pill-radius: 999px;
}

.insights{
  padding: 54px 0 70px;
  background: #fff;
}

.insights__wrap{
  width: min(var(--ins-wrap), calc(100% - 96px));
  margin: 0 auto;
}

.insights__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 36px;
}

.postCard{
  background: #fff;
  border: 1px solid var(--ins-border);
  border-radius: var(--ins-card-radius);
  box-shadow: var(--ins-shadow);

  padding: 26px;
  display: flex;
  align-items: center;
  gap: 26px;

  min-height: 250px;
}

.postCard__content{
  flex: 1 1 52%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-left: 4px;
}

.postCard__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 22px;

  border-radius: var(--ins-pill-radius);
  border: 1px solid var(--ins-pill-border);
  background: #fff;

  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: #6c7a75;

  width: fit-content;
}

.postCard__meta{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 12px;
  font-weight: 700;
  color: var(--ins-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.postCard__dot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--ins-muted);
  display: inline-block;
}

.postCard__dash{ opacity: .9; }

.postCard__title{
  margin: 14px 0 0;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ins-ink);

  /* CRITICAL: stops “one-word-per-line” */
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.postCard__link{
  margin-top: auto;
  padding-top: 18px;

  display: inline-flex;
  align-items: center;
  gap: 18px;

  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: var(--ins-ink);
  text-decoration: none;
}

.postCard__arrow{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.postCard__media{
  flex: 0 0 44%;
  height: 210px;

  border-radius: var(--ins-media-radius);
  overflow: hidden;
  background: #f2f4f3;
}

.postCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1100px){
  .insights__wrap{ width: min(var(--ins-wrap), calc(100% - 56px)); }
  .postCard__title{ font-size: 28px; }
  .postCard__media{ height: 200px; }
}

@media (max-width: 900px){
  .insights__grid{ grid-template-columns: 1fr; }
  .postCard{ min-height: 0; }
}

@media (max-width: 620px){
  .insights__wrap{ width: calc(100% - 28px); }

  .postCard{
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 16px;
  }

  .postCard__media{
    flex: 0 0 auto;
    height: 220px;
  }

  .postCard__title{
    font-size: 24px;
    line-height: 1.14;
  }

  .postCard__link{ padding-top: 14px; }
}


/* =========================
   RECENT BLOG UPDATES (ONLY)
   ========================= */

.rbu{
  background: #ffffff;
  padding: clamp(56px, 7vw, 96px) 0 clamp(52px, 6.5vw, 84px);
}

.rbu__inner{
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.rbu__title{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0f2a22; /* deep green like screenshot */
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 1.02;
}

.rbu__sub{
  margin: 16px auto 0;
  max-width: 720px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #7e8b88;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
}

/* tighter on small screens (keeps it like the original header block) */
@media (max-width: 520px){
  .rbu{ padding: 52px 0 62px; }
  .rbu__sub{ margin-top: 12px; }
}


/* ===== LET'S WORK TOGETHER (CTA) ===== */
.cta-work{
  padding: clamp(70px, 9vw, 160px) 0;
  background: #fff;
}

.cta-work__box{
  /* outer width like screenshot: almost full, small side gutters */
  width: min(1800px, calc(100% - 200px));
  margin: 0 auto;

  background: #D3FF55;
  border-radius: clamp(28px, 3.2vw, 44px);

  /* height & inner spacing similar to original */
  min-height: clamp(380px, 34vw, 520px);
  padding: clamp(46px, 5.6vw, 86px) clamp(60px, 6.6vw, 110px);

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  column-gap: clamp(40px, 6vw, 110px);
}

.cta-work__left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 34px);
}

.cta-work__pill{
  width: fit-content;
  padding: 10px 22px;
  border-radius: 999px;

  border: 1.5px solid rgba(8, 26, 20, .55);
  background: rgba(255,255,255,.08);

  color: #061c16;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
}

.cta-work__title{
  margin: 0;
  color: #071f19;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: .86;

  /* big like screenshot */
  font-size: clamp(58px, 5.7vw, 118px);
}
.cta-work__title span{ display:block; }

.cta-work__right{
  justify-self: end;
  max-width: 520px;

  /* original looks slightly “higher” than dead-center */
  transform: translateY(-10px);
}

.cta-work__copy{
  margin: 0 0 22px;
  color: #071f19;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

.cta-work__btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 56px;
  padding: 0 28px;
  border-radius: 999px;

  background: #0f2b22;
  color: #D3FF55;

  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.cta-work__btn-ic{
  color: #D3FF55;
  flex: 0 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .cta-work__box{
    grid-template-columns: 1fr;
    row-gap: 28px;
    min-height: auto;
  }

  .cta-work__right{
    justify-self: start;
    transform: none;
  }
}

@media (max-width: 560px){
  .cta-work__box{
    width: calc(100% - 28px);
    padding: 34px 22px;
    border-radius: 26px;
  }

  .cta-work__pill{
    font-size: 12px;
    padding: 9px 16px;
  }

  .cta-work__btn{
    height: 52px;
    padding: 0 22px;
  }
}


/* FOOTER SECTION (ONLY) */
.gf-footer,
.gf-footer * { box-sizing: border-box; }

.gf-footer{
  background:#fff;
  color:#0f2c22;
  padding: 240px 0 80px; /* big top whitespace like reference */
}

.gf-footer__inner{
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 140px;
}

.gf-footer__grid{
  display:grid;
  grid-template-columns: 420px 220px 160px 1fr;
  column-gap: 10px;
  align-items:start;
}

/* Brand */
.gf-footer__logo{
  display:inline-flex;
  align-items:flex-end;
  gap: 10px;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.04em;
  text-decoration:none;
  color:#0f2c22;
}

.gf-footer__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:#cfff3b;
  transform: translateY(-6px);
}

.gf-footer__brand-text{
  margin: 22px 0 0;
  max-width: 360px;
  color:#7a8480;
  font-size: 18px;
  line-height: 1.55;
}

/* Columns */
.gf-footer__heading{
  margin: 8px 0 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color:#0f2c22;
}

.gf-footer__links a{
  display:block;
  text-decoration:none;
  color:#8a9490;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.gf-footer__links a:hover{ color:#0f2c22; }

/* Newsletter */
.gf-footer__news-title{
  margin: 6px 0 14px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color:#0f2c22;
  white-space: nowrap; /* keep on one line like reference */
}

.gf-footer__news-text{
  margin: 0 0 22px;
  max-width: 520px;
  color:#7a8480;
  font-size: 18px;
  line-height: 1.55;
}

.gf-footer__form{
  width: 80%;
  max-width: 520px;
  display:flex;
  align-items:center;
  gap: 8px;
  border: 1px solid #e3e8e6;
  border-radius: 12px;
  padding: 6px;
  background:#fff;
}

.gf-footer__input{
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  font-size: 16px;
  color:#0f2c22;
  padding: 14px 16px;
  min-width: 0;
  background: transparent;
}

.gf-footer__input::placeholder{ color:#9aa4a0; }

.gf-footer__btn{
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  background:#cfff3b;
  color:#0f2c22;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 10px;
}

.gf-footer__btn:active{ transform: translateY(1px); }

/* Bottom */
.gf-footer__divider{
  height: 1px;
  background:#e7eeeb;
  margin: 170px 0 26px;
}

.gf-footer__copyright{
  text-align:center;
  color:#9aa4a0;
  font-size: 22px;
  line-height: 1.4;
}

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

/* Responsive */
@media (max-width: 1200px){
  .gf-footer{ padding: 160px 0 70px; }
  .gf-footer__inner{ padding: 0 64px; }
  .gf-footer__grid{ grid-template-columns: 1.2fr 0.7fr 0.6fr 1.2fr; column-gap: 64px; }
  .gf-footer__news-title{ white-space: normal; }
}

@media (max-width: 900px){
  .gf-footer{ padding: 110px 0 60px; }
  .gf-footer__grid{ grid-template-columns: 1fr 1fr; row-gap: 56px; }
  .gf-footer__news{ grid-column: 1 / -1; }
  .gf-footer__divider{ margin-top: 90px; }
}

@media (max-width: 560px){
  .gf-footer__inner{ padding: 0 20px; }
  .gf-footer__grid{ grid-template-columns: 1fr; row-gap: 44px; }
  .gf-footer__logo{ font-size: 38px; }
  .gf-footer__links a{ font-size: 20px; }
  .gf-footer__form{ max-width: 100%; }
  .gf-footer__btn{ padding: 14px 22px; }
  .gf-footer__copyright{ font-size: 18px; }
}


/* =========================================================
   2560×1600 DESKTOP — LARGE SCREEN OVERRIDES (paste last)
   ========================================================= */
@media (min-width: 2560px) and (min-height: 1600px){

  /* Global scale */
  :root{
    --container: 1900px;
    --pad: 34px;
    --nav-h: 92px;

    /* blog/insights variables you defined later */
    --ins-wrap: 1700px;
  }

  /* =========================
     HERO / NAV
     ========================= */
  .nav-wrap{ padding-top: 34px; }

  .nav-pill{
    height: 92px;
    width: min(1900px, calc(100% - 520px));
    padding: 0 40px 0 40px;
  }

  .brand{ gap: 14px; min-width: 220px; }
  .brand-ic{ width: 44px; height: 44px; }
  .brand-txt{ font-size: 28px; }

  .nav-links{ gap: 72px; }
  .nav-link{ font-size: 13px; }

  .cta{
    height: 58px;
    padding: 0 32px;
    font-size: 13px;
  }

  .hero{
    padding: 175px var(--pad) 230px;
  }

  .hero-pill{
    padding: 12px 24px;
    font-size: 13px;
  }

  .hero-title{
    font-size: clamp(90px, 6.2vw, 168px);
    line-height: .92;
  }

  /* Background shapes (keep the same look, just a bit bigger so they reach edges nicely) */
  .b1{ width: 1480px; height: 820px; left: -340px; top: -120px; }
  .b2{ width: 1380px; height: 820px; right: -440px; top: 140px; }
  .b3{ width: 1200px; height: 720px; left: 340px; top: 320px; }

  .r1{ width: 1400px; height: 860px; right: -660px; top: 40px; }
  .r2{ width: 1560px; height: 980px; left: -760px; top: 70px; }

  /* Bottom slab + marquee */
  .brands{
    width: min(1240px, 52vw);
    height: 170px;
  }

  .brands-marquee{
    left: 62px;
    right: 86px;
    top: 68px;
    height: 60px;
  }

  .marquee-set{ gap: 104px; padding-right: 104px; }
  .brand-logo{ height: 52px; }

  /* Stats */
  .stats{ right: 96px; bottom: 58px; gap: 22px; }
  .stats-ic{ width: 96px; height: 96px; }
  .stats-num{ font-size: 86px; }
  .stats-sub{ font-size: 18px; }


  /* =========================
     SERVICE EXPERTISE
     ========================= */
  .svc-section{ padding: 125px 0; }

  .svc-wrap{
    width: min(1750px, calc(100% - 520px));
  }

  .svc-head{ gap: 70px; margin-bottom: 56px; }

  .svc-title{ font-size: 96px; }
  .svc-sub{
    font-size: 18px;
    max-width: 460px;
    line-height: 1.6;
  }

  .svc-list{ gap: 34px; }

  .svc-card{
    min-height: 320px;
    border-radius: 18px;
    --ctaSize: 124px;
    --ctaTop: 44%;
  }

  .svc-left{ padding: 92px 96px 92px 128px; }
  .svc-icon{ width: 64px; height: 64px; margin-bottom: 22px; }
  .svc-name{ font-size: 34px; }
  .svc-desc{ font-size: 16px; }

  .svc-cta{ right: 96px; }


  /* =========================
     CASE STUDIES
     ========================= */
  .cs-section{ padding: 145px 0 155px; }

  .cs-container{
    width: min(1900px, calc(100% - 520px));
  }

  .cs-head{ margin-bottom: 92px; }

  .cs-title{
    font-size: clamp(78px, 4.1vw, 112px);
  }

  .cs-sub{
    font-size: 18px;
    max-width: 1040px;
  }

  .cs-grid{ gap: 46px; }

  .cs-card{
    border-radius: 20px;
    padding: 6px;
    grid-template-columns: 1fr 46%;
    gap: 18px;
  }

  .cs-content{ padding: 48px 32px 38px 40px; }
  .cs-name{ font-size: 30px; }
  .cs-desc{ font-size: 17px; }

  .cs-media{ min-height: 310px; border-radius: 16px; }

  .cs-footer{ margin-top: 82px; }
  .cs-all{ padding: 18px 38px; }


  /* =========================
     YEARLY GROWTH (both blocks)
     ========================= */
  .yg-container,
  .yearly-growth .yg-container{
    width: min(1900px, calc(100% - 520px));
  }

  .yg-title,
  .yearly-growth .yg-title{
    font-size: clamp(78px, 4.8vw, 112px);
  }

  .yg-sub,
  .yearly-growth .yg-sub{
    font-size: 18px;
    max-width: 980px;
  }

  .yg-kpi,
  .yearly-growth .yg-kpi{
    font-size: clamp(120px, 6.9vw, 178px);
  }

  .yg-big,
  .yearly-growth .yg-big{
    font-size: clamp(100px, 6.0vw, 160px);
  }

  /* push the bars block left (so it matches your reference at 2560) */
  .yg-right{ padding-right: 200px; }

  .yg-bars{
    width: 980px;
    height: 480px;
  }

  .yg-bar{
    height: 112px;
    padding: 0 90px 0 86px;
    border-radius: 12px;
  }

  .yg-pct{ font-size: 46px; }
  .yg-label{ font-size: 20px; }

  .yg-b1{ width: 650px; top: 0px; }
  .yg-b2{ width: 940px; top: 94px; }
  .yg-b3{ width: 780px; top: 188px; }
  .yg-b4{ width: 600px; top: 282px; }
  .yg-b5{ width: 470px; top: 376px; }

  /* duplicate “final exact” block */
  .yearly-growth .yg-bars{
    width: 980px;
    height: 480px;
    transform: translateX(-200px);
  }

  .yearly-growth .yg-bar{
    height: 112px;
    padding: 0 90px 0 86px;
    border-radius: 12px;
  }

  .yearly-growth .yg-b1{ width: 650px; top: 0px; }
  .yearly-growth .yg-b2{ width: 940px; top: 94px; }
  .yearly-growth .yg-b3{ width: 780px; top: 188px; }
  .yearly-growth .yg-b4{ width: 600px; top: 282px; }
  .yearly-growth .yg-b5{ width: 470px; top: 376px; }


  /* =========================
     WHY CHOOSE US
     ========================= */
  .choice{ padding: 120px 0 140px; }

  .choice__container{
    width: min(1900px, calc(100% - 520px));
    gap: 110px;
  }

  .choice__title{ font-size: clamp(60px, 3.9vw, 92px); }
  .choice__lead{ font-size: 18px; max-width: 720px; }

  .choice__itemTitle{ font-size: 24px; }
  .choice__itemText{ font-size: 18px; }

  .choice__img{
    width: min(760px, 100%);
    height: 680px;
  }


  /* =========================
     WORDS OF OUR CLIENTS
     ========================= */
  .wowc{ padding: 140px 0 155px; }

  .wowc__container{
    width: min(1900px, calc(100% - 520px));
    gap: 110px;
  }

  .wowc__miniNum{ font-size: 50px; }
  .wowc__miniLbl{ font-size: 20px; }

  .wowc__title{
    margin-top: 130px;
    font-size: clamp(72px, 4.6vw, 110px);
  }

  .wowc__desc{ font-size: 18px; max-width: 600px; }

  .wowc__viewport{
    width: min(780px, 100%);
    height: 860px;
  }

  .wowc__quote{ font-size: 20px; }
  .wowc__name{ font-size: 19px; }
  .wowc__role{ font-size: 13px; }


  /* =========================
     INSIGHTS / BLOG CARDS
     ========================= */
  .insights{ padding: 80px 0 100px; }

  .insights__wrap{
    width: min(var(--ins-wrap), calc(100% - 520px));
  }

  .insights__grid{ gap: 44px 44px; }

  .postCard{
    padding: 30px;
    gap: 30px;
    min-height: 280px;
  }

  .postCard__title{ font-size: 34px; }
  .postCard__media{ height: 230px; }


  /* =========================
     RECENT BLOG UPDATES HEADER
     ========================= */
  .rbu{ padding: 92px 0 100px; }

  .rbu__inner{
    width: min(1400px, calc(100% - 520px));
  }

  .rbu__title{ font-size: clamp(64px, 4.4vw, 110px); }
  .rbu__sub{ font-size: 18px; max-width: 900px; }


  /* =========================
     LET’S WORK TOGETHER CTA
     ========================= */
  .cta-work{ padding: 150px 0; }

  .cta-work__box{
    width: min(2000px, calc(100% - 520px));
    min-height: 560px;
    padding: 96px 130px;
    border-radius: 48px;
    column-gap: 130px;
  }

  .cta-work__pill{ font-size: 15px; padding: 12px 26px; }
  .cta-work__title{ font-size: clamp(86px, 5.3vw, 150px); }
  .cta-work__copy{ font-size: 22px; }

  .cta-work__btn{
    height: 60px;
    padding: 0 34px;
    font-size: 14px;
  }


  /* =========================
     FOOTER
     ========================= */
  .gf-footer{ padding: 300px 0 100px; }

  .gf-footer__inner{
    max-width: 1900px;
    padding: 0 0px;
  }

  .gf-footer__grid{
    grid-template-columns: 520px 260px 220px 1fr;
    column-gap: 90px;
  }

  .gf-footer__logo{ font-size: 56px; }
  .gf-footer__brand-text{ font-size: 20px; max-width: 440px; }

  .gf-footer__heading{ font-size: 14px; }

  .gf-footer__links a{
    font-size: 24px;
    margin: 0 0 20px;
  }

  .gf-footer__news-title{ font-size: 30px; }
  .gf-footer__news-text{ font-size: 20px; max-width: 620px; }

  .gf-footer__form{ max-width: 600px; }
  .gf-footer__input{ font-size: 17px; padding: 16px 18px; }
  .gf-footer__btn{ padding: 16px 38px; }

  .gf-footer__divider{ margin: 210px 0 30px; }
  .gf-footer__copyright{ font-size: 24px; }
}

/* ===== Media Marketing Section Only ===== */
/* Expects HTML classes: .service-hero .wrap .pill .title .hero-media img .float-card */

.service-hero{
  padding: clamp(32px, 5vw, 72px) 20px clamp(28px, 5vw, 64px);
}

.service-hero .wrap{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.service-hero .pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid #cfd6dc;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6b7280;
  background: #fff;
}

.service-hero .title{
  margin: clamp(14px, 2vw, 22px) 0 clamp(18px, 3vw, 34px);
  color: #0e3a2b;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 4.05;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

.service-hero .hero-media{
  margin: 0 auto;
  width: min(1100px, 92vw);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.service-hero .hero-media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}



@media (max-width: 480px){
  .service-hero{ padding-left: 14px; padding-right: 14px; }
  .service-hero .pill{ padding: 7px 14px; font-size: 11px; }
  .service-hero .hero-media{ width: 100%; }
  .service-hero .float-card{ display: none; }
}

@media (min-width: 1024px){
  .service-hero .hero-media{ width: min(1200px, 88vw); }
}

/* ===== 2560×1600 optimization ===== */
@media (min-width: 2400px) and (min-height: 1400px){
  .service-hero{ padding: 96px 40px 80px; }

  .service-hero .wrap{ max-width: 1800px; }

  .service-hero .pill{
    padding: 10px 24px;
    font-size: 13px;
  }

  .service-hero .title{
    font-size: clamp(4.6rem, 3.6vw, 6.2rem);
    margin-top: 26px;
    margin-bottom: 44px;
  }

  .service-hero .hero-media{
    width: min(1700px, 78vw);
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
  }

  .service-hero .float-card{
    right: 18px;
    bottom: -24px;
    border-radius: 16px;
  }
}

body.service-page{
  background: #fff;
  color: #fff; /* or whatever dark text you want on white */
}

/* ===== Media Marketing Stats + Content Section ===== */
.mm-section{
  background:#fff;
  color:#0f172a;
  padding: clamp(36px, 5vw, 72px) 20px;
}

.mm-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Stats --- */
.mm-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items:center;
  text-align:center;
  padding-bottom: clamp(22px, 4vw, 50px);
}

.mm-stat{
  position:relative;
  padding: 8px 10px;
}

.mm-divider::before{
  content:"";
  position:absolute;
  left: calc(-1 * (clamp(18px, 3vw, 40px) / 2));
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: #d9e2de; /* light green/grey divider */
}

.mm-value{
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color:#0e3a2b;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.mm-sup{
  font-size: 0.35em;
  vertical-align: super;
  margin-left: 0.02em;
}

.mm-star{
  font-size: 0.22em;
  vertical-align: super;
  margin-left: 0.08em;
}

.mm-label{
  margin-top: 10px;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color:#6b7280;
}

/* --- Content blocks --- */
.mm-content{
  max-width: 980px;        /* makes text block narrower like screenshot */
  margin: 0 auto;
  text-align:left;
}

.mm-block + .mm-block{
  margin-top: clamp(28px, 4vw, 44px);
}

.mm-heading{
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  letter-spacing: -0.01em;
  color:#0e3a2b;
  font-weight: 800;
  text-transform: uppercase;
}

.mm-text{
  margin: 0;
  color:#64748b;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  max-width: 72ch;
}

/* --- Responsive: stack stats on small screens --- */
@media (max-width: 768px){
  .mm-stats{
    grid-template-columns: 1fr;
    text-align:center;
    gap: 18px;
  }

  .mm-divider::before{
    display:none;
  }

  .mm-stat{
    padding: 10px 0;
    border-bottom: 2px solid #d9e2de;
  }

  .mm-stat:last-child{
    border-bottom: none;
  }

  .mm-content{
    text-align:left;
  }
}

/* --- 2560×1600 optimization (big screens) --- */
@media (min-width: 2400px) and (min-height: 1400px){
  .mm-wrap{ max-width: 1700px; }
  .mm-content{ max-width: 1200px; }

  .mm-section{
    padding: 90px 40px;
  }

  .mm-value{
    font-size: clamp(6.2rem, 5vw, 7.4rem);
  }

  .mm-heading{
    font-size: 1.9rem;
  }

  .mm-text{
    font-size: 1.25rem;
    line-height: 1.75;
  }
}


/* ===== BENEFITS Section ===== */
.benefits-section{
  background:#fff;
  color:#0f172a;
  padding: clamp(36px, 5vw, 72px) 20px clamp(28px, 5vw, 64px);
}

.benefits-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-title{
  margin: 0 0 clamp(18px, 3vw, 34px);
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color:#0e3a2b;
  text-transform: uppercase;
}

/* 4 columns like screenshot */
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.benefit-heading{
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color:#0e3a2b;
}

.benefit-text{
  margin: 0;
  color:#6b7280;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  max-width: 28ch;
}

/* Image card */
.benefits-media{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.benefits-media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .benefits-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefit-text{
    max-width: 42ch;
  }
}

@media (max-width: 560px){
  .benefits-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .benefit-text{
    max-width: 70ch;
  }
}

/* ===== 2560×1600 Optimization ===== */
@media (min-width: 2400px) and (min-height: 1400px){
  .benefits-wrap{ max-width: 1700px; }
  .benefits-section{ padding: 92px 40px 80px; }

  .benefits-title{
    font-size: clamp(5.2rem, 4.2vw, 6.4rem);
    margin-bottom: 44px;
  }

  .benefits-grid{
    gap: 56px;
    margin-bottom: 52px;
  }

  .benefit-heading{ font-size: 1.6rem; }
  .benefit-text{ font-size: 1.2rem; max-width: 34ch; }

  .benefits-media{
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
  }
}