/* tasarim-danismani.php — bilgilendirici landing */

.td-landing {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  padding: 2.25rem 0 3.75rem;
  background:
    radial-gradient(circle at 92% 4%, rgba(69, 184, 172, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 6% 88%, rgba(195, 106, 67, 0.1) 0%, transparent 38%),
    linear-gradient(180deg, #faf8f5 0%, #fff 42%, #f9fafb 100%);
  color: #222;
}

.td-landing .container {
  max-width: 980px;
}

.td-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.td-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c36a43;
  background: rgba(195, 106, 67, 0.12);
  border: 1px solid rgba(195, 106, 67, 0.35);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

.td-hero__copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #141210;
}

.td-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 1.72;
  color: #4a4540;
}

.td-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.td-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.82rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a3728;
  background: #fff;
  border: 1px solid #e0d8cf;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.td-hero__pills li .bi {
  color: #45b8ac;
  font-size: 0.95rem;
}

.td-hero__visual {
  position: relative;
  min-height: 320px;
}

.td-moodboard {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff 0%, #f3f0eb 100%);
  border: 1px solid #e8e4df;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.td-moodboard__tile {
  position: absolute;
  border-radius: 14px;
  opacity: 0.85;
}

.td-moodboard__tile--1 {
  top: 8%;
  left: 6%;
  width: 38%;
  height: 28%;
  background: linear-gradient(135deg, #d4c4b0 0%, #a8957a 100%);
  transform: rotate(-6deg);
}

.td-moodboard__tile--2 {
  top: 10%;
  right: 8%;
  width: 34%;
  height: 32%;
  background: linear-gradient(135deg, #7ad4c8 0%, #45b8ac 100%);
  transform: rotate(5deg);
}

.td-moodboard__tile--3 {
  bottom: 28%;
  left: 10%;
  width: 28%;
  height: 22%;
  background: linear-gradient(135deg, #f5e6d3 0%, #e8c9a8 100%);
  transform: rotate(4deg);
}

.td-moodboard__tile--4 {
  bottom: 22%;
  right: 12%;
  width: 30%;
  height: 24%;
  background: linear-gradient(135deg, #c8e6c9 0%, #81c784 100%);
  transform: rotate(-4deg);
}

.td-moodboard__tile--5 {
  top: 42%;
  left: 38%;
  width: 22%;
  height: 18%;
  background: linear-gradient(135deg, #ffccbc 0%, #ff8a65 100%);
  transform: rotate(8deg);
  opacity: 0.65;
}

.td-moodboard__card {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: min(88%, 280px);
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(69, 184, 172, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(6px);
}

.td-moodboard__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #45b8ac 0%, #3a9b8f 100%);
  color: #fff;
  font-size: 1.05rem;
}

.td-moodboard__bubble {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2c3e50;
}

.td-moodboard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.td-moodboard__chips span {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c36a43;
  background: rgba(195, 106, 67, 0.1);
  border-radius: 999px;
}

.td-section-title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 700;
  color: #141210;
}

.td-steps {
  margin-bottom: 2.75rem;
}

.td-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.td-step-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 1.15rem 1.3rem;
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.td-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(195, 106, 67, 0.1);
}

.td-step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  background: linear-gradient(145deg, #c36a43 0%, #a85a38 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.td-step-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #141210;
}

.td-step-card__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #5c5650;
}

.td-explore {
  margin-bottom: 2.25rem;
}

.td-explore__lead {
  margin: -0.5rem auto 1.35rem;
  max-width: 32em;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5c5650;
}

.td-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.td-explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.1rem 1.05rem;
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.td-explore-card:hover {
  transform: translateY(-2px);
  border-color: rgba(69, 184, 172, 0.45);
  box-shadow: 0 10px 28px rgba(69, 184, 172, 0.12);
  color: inherit;
}

.td-explore-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.td-explore-card__icon--teal {
  background: rgba(69, 184, 172, 0.14);
  color: #2d6b64;
}

.td-explore-card__icon--coral {
  background: rgba(195, 106, 67, 0.14);
  color: #a85a38;
}

.td-explore-card__icon--green {
  background: rgba(136, 176, 75, 0.16);
  color: #5a7a2e;
}

.td-explore-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #141210;
}

.td-explore-card__text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #64748b;
}

.td-aside {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e8e4df;
  border-radius: 14px;
  text-align: left;
}

.td-aside .bi {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.1rem;
  color: #c36a43;
}

.td-aside p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5c5650;
}

.td-cta-wrap {
  margin-top: 1.75rem;
  text-align: center;
}

.td-cta-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff !important;
  background: #45b8ac;
  border: 1px solid #45b8ac;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.td-cta-home:hover {
  background: #3a9b8f;
  border-color: #3a9b8f;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .td-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .td-hero__visual {
    order: -1;
    min-height: 280px;
  }

  .td-moodboard {
    min-height: 280px;
  }

  .td-steps__grid,
  .td-explore__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .td-landing {
    padding-top: 1.5rem;
  }

  .td-hero__copy h1 {
    font-size: 1.65rem;
  }

  .td-moodboard__card {
    width: 92%;
  }
}
