/* Genel bolum duzeni (section-inner, section-heading, split) ve hizmet kartlari */

main > section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-block,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.06);
}

.info-block {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.info-block h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.info-block p + p {
  margin-top: 1rem;
}

.info-block p {
  color: var(--muted);
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 250px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 78, 166, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 78, 166, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.service-card > div {
  position: relative;
  z-index: 1;
}

.service-mark {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(23, 78, 166, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-mark::before,
.service-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
}

.service-mark::before {
  right: 12px;
  bottom: 14px;
  width: 22px;
  height: 3px;
}

.service-mark::after {
  right: 14px;
  bottom: 12px;
  width: 3px;
  height: 22px;
}

.service-card:nth-child(2) .service-mark {
  border-color: rgba(31, 157, 112, 0.28);
  color: var(--green);
}

.service-card:nth-child(3) .service-mark {
  border-color: rgba(244, 183, 64, 0.42);
  color: #b7791f;
}

.service-card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.spotlight {
  padding-top: clamp(1.2rem, 2vw, 2rem);
  background: linear-gradient(135deg, rgba(238, 244, 255, 0.82), rgba(236, 253, 243, 0.82));
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.95rem 1rem 1rem;
}
