.sustainability {
  padding: 100px 0;
  background: #ffffff;
}

.section-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a1f33;
  margin-bottom: 12px;
}

.section-head p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.s-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
}

.s-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #e10600;
  transition: 0.35s ease;
  transform: translateX(-50%);
  border-radius: 4px;
}

.s-card:hover {
  transform: translateY(-10px);
}

.s-card:hover::after {
  width: 60%;
}

.s-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.s-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.s-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sustainability-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   CTA
================================ */

.cta-section {
  padding: 140px 40px;
  background: linear-gradient(135deg, #0a2a4a, #001a30);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #0a2a4a;
  padding: 16px 44px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.cta-btn:hover {
  background: #ff0000;
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .sustainability-section {
    padding: 80px 24px;
  }

  .sustain-cards {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 30px;
  }
}
.about-hero-fixed {
  background: linear-gradient(180deg, #062846, #041c30);
  padding: 120px 0;
  color: #fff;
}

.about-hero-inner {
  width: 1200px;
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* SOL METİN */
.hero-text .hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0 25px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 520px;
}

.hero-btn {
  display: inline-block;
  margin-top: 35px;
  background: #000;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* SAĞ TARAF */
.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  display: block;
}

/* KIRMIZI QUOTE */
.hero-quote {
  position: absolute;
  right: -40px;
  bottom: 40px;
  background: #ff0018;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 500;
  max-width: 260px;
  line-height: 1.5;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.about-hero-fixed {
  background: #ffffff;   /* 🔴 DÜZ BEYAZ */
  padding: 120px 0;
  color: #111;
}
.hero-text h1 {
  color: #0a1f33;
}

.hero-text p {
  color: #444;
}

.hero-eyebrow {
  color: #999;
}

.hero-btn {
  background: #0a1f33;
}

/* ================================
   FEATURE STRIP
================================ */

.feature-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
}

.feature-strip span {
  background: #f2f2f2;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* ================================
   PRODUCTION
================================ */

.production-section {
  padding: 140px 80px;
  background: #f7f7f7;
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.production-image img {
  width: 100%;
  border-radius: 30px;
}

.production-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.production-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .production-section {
    padding: 80px 24px;
  }

  .feature-strip {
    flex-wrap: wrap;
  }
}
