.laboratory{
  background:#0b1f3a;
  color:#fff;
}

/* küçük sarı nokta */
.laboratory-dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:#FEC233;
  display:inline-block;
}

/* HERO */
.laboratory-hero{
  position: relative;
  background:#0b1f3a;
  padding: clamp(90px, 9vw, 130px) 0 24px;
  overflow: visible;
}

/* sağ mesh */
.laboratory-hero__mesh{
  position: fixed;
  top: 0;
  right: 0;
  width: 46%;
  height: 100dvh;
  min-height: 100vh;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  opacity: .92;
  pointer-events: none;
  z-index: 1;
}

/* sol soft SCT */
.laboratory-hero__soft{
  position: absolute;
  top: 120px;
  left: 0;
  width: 82%;
  height: calc(100% - 42px);
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: .02;
  filter: blur(1.2px);
  pointer-events: none;
  z-index: 0;
}

.laboratory-hero__inner{
  width:min(1320px, calc(100% - 120px));
  margin:0 auto;
  position:relative;
  z-index:3;
  padding-top: 72px;
}

/* üst satır: sol label, sağ breadcrumb */
.laboratory-hero__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 0;
}

.laboratory-hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: .95;
  margin: 38px 0 0 0;
}

/* layout */
.laboratory-hero__layout{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 6vw, 120px);
  row-gap: 20px;
  align-items: start;
  margin-top: 10px;
}

.laboratory-hero__left{
  grid-column: 1;
}

.laboratory-hero__right{
  grid-column: 2;
  padding-top: 54px;
}

.laboratory-hero__title{
  margin:0;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.4px;
  max-width: 680px;
}

.laboratory-hero__title span{
  display:block;
}

.laboratory-hero__lead{
  margin: 0;
  max-width: 470px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}

