:root{
  --dark:#0e2f26;
  --green:#1f7a5a;
  --light:#f6f9f8;
  --text:#1a1a1a;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#fff;
}

.container{
  max-width:1200px;
  width:90%;
  margin:auto;
}

.hero{
  padding:110px 0;
  background:linear-gradient(120deg,#0e2f26,#134d3c);
  color:#fff;
}

.hero-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:30px;
  background:rgba(255,255,255,.12);
  font-size:12px;
  letter-spacing:.8px;
}

.hero h1{
  font-size:46px;
  margin:20px 0;
  line-height:1.15;
}

.hero p{max-width:520px;}

.hero-stats{
  display:flex;
  gap:30px;
  margin-top:40px;
}

.hero-stats strong{
  display:block;
  font-size:22px;
}

.hero-visual img{
  width:100%;
  border-radius:20px;
}

.section{padding:100px 0;}
.section.light{background:var(--light);}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.modern-list{
  list-style:none;
  margin-top:30px;
}

.modern-list li{
  padding-left:26px;
  margin-bottom:14px;
  position:relative;
}

.modern-list li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--green);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  margin-top:50px;
}

.feature-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.feature-card img{
  width:100%;
  border-radius:14px;
  margin-bottom:16px;
}

.glass{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  padding:60px;
  border-radius:26px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
}

.capacity-modern{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.capacity-modern img{
  width:100%;
  border-radius:24px;
}

.cta-modern{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:90px 0;
}

.cta-modern button{
  margin-top:30px;
  padding:16px 44px;
  border-radius:40px;
  border:none;
  background:#fff;
  color:var(--dark);
  font-weight:600;
  cursor:pointer;
}

.center{text-align:center;}

@media(max-width:900px){
  .hero-wrap,
  .two-col,
  .glass,
  .capacity-modern{
    grid-template-columns:1fr;
  }
}
.mini-title{
  font-size:12px;
  letter-spacing:1px;
  color:var(--green);
  font-weight:600;
}

.optik-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:30px;
}

.optik-features div{
  padding-left:16px;
  border-left:3px solid var(--green);
}

.optik-features strong{
  display:block;
  font-size:15px;
}

.optik-features span{
  font-size:14px;
  color:#555;
}
.capacity-text p{
  max-width:460px;
}

.capacity-stats{
  display:flex;
  gap:30px;
  margin-top:40px;
}

.capacity-stats div{
  background:#fff;
  padding:22px 26px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.capacity-stats strong{
  display:block;
  font-size:22px;
  color:var(--green);
}

.capacity-stats span{
  font-size:13px;
  color:#666;
}
/* Görsel alan kontrolü */
.image-wrap{
  position: relative;
  max-width: 520px;   /* masaüstü sınırı */
  margin-left: auto;  /* sağa yasla */
}

.image-wrap img{
  width: 100%;
  height: auto;
  max-height: 420px;      /* görsel taşmasını engeller */
  object-fit: contain;   /* KESİNLİKLE cover değil */
}

/* section taşmasını engelle */
.section{
  overflow: hidden;
}
.feature-grid{
  align-items: stretch;
}

.card-image{
  width: 100%;
  height: 180px;          /* TÜM GÖRSELLER AYNI YÜKSEKLİK */
  border-radius: 14px;
  overflow: hidden;
  background: #f2f4f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* EŞİT BOYUT GÖRÜNÜM */
}

@media (max-width: 768px){
  .card-image{
    height: 150px;
  }
}
