:root{
  --lime: #E7E61C;
  --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;
}

/* ===== 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: #102735;
  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;
}
/* ===== OmniVue logo in navbar ===== */
.brand.brand--ovm{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-width: auto;
  line-height: 0;
  flex: 0 0 auto;
}

.brand-ovm-logo{
  display: block;
  width: 150px;   /* desktop */
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* make nav spacing better with image logo */
.nav-pill{
  padding: 0 28px 0 24px;
}

.nav-links{
  gap: 48px;
}

/* large screens */
@media (min-width: 1600px){
  .brand-ovm-logo{
    width: 320px;
  }
}

/* tablet */
@media (max-width: 1100px){
  .brand-ovm-logo{
    width: 240px;
  }
}

/* mobile */
@media (max-width: 900px){

.svc-name{
  font-size: 17px !important;
}

.cs-title{
   font-size: 40px !important;
}

.yearly-growth .yg-title{
  font-size: 40px !important;
}
.choice__title
{
   font-size: 35px !important;
}

.choice__itemTitle
{
 font-size: 18px !important;
}
.rbu__title
{
  font-size: 35px !important;
}
.cta-work__title
{
  line-height: 1.10 !important;
    font-size: 26px !important;
}
.yg-big
{
    font-size: 26px !important;
}
  .brand-ovm-logo{
    width: 150px;
  }
}
.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: #E7E61C; }
.nav-link.is-active::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: #E7E61C;
}

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


.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown__trigger-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: inherit;
  opacity: .92;
}

.nav-dropdown__trigger-icon svg{
  width: 14px;
  height: 14px;
  transition: transform .22s ease;
}

.nav-dropdown__caret,
.m-dropdown__caret{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.92);
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.nav-dropdown__caret:hover,
.nav-dropdown__caret:focus-visible,
.m-dropdown__caret:hover,
.m-dropdown__caret:focus-visible{
  background: rgba(255,255,255,.08);
  outline: none;
}

.nav-dropdown__caret svg,
.m-dropdown__caret svg{
  width: 14px;
  height: 14px;
  transition: transform .22s ease;
}

.nav-dropdown:hover .nav-dropdown__trigger-icon svg,
.nav-dropdown:focus-within .nav-dropdown__trigger-icon svg,
.nav-dropdown.is-open .nav-dropdown__trigger-icon svg,
.m-dropdown.is-open .m-dropdown__caret svg{
  transform: rotate(180deg);
}

.nav-dropdown__menu{
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 280px;
  max-width: 320px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  background: #102735;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 44px rgba(0,0,0,.34);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 22px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-dropdown__header svg{
  width: 14px;
  height: 14px;
  opacity: .9;
}

.nav-dropdown__list{
  padding: 12px 0 10px;
}

.nav-dropdown__item{
  display: block;
  padding: 16px 22px;
  color: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.nav-dropdown__item:hover,
.nav-dropdown__item:focus-visible,
.m-dropdown__item:hover,
.m-dropdown__item:focus-visible{
  background: rgba(255,255,255,.08);
  color: #ffffff;
  outline: none;
}

.nav-dropdown__item:hover,
.nav-dropdown__item:focus-visible{
  padding-left: 26px;
}

.nav-dropdown__item.is-current,
.m-dropdown__item.is-current{
  color: #E7E61C;
}

.m-dropdown{
  margin: 2px 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: #102735;
  border: 1px solid rgba(255,255,255,.08);
}

.m-dropdown__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 8px 6px 0;
}

.m-dropdown__top .m-link{
  flex: 1 1 auto;
}

.m-dropdown__panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.m-dropdown.is-open .m-dropdown__panel{
  grid-template-rows: 1fr;
}

.m-dropdown__panel-inner{
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 8px 0;
}

.m-dropdown__item{
  display: block;
  padding: 14px 20px 14px 22px;
  color: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

@media (max-width: 900px){
  .nav-dropdown{
    display: none;
  }
}

@media (min-width: 901px){
  .m-dropdown{
    display: none;
  }
}

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

.cta{
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #E7E61C;
  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;
}

/* Keep mobile nav trigger color stable across hover/focus/active states */
.greeko-scope .hamburger,
.greeko-scope .hamburger:hover,
.greeko-scope .hamburger:focus,
.greeko-scope .hamburger:focus-visible,
.greeko-scope .hamburger:active{
  background: #E7E61C !important;
  border-color: transparent !important;
  color: rgba(0,0,0,.9) !important;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.greeko-scope .hamburger:hover span,
.greeko-scope .hamburger:focus span,
.greeko-scope .hamburger:focus-visible span,
.greeko-scope .hamburger:active span{
  background: rgba(0,0,0,.9) !important;
}

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

.m-cta{
  margin-top: 10px;
  height: 52px;
  border-radius: 999px;
  background: #E7E61C;
  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: 153px var(--pad) 200px;
  text-align:center;
}

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

.hero-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: #ffffff;
  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-pill .highlight{
  color: #E7E61C;
}

.hero-title{
  margin: 0px 0 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: white;
  line-height: 60px;
  font-size: 52px;
  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;
}

@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: #E7E61C;
  display:grid;
  place-items:center;
  box-shadow: 0 12px 30px rgba(0,0,0,.26);
}

.stats-txt{
  display:flex;
  flex-direction:column;
  gap: 6px;
  color:#ffffff;
}
.stats-num{
  font-weight: 600;
  font-size: 45px;
  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: 160px var(--pad) 160px; }

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

  

  /* 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: #E7E61C;
    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: 120px 18px 190px;
  }

  .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: 25px;
    line-height: .92;
  }

  /* Stats above slab */
  .stats{
    right: 18px;
    bottom: 92px;
    gap: 14px;
  }
  .stats-ic{ width: 68px; height: 68px; }
  .stats-num{ font-size: 20px; }
  .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;
  }
}

/* ===== HERO BUTTONS BELOW TITLE (HORIZONTAL) ===== */
.hero-cta-row{
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-btn{
  height: 52px;
  min-width: 250px;
  padding: 0 22px;
  border-radius: 999px;
  background: #E7E61C;
  color: rgba(0,0,0,.92);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.26);
}

.hero-cta-btn:hover{
  filter: brightness(.98);
}

/* tablet/mobile */
@media (max-width: 900px){
  .hero-cta-row{
    margin-top: 24px;
    gap: 12px;
  }

  .hero-cta-btn{
    min-width: 220px;
    height: 50px;
    padding: 0 18px;
    font-size: 12px;
  }
}

/* small mobile: stack if needed */
@media (max-width: 600px){
  .hero-cta-row{
    flex-direction: column;
    width: 100%;
    padding: 0 18px;
  }

  .hero-cta-btn{
    width: 100%;
    max-width: 320px;
  }
}

.greeko-scope .svc-name{
  color: black;
  transition: color .28s ease;
}

.greeko-scope .svc-card:hover .svc-name,
.greeko-scope .svc-card:focus-within .svc-name,
.greeko-scope .svc-card.is-active .svc-name{
  color: #ffffff !important;
}

/* =========================
   SERVICE EXPERTISE (EXACT)
   ========================= */
.svc-section{
  background:#fff;
  color:black;
  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: 50px;
  color:black;
}


