/* ─── Shared helpers ─────────────────────────────────────────── */

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #747780;
}
.page-breadcrumb a { color: #747780; transition: color 160ms ease; }
.page-breadcrumb a:hover { color: #1eb8d4; }
.page-breadcrumb .material-symbols-outlined { font-size: 1rem; color: #c4c6d0; }
.page-breadcrumb span:last-child { color: #001736; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1eb8d4;
}
.section-label .material-symbols-outlined { font-size: 1rem; }

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #001736;
  line-height: 1.1;
}

.section-desc {
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #43474f;
}

/* ─── Hero ───────────────────────────────────────────────────── */

.neden-hero {
  position: relative;
  background: #f7f9fb;
  overflow: hidden;
  padding-bottom: 0;
}

.neden-hero-inner {
  display: grid;
  gap: 3rem;
  padding-bottom: 0;
  align-items: center;
}

.neden-hero-text {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .neden-hero-inner {
    grid-template-columns: minmax(0, 1fr) 480px;
    min-height: 560px;
    padding-bottom: 5rem;
    gap: 4rem;
  }
  .neden-hero-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.neden-hero-image {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
  .neden-hero-image {
    aspect-ratio: auto;
    align-self: stretch;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.neden-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Stat chips ─────────────────────────────────────────────── */

.page-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 198, 208, 0.5);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #43474f;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(25, 28, 30, 0.05);
}

.page-hero-stat .material-symbols-outlined { font-size: 1rem; color: #1eb8d4; }
.page-hero-stat strong { font-weight: 800; color: #001736; font-family: "Manrope", sans-serif; }

/* ─── Feature cards (pillars) ────────────────────────────────── */

.pillars-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.pillar-card {
  position: relative;
  border-radius: 1.45rem;
  border: 1px solid rgba(196, 198, 208, 0.22);
  background: #ffffff;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 10px 28px rgba(25, 28, 30, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 184, 212, 0.2);
  box-shadow: 0 20px 42px rgba(25, 28, 30, 0.08);
}

.pillar-card--featured {
  background: linear-gradient(135deg, rgba(30, 184, 212, 0.1) 0%, #ffffff 60%);
}

.pillar-index {
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1eb8d4;
  margin-bottom: 0.9rem;
}

.pillar-icon {
  display: inline-flex;
  height: 2.8rem;
  width: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(30, 184, 212, 0.1);
  color: #1eb8d4;
  margin-bottom: 1rem;
}

.pillar-icon .material-symbols-outlined { font-size: 1.3rem; }

.pillar-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #001736;
  margin-bottom: 0.6rem;
}

.pillar-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #43474f;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.pillar-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(30, 184, 212, 0.09);
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f92a9;
}

/* ─── Ecosystem strip ────────────────────────────────────────── */

.ecosystem-strip {
  display: grid;
  gap: 1px;
  background: rgba(196, 198, 208, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ecosystem-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.ecosystem-strip-item {
  background: #ffffff;
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ecosystem-strip-icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: rgba(0, 23, 54, 0.06);
  color: #001736;
}

.ecosystem-strip-icon .material-symbols-outlined { font-size: 1.25rem; }

.ecosystem-strip-item h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #001736;
}

.ecosystem-strip-item p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: #43474f;
}

/* ─── Trust badges row ───────────────────────────────────────── */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 198, 208, 0.35);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  color: #001736;
}

.trust-badge .material-symbols-outlined {
  font-size: 1.1rem;
  color: #1eb8d4;
}