@media (max-width: 900px){
  .laboratory-hero__inner{
    width:min(1320px, calc(100% - 40px));
  }

  .laboratory-hero__top{
    flex-direction: column;
    gap: 18px;
  }

  .laboratory-hero__layout{
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .laboratory-hero__right{
    grid-column: 1;
    padding-top: 0;
  }

  .laboratory-hero__breadcrumb{
    white-space: normal;
  }
}

/* ========================================
   laboratory SHOWCASE SECTION
======================================== */
.laboratory-showcase{
  position: relative;
  background: #0b1f3a;
  padding: 70px 0 120px;
  overflow: hidden;
}

/* alttaki geniş mesh hissi */
.laboratory-showcase::before{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72%;
  background-image: url('/assets/img/pattern.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  opacity: .38;
  pointer-events: none;
  z-index: 0;
}

.laboratory-showcase__inner{
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* aşağı ok alanı */
.laboratory-showcase__scrollCue{
  position: absolute;
  left: clamp(120px, 14vw, 255px);
  top: 92px;
  width: 32px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.laboratory-showcase__scrollArrow{
  font-size: 52px;
  line-height: 1;
  color: rgba(255,255,255,.95);
  animation: laboratoryArrowPulse 2s ease-in-out infinite;
}

.laboratory-showcase__scrollLine{
  position: absolute;
  top: 14px;
  width: 2px;
  height: 0;
  background: rgba(255,255,255,.85);
  animation: laboratoryLineGrow 2s ease-in-out infinite;
}

@keyframes laboratoryArrowPulse{
  0%{
    opacity: 0;
    transform: translateY(-12px);
  }
  20%{
    opacity: 1;
    transform: translateY(0);
  }
  65%{
    opacity: 1;
    transform: translateY(26px);
  }
  100%{
    opacity: 0;
    transform: translateY(38px);
  }
}

@keyframes laboratoryLineGrow{
  0%{
    opacity: 0;
    height: 0;
  }
  20%{
    opacity: 1;
    height: 0;
  }
  65%{
    opacity: 1;
    height: 72px;
  }
  100%{
    opacity: 0;
    height: 88px;
  }
}

/* üst büyük görsel */
.laboratory-showcase__topMedia{
  position: relative;
  width: calc(100% - 90px);
  margin-left: auto;
  border-radius: 0;
  overflow: hidden;
  z-index: 2;
}

.laboratory-showcase__topMedia img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* kayan yazı */
.laboratory-showcase__marquee{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  overflow: hidden;
  pointer-events: none;
}

.laboratory-showcase__marqueeTrack{
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: laboratoryMarquee 18s linear infinite;
}

.laboratory-showcase__marqueeTrack span{
  font-size: clamp(92px, 11vw, 170px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -3px;
  text-transform: none;
  color: #132c5f;
  -webkit-text-stroke: 2px rgba(255,255,255,.75);
  text-stroke: 2px rgba(255,255,255,.75);
  white-space: nowrap;
}

@keyframes laboratoryMarquee{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* alt içerik */
.laboratory-showcase__content{
  margin-top: -36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 3;
}

/* sol yazı */
.laboratory-showcase__text{
  max-width: 580px;
  padding-top: 100px;
  margin-left: 90px;
}

.laboratory-showcase__title{
  margin: 0 0 26px 0;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.28;
  font-weight: 400;
  color: #fff;
  max-width: 560px;
}

.laboratory-showcase__desc{
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  max-width: 470px;
}

.laboratory-showcase__desc:last-child{
  margin-bottom: 0;
}

/* sağ görsel */
.laboratory-showcase__sideMedia{
  position: relative;
  width: 100%;
  margin-top: -155px;
  z-index: 4;
}

.laboratory-showcase__sideMedia > img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* badge sütunu */
.laboratory-showcase__badges{
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.laboratory-showcase__badge{
  width: 80px;
  height: 80px;
  display: block;
}

.laboratory-showcase__badge img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* responsive */
@media (max-width: 1200px){
  .laboratory-showcase__inner{
    width: min(1320px, calc(100% - 60px));
  }

  .laboratory-showcase__topMedia{
    width: calc(100% - 90px);
  }

  .laboratory-showcase__content{
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .laboratory-showcase__sideMedia{
    margin-top: -90px;
  }

  .laboratory-showcase__sideMedia > img{
    height: 430px;
  }
}

@media (max-width: 900px){
  .laboratory-showcase{
    padding: 50px 0 80px;
  }

  .laboratory-showcase__inner{
    width: min(1320px, calc(100% - 40px));
  }

  .laboratory-showcase__scrollCue{
    display: none;
  }

  .laboratory-showcase__topMedia{
    width: 100%;
  }

  .laboratory-showcase__topMedia img{
    height: 280px;
  }

  .laboratory-showcase__marquee{
    bottom: -10px;
  }

  .laboratory-showcase__marqueeTrack span{
    font-size: clamp(54px, 14vw, 96px);
    -webkit-text-stroke: 1.5px rgba(255,255,255,.75);
    text-stroke: 1.5px rgba(255,255,255,.75);
  }

  .laboratory-showcase__content{
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .laboratory-showcase__text{
    max-width: 100%;
    padding-top: 0;
  }

  .laboratory-showcase__title{
    font-size: 30px;
  }

  .laboratory-showcase__desc{
    max-width: 100%;
    font-size: 15px;
  }

  .laboratory-showcase__sideMedia{
    margin-top: 0;
  }

  .laboratory-showcase__sideMedia > img{
    height: 340px;
  }

  .laboratory-showcase__badges{
    top: 12px;
    right: 12px;
    gap: 10px;
  }

  .laboratory-showcase__badge{
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   laboratory STAGES SECTION
======================================== */
.laboratory-stages{
  position: relative;
  background: #0b1f3a;
  padding: 90px 0 110px;
  overflow: hidden;
}

.laboratory-stages__mesh{
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/pattern.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

.laboratory-stages__inner{
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 90px;
  align-items: start;
}

/* LEFT */
.laboratory-stages__title{
  margin: 0 0 48px 0;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.22;
  font-weight: 700;
  color: #fff;
  max-width: 520px;
}

.laboratory-stages__list{
  display: grid;
  gap: 34px;
  max-width: 740px;
}

.laboratory-stages__item{
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  align-items: flex-start;
}

.laboratory-stages__item--active{
  background: rgba(120, 170, 230, .22);
  padding: 16px 18px;
  border-radius: 0;
}

.laboratory-stages__iconWrap{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: #95a2cc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.laboratory-stages__iconWrap--yellow{
  background: #FEC233;
}

.laboratory-stages__icon{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.laboratory-stages__content{
  min-width: 0;
}

.laboratory-stages__itemTitle{
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}

.laboratory-stages__itemText{
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.95);
  max-width: 500px;
}

/* RIGHT */
.laboratory-stages__right{
  position: relative;
  min-height: 540px;
}

.laboratory-stages__diagramWrap{
  width: 100%;
  max-width: 470px;
  margin: 120px auto 0;
}

.laboratory-stages__diagram{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.laboratory-stages__badges{
  position: absolute;
  right: -10px;
  top: 135px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.laboratory-stages__badge{
  width: 74px;
  height: 74px;
  display: block;
}

.laboratory-stages__badge img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1100px){
  .laboratory-stages__inner{
    width: min(1320px, calc(100% - 60px));
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .laboratory-stages__right{
    min-height: auto;
  }

  .laboratory-stages__diagramWrap{
    margin: 0 auto;
  }

  .laboratory-stages__badges{
    right: 0;
    top: 40px;
  }
}

@media (max-width: 768px){
  .laboratory-stages{
    padding: 70px 0 80px;
  }

  .laboratory-stages__inner{
    width: min(1320px, calc(100% - 40px));
  }

  .laboratory-stages__title{
    font-size: 28px;
    margin-bottom: 32px;
  }

  .laboratory-stages__list{
    gap: 24px;
  }

  .laboratory-stages__item{
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .laboratory-stages__item--active{
    padding: 14px;
  }

  .laboratory-stages__iconWrap{
    width: 64px;
    height: 64px;
  }

  .laboratory-stages__icon{
    width: 34px;
    height: 34px;
  }

  .laboratory-stages__itemTitle{
    font-size: 18px;
  }

  .laboratory-stages__itemText{
    font-size: 15px;
    line-height: 1.5;
  }

  .laboratory-stages__diagramWrap{
    max-width: 320px;
  }

  .laboratory-stages__badges{
    position: static;
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .laboratory-stages__badge{
    width: 58px;
    height: 58px;
  }
}

/* ========================================
   laboratory SAFETY SECTION
======================================== */
.laboratory-safety{
  background: #0b1f3a;
  padding: 90px 0 110px;
  overflow: hidden;
}

.laboratory-safety__inner{
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
}

/* SLIDER */
.laboratory-safety__slider{
  position: relative;
  overflow: hidden;
  margin: 0 auto 56px;
}

.laboratory-safety__track{
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: laboratorySafetyScroll 18s linear infinite;
}

.laboratory-safety__slide{
  flex: 0 0 auto;
  width: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.laboratory-safety__slide img{
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

/* Dots */
.laboratory-safety__dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.laboratory-safety__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}

.laboratory-safety__dot--active{
  background: #FEC233;
}

@keyframes laboratorySafetyScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-50% - 9px));
  }
}

/* CONTENT */
.laboratory-safety__content{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 80px;
  align-items: center;
}

.laboratory-safety__text{
  max-width: 640px;
}

.laboratory-safety__title{
  margin: 0 0 26px 0;
  font-size: clamp(30px, 2.6vw, 48px);
  line-height: 1.18;
  font-weight: 400;
  color: #fff;
}

.laboratory-safety__desc{
  margin: 0 0 26px 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.94);
  max-width: 620px;
}

.laboratory-safety__desc:last-of-type{
  margin-bottom: 34px;
}

.laboratory-safety__link{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #FEC233;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.laboratory-safety__linkArrow{
  font-size: 22px;
  line-height: 1;
}

/* right small badge */
.laboratory-safety__seal{
  display: flex;
  justify-content: center;
  align-items: center;
}

.laboratory-safety__seal img{
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1200px){
  .laboratory-safety__inner{
    width: min(1320px, calc(100% - 60px));
  }

  .laboratory-safety__slide{
    width: 440px;
  }

  .laboratory-safety__slide img{
    height: 290px;
  }

  .laboratory-safety__content{
    gap: 40px;
    grid-template-columns: 1fr 160px;
  }
}

@media (max-width: 900px){
  .laboratory-safety{
    padding: 70px 0 80px;
  }

  .laboratory-safety__inner{
    width: min(1320px, calc(100% - 40px));
  }

  .laboratory-safety__slide{
    width: 300px;
  }

  .laboratory-safety__slide img{
    height: 220px;
  }

  .laboratory-safety__content{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .laboratory-safety__seal{
    justify-content: flex-start;
  }

  .laboratory-safety__seal img{
    width: 90px;
    height: 90px;
  }

  .laboratory-safety__title{
    font-size: 28px;
  }

  .laboratory-safety__desc{
    font-size: 15px;
  }
}

/* ========================================
   laboratory EQUIPMENT SECTION
======================================== */
.laboratory-equipment{
  background: #0b1f3a;
  padding: 40px 0 110px;
}

.laboratory-equipment__inner{
  width: min(1260px, calc(100% - 120px));
  margin: 0 auto;
  background: #213a6b;
  border-radius: 34px;
  padding: 58px 60px 64px;
  box-sizing: border-box;
}

/* üst küçük badge */
.laboratory-equipment__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #17315f;
  color: #FEC233;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 54px;
}

/* iki kolon */
.laboratory-equipment__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 80px;
  align-items: start;
}

.laboratory-equipment__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.95);
  margin-bottom: 20px;
}

.laboratory-equipment__title{
  margin: 0;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.14;
  font-weight: 700;
  color: #fff;
  max-width: 520px;
}

.laboratory-equipment__infoTitle{
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.laboratory-equipment__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.52;
  color: rgba(255,255,255,.96);
  max-width: 520px;
}

/* reveal animation başlangıç */
.js-reveal-up{
  opacity: 0;
  transform: translateY(55px) scale(.985);
  transition:
    opacity .75s ease,
    transform .75s ease;
  will-change: transform, opacity;
}

.js-reveal-up.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* responsive */
@media (max-width: 1100px){
  .laboratory-equipment__inner{
    width: min(1260px, calc(100% - 60px));
    padding: 44px 38px 50px;
  }

  .laboratory-equipment__grid{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .laboratory-equipment__title{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .laboratory-equipment{
    padding: 20px 0 80px;
  }

  .laboratory-equipment__inner{
    width: min(1260px, calc(100% - 40px));
    border-radius: 26px;
    padding: 30px 22px 34px;
  }

  .laboratory-equipment__badge{
    min-height: 42px;
    font-size: 14px;
    margin-bottom: 34px;
  }

  .laboratory-equipment__title{
    font-size: 28px;
    line-height: 1.18;
  }

  .laboratory-equipment__infoTitle{
    font-size: 17px;
  }

  .laboratory-equipment__text{
    font-size: 15px;
    line-height: 1.55;
  }
}