.services .service-stack {
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}


.kokil-production {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-inline: 0;
  padding: 28px 0 20px;
  transform: none;
  scroll-margin-top: 76px;
  background: transparent;
}

.kokil-production,
.kokil-production *,
.kokil-production *::before,
.kokil-production *::after {
  box-sizing: border-box;
}

.kokil-production__header {
  margin: 0 0 18px;
}

.kokil-production__eyebrow {
  margin: 0 0 7px;
  color: #075599;
  font-size: clamp(14px, 1.12vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.kokil-production__title {
  margin: 0;
  color: #101b2d;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.042em;
}

.kokil-production__primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.kokil-production__card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #d3dee9;
  border-radius: 10px;
  background: #fff;
}

.kokil-production__hero {
  height: 492px;
  min-height: 492px;
}

.kokil-production__hero img,
.kokil-production__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kokil-production__info {
  display: flex;
  height: 492px;
  min-height: 492px;
  flex-direction: column;
  padding: 28px 40px 24px;
}

.kokil-production__info h3 {
  margin: 0 0 13px;
  color: #101b2d;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.kokil-production__info-copy > p {
  max-width: 700px;
  margin: 0;
  color: #43546c;
  font-size: 17px;
  line-height: 1.4;
}

.kokil-production__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid #dbe4ed;
  border-bottom: 1px solid #dbe4ed;
}

.kokil-production__feature {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  padding: 7px 13px 7px 3px;
}

.kokil-production__feature:nth-child(odd) {
  border-right: 1px solid #dbe4ed;
}

.kokil-production__feature:nth-child(-n + 2) {
  border-bottom: 1px solid #dbe4ed;
}

.kokil-production__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: #0963d8;
  border: 1px solid #b9c9dc;
  border-radius: 11px;
  background: #f9fbfd;
  place-items: center;
}

.kokil-production__icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.kokil-production__feature h4 {
  max-width: 220px;
  margin: 0;
  color: #101b2d;
  font-size: clamp(15px, 1.24vw, 19px);
  font-weight: 800;
  line-height: 1.16;
}

.kokil-production__button {
  display: inline-flex;
  width: fit-content;
  min-width: 318px;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: auto;
  padding: 10px 17px 10px 33px;
  color: #fff;
  border-radius: 8px;
  background: var(--blue, #0f6096);
  box-shadow: 0 8px 20px rgb(15 96 150 / 17%);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.kokil-production__button:hover {
  color: #fff;
  background: var(--blue-dark, #0b4b78);
  box-shadow: 0 12px 26px rgb(15 96 150 / 24%);
  transform: translateY(-2px);
}

.kokil-production__button:focus-visible {
  outline: 3px solid rgb(9 99 216 / 32%);
  outline-offset: 3px;
}

.kokil-production__arrow {
  font-size: 30px;
  font-weight: 400;
}

.kokil-production__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.kokil-production__gallery-item {
  height: clamp(185px, 13.3vw, 230px);
  background: #dce2e8;
}

/* Keep white or transparent replacement images on the shared card background. */
.kokil-production__gallery-item img {
  background: #dce2e8;
  mix-blend-mode: darken;
}

@media (min-width: 1151px) and (max-width: 1350px) {
  .kokil-production__info {
    padding: 22px 26px 20px;
  }

  .kokil-production__info h3 {
    margin-bottom: 9px;
    font-size: 26px;
  }

  .kokil-production__info-copy > p {
    font-size: 15px;
    line-height: 1.34;
  }

  .kokil-production__features {
    margin-top: 12px;
  }

  .kokil-production__feature {
    min-height: 58px;
    gap: 10px;
    padding-block: 4px;
  }

  .kokil-production__icon {
    width: 46px;
    height: 46px;
  }

  .kokil-production__icon svg {
    width: 30px;
    height: 30px;
  }

  .kokil-production__button {
    min-height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 1150px) {
  .kokil-production {
    width: 100%;
    margin-inline: 0;
    transform: none;
  }

  .kokil-production__primary {
    grid-template-columns: 1fr;
  }

  .kokil-production__hero {
    height: auto;
    min-height: 520px;
  }

  .kokil-production__info {
    height: auto;
    min-height: auto;
    gap: 24px;
  }

  .kokil-production__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kokil-production__gallery-item {
    height: 280px;
  }
}

@media (max-width: 680px) {
  .kokil-production {
    padding: 21px 12px 14px;
  }

  .kokil-production__header {
    margin-bottom: 14px;
  }

  .kokil-production__eyebrow {
    font-size: 13px;
  }

  .kokil-production__title {
    font-size: 34px;
  }

  .kokil-production__hero {
    min-height: 330px;
  }

  .kokil-production__info {
    padding: 25px 20px 22px;
  }

  .kokil-production__features {
    grid-template-columns: 1fr;
  }

  .kokil-production__feature:nth-child(odd) {
    border-right: 0;
  }

  .kokil-production__feature:nth-child(-n + 3) {
    border-bottom: 1px solid #dbe4ed;
  }

  .kokil-production__button {
    width: 100%;
    min-width: 0;
    padding-left: 22px;
  }

  .kokil-production__gallery {
    grid-template-columns: 1fr;
  }

  .kokil-production__gallery-item {
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kokil-production__button {
    transition: none;
  }
}