.svc-sub{
  margin:10px 0 0;
  font-size:16px;
  line-height:1.55;
  color:black;
  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: #E7E61C;
  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-icon--square{
  border-radius: 18px;
}

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

.svc-desc{
  margin:0;
  color:#000000;
  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: inherit;
  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:black;
  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: #10232C;
  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: #E7E61C;
  color: rgba(0,0,0,.92);

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

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

/* keep the arrow pointing right on hover */
.svc-card:hover .svc-cta svg,
.svc-card:focus-within .svc-cta svg,
.svc-card.is-active .svc-cta svg{
  transform: rotate(0deg);
}

/* 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: 35px; }
  .svc-cta{ right: 22px; }
  .svc-card{ --ctaSize: 86px; }
}
/* ============================
   CASE STUDIES — MATCH ORIGINAL
   ============================ */
.cs-section{
  background: #10232C;
  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: 50px;
  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: 24px;
}

.cs-card{
  background: #DFE7E5;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 28px;
  align-items: start;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cs-content{
  padding: 0;
}

.cs-name{
  margin: 0 0 14px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 20px;
  line-height: 1.15;
  text-transform: none;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.cs-dot{ color: #fff; }

.cs-desc{
  margin: 0 0 34px;
  color: #000000;
  font-size: 12px;
  line-height: 1.5;
  max-width: 410px;
}

.cs-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
}

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

.cs-media{
  width: 130px;
  min-height: 150px;
  border-radius: 12px;
  overflow: hidden;
  justify-self: end;
  background:
    linear-gradient(0deg, rgba(59,73,97,.18), rgba(59,73,97,.18)),
    #3b4961;
  background-image:
    linear-gradient(0deg, rgba(59,73,97,.18), rgba(59,73,97,.18)),
    var(--img);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 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 */
.cs-card:hover{
  border-color: #d9f116;
  box-shadow: none;
  transform: translateY(0);
}

.cs-btn:hover{ color: #102735; }
.cs-all:hover{ background: rg; }

/* 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;
    gap: 22px;
  }
  .cs-media{
    justify-self: start;
  }
}


/* Website service page only: keep card media in a neat box without changing home case studies */
.cs-section--services-variant .cs-grid{
  gap: 26px;
}

.cs-section--services-variant .cs-card{
  grid-template-columns: minmax(0, 1fr) 156px;
  align-items: center;
  min-height: 248px;
}

.cs-section--services-variant .cs-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 156px;
}

.cs-section--services-variant .cs-desc{
  max-width: 430px;
}

.cs-section--services-variant .cs-media{
  width: 156px;
  height: 156px;
  min-height: 156px;
  border-radius: 18px;
  align-self: center;
  justify-self: end;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(16,39,53,.08);
}

@media (max-width: 900px){
  .cs-section--services-variant .cs-card{
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 18px;
    align-items: start;
    min-height: 0;
  }

  .cs-section--services-variant .cs-content{
    min-height: 0;
  }

  .cs-section--services-variant .cs-media{
    width: 120px;
    height: 120px;
    min-height: 120px;
    justify-self: end;
    align-self: start;
  }
}

@media (max-width: 640px){
  .cs-section--services-variant .cs-card{
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cs-section--services-variant .cs-content{
    min-height: 0;
  }

  .cs-section--services-variant .cs-media{
    width: 136px;
    height: 136px;
    min-height: 136px;
    justify-self: start;
  }
}

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

.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: 50px;
  line-height: 1.05;
}

.yg-sub{
  margin: 14px auto 0;
  max-width: 820px;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

.yg-subs{
  margin: 14px auto 0;
  max-width: 820px;
  color: white;
  font-size: 20px;
}

.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: #000000;
  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: #E7E61C;
  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: #E7E61C;
  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: black;
  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: 50px;
  line-height: 1.05;
}

.yearly-growth .yg-sub{
  margin: 14px auto 0;
  max-width: 820px;
  color: #000000;
  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(50px, 4.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(50px, 4.2vw, 140px);
  line-height: .95;
}

.yearly-growth .yg-desc{
  margin: 22px 0 0;
  color: #000000;
  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: #E7E61C;
  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: 22px;
  letter-spacing: -0.02em;
}

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

/* colors */
.yearly-growth .yg-bar--lime{
  background: #E7E61C;
  color: rgba(0,0,0,.92);
}
.yearly-growth .yg-bar--dark{
  background: #102735;
  color: white;
}

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

.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(40px, 3.4vw, 78px);
}

.choice__title > span{
  display: block;
}

.choice__lead{
  margin: 26px 0 0;
  max-width: 620px;
  color: #000000;
  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: capitalize;
  letter-spacing: .02em;
  font-size: 22px;
  color: rgba(15,42,35,.95);
}

.choice__itemText{
  margin-top: 10px;
  color: #000000;
  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: 14.5px;
   
  }
  .choice__item{
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .choice__icon{
    width: 42px;
    height: 42px;
  }
  .choice__img{
    height: 420px;
  }
}




/* =========================
   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: 10px;
  padding-top: 20px;
}

.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;
  margin-bottom: 16px;
  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: 20px;
  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;
}


/* Blog image size */
#blog .postCard__media{
  width: 306px;
  height: 306px;
  flex: 0 0 306px;
  overflow: hidden;
}

#blog .postCard__media img{
display: block;
width: 100%;
height: 100%;
border-radius: inherit;
corner-shape: inherit;
object-position: center left;
object-fit: initial;
}

/* Mobile */
@media (max-width: 767px){
  #blog .postCard__media{
    width: 355px;
    height: 222px;
    flex: 0 0 355px;
    max-width: 100%;
  }
}
/* 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: 0px;
    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: 50px;
  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: #E7E61C;
  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;
  margin-top: -64px;
  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: capitalize;
  font-size: 14px;
  line-height: 1;
}

.cta-work__title{
    margin: 0;
  color: #071f19;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 50px;
}
.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;
  margin-left: 20px;
  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;
  margin-top: 10px;
  margin-left: 20px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0f2b22;
  color: #E7E61C;

  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: #E7E61C;
  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: 10px;
    padding: 9px 16px;
    line-height: 15.1px;
  }

  .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: 140px 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:#000000;
  font-size: 18px;
  line-height: 1.55;
}

.gf-footer__social{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap:nowrap;
  margin-top: 26px;
  max-width: 100%;
}

.gf-footer__social-label{
  display:none;
}

.gf-footer__social-link{
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition: transform .25s ease, opacity .25s ease;
}

.gf-footer__social-link:hover{
  transform: translateY(-3px);
  opacity: .92;
}

.gf-footer__social-link svg{
  width: 24px;
  height: 24px;
  display:block;
  fill: currentColor !important;
}

.gf-footer__social-link svg path{
  fill: white !important;
}

.gf-footer__social-link--facebook{ background:#1877f2; }
.gf-footer__social-link--x{ background:#000000; }
.gf-footer__social-link--youtube{ background:#ff0000; }
.gf-footer__social-link--instagram{
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 35%, #8134af 68%, #515bd4 100%);
}
.gf-footer__social-link--tiktok{
  background:#111111;
  box-shadow:-2px 0 #25f4ee, 2px 0 #fe2c55;
}
.gf-footer__social-link--pinterest{ background:#e60023; }

.gf-footer__brand-logos{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 12px;
  margin-top: 26px;
  max-width: 420px;
}

.gf-footer__brand-logos img{
  height: 34px;
  width: auto;
  display:block;
  object-fit:contain;
}

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

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

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

/* 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: #000000;
  font-size: 15px;
  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: 15px; }
}


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


  /* 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: minmax(0, 1fr) 130px;
    gap: 18px;
  }

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

  .cs-media{
    width: 130px;
    min-height: 96px;
    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;
  }


  /* =========================
     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(150px, 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;
  margin-bottom: 20px;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid #cfd6dc;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: black;
  background: #fff;
}

.service-hero .title{
  margin-top: 75px;
  color: black;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 27px;
}

.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: #070a08; /* or whatever dark text you want on white */
}

/* ===== Media Marketing Stats + Content Section ===== */
.mm-section{
  background:#fff;
  color:#0f172a;
}

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

/* --- Stats --- */
.mm-stats{
  display:grid;
  padding-top: 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items:center;
  text-align:center;
  padding-bottom: clamp(22px, 1vw, 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:black;
  font-size: 24px;
}

.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: 16px;
  color:black;
}

/* --- Content blocks --- */
.mm-content{
  max-width: 1200px;
  margin: 0 auto;
  text-align:left;
}

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

.mm-heading{
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.01em;
  color:black;
  font-weight: 800;
  text-transform: uppercase;
}

.mm-text{
  margin-bottom: 50px !important;
  color:black;
  font-size: 20px;
  line-height: 1.65;
  max-width: 125ch;
}

/* --- Responsive: stack stats on small screens --- */
@media (max-width: 768px){

.cta-work__copy
{
    margin-left:10px;
}

.cta-work__left{
  margin-top: 0px !important;
}
  .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{
    margin-left: 25px;
    margin-right: 20px;
  }
}

/* --- 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, 0vw, 72px) 20px clamp(1px, 1vw, 64px);
}

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

.benefits-title{
  margin: 0 0 clamp(18px, 3vw, 34px);
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color:black;
  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: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color:black;
}

.benefit-text{
  margin: 0;
  color:black;
  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);
  }
}

/* ===== WORKING PROCESS section ===== */
.wp-section{
  background:#fff;
  color:#0f172a;
  padding: clamp(70px, 1vw, 120px) 20px;
}

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

.wp-head{
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.wp-title{
  margin: 0 0 14px;
  color:black;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(2.6rem, 4.2vw, 4.9rem);
}

.wp-subtitle{
  margin: 0 auto;
  max-width: 90ch;
  color:black;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

/* grid */
.wp-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4.5vw, 90px);
  align-items: start;
}

.wp-item{
  text-align: left;
}

.wp-icon{
  display: inline-flex;
  width: 34px;
  height: 34px;
  color:black;
  margin-bottom: 18px;
}

.wp-svg{
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wp-item-title{
  margin: 0 0 14px;
  color:black;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.wp-item-text{
  margin: 0;
  color:black;
  line-height: 1.7;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 28ch;
}

/* responsive */
@media (max-width: 1024px){
  .wp-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wp-item-text{ max-width: 48ch; }
}

@media (max-width: 560px){
  .wp-grid{ grid-template-columns: 1fr; }
  .wp-item-text{ max-width: 70ch; }
}

/* 2560×1600 optimization */
@media (min-width: 2400px) and (min-height: 1400px){
  .wp-wrap{ max-width: 1700px; }
  .wp-section{ padding: 110px 40px; }
  .wp-grid{ gap: 120px; }
  .wp-title{ font-size: clamp(5rem, 4.2vw, 6.2rem); }
  .wp-icon{ width: 42px; height: 42px; }
  .wp-item-title{ font-size: 1.8rem; }
  .wp-item-text{ font-size: 1.25rem; max-width: 34ch; }
}

/* ==============================
   MOBILE ONLY — THIN LOGO STRIP
   ============================== */

	/* =========================================
   FINAL BRANDS / LOGO STRIP CSS
   Desktop + Mobile
   ========================================= */

/* make sure the strip can position correctly */
.greeko-scope .hero,
.greeko-scope .scene {
  position: relative;
}

/* ---------- Desktop / default ---------- */
.greeko-scope .brands {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(980px, 58vw);
  max-width: 100%;
  height: 140px;
  z-index: 9;
  overflow: hidden;
}

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

.greeko-scope .brands::before,
.greeko-scope .brands::after,
.greeko-scope .brands-marquee::before,
.greeko-scope .brands-marquee::after {
  content: none;
  display: none;
}

.greeko-scope .brands-marquee {
  position: absolute;
  left: 0px;
  right: 64px;
  top: 42px;
  height: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

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

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

.greeko-scope .brand-logo {
  display: block;
  height: 80px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

.greeko-scope .stats {
  position: absolute;
  right: 64px;
  bottom: 42px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---------- Large desktop ---------- */
@media (min-width: 1600px) {
  .greeko-scope .brands {
    width: min(1240px, 52vw);
    height: 170px;
  }

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

  .greeko-scope .marquee-set {
    gap: 104px;
    padding-right: 104px;
  }

  .greeko-scope .brand-logo {
    height: 64px;
  }

  .greeko-scope .stats {
    right: 96px;
    bottom: 58px;
    gap: 22px;
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  .greeko-scope .brands {
    width: min(980px, 70vw);
  }
}

/* ---------- Mobile / full-width strip ---------- */
@media (max-width: 900px) {
  .greeko-scope .scene,
  .greeko-scope .hero {
    overflow: visible !important;
  }

  .greeko-scope .brands {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 52px !important;
    transform: translateX(-50%) !important;
    overflow: hidden !important;
    background: #ffffff !important;
    z-index: 9 !important;
  }

  .greeko-scope .brands-shape {
    display: none !important;
  }

  .greeko-scope .brands::before,
  .greeko-scope .brands::after,
  .greeko-scope .brands-marquee::before,
  .greeko-scope .brands-marquee::after {
    content: none !important;
    display: none !important;
  }

  .greeko-scope .brands-marquee {
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: 0 !important;
    height: 52px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .greeko-scope .marquee-track {
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    will-change: transform !important;
    animation: marquee 18s linear infinite !important;
  }

  .greeko-scope .marquee-set {
    display: flex !important;
    align-items: center !important;
    gap: 34px !important;
    padding-right: 34px !important;
    flex: 0 0 auto !important;
  }

  .greeko-scope .brand-logo {
    display: block !important;
    height: 50px !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;

  }

  .greeko-scope .stats {
    right: 25px !important;
    bottom: 54px !important;
    gap: 12px !important;
    z-index: 12 !important;
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .greeko-scope .marquee-track {
    animation: none !important;
    transform: translateX(0) !important;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
    
@media (max-width: 900px){
  .yearly-growth .yg-body{
    flex-direction: column !important;
    align-items: flex-start !important;
  }

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

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

  .yearly-growth .yg-bar{
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 72px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
  }

  .yearly-growth .yg-pct{
    font-size: 14px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }

  .yearly-growth .yg-label{
    font-size: 9px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* service hover effects */
.svc-card{
  transition: background-color 0.35s ease;
}

.svc-hover-text{
  transition: color 0.35s ease;
}


.svc-card:hover .svc-hover-text,
.svc-card:focus-within .svc-hover-text{
  color: #E7E61C;
}

@media (min-width: 1700px) and (max-width: 1760px){
  .brand.brand--ovm{
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: -15px;
    min-width: auto;
    line-height: 0;
  }

  .brand-ovm-logo{
    width: 200px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block;
  }
}

/* ===== Technology Partners Section ===== */
.tech-partners{
  background: #ffffff;
  padding: 78px 20px 54px;
}

.tech-partners__wrap{
  max-width: 1360px;
  margin: 0 auto;
}

.greeko-scope .tech-partners__title,
.tech-partners__title{
  margin: 0 !important;
  text-align: center;
  color: #0f2344 !important;
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 44px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
}

.tech-partners__grid{
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  column-gap: 64px;
  row-gap: 30px;
}

.tech-partners__item{
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-partners__brand{
  display: inline-block;
  color: rgba(15, 35, 68, 0.20);
  font-family: "SF Pro Display", "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-transform: none !important;
}

.tech-partners__brand--google{
  font-size: 33px;
}

.tech-partners__brand--zoho{
  font-size: 31px;
}

.tech-partners__brand--wordpress{
  font-size: 30px;
}

.tech-partners__brand--shopify{
  font-size: 31px;
  font-style: italic;
  font-weight: 600 !important;
  letter-spacing: -0.03em;
}

.tech-partners__brand--wix{
  font-size: 28px;
  letter-spacing: -0.02em;
}

@media (min-width: 1600px){
  .tech-partners{
    padding-top: 82px;
    padding-bottom: 58px;
  }

  .greeko-scope .tech-partners__title,
  .tech-partners__title{
    font-size: 31px !important;
  }

  .tech-partners__grid{
    margin-top: 82px;
    column-gap: 74px;
  }
}

@media (max-width: 1199px){
  .tech-partners{
    padding: 70px 20px 50px;
  }

  .greeko-scope .tech-partners__title,
  .tech-partners__title{
    font-size: 44px !important;
  }

  .tech-partners__grid{
    margin-top: 58px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 34px;
  }

  .tech-partners__brand--google,
  .tech-partners__brand--zoho,
  .tech-partners__brand--wordpress,
  .tech-partners__brand--shopify,
  .tech-partners__brand--wix{
    font-size: 28px;
  }
}

@media (max-width: 767px){
  .tech-partners{
    padding: 54px 16px 40px;
  }

  .greeko-scope .tech-partners__title,
  .tech-partners__title{
    font-size: 24px !important;
  }

  .tech-partners__grid{
    margin-top: 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 24px;
  }

  .tech-partners__brand--google,
  .tech-partners__brand--zoho,
  .tech-partners__brand--wordpress,
  .tech-partners__brand--shopify,
  .tech-partners__brand--wix{
    font-size: 24px;
  }
}

/* ===== Technologies Section ===== */
.tech-stack-sec{
  background: #10232C;
  padding: 72px 20px 86px;
}

.tech-stack-wrap{
  max-width: 1280px;
  margin: 0 auto;
}

.tech-stack-head{
  text-align: center;
  max-width: 1480px;
  margin: 0 auto;
}

.tech-stack-title{
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.tech-stack-sub{
  margin: 22px auto 0;
  max-width: 1450px;
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
}

.tech-tabs{
  margin-top: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tech-tab{
  min-width: 116px;
  height: 64px;
  padding: 0 28px;
  border: 2px solid #E7E61C;
  border-radius: 14px;
  background: #082f49;
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}

.tech-tab.is-active{
  color: #E7E61C;
}

.tech-panels{
  margin-top: 58px;
}

.tech-panel{
  display: none;
}

.tech-panel.is-active{
  display: block;
}

.tech-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
  align-items: start;
  column-gap: 36px;
  row-gap: 52px;
}

.tech-item{
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tech-logo-wrap{
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo{
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.tech-name{
  margin-top: 18px;
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

/* tab-specific logo sizing */
#tech-panel-ai .tech-logo:nth-child(1),
#tech-panel-ai .tech-item:nth-child(1) .tech-logo{ max-width: 58px; height: 58px; }
#tech-panel-ai .tech-item:nth-child(2) .tech-logo{ max-width: 112px; height: 52px; }
#tech-panel-ai .tech-item:nth-child(3) .tech-logo{ max-width: 68px; height: 56px; }
#tech-panel-ai .tech-item:nth-child(4) .tech-logo{ max-width: 114px; height: 56px; }
#tech-panel-ai .tech-item:nth-child(5) .tech-logo{ max-width: 70px; height: 54px; }

#tech-panel-frontend .tech-item:nth-child(1) .tech-logo{ max-width: 64px; }
#tech-panel-frontend .tech-item:nth-child(2) .tech-logo{ max-width: 96px; }
#tech-panel-frontend .tech-item:nth-child(3) .tech-logo{ max-width: 60px; }
#tech-panel-frontend .tech-item:nth-child(4) .tech-logo{ max-width: 54px; }
#tech-panel-frontend .tech-item:nth-child(5) .tech-logo{ max-width: 66px; }
#tech-panel-frontend .tech-item:nth-child(6) .tech-logo{ max-width: 58px; }
#tech-panel-frontend .tech-item:nth-child(7) .tech-logo{ max-width: 94px; }
#tech-panel-frontend .tech-item:nth-child(8) .tech-logo{ max-width: 74px; }
#tech-panel-frontend .tech-item:nth-child(9) .tech-logo{ max-width: 52px; }
#tech-panel-frontend .tech-item:nth-child(10) .tech-logo{ max-width: 58px; }

#tech-panel-backend .tech-item:nth-child(1) .tech-logo{ max-width: 72px; }
#tech-panel-backend .tech-item:nth-child(2) .tech-logo{ max-width: 72px; }
#tech-panel-backend .tech-item:nth-child(3) .tech-logo{ max-width: 60px; }
#tech-panel-backend .tech-item:nth-child(4) .tech-logo{ max-width: 66px; }
#tech-panel-backend .tech-item:nth-child(5) .tech-logo{ max-width: 66px; }

#tech-panel-qa .tech-item:nth-child(1) .tech-logo{ max-width: 70px; }
#tech-panel-qa .tech-item:nth-child(2) .tech-logo{ max-width: 70px; }
#tech-panel-qa .tech-item:nth-child(3) .tech-logo{ max-width: 80px; }
#tech-panel-qa .tech-item:nth-child(4) .tech-logo{ max-width: 64px; }
#tech-panel-qa .tech-item:nth-child(5) .tech-logo{ max-width: 64px; }

#tech-panel-databases .tech-item:nth-child(1) .tech-logo{ max-width: 72px; }
#tech-panel-databases .tech-item:nth-child(2) .tech-logo{ max-width: 74px; }
#tech-panel-databases .tech-item:nth-child(3) .tech-logo{ max-width: 62px; }
#tech-panel-databases .tech-item:nth-child(4) .tech-logo{ max-width: 58px; }
#tech-panel-databases .tech-item:nth-child(5) .tech-logo{ max-width: 60px; }

#tech-panel-design .tech-item:nth-child(1) .tech-logo{ max-width: 58px; }
#tech-panel-design .tech-item:nth-child(2) .tech-logo{ max-width: 58px; }
#tech-panel-design .tech-item:nth-child(3) .tech-logo{ max-width: 58px; }
#tech-panel-design .tech-item:nth-child(4) .tech-logo{ max-width: 64px; }
#tech-panel-design .tech-item:nth-child(5) .tech-logo{ max-width: 58px; }

/* ===== 1440 and below ===== */
@media (max-width: 1440px){
  .tech-stack-title{
    font-size: 50px;
  }

  .tech-stack-sub{
    font-size: 20px;
    max-width: 1200px;
  }
}

/* ===== tablet ===== */
@media (max-width: 1024px){
  .tech-stack-sec{
    padding: 60px 20px 72px;
  }

  .tech-stack-title{
    font-size: 42px;
  }

  .tech-stack-sub{
    font-size: 18px;
    max-width: 900px;
  }

  .tech-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
  }

  .tech-tab{
    min-width: 108px;
    height: 58px;
    padding: 0 24px;
    font-size: 17px;
  }
}

/* ===== mobile ===== */
@media (max-width: 767px){
  .tech-stack-sec{
    padding: 48px 16px 60px;
  }

  .tech-stack-title{
    font-size: 34px;
    line-height: 1.15;
  }

  .tech-stack-sub{
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .tech-tabs{
    margin-top: 34px;
    gap: 10px;
  }

  .tech-tab{
    min-width: calc(50% - 5px);
    height: 52px;
    padding: 0 18px;
    font-size: 16px;
    border-radius: 12px;
  }

  .tech-panels{
    margin-top: 36px;
  }

  .tech-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 30px;
  }

  .tech-item{
    max-width: none;
  }

  .tech-logo-wrap{
    min-height: 78px;
  }

  .tech-logo{
    max-width: 96px;
    max-height: 50px;
  }

  .tech-name{
    margin-top: 16px;
    font-size: 16px;
  }
}

/* ===== very small mobile ===== */
@media (max-width: 420px){
  .tech-tab{
    min-width: 100%;
  }

  .tech-grid{
    grid-template-columns: 1fr 1fr;
  }

  .tech-stack-title{
    font-size: 30px;
  }
}

.insights__footer{
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

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

  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(15,42,35,.18);
  color: black;
  background: transparent;

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

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

.insights__all:hover{
  background: rgba(15,42,35,.04);
}


/* ===== AI tab only: 4 items first row + 4 items second row ===== */
#tech-panel-ai .tech-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 52px;
  justify-items: center;
  align-items: start;
}

#tech-panel-ai .tech-item{
  width: 100%;
  max-width: 180px;
}

/* Tablet */
@media (max-width: 1024px){
  #tech-panel-ai .tech-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
  }
}

/* Mobile */
@media (max-width: 767px){
  #tech-panel-ai .tech-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 30px;
  }
}

/* ===== Backend tab only: 6 items first row + 6 items second row ===== */
#tech-panel-backend .tech-grid{
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 52px;
  justify-items: center;
  align-items: start;
}

#tech-panel-backend .tech-item{
  width: 100%;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#tech-panel-backend .tech-logo{
  width: 110px !important;
  max-width: 110px !important;
  height: 72px !important;
  object-fit: contain;
  display: block;
}

#tech-panel-backend .tech-name{
  margin-top: 18px;
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
}

/* Tablet */
@media (max-width: 1024px){
  #tech-panel-backend .tech-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
  }
}

/* Mobile */
@media (max-width: 767px){
  #tech-panel-backend .tech-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 30px;
  }
  #tech-panel-backend .tech-logo{
    width: 90px !important;
    max-width: 90px !important;
    height: 58px !important;
  }

  #tech-panel-backend .tech-name{
    min-height: auto;
    margin-top: 14px;
    font-size: 16px;
  }
}

/* ===== QA tab only: center the 4 items ===== */
#tech-panel-qa .tech-grid{
  grid-template-columns: repeat(4, minmax(140px, 180px));
  justify-content: center;
  justify-items: center;
  column-gap: 48px;
  row-gap: 52px;
}

#tech-panel-qa .tech-item{
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Tablet */
@media (max-width: 1024px){
  #tech-panel-qa .tech-grid{
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    column-gap: 28px;
    row-gap: 42px;
  }
}

/* Mobile */
@media (max-width: 767px){
  #tech-panel-qa .tech-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 30px;
  }
}


/* ===== Mobile only: show active tech panel directly after clicked tab ===== */
@media (max-width: 767px){
  .tech-panels{
    margin-top: 0 !important;
  }

  .tech-tabs{
    align-items: stretch;
  }

  .tech-tabs > .tech-panel{
    flex: 0 0 100%;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .tech-tabs > .tech-panel .tech-grid{
    margin-top: 0;
  }
}



.gkcs-section{
  background:#ffffff;
  padding:clamp(80px,6vw,120px) 0 clamp(90px,6vw,130px);
  color:#102735;
  overflow:hidden;
}

.gkcs-wrap{
  width:min(1780px, calc(100% - 90px));
  margin:0 auto;
}

.gkcs-head{
  text-align:center;
  margin:0 auto clamp(42px,4vw,74px);
}

.gkcs-title{
  margin:0;
  color:#102735;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:clamp(46px,5vw,90px);
  line-height:.95;
  font-weight:600;
  letter-spacing:-.04em;
  text-transform:uppercase;
}

.gkcs-sub{
  max-width:1040px;
  margin:clamp(20px,1.8vw,28px) auto 0;
  color:rgba(16,39,53,.55);
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:clamp(18px,1.3vw,27px);
  line-height:1.45;
  font-weight:500;
}

.gkcs-list{
  display:grid;
  gap:28px;
}

.gkcs-card{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(420px, .95fr);
  align-items:stretch;
  gap:34px;
  min-height:440px;
  padding:18px;
  background:#f4f4f4;
  border:1px solid #d9dfdb;
  border-radius:28px;
  opacity:1;
  transform:translateY(0);
  transition:opacity .35s ease, transform .35s ease, box-shadow .35s ease;
}

.gkcs-card:hover{
  box-shadow:0 18px 40px rgba(16,39,53,.08);
}

.gkcs-card.is-hidden{
  opacity:0;
  transform:translateY(18px);
}

.gkcs-card.is-revealed{
  opacity:1;
  transform:translateY(0);
}

.gkcs-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:42px 48px 42px 54px;
}

.gkcs-name{
  margin:0 0 18px;
  color:#fff;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:clamp(34px,2vw,56px);
  line-height:1;
  font-weight:600;
  letter-spacing:-.03em;
  text-transform:uppercase;
}

.gkcs-desc{
  max-width:780px;
  margin:0;
  color:rgba(16,39,53,.58);
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:clamp(18px,1.25vw,30px);
  line-height:1.5;
  font-weight:500;
}

.gkcs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-width:min(100%, 350px);
  margin-top:38px;
  padding:22px 42px;
  border:1px solid #d9dfdb;
  border-radius:999px;
  background:#f4f4f4;
  color:#102735;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:clamp(16px,1vw,22px);
  line-height:1;
  font-weight:600;
  letter-spacing:0;
  text-transform:uppercase;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.gkcs-btn:hover{
  background:#10232C;
  color:white;
  box-shadow:0 10px 24px rgba(16,39,53,.08);
  transform:translateY(-1px);
}

.gkcs-btn-icon{
  display:inline-grid;
  place-items:center;
  flex:0 0 auto;
}

.gkcs-media{
  min-width:0;
  height:100%;
  border-radius:18px;
  overflow:hidden;
  background:#e9eceb;
}

.gkcs-media img{
  width:100%;
  height:100%;
}

.gkcs-footer{
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.gkcs-loadmore{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-width:220px;
  padding:18px 30px;
  border:1px solid #d9dfdb;
  border-radius:999px;
  background:#102735;
  color:#ffffff;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:15px;
  line-height:1;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.gkcs-loadmore:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(16,39,53,.18);
}

.gkcs-footer.is-hidden{
  display:none;
}

@media (min-width: 2200px){
  .gkcs-wrap{
    width:min(2200px, calc(100% - 160px));
  }

  .gkcs-card{
    min-height:520px;
    gap:40px;
    padding:20px;
  }

  .gkcs-content{
    padding:56px 68px;
  }

  .gkcs-btn{
    min-width:420px;
    padding:26px 48px;
  }
}

@media (max-width: 1400px){
  .gkcs-wrap{
    width:calc(100% - 60px);
  }

  .gkcs-card{
    grid-template-columns:minmax(0,1.3fr) minmax(360px, .95fr);
    min-height:390px;
  }

  .gkcs-content{
    padding:34px 36px 34px 38px;
  }
}

@media (max-width: 991px){
  .gkcs-card{
    grid-template-columns:1fr;
    gap:22px;
    min-height:auto;
    padding:12px;
  }

  .gkcs-content{
    padding:26px 20px 0;
  }

  .gkcs-media{
    min-height:360px;
  }
}

@media (max-width: 767px){
  .gkcs-wrap{
    width:calc(100% - 30px);
  }

  .gkcs-head{
    margin-bottom:34px;
  }

  .gkcs-sub{
    max-width:540px;
  }

  .gkcs-card{
    border-radius:24px;
    gap:20px;
    padding:10px;
  }

  .gkcs-content{
    padding:18px 14px 0;
  }

  .gkcs-name{
    margin-bottom:16px;
  }

  .gkcs-desc{
    max-width:100%;
  }

  .gkcs-btn{
    width:100%;
    min-width:0;
    margin-top:26px;
    padding:18px 26px;
  }

  .gkcs-media{
    min-height:300px;
    border-radius:16px;
  }
}

@media (max-width: 575px){
  .gkcs-section{
    padding:64px 0 86px;
  }

  .gkcs-wrap{
    width:calc(100% - 24px);
  }

  .gkcs-title{
    font-size:clamp(34px, 9vw, 58px);
  }

  .gkcs-sub{
    font-size:clamp(15px, 4.5vw, 20px);
    line-height:1.55;
  }

  .gkcs-card{
    padding:8px;
    gap:18px;
    border-radius:22px;
  }

  .gkcs-content{
    padding:16px 12px 0;
  }

  .gkcs-name{
    font-size:clamp(26px, 7vw, 34px);
  }

  .gkcs-desc{
    font-size:clamp(15px, 4.5vw, 18px);
    line-height:1.55;
  }

  .gkcs-btn{
    padding:16px 22px;
    font-size:15px;
  }

  .gkcs-media{
    min-height:270px;
  }

  .gkcs-loadmore{
    width:100%;
    min-width:0;
  }
}


/* =========================
   CASE STUDY DETAIL PAGE
========================= */

.greeko-scope--case-detail {
  background: #f5f5f2;
  color: black;
}

.csd-page {
  background: #f5f5f2;
}

.csd-shell {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

.csd-hero,
.csd-overview,
.csd-process,
.csd-showcase,
.csd-whatdid {
  background: white;
}

.csd-hero {
  padding: 200px 0 32px;
}

.csd-hero__head {
  text-align: center;
  margin-bottom: 46px;
}

.csd-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 22px;
  border: 1.5px solid rgba(16, 44, 35, 0.35);
  border-radius: 999px;
  color: black;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.csd-hero__title {
  margin: 0;
  color: black;
  font-size: 50px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.csd-hero__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.csd-hero__media img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.csd-overview {
  padding: 44px 0 60px;
}

.csd-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 44px;
}

.csd-meta__item {
  min-width: 0;
  min-height: 170px;
  padding: 34px 28px;
  border: 2px solid transparent;
  background: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.csd-meta__item:hover {
  border-color: #40525D;
}

.csd-meta__item h3 {
  margin: 0 0 16px;
  color: black;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.csd-meta__item p {
  margin: 0;
  color: black;
  width: auto;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.csd-copy h2 {
  margin: 0 0 24px;
  color: black;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.csd-copy p {
  max-width: 1320px;
  margin: 0 0 26px;
  color: black;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.csd-copy p:last-child {
  margin-bottom: 0;
}

.csd-process {
  padding: 26px 0 60px;
}

.csd-process__box {
  background: #dfeae4;
  border-radius: 20px;
  padding: 70px 50px 62px;
}

.csd-process__head {
  text-align: left;
  max-width: 900px;
  margin: 0 0 56px;
}

.csd-process__head h2 {
  margin: 0 0 18px;
  color: black;
  font-size: 50px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.csd-process__head p {
  margin: 0;
  color: black;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.csd-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 75px;
}

.csd-step {
  min-width: 0;
}

.csd-step__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  margin-bottom: 28px;
}

.csd-step h3 {
  margin: 0 0 22px;
  color: black;
  width: 330px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.csd-step p {
  margin: 0;
  color: black;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.csd-showcase {
  padding: 24px 0 48px;
}

.csd-showcase__media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.csd-showcase__media img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
  display: block;
}

.csd-whatdid {
  padding: 0 0 80px;
}

.csd-whatdid__content h2 {
  margin: 0 0 28px;
  color: black;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.csd-whatdid__content p {
  max-width: 1320px;
  margin: 0 0 34px;
  color: black;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.csd-whatdid__list {
  margin: 0;
  padding-left: 28px;
  color: black;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.csd-whatdid__list li {
  margin-bottom: 4px;
}

@media (min-width: 1800px) {
  .csd-shell {
    width: min(1520px, calc(100% - 220px));
  }

  .csd-hero {
    padding-top: 70px;
  }

  .csd-overview {
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .csd-process__box {
    padding: 84px 64px 72px;
    border-radius: 24px;
  }

  .csd-process__grid {
    gap: 40px;
  }

  .csd-showcase {
    padding-top: 30px;
    padding-bottom: 58px;
  }

  .csd-whatdid {
    padding-bottom: 100px;
  }
}

@media (max-width: 1199px) {
  .csd-shell {
    width: min(100%, calc(100% - 48px));
  }
.csd-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

  .csd-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .csd-process__box {
    padding: 56px 34px 48px;
  }
}

@media (max-width: 767px) {

  .csdcasestu
  {
    font-size: 16px !important;
  }
.csd-meta__item p {
  margin: 0;
  color: black;
  width: 171px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.csd-process__head h2 {
    margin: 0 0 18px;
    color: black;
    font-size: 25px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

  .csd-shell {
    width: calc(100% - 28px);
  }

  .csd-hero {
    padding: 137px 0 18px;
  }

  .csd-hero__head {
    margin-bottom: 28px;
  }

  .csd-pill {
    min-height: 34px;
    padding: 7px 18px;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .csd-hero__title {
    align-items: flex-start;
  text-align: left;
    font-size: 25px;
  }

  .csd-hero__media,
  .csd-showcase__media {
    border-radius: 14px;
  }

  .csd-hero__media img,
  .csd-showcase__media img {
    aspect-ratio: 4 / 3.2;
  }

  .csd-overview {
    padding: 24px 0 36px;
  }

.csd-meta {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.csd-meta__item {
  min-height: auto;
  padding: 24px 18px;
}

  .csd-meta__item h3 {
    margin-bottom: 10px;
  }

  .csd-copy h2,
  .csd-whatdid__content h2 {
    margin-bottom: 16px;
    font-size: 25px !important;
  }

  .csd-copy p,
  .csd-whatdid__content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .csd-process {
    padding: 14px 0 34px;
  }

  .csd-process__box {
    padding: 34px 18px 28px;
    border-radius: 18px;
  }

  .csd-process__head {
    margin-bottom: 34px;
  }

  .csd-process__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .csd-step__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .csd-step h3 {
    margin-bottom: 12px;
  }

  .csd-showcase {
    padding: 8px 0 28px;
  }

  .csd-whatdid {
    padding-bottom: 42px;
  }

  .csd-whatdid__list {
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.6;
  }
}
.svc-icon svg{
  display: block;
  flex-shrink: 0;
}

/* ===== Force equal logo box size in Technologies section ===== */
#tech-panel-ai .tech-logo,
#tech-panel-frontend .tech-logo,
#tech-panel-backend .tech-logo,
#tech-panel-qa .tech-logo,
#tech-panel-databases .tech-logo,
#tech-panel-design .tech-logo{
  width: 84px !important;
  height: 84px !important;
  max-width: 140px !important;
  min-width: 140px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}

#tech-panel-ai .tech-item,
#tech-panel-frontend .tech-item,
#tech-panel-backend .tech-item,
#tech-panel-qa .tech-item,
#tech-panel-databases .tech-item,
#tech-panel-design .tech-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#tech-panel-ai .tech-name,
#tech-panel-frontend .tech-name,
#tech-panel-backend .tech-name,
#tech-panel-qa .tech-name,
#tech-panel-databases .tech-name,
#tech-panel-design .tech-name{
  margin-top: 16px;
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

/* mobile */
@media (max-width: 767px){
  #tech-panel-ai .tech-logo,
  #tech-panel-frontend .tech-logo,
  #tech-panel-backend .tech-logo,
  #tech-panel-qa .tech-logo,
  #tech-panel-databases .tech-logo,
  #tech-panel-design .tech-logo{
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    min-width: 64px !important;
  }

  #tech-panel-ai .tech-name,
  #tech-panel-frontend .tech-name,
  #tech-panel-backend .tech-name,
  #tech-panel-qa .tech-name,
  #tech-panel-databases .tech-name,
  #tech-panel-design .tech-name{
    min-height: auto;
    margin-top: 14px;
  }
}

/* ===== Mobile service cards: stacked layout like reference ===== */
@media (max-width: 767px) {
  .svc-section {
    padding: 56px 0;
  }

  .svc-wrap {
    width: calc(100% - 24px);
  }

  .svc-head {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .svc-title {
    margin-left: 10px;
    font-size: 34px;
    line-height: 1.05;
  }

  .svc-sub {
    margin-left: 12px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  .svc-list {
    gap: 18px;
  }

  .svc-card {
    display: block;
    min-height: auto;
    border: 1px solid #dfe8e3;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: none;
  }

  .svc-left {
    padding: 14px 18px 0;
    background: #fff !important;
    color: black !important;
  }

  .svc-icon {
    width: 68px;
    height: 68px;
    margin: 0 0 22px;
    box-shadow: none;
  }

  .svc-icon svg {
    width: 28px;
    height: 28px;
  }

  .svc-name {
    margin: 0 0 14px;
    font-size: clamp(22px, 7vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  /* keep your text, only restyle it */
  .svc-hover-text {
    display: block;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.5;
    color: black !important;
  }

  .svc-left .svc-desc:last-child {
    color: black !important;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  .svc-right {
    display: block;
    width: 100% !important;
    flex: 0 0 auto;
    overflow: visible;
    padding: 18px;
  }

  .svc-right img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: inherit;
    border-radius: 16px;
    opacity: 1 !important;
    transform: none !important;
  }

  .svc-cta {
    display: none;
  }

  /* disable desktop hover state on mobile */
  .svc-card:hover,
  .svc-card:focus-within,
  .svc-card.is-active {
    box-shadow: none;
  }

  .svc-card:hover .svc-left,
  .svc-card:focus-within .svc-left,
  .svc-card.is-active .svc-left {
    background: #fff;
    color: black;
  }

  .svc-card:hover .svc-desc,
  .svc-card:focus-within .svc-desc,
  .svc-card.is-active .svc-desc {
    color: inherit;
  }

  .svc-card:hover .svc-right,
  .svc-card:focus-within .svc-right,
  .svc-card.is-active .svc-right {
    width: 100%;
  }

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

@media (max-width: 767px) {
  .svc-card {
    display: block;
    min-height: auto;
    border: 1px solid #dfe8e3;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
  }

  .svc-left {
    padding: 14px 18px 0;
    background: #fff !important;
    color: black !important;
    transition: background .28s ease, color .28s ease;
  }

  .svc-hover-text,
  .svc-desc,
  .svc-name {
    transition: color .28s ease;
  }

  .svc-right {
    display: block;
    width: 100% !important;
    flex: 0 0 auto;
    overflow: visible;
    padding: 18px;
    transition: none;
  }

  .svc-right img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    opacity: 1 !important;
    transform: none !important;
    transition: transform .35s ease, filter .28s ease;
  }

  /* keep CTA hidden normally on mobile */
  .svc-cta {
    display: none;
  }

  /* mobile tap / focus state */
  .svc-card:hover,
  .svc-card:active,
  .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:active .svc-left,
  .svc-card:focus-within .svc-left,
  .svc-card.is-active .svc-left {
    background: #10232C !important;
    color: #fff !important;
    padding-bottom: 20px;
  }

  .svc-card:hover .svc-name,
  .svc-card:active .svc-name,
  .svc-card:focus-within .svc-name,
  .svc-card.is-active .svc-name {
    color: #fff;
  }

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

  .svc-card:hover .svc-hover-text,
  .svc-card:active .svc-hover-text,
  .svc-card:focus-within .svc-hover-text,
  .svc-card.is-active .svc-hover-text {
    color: #E7E61C !important;
  }

  .svc-card:hover .svc-right img,
  .svc-card:active .svc-right img,
  .svc-card:focus-within .svc-right img,
  .svc-card.is-active .svc-right img {
    transform: scale(1.02);
    filter: brightness(.96);
  }
}


.csd-impact,
.csd-proof,
.csd-tactics,
.csd-positioning,
.csd-conclusion {
  background: #ffffff;
}

.csd-impact {
  padding: 10px 0 38px;
}

.csd-impact__content,
.csd-proof__content,
.csd-tactics__content,
.csd-conclusion__content {
  max-width: 1120px;
}

.csd-impact__content h2,
.csd-tactics__content h2,
.csd-positioning__content h2,
.csd-conclusion__content h2 {
  margin: 0 0 18px;
  color: black;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.csd-impact__eyebrow,
.csd-proof__content h3,
.csd-proof__block h3,
.csd-tactic h3 {
  margin: 0 0 22px !important;
  color: black;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.csd-impact__tableWrap {
  overflow-x: auto;
}

.csd-impact__table {
  width: 100%;
  border-collapse: collapse;
  background: #f3f3f1;
}

.csd-impact__table th,
.csd-impact__table td {
  border: 2px solid rgba(12, 46, 37, 0.7);
  padding: 20px 18px;
  text-align: left;
  vertical-align: middle;
}

.csd-impact__table th {
  background: #000000;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
}

.csd-impact__table td {
  color: black;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.csd-impact__table td:first-child,
.csd-impact__table th:first-child {
  width: 29%;
}

.csd-proof {
  padding: 10px 0 32px;
}

.csd-proof__content,
.csd-tactics__content,
.csd-positioning__content,
.csd-conclusion__content {
  color: black;
}

.csd-proof__list,
.csd-tactics__list,
.csd-positioning__list {
  margin: 0 0 34px;
  padding-left: 28px;
  color: black;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.csd-proof__list li,
.csd-tactics__list li,
.csd-positioning__list li {
  margin-bottom: 16px;
}

.csd-proof__note,
.csd-proof__block p,
.csd-tactic p,
.csd-positioning__content p,
.csd-conclusion__content p {
  margin: 0 0 30px;
  color: black;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.csd-proof__block p:last-child,
.csd-conclusion__content p:last-child,
.csd-positioning__list:last-child,
.csd-tactics__list:last-child,
.csd-proof__list:last-child {
  margin-bottom: 0;
}

.csd-proof__block {
  margin-top: 34px;
}

.csd-tactics {
  padding: 18px 0 42px;
}

.csd-tactic {
  margin-bottom: 38px;
}

.csd-tactic:last-child {
  margin-bottom: 0;
}

.csd-tactics__list--quotes li {
  font-style: italic;
}

.csd-positioning {
  padding: 10px 0 42px;
}

.csd-positioning__bg {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../namrentalpic.webp") center center / cover no-repeat;
}

.csd-positioning__content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.csd-positioning__list strong {
  font-weight: 700;
}

.csd-conclusion {
  padding: 58px 0 64px;
}

@media (min-width: 1800px) {
  .csd-impact {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .csd-proof,
  .csd-tactics,
  .csd-positioning {
    padding-bottom: 54px;
  }

  .csd-conclusion {
    padding-top: 72px;
    padding-bottom: 86px;
  }

  .csd-positioning__bg {
    padding: 88px 0;
  }
}

@media (max-width: 1199px) {
  .csd-impact__table td:first-child,
  .csd-impact__table th:first-child {
    width: 100%;
  }

  .csd-positioning__bg {
    padding: 58px 0;
  }
}

@media (max-width: 767px) {
  .csd-impact {
    padding: 6px 0 24px;
  }

  .csd-proof,
  .csd-tactics,
  .csd-positioning {
    padding-bottom: 28px;
  }

  .csd-conclusion {
    padding: 34px 0 40px;
  }

  .csd-impact__content h2,
  .csd-tactics__content h2,
  .csd-positioning__content h2,
  .csd-conclusion__content h2 {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 30px;
  }

  .csd-impact__eyebrow,
  .csd-proof__content h3,
  .csd-proof__block h3,
  .csd-tactic h3 {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.3;
  }

  .csd-impact__table {
    background: transparent;
    border-collapse: separate;
    border-spacing: 0 14px;
  }

  .csd-impact__table thead {
    display: none;
  }

  .csd-impact__table,
  .csd-impact__table tbody,
  .csd-impact__table tr,
  .csd-impact__table td {
    display: block;
    width: 100%;
  }

  .csd-impact__table tr {
    border: 1.5px solid rgba(12, 46, 37, 0.18);
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f1;
  }

  .csd-impact__table td {
    border: 0;
    border-bottom: 1px solid rgba(12, 46, 37, 0.12);
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .csd-impact__table td:last-child {
    border-bottom: 0;
  }

  .csd-impact__table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: black;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .csd-proof__list,
  .csd-tactics__list,
  .csd-positioning__list {
    padding-left: 22px;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .csd-proof__list li,
  .csd-tactics__list li,
  .csd-positioning__list li {
    margin-bottom: 10px;
  font-size: 12px !important;
  }

  .csd-proof__note,
  .csd-proof__block p,
  .csd-tactic p,
  .csd-positioning__content p,
  .csd-conclusion__content p {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.6;
  }

  .csd-tactic {
    margin-bottom: 28px;
  }

  .csd-positioning__bg {
    padding: 34px 0;
    background-position: center center;
  }
}

.osd-faq {
  padding: 110px 0 90px;
  background: #f6f7f4;
}

.osd-faq__wrap {
  width: min(1440px, calc(75% - 120px));
  margin: 0 auto;
}

.osd-faq__head {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
}

.osd-faq__title {
  margin: 0;
  max-width: 760px;
  text-align: center;
  color: black;
  font-size: 27px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.osd-faq__list {
  border-bottom: 1px solid #d7ddd8;
}

.osd-faq__item {
  border-top: 1px solid #d7ddd8;
}

.osd-faq__item summary::-webkit-details-marker {
  display: none;
}

.osd-faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0;
  cursor: pointer;
}

.osd-faq__question span:first-child {
  color: black;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.osd-faq__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid #d7ddd8;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.osd-faq__icon svg {
  width: 20px;
  height: 20px;
}

.osd-faq__answer {
  max-width: 1080px;
  padding: 0 90px 38px 0;
}

.osd-faq__answer p {
  margin: 0;
  color: black;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 500;
}

.osd-faq__item[open] .osd-faq__icon {
  transform: rotate(90deg);
  background: black;
  border-color: black;
  color: #ffffff;
}

@media (hover: hover) {
  .osd-faq__item:hover .osd-faq__icon {
    border-color: black;
  }
}

@media (max-width: 1199px) {
  .osd-faq {
    padding: 90px 0 72px;
  }

  .osd-faq__wrap {
    width: calc(100% - 64px);
  }

  .osd-faq__head {
    margin-bottom: 64px;
  }

  .osd-faq__question {
    padding: 25px 0;
  }

  .osd-faq__answer {
    padding: 0 40px 28px 0;
  }
}

@media (max-width: 767px) {


  .wowc__clientLogos{
  margin: 28px 0px 0 !important;
}

.newcasestudypara
{
  font-size: 15px !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.csd-copy h2
{
  font-size: 25px !important;
}

.csd-process__head p
{
  font-size: 15px;
}

.csd-step h3
{
  font-size: 18px;
}

.csd-step p
{
  font-size: 12px;
}

  .osd-faq {
    padding: 56px 0 44px;
  }

  .osd-faq__wrap {
    width: calc(100% - 32px);
  }

  .osd-faq__head {
    margin-bottom: 38px;
  }

  .osd-faq__title {
    font-size: 27px;
    line-height: 1.02;
  }

  .osd-faq__question {
    gap: 16px;
    padding: 22px 0;
    align-items: flex-start;
  }

  .osd-faq__question span:first-child {
    font-size: 13px;
    line-height: 1.35;
  }

  .osd-faq__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .osd-faq__icon svg {
    width: 16px;
    height: 16px;
  }

  .osd-faq__answer {
    padding: 0 0 20px;
  }

  .osd-faq__answer p {
    font-size: 15px;
    line-height: 1.7;
  }
}

.newcasestudypara
{
  font-size: 20px;
}

.csdcasestu
{
  font-size: 24px;
}

.newservicedetailpagecss
{
  font-size: 27px;
  color: black;
}

.wowc__person{
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.wowc__meta{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}

.wowc__who{
  min-width: 0;
}

.wowc__brand{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wowc__brandLogo{
  display: block;
  width: 75px;
  max-width: 54px;
  height: auto;
  object-fit: contain;
}

/* ==========================
   WORDS OF OUR CLIENTS
   ========================== */

.wowc{
  background: #E7F3EF;
  padding: 110px 0 120px;
  color: #000;
}

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

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

.wowc__title{
  margin: -78px 84px 0;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.wowc__desc{
  margin: 0 89px 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: #000;
  font-weight: 600;
}

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

.wowc__viewport{
  width: min(700px, 100%);
  height: 760px;
  overflow: hidden;
  position: relative;
  padding-right: 10px;
}

.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;
  padding: 4px 0 160px;
}

/* CARD */
.wowc__card{
  background: #fff;
  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);
}

.wowc__quote{
  margin: 0;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(15,42,35,.92);
  font-size: 14px;
  line-height: 1.55;
}

/* PERSON ROW */
.wowc__person{
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wowc__meta{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}

.wowc__who{
  min-width: 0;
}

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

.wowc__name{
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 16px;
  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);
}

.wowc__brand{
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wowc__brandLogo{
  display: block;
  width: 75px;
  max-width: 56px;
  height: auto;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .wowc__container{
    width: calc(100% - 60px);
    gap: 60px;
  }

  .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{
    font-size: 26px;
    margin: 0;
  }

  .wowc__desc{
    margin: 12px 0 0;
  }
}

@media (max-width: 520px){
  .wowc__container{
    width: calc(100% - 36px);
  }

  .wowc__card{
    padding: 26px 22px 22px;
    border-radius: 16px;
  }

  .wowc__quote{
    font-size: 16px;
  }

  .wowc__viewport{
    height: 580px;
  }

  .wowc__person{
    gap: 12px;
    align-items: center;
  }

  .wowc__meta{
    gap: 12px;
  }

  .wowc__brandLogo{
    width: 42px;
    max-width: 42px;
  }

  .wowc__name{
    font-size: 14px;
  }

  .wowc__role{
    font-size: 11px;
  }
}


.wowc__clientLogos{
  margin: 28px 89px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 160px));
  gap: 50px 50px;
  align-items: center;
}

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

.wowc__clientLogo img{
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 5th logo goes to its own row */
.wowc__clientLogo:nth-child(5){
  justify-content: flex-start;
}

@media (max-width: 900px){
  .wowc__clientLogos{
    margin: 20px 0 0;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }
}

@media (max-width: 520px){
  .wowc__clientLogos{
    gap: 14px 16px;
  }

  .wowc__clientLogo img{
    max-width: 120px;
  }
}
/* ===== Strict Global Typography + Spacing for Greeko HTML pages ===== */
.greeko-scope h1:not(.hero-title){
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 60px !important;
  line-height: 60px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.greeko-scope h2{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 44px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  margin-bottom: 40px !important;
}

.greeko-scope h3{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.greeko-scope h4{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.greeko-scope h5{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.greeko-scope h6{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.greeko-scope p{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

.greeko-scope span{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  text-transform: capitalize;
}

.greeko-scope a{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}



.greeko-scope section:last-of-type{
  margin-bottom: 0 !important;
}

@media (max-width: 768px){
  .greeko-scope h1{
    font-size: 30px !important;
    margin-bottom: 10px !important;
  }

  .greeko-scope h2{
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .greeko-scope h3{
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .greeko-scope h4{
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .greeko-scope h5{
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .greeko-scope h6{
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .greeko-scope p{
    font-size: 11px !important;
    margin-bottom: 5px !important;
  }

  .greeko-scope span{
    font-size: 13px !important;
  }

  .greeko-scope a{
    font-size: 13px !important;
    margin-left: 0px !important;
  }

 
}

section.service-hero .mm-text {
  margin: 0 auto;
}

/* 5-column footer layout */
.gf-footer__grid--five{
  display: grid;
  grid-template-columns: 420px 180px 180px 180px 1fr;
  column-gap: 28px;
  align-items: start;
}

@media (min-width: 1600px){
  .gf-footer__grid--five{
    grid-template-columns: 520px 220px 220px 220px 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 1200px){
  .gf-footer__grid--five{
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    column-gap: 24px;
  }
}

@media (max-width: 900px){
  .gf-footer__grid--five{
    grid-template-columns: 1fr 1fr;
    row-gap: 56px;
  }
}

@media (max-width: 560px){
  .gf-footer__grid--five{
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .gf-footer__brand-logos{
    max-width: 100%;
    gap: 10px;
  }

  .gf-footer__brand-logos img{
    height: 30px;
  }

  .gf-footer__social{
    gap: 10px;
    flex-wrap: nowrap;
  }

  .gf-footer__social-label{
    display: none;
  }

  .gf-footer__social-link{
    width: 45px;
    height: 45px;
  }

  .gf-footer__social-link svg{
    width: 22px;
    height: 22px;
  }
}



/* =========================================================
   SEO Growth Strategy Cards
========================================================= */
.ovm-seo-method{
  
  --ovm-method-eyebrow-bg: #eef4ff;
  --ovm-method-eyebrow-color: #5f7edb;

  --ovm-method-title-color: #111827;
  --ovm-method-title-accent: #2f6df6;

  --ovm-method-card-bg: #ffffff;
  --ovm-method-card-border: #e6eaf2;
  --ovm-method-card-title-color: #1f2937;
  --ovm-method-card-text-color: #667085;

  --ovm-method-tag-bg: #f2f4f7;
  --ovm-method-tag-color: #98a2b3;

  background: var(--ovm-method-section-bg);
  padding: 72px 20px 84px;
}

.ovm-seo-method__wrap{
  width: min(1240px, 100%);
  margin: 0 auto;
}

.ovm-seo-method__head{
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.ovm-seo-method__eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ovm-method-eyebrow-bg);
  color: #000000;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.ovm-seo-method__title{
  margin: 0;
  color: var(--ovm-method-title-color);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ovm-seo-method__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ovm-seo-method__card{
  position: relative;
  background: #ECECEC;
  border: 1px solid var(--ovm-method-card-border);
  border-radius: 20px;
  padding: 24px 22px 22px;
  min-height: 266px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.ovm-seo-method__icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--ovm-icon-bg, #eef4ff);
  color: #111111 !important;
}

.ovm-seo-method__icon svg{
  width: 24px;
  height: 24px;
  display: block;
  color: #111111 !important;
}

.ovm-seo-method__card-title{
  margin: 0 0 12px;
  color: var(--ovm-method-card-title-color);
  font-size: 29px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ovm-seo-method__card-text{
  margin: 0 0 18px;
  color: #000000;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
}

.ovm-seo-method__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.ovm-seo-method__tags span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F7F7F7;
  color: #333366;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* card accent colors */
.ovm-seo-method__card--blue{
  --ovm-icon-bg: #edf3ff;
  --ovm-icon-color: #5b8cff;
}

.ovm-seo-method__card--green{
  --ovm-icon-bg: #ebfbf2;
  --ovm-icon-color: #38b26f;
}

.ovm-seo-method__card--orange{
  --ovm-icon-bg: #fff3ea;
  --ovm-icon-color: #f28b40;
}

.ovm-seo-method__card--purple{
  --ovm-icon-bg: #f5ecff;
  --ovm-icon-color: #a257f4;
}

.ovm-seo-method__card--red{
  --ovm-icon-bg: #ffecef;
  --ovm-icon-color: #ee5a70;
}

/* laptop */
@media (max-width: 1199px){
  .ovm-seo-method{
    padding: 64px 20px 72px;
  }

  .ovm-seo-method__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ovm-seo-method__card{
    min-height: auto;
  }
}

/* tablet */
@media (max-width: 767px){
  .ovm-seo-method{
    padding: 56px 16px 64px;
  }

  .ovm-seo-method__head{
    margin-bottom: 32px;
  }

  .ovm-seo-method__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ovm-seo-method__card{
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .ovm-seo-method__title{
    font-size: clamp(30px, 9vw, 42px);
  }

  .ovm-seo-method__card-title{
    font-size: 22px;
  }

  .ovm-seo-method__card-text{
    font-size: 16px;
    line-height: 1.65;
  }
}

/* large desktop / 2560 */
@media (min-width: 1920px){
  .ovm-seo-method__wrap{
    width: min(1460px, 90vw);
  }

  .ovm-seo-method__grid{
    gap: 24px;
  }

  .ovm-seo-method__card{
    padding: 30px 28px 26px;
    border-radius: 24px;
  }

  .ovm-seo-method__card-title{
    font-size: 32px;
  }

  .ovm-seo-method__card-text{
    font-size: 18px;
  }
}

/* =========================================================
   ABOUT US PAGE STYLES
   Layout structure preserved from the provided About Us files.
   Visual system aligned to the latest widget: Montserrat, deep navy,
   lime accents, cleaner spacing, larger container rhythm.
   ========================================================= */

.greeko-about-page{
  background:#ffffff;
  color:#ffffff;
}

.greeko-about-page .scene{
  margin-bottom:0;
}

.greeko-about-page .trust-sec,
.greeko-about-page .kpi-strip,
.greeko-about-page .mwp-sec,
.greeko-about-page .mot-sec,
.greeko-about-page .wbc-sec{
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.greeko-about-page .trust-sec,
.greeko-about-page .mwp-sec,
.greeko-about-page .mot-sec,
.greeko-about-page .wbc-sec{
  padding-left: clamp(20px, 2.6vw, 34px);
  padding-right: clamp(20px, 2.6vw, 34px);
}

.greeko-about-page .trust-wrap,
.greeko-about-page .kpi-wrap,
.greeko-about-page .mwp-wrap,
.greeko-about-page .mot-wrap,
.greeko-about-page .wbc-wrap{
  max-width: 1400px;
  margin: 0 auto;
}

.greeko-about-page .trust-sec{
  background:#ffffff;
  padding-top: clamp(72px, 7vw, 120px);
  padding-bottom: clamp(42px, 4.5vw, 76px);
}

.greeko-about-page .trust-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: clamp(28px, 4vw, 72px);
}

.greeko-about-page .trust-title,
.greeko-about-page .mwp-title,
.greeko-about-page .mot-title,
.greeko-about-page .wbc-title{
  margin:0;
  color:#102735;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-0.035em;
  line-height:0.96;
}

.greeko-about-page .trust-title{ font-size: clamp(42px, 5vw, 72px); }
.greeko-about-page .mwp-title{ font-size: clamp(42px, 5vw, 72px); }
.greeko-about-page .mot-title{ font-size: clamp(40px, 4.6vw, 68px); }
.greeko-about-page .wbc-title{ font-size: clamp(42px, 5vw, 72px); }

.greeko-about-page .trust-note,
.greeko-about-page .mwp-note,
.greeko-about-page .mot-sub,
.greeko-about-page .wbc-lead,
.greeko-about-page .kpi-lead p,
.greeko-about-page .mwp-p,
.greeko-about-page .wbc-p{
  color:#5f6b79;
  font-size:15px;
  line-height:1.75;
  font-weight:500;
}

.greeko-about-page .trust-note{
  max-width:380px;
  margin: 10px 0 0;
}

.greeko-about-page .trust-media,
.greeko-about-page .mwp-media,
.greeko-about-page .wbc-media,
.greeko-about-page .mot-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#f4f7f9;
  box-shadow: 0 22px 60px rgba(16,39,53,.08);
}

.greeko-about-page .trust-media{
  margin-top: clamp(28px, 3vw, 42px);
}

.greeko-about-page .trust-img,
.greeko-about-page .mwp-media img,
.greeko-about-page .wbc-media img,
.greeko-about-page .mot-img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}

.greeko-about-page .trust-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:96px;
  height:96px;
  border-radius:999px;
  background:#E7E61C;
  box-shadow:0 22px 55px rgba(16,39,53,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.greeko-about-page .trust-play-ic{
  width:0;
  height:0;
  border-left:20px solid #102735;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:4px;
}

.greeko-about-page .kpi-strip{
  background:#ffffff;
  padding: clamp(18px, 2vw, 28px) clamp(20px, 2.6vw, 34px) clamp(52px, 4.4vw, 72px);
}

.greeko-about-page .kpi-wrap{
  display:grid;
  grid-template-columns: 1.05fr auto auto auto auto auto;
  align-items:center;
  gap: 50px;
  padding: clamp(24px, 2.4vw, 34px) clamp(22px, 2.6vw, 32px);
  background:#f6f9fb;
  border:1px solid rgba(16,39,53,.08);
  border-radius:28px;
}

.greeko-about-page .kpi-lead{
  flex:unset;
}

.greeko-about-page .kpi-num{
  color:#102735;
  font-weight:800;
  letter-spacing:-0.05em;
  line-height:0.95;
  font-size: 30px;
}

.greeko-about-page .kpi-sup,
.greeko-about-page .kpi-star{
  font-size:.28em;
  vertical-align:super;
}

.greeko-about-page .kpi-lbl{
  margin-top:12px;
  color:#102735;
  font-size:18px;
  line-height:1.25;
  font-weight:700;
}

.greeko-about-page .kpi-vr{
  width:1px;
  height:86px;
  background:rgba(16,39,53,.14);
}

.greeko-about-page .mwp-sec{
  background:#ffffff;
  padding-top: clamp(40px, 3vw, 56px);
  padding-bottom: clamp(82px, 7vw, 120px);
}

.greeko-about-page .mwp-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: clamp(28px, 4vw, 72px);
  margin-bottom: clamp(42px, 4.5vw, 76px);
}

.greeko-about-page .mwp-note{
  max-width:360px;
}

.greeko-about-page .mwp-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(34px, 4vw, 72px);
  align-items:start;
}

.greeko-about-page .mwp-feats{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 74px);
  row-gap: clamp(28px, 3vw, 54px);
}

.greeko-about-page .mwp-card{
  padding: 6px 0;
}

.greeko-about-page .mwp-ic,
.greeko-about-page .wbc-ic{
  width:38px;
  height:38px;
  color:#102735;
}

.greeko-about-page .mwp-ic svg,
.greeko-about-page .wbc-ic svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.greeko-about-page .mwp-h,
.greeko-about-page .wbc-h,
.greeko-about-page .mot-name{
  color:#102735;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-0.02em;
}

.greeko-about-page .mwp-h{ font-size:24px; margin:0 0 12px; }
.greeko-about-page .wbc-h{ font-size:24px; margin:0 0 10px; }

.greeko-about-page .mot-sec{
  background:#eef5f3;
  padding-top: clamp(82px, 7vw, 118px);
  padding-bottom: clamp(82px, 7vw, 118px);
}

.greeko-about-page .mot-head{
  text-align:center;
  margin-bottom: clamp(32px, 3vw, 54px);
}

.greeko-about-page .mot-sub{
  max-width:74ch;
  margin:0 auto;
}

.greeko-about-page .mot-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.greeko-about-page .mot-img{
  height: 420px;
  background:#dfe8ee;
}

.greeko-about-page .mot-info{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(16,39,53,.08);
  border-radius:20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.greeko-about-page .mot-name{ font-size:16px; line-height:1.1; }
.greeko-about-page .mot-role{
  margin-top:6px;
  color:#5f6b79;
  font-size:14px;
  line-height:1.35;
  font-weight:600;
}

.greeko-about-page .mot-star{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#E7E61C;
  color:#102735;
  font-size:18px;
  flex:0 0 auto;
}

.greeko-about-page .wbc-sec{
  background:#ffffff;
  padding-top: clamp(82px, 7vw, 118px);
  padding-bottom: clamp(86px, 7vw, 124px);
}

.greeko-about-page .wbc-wrap{
  display:grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: clamp(34px, 4vw, 80px);
  align-items:start;
}

.greeko-about-page .wbc-lead{
  margin: 18px 0 40px;
  max-width: 68ch;
}

.greeko-about-page .wbc-list{
  display:flex;
  flex-direction:column;
  gap: 32px;
}

.greeko-about-page .wbc-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.greeko-about-page .wbc-media img{
  min-height: 100%;
}

@media (max-width: 1100px){
  .greeko-about-page .trust-top,
  .greeko-about-page .mwp-head,
  .greeko-about-page .wbc-wrap,
  .greeko-about-page .mwp-grid{
    grid-template-columns: 1fr;
    flex-direction:column;
  }

  .greeko-about-page .kpi-wrap{
    grid-template-columns: 1fr 1fr;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .greeko-about-page .kpi-lead{
    grid-column: 1 / -1;
    width:100%;
    text-align:center;
  }

  .greeko-about-page .kpi-vr{ display:none; }
  .greeko-about-page .mot-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px){
  .greeko-about-page .mwp-feats{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .greeko-about-page .trust-title,
  .greeko-about-page .mwp-title,
  .greeko-about-page .mot-title,
  .greeko-about-page .wbc-title{
    font-size: clamp(34px, 9.5vw, 44px);
    line-height:1;
  }

  .greeko-about-page .kpi-wrap{ grid-template-columns: 1fr; }
  .greeko-about-page .mot-grid{ grid-template-columns: 1fr; }
  .greeko-about-page .mot-img{ height:360px; }
  .greeko-about-page .trust-play{ width:78px; height:78px; }
  .greeko-about-page .trust-play-ic{ border-left-width:16px; border-top-width:10px; border-bottom-width:10px; }
  .greeko-about-page .mwp-h,
  .greeko-about-page .wbc-h{ font-size:21px; }
}

@media (min-width: 2400px) and (min-height: 1400px){
  .greeko-about-page .trust-wrap,
  .greeko-about-page .kpi-wrap,
  .greeko-about-page .mwp-wrap,
  .greeko-about-page .mot-wrap,
  .greeko-about-page .wbc-wrap{ max-width: 1680px; }

  .greeko-about-page .mot-img{ height: 520px; }
  .greeko-about-page .trust-play{ width:110px; height:110px; }
}



/* ===== OVM HERO BACKGROUND SYSTEM ===== */
:root{
  --ovm-dark: #10232C;
  --ovm-dark-2: #0B141B;
  --ovm-dark-3: #081015;
  --ovm-accent: #E2E11B;
}

.scene{
  position: relative;
  background: var(--ovm-dark);
  isolation: isolate;
}

.scene .bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene .blob,
.scene .ring{
  display: none !important;
}

.scene[class*="scene--"]::before,
.scene[class*="scene--"]::after,
.scene[class*="scene--"] .bg::before,
.scene[class*="scene--"] .bg::after{
  content: "";
  position: absolute;
  pointer-events: none;
}

.scene[class*="scene--"] .hero{
  position: relative;
  z-index: 5;
}

.scene[class*="scene--"] .hero::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(820px, 72vw);
  height: min(560px, 48vw);
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255,255,255,.05) 0%,
      rgba(255,255,255,.02) 30%,
      rgba(255,255,255,0) 72%
    );
  filter: blur(18px);
  z-index: -1;
}

.scene[class*="scene--"] .hero-pill{
  background: rgba(5, 12, 16, 0.22);
  border-color: rgba(255,255,255,.16);
}

.scene[class*="scene--"] .hero-title{
  text-shadow: 0 12px 32px rgba(0,0,0,.42);
}


/* ===== CONCEPT 3: LAYERED SOFT PANELS ===== */
.scene--soft-panels{
  background:
    linear-gradient(180deg, #10232C 0%, #091118 100%);
}

.scene--soft-panels::before{
  left: -10%;
  top: 12%;
  width: 40%;
  height: 60%;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(-14deg);
  filter: blur(10px);
  opacity: .50;
}

.scene--soft-panels::after{
  right: -8%;
  top: 8%;
  width: 42%;
  height: 64%;
  border-radius: 52px;
  background:
    linear-gradient(145deg, rgba(226,225,27,.10), rgba(16,35,44,0));
  border: 1px solid rgba(226,225,27,.08);
  transform: rotate(12deg);
  filter: blur(18px);
  opacity: .35;
}

.scene--soft-panels .bg::before{
  inset: 0;margin-left: -33px;
  background:
    radial-gradient(46% 36% at 50% 42%, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 24%, rgba(255,255,255,0) 62%),
    radial-gradient(34% 44% at 76% 28%, rgba(226,225,27,.06) 0%, rgba(226,225,27,0) 72%),
    radial-gradient(30% 40% at 24% 62%, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 74%),
    linear-gradient(180deg, #10232C 0%, #081117 100%);
}

.scene--soft-panels .bg::after{
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 0%, transparent 20%, transparent 80%, rgba(255,255,255,.02) 100%),
    radial-gradient(72% 66% at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.46) 80%, rgba(0,0,0,.72) 100%);
}

.svc-icon img{
  width:26px;
  height:26px;
  display:block;
  object-fit:contain;
}


/* ===== Discover Our Work ===== */
.ovm-discover-work{
  background: #f4f4f4;
  padding: 88px 0 72px;
  overflow: hidden;
}

.ovm-discover-work__wrap{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ovm-discover-work__head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin: 0 0 48px;
}

.ovm-discover-work__title{
  margin: 0;
  color: #070a08;
  font-family: inherit;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.ovm-discover-work__text{
  margin: 0;
  max-width: 430px;
  color: rgba(7,10,8,0.68);
  font-family: inherit;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 400;
  text-align: left;
  flex: 0 0 430px;
}

.ovm-discover-work__viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  cursor: grab;
}

.ovm-discover-work__viewport::-webkit-scrollbar{
  display: none;
}

.ovm-discover-work__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 428px;
  gap: 24px;
  width: max-content;
  padding-right: 24px;
}

.ovm-discover-work__card{
  min-height: 590px;
  background: #ececec;
  border-radius: 20px;
  padding: 26px 24px 0;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ovm-discover-work__card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.ovm-discover-work__card-title{
  margin: 0;
  color: #070a08;
  font-family: inherit;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.ovm-discover-work__cta{
  flex: 0 0 auto;
  text-decoration: none;
  color: #070a08;
  font-family: inherit;
}

.ovm-discover-work__cta--desktop{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f7f7f7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.ovm-discover-work__cta--mobile{
  display: none;
}

.ovm-discover-work__media{
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.ovm-discover-work__media img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.ovm-discover-work__progress{
  position: relative;
  height: 4px;
  background: #e3e3e3;
  margin-top: 18px;
  overflow: hidden;
}

.ovm-discover-work__progress-bar{
  display: block;
  width: 18%;
  height: 100%;
  background: #070a08;
  transform: translateX(0);
  transition: transform 0.18s linear, width 0.18s linear;
}

/* tablet */
@media (max-width: 1024px){
  .ovm-discover-work{
    padding: 72px 0 56px;
  }

  .ovm-discover-work__wrap{
    width: min(1280px, calc(100% - 40px));
    padding: 0 20px;
  }

  .ovm-discover-work__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
  }

  .ovm-discover-work__text{
    max-width: 520px;
    flex: none;
  }
}

/* mobile */
@media (max-width: 767px){
  .ovm-discover-work{
    padding: 56px 0 46px;
  }

  .ovm-discover-work__wrap{
    width: 100%;
    padding: 0 14px;
  }

  .ovm-discover-work__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .ovm-discover-work__title{
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .ovm-discover-work__text{
    font-size: 16px;
    line-height: 1.25;
    max-width: 320px;
    flex: none;
  }

  .ovm-discover-work__track{
    grid-auto-columns: calc(100vw - 28px);
    gap: 16px;
    padding-right: 14px;
  }

  .ovm-discover-work__card{
    min-height: 576px;
    border-radius: 18px;
    padding: 22px 18px 0;
  }

  .ovm-discover-work__card-title{
    font-size: 24px;
  }

  .ovm-discover-work__cta--desktop{
    display: none;
  }

  .ovm-discover-work__cta--mobile{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f7f7f7;
  }

  .ovm-discover-work__cta--mobile svg{
    width: 24px;
    height: 24px;
  }

  .ovm-discover-work__media{
    padding-top: 16px;
  }

  .ovm-discover-work__progress{
    margin-top: 16px;
  }
}

/* large desktop */
@media (min-width: 2400px) and (min-height: 1400px){
  .ovm-discover-work{
    padding: 110px 0 86px;
  }

  .ovm-discover-work__wrap{
    width: min(1460px, calc(100% - 120px));
    padding: 0 30px;
  }

  .ovm-discover-work__head{
    gap: 60px;
    margin-bottom: 58px;
  }

  .ovm-discover-work__title{
    font-size: clamp(66px, 4.2vw, 86px);
  }

  .ovm-discover-work__text{
    max-width: 520px;
    flex-basis: 520px;
    font-size: 28px;
  }

  .ovm-discover-work__track{
    grid-auto-columns: 520px;
    gap: 28px;
    padding-right: 30px;
  }

  .ovm-discover-work__card{
    min-height: 720px;
    border-radius: 24px;
    padding: 32px 28px 0;
  }

  .ovm-discover-work__card-title{
    font-size: 34px;
  }

  .ovm-discover-work__cta--desktop{
    min-width: 154px;
    height: 58px;
    font-size: 18px;
  }
}

/* ===== Website Development page refinements ===== */
.greeko-scope .service-page h1,
.greeko-scope .service-page h2{
  text-transform: math-auto !important;
}

.ovm-seo-method__icon img{
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.ovm-project-cta{
  background: #ffffff;
  padding: clamp(88px, 10vw, 138px) 24px;
}

.ovm-project-cta__wrap{
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.ovm-project-cta__title{
  margin: 0;
  color: #000000;
  font-family: inherit;
  font-size: clamp(52px, 6.2vw, 82px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ovm-project-cta__text{
  max-width: 980px;
  margin: 36px auto 0;
  color: #000000;
  font-family: inherit;
  font-size: clamp(21px, 2.15vw, 28px);
  line-height: 1.45;
  font-weight: 400;
  text-wrap: balance;
}

.ovm-project-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 76px;
  margin-top: 46px;
  padding: 18px 30px;
  border-radius: 999px;
  background: #090909;
  color: #ffffff;
  font-family: inherit;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.ovm-project-cta__button:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 1024px){
  .ovm-project-cta__text{
    max-width: 780px;
  }
}

@media (max-width: 767px){
  .ovm-project-cta{
    padding: 72px 20px;
  }

  .ovm-project-cta__title{
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1;
  }

  .ovm-project-cta__text{
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.55;
  }

  .ovm-project-cta__button{
    min-width: 168px;
    min-height: 64px;
    margin-top: 34px;
    padding: 16px 26px;
    font-size: 22px;
  }
}


/* ==========================
   YEARLY GROWTH — 2025 FINAL OVERRIDE
   ========================== */
.yearly-growth{
  background: #dfe7e5 !important;
  padding: clamp(76px, 7vw, 112px) 0 clamp(84px, 7vw, 118px) !important;
  color: #102735 !important;
}

.yearly-growth .yg-container{
  width: min(1220px, calc(100% - 80px)) !important;
  margin: 0 auto !important;
}

.yearly-growth .yg-head{
  text-align: center !important;
  margin-bottom: clamp(42px, 5vw, 64px) !important;
}

.yearly-growth .yg-title{
  margin: 0 !important;
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 48px !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
  text-transform: none !important;
  color: #102735 !important;
}

.yearly-growth .yg-dash{
  color: #102735 !important;
}

.yearly-growth .yg-year{
  color: #E7E61C !important;
}

.yearly-growth .yg-sub{
  margin: 18px auto 0 !important;
  max-width: 760px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(18px, 1.4vw, 22px) !important;
  line-height: 1.5 !important;
  color: rgba(18, 40, 67, 0.78) !important;
  text-transform: none !important;
}

.yearly-growth .yg-body{
  display: grid !important;
  grid-template-columns: minmax(320px, 510px) minmax(320px, 1fr) !important;
  gap: clamp(32px, 5vw, 108px) !important;
  align-items: start !important;
}

.yearly-growth .yg-left{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding-top: 10px !important;
}

.yearly-growth .yg-kpi-row{
  display: flex !important;
  align-items: flex-end !important;
  gap: 18px !important;
}

.yearly-growth .yg-kpi{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 75px !important;
  font-weight: 500 !important;
  line-height: 0.88 !important;
  letter-spacing: -0.07em !important;
  color: #E7E61C !important;
}

.yearly-growth .yg-kpi-label{
  margin: 0 0 14px 0 !important;
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: #E7E61C !important;
}

.yearly-growth .yg-big{
  margin-top: 26px !important;
  font-family: "SF Pro Display", sans-serif !important;
  font-size: clamp(44px, 5.5vw, 62px) !important;
  font-weight: 600 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  text-transform: none !important;
  color: #102735 !important;
}

.yearly-growth .yg-cta{
  margin-top: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 15px 30px !important;
  border-radius: 999px !important;
  border: none !important;
  background: #ECECEC !important;
  box-shadow: none !important;
  color: #102735 !important;
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.yearly-growth .yg-cta-ic{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: inherit !important;
}

.yearly-growth .yg-right{
  display: flex !important;
  justify-content: flex-start !important;
  padding: 0 !important;
}

.yearly-growth .yg-bars{
  position: static !important;
  transform: none !important;
  width: 100% !important;
  max-width: 570px !important;
  height: auto !important;
  display: grid !important;
  gap: 16px !important;
}

.yearly-growth .yg-bar{
  position: relative !important;
  right: auto !important;
  top: auto !important;
  width: 100% !important;
  min-height: 84px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 24px 24px !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}

.yearly-growth .yg-pct{
  
  font-size: clamp(24px, 3vw, 34px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  white-space: nowrap !important;
}

.yearly-growth .yg-label{
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.07em !important;
  text-transform: capitalize !important;
  text-align: right !important;
}

.yearly-growth .yg-bar--lime{
  background: #E7E61C !important;
  color: #102735 !important;
}

.yearly-growth .yg-bar--dark{
  background: #102735 !important;
  color: #ffffff !important;
}

@media (max-width: 900px){
  .yearly-growth .yg-container{
    width: calc(100% - 36px) !important;
  }

  .yearly-growth .yg-body{
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .yearly-growth .yg-kpi-label{
    margin-bottom: 10px !important;
    font-size: 14px !important;
  }

  .yearly-growth .yg-big{
    font-size: clamp(36px, 10vw, 52px) !important;
  }

  .yearly-growth .yg-bars{
    max-width: none !important;
    gap: 14px !important;
    margin-top: 0 !important;
  }

  .yearly-growth .yg-bar{
    min-height: 72px !important;
    padding: 18px 16px !important;
    gap: 12px !important;
  }

  .yearly-growth .yg-pct{
    font-size: 20px !important;
  }

  .yearly-growth .yg-label{
    font-size: 10px !important;
    letter-spacing: 0.05em !important;
  }
}


/* Force white case study card headings inside Elementor/theme overrides */
.gkcs-card .gkcs-name,
.gkcs-card h3.gkcs-name,
.gkcs-card .gkcs-name a,
.elementor .gkcs-card .gkcs-name,
.elementor .gkcs-card h3.gkcs-name,
.elementor-widget-container .gkcs-card .gkcs-name,
.elementor-widget-container .gkcs-card h3.gkcs-name{
  color:#ffffff !important;
}


/* v1.0.8 overrides */
.gkcs-card .gkcs-name,
.gkcs-card h3.gkcs-name,
.gkcs-card .gkcs-name a,
.elementor .gkcs-card .gkcs-name,
.elementor .gkcs-card h3.gkcs-name,
.elementor-widget-container .gkcs-card .gkcs-name,
.elementor-widget-container .gkcs-card h3.gkcs-name{
  color: #ffffff !important;
}

#case-studies .gkcs-card .gkcs-name,
#case-studies .gkcs-card h3.gkcs-name,
#case-studies .cs-card .cs-name,
#case-studies .cs-card h3.cs-name {
  color: #000000 !important;
}

.tech-tab{
  background: #102735;
  color: #fff;
  border: 2px solid #E7E61C;
}

.tech-tab:hover,
.tech-tab:focus,
.tech-tab:active,
.tech-tab.is-active{
  background: #102735 !important;
  color: #E7E61C !important;
  border-color: #E7E61C !important;
}

@media (max-width: 767px){
  .greeko-scope .service-hero #service-title,
  .greeko-scope .service-hero .title{
    font-size: 30px !important;
    line-height: 30px !important;
    margin-bottom: 12px !important;
  }
}


.choice__title > span{
  display: block;
  color: #E7E61C;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

/* Case studies heading color override only */
#case-studies .cs-card .cs-name,
#case-studies .cs-card .cs-dot,
#case-studies .gkcs-card .gkcs-name,
#case-studies .gkcs-card .gkcs-name a{
  color:#000000 !important;
}

/* All Case Studies button text white on hover */
.cs-all:hover,
.cs-all:hover span,
.cs-all:hover .cs-all-ic {
  color: #ffffff !important;
}

.your-stat-selector,
.your-stat-label-selector {
  color: #E7E61C !important;
}

.hero-cta-btn--dark:hover {
  color: #ffffff !important;
}

/* Mobile blog card image balance fix */
@media (max-width: 767px){
  #blog .postCard__media{
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  #blog .postCard__media img{
    width: 100%;
    height: 100%;
    object-fit: inherit;
    object-position: center center;
    display: block;
    margin: 0 auto;
  }
}

.cta-work__btn:hover,
.cta-work__btn:hover .cta-work__btn-ic{
  color: #ffffff !important;
}

.ovm-project-cta__button:hover
{
  color: #ffffff !important;
}

/* Mobile service card CTA visibility fix */
@media (max-width: 767px) {
  .svc-card {
    position: relative;
  }

  .svc-right {
    position: relative;
  }

  .svc-cta {
    display: grid !important;
    place-items: center;
    position: absolute;
    width: 72px;
    height: 72px;
    right: 34px;
    bottom: 34px;
    top: auto;
    transform: none;
    border-radius: 999px;
    background: #E7E61C;
    color: rgba(0,0,0,.92);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    z-index: 8;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .svc-cta svg {
    display: block;
    width: 22px;
    height: 22px;
    transform: rotate(0deg) !important;
  }

  .svc-card:hover .svc-cta,
  .svc-card:active .svc-cta,
  .svc-card:focus-within .svc-cta,
  .svc-card.is-active .svc-cta {
    display: grid !important;
    width: 72px;
    height: 72px;
    right: 34px;
    bottom: 34px;
    top: auto;
    transform: none;
    border-radius: 999px;
    background: #E7E61C;
    color: rgba(0,0,0,.92);
  }
}


/* ============================
   NAV POLISH + MOBILE CTA ICON FIX
   ============================ */
.nav-dropdown__trigger,
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus,
.nav-dropdown__trigger:focus-visible,
.nav-dropdown__trigger:active,
.m-dropdown__top .m-link,
.m-dropdown__top .m-link:hover,
.m-dropdown__top .m-link:focus,
.m-dropdown__top .m-link:focus-visible,
.m-dropdown__top .m-link:active,
.m-dropdown__top .m-link:visited{
  color: rgba(255,255,255,.92) !important;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.m-dropdown__top .m-link.is-active,
.nav-dropdown__trigger.is-active{
  color: #E7E61C !important;
}

.nav-dropdown__trigger-icon{
  width: 16px;
  height: 16px;
  margin-left: 2px;
  opacity: 1;
  flex: 0 0 16px;
}

.nav-dropdown__trigger-icon svg,
.nav-dropdown__caret svg,
.m-dropdown__caret svg{
  width: 16px;
  height: 16px;
  display: block;
}

.m-dropdown__caret,
.m-dropdown__caret:hover,
.m-dropdown__caret:focus,
.m-dropdown__caret:focus-visible,
.m-dropdown__caret:active{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(231,230,28,.35);
  background: transparent !important;
  color: rgba(255,255,255,.92) !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.m-dropdown.is-open .m-dropdown__caret{
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(231,230,28,.55);
}

.m-cta,
.m-cta:hover,
.m-cta:focus,
.m-cta:focus-visible,
.m-cta:active,
.m-cta:visited{
  color: rgba(0,0,0,.92) !important;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.m-cta-ic{
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,.10);
}

.m-cta-ic svg{
  width: 16px;
  height: 16px;
  display: block;
}

/* Mobile offer card arrow centered over image */
@media (max-width: 767px) {
  .svc-right {
    position: relative;
  }

  .svc-cta,
  .svc-card:hover .svc-cta,
  .svc-card:active .svc-cta,
  .svc-card:focus-within .svc-cta,
  .svc-card.is-active .svc-cta {
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
  }
}


/* Mobile services caret visibility + CTA image centering */
.m-dropdown__caret{
  width: 36px !important;
  height: 36px !important;
  color: #E7E61C !important;
}

.m-dropdown__caret svg{
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  color: #E7E61C !important;
  stroke: #E7E61C;
  stroke-width: 3;
}

@media (max-width: 767px) {
  .svc-right{
    position: relative !important;
  }

  .svc-right > .svc-cta,
  .svc-right > .svc-cta:hover,
  .svc-right > .svc-cta:active,
  .svc-right > .svc-cta:focus,
  .svc-right > .svc-cta:focus-visible{
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
  }
}


/* ============================
   HOTFIX v1.0.18
   - force visible mobile services caret
   - force service CTA into image center on mobile
   ============================ */
@media (max-width: 900px){
  .m-dropdown__caret{
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    color: #E7E61C !important;
  }

  .m-dropdown__caret svg{
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .m-dropdown__caret::before{
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2.5px solid #E7E61C;
    border-bottom: 2.5px solid #E7E61C;
    transform: rotate(45deg) translateY(-1px);
    display: block;
    box-sizing: border-box;
  }

  .m-dropdown.is-open .m-dropdown__caret::before{
    transform: rotate(-135deg) translate(-1px, -1px);
  }
}

@media (max-width: 767px){
  .svc-card .svc-right{
    position: relative !important;
    overflow: hidden !important;
  }

  .svc-card .svc-right > .svc-cta,
  .svc-card .svc-right > .svc-cta:hover,
  .svc-card .svc-right > .svc-cta:active,
  .svc-card .svc-right > .svc-cta:focus,
  .svc-card .svc-right > .svc-cta:focus-visible,
  .svc-card:hover .svc-right > .svc-cta,
  .svc-card:focus-within .svc-right > .svc-cta,
  .svc-card.is-active .svc-right > .svc-cta{
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 6 !important;
  }
}


/* ============================
   HOTFIX v1.0.19
   - mobile Services caret must match desktop SVG exactly
   ============================ */
@media (max-width: 900px){
  .m-dropdown__caret::before{
    content: none !important;
    display: none !important;
  }

  .m-dropdown__caret,
  .m-dropdown__caret:hover,
  .m-dropdown__caret:focus,
  .m-dropdown__caret:focus-visible,
  .m-dropdown__caret:active{
    color: #E7E61C !important;
    background: transparent !important;
  }

  .m-dropdown__caret svg{
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
    overflow: visible !important;
    display: block !important;
    color: #E7E61C !important;
    stroke: currentColor !important;
    transform: none;
  }

  .m-dropdown.is-open .m-dropdown__caret svg{
    transform: rotate(180deg) !important;
  }
}



@media (max-width: 768px){
  .greeko-scope .ovm-bloghero .ovm-bloghero__title,
  .greeko-scope h1.ovm-bloghero__title,
  .greeko-scope .ovm-bloghero__title{
    font-size: 30px !important;
    line-height: 0.96 !important;
  }
}