/* ==========================================================
   VALUES – TRUE 100vh + AUTO SCALE (NO SCROLL)
========================================================== */

section#values.values-section{
  position: relative;

  height: 100vh;
  height: 100svh;
  height: 100dvh;

  width: 100%;
  overflow: hidden;

  padding: 0;
}

/* Overlay */
section#values .values-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 0;
}

/* ORTALAYICI KATMAN */
section#values .values-stage{
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* SCALE EDİLEN İÇERİK */
section#values .values-inner{
  width: 100%;
  max-width: 1000px;

  padding: 20px;

  transform-origin: center center;
  will-change: transform;
}

/* ==========================================================
   BASE TASARIM
========================================================== */

section#values .values-title{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

section#values .values-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;

  max-width: 900px;
  margin: 0 auto;
}

section#values .value-card{
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;

  padding: 28px 35px;
  text-align: left;
  color: #fff;

  transition: 0.3s ease;
}

section#values .value-card:hover{
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

section#values .value-card h3{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

section#values .value-card p{
  font-size: 17px;
  line-height: 1.5;
  opacity: .9;
}

/* ==========================================================
   RESPONSIVE – GENİŞLİK
========================================================== */

@media (max-width: 900px){
  section#values .values-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
