/* =========================
   HERO
========================= */

.yapimci-hero {
  grid-template-columns: 1.1fr 1fr;
}


/* =========================
   TAGLINE
========================= */

.tagline {
  font-size: 20px;
  margin: 16px 0;
  font-weight: 500;
}


/* =========================
   INTRO
========================= */

.intro {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}


/* =========================
   QUICK INFO
========================= */

.quick-info {
  display: flex;
  gap: 24px;
  margin: 48px 0 72px;
  flex-wrap: wrap;
}

.info-item {
  background: #f7ecd7;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
}


/* =========================
   CONTENT BLOCK
========================= */

.content-block {
  max-width: 720px;
  margin-bottom: 96px;
}




/* =========================
   STEPS – COLORED / NO SHADOW
========================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}

.step-card {
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  box-shadow: none; /* SHADOW KALKTI */
}

/* CARD COLORS */
.steps .step-card:nth-child(1) {
  background: #B5EAD7;
}

.steps .step-card:nth-child(2) {
  background: #FFD97D;
}

.steps .step-card:nth-child(3) {
  background: #B9CCED;
}

.steps .step-card:nth-child(4) {
  background: #FF9B71;
}

.step-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}


/* =========================
   HIGHLIGHT
========================= */

.highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: #B5EAD7;
  padding: 48px;
  border-radius: 40px;
  margin-bottom: 96px;
}

.highlight-text p {
  font-size: 18px;
  line-height: 1.6;
}

.highlight-image img {
  width: 100%;
  max-width: 420px;
  display: block;
}


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

.cta {
  text-align: center;
  margin-bottom: 96px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 999px;
  background: #FF9B71;
  color: #1A2A3A;
  font-weight: 600;
  text-decoration: none;
}



/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 900px) {

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlight-image img {
    margin: 0 auto;
  }
}


/* MOBILE */
@media (max-width: 768px) {

  .yapimci-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .tagline {
    font-size: 18px;
  }

  .intro {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}


/* SMALL MOBILE */
@media (max-width: 600px) {

  .steps {
    grid-template-columns: 1fr;
  }

  .quick-info {
    justify-content: center;
  }
}
