/* -------------------------
   Algemene layout
-------------------------- */
.sector-wrapper {
  padding: 96px 0 60px;   /* navbar’dan sonra boşluk */
  background: #ffffff;
}

/* Hero: alleen titel + intro met lichte achtergrond */
.sector-hero-bg {
  background: #f6f8ff;
  padding: 48px 0 32px;
  border-bottom: 1px solid #e3e8f0;
  margin-bottom: 56px;
}

/* Intro blok */
.sector-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.sector-intro h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sector-intro p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
}

/* -------------------------
   Secties & grids
-------------------------- */
.sector-section {
  margin-bottom: 64px;
}
.sector-section h2 {
  font-size: 1.55rem;
  margin-bottom: 16px;
}
.sector-section p {
  line-height: 1.7;
}

.sector-cols-2 {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  gap: 32px;
}

/* Bullet list rechts */
.sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sector-list li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.sector-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.2rem;
  line-height: 1;
  color: #ff4c10;
}

/* -------------------------
   Stappen (1–4)
-------------------------- */
.sector-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.sector-step {
  background: #fff;
  border-radius: 10px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 24px rgba(7, 26, 53, 0.06);
  height: 100%;
}
.sector-step .step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ff4c10;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.sector-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sector-step p {
  font-size: 0.95rem;
}

/* -------------------------
   Features (3 kolom)
-------------------------- */
.sector-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sector-feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 24px rgba(7, 26, 53, 0.05);
  height: 100%;
}
.sector-feature-box h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sector-feature-box p {
  font-size: 0.95rem;
}
.sector-feature-box ul {
  padding-left: 20px;
  margin: 0;
  font-size: 0.95rem;
}

/* -------------------------
   FAQ (details/summary)
-------------------------- */
.sector-faq {
  max-width: 900px;
  margin: 0 auto 64px;
}
.sector-faq h2 {
  text-align: center;
  margin-bottom: 18px;
}
.sector-faq details {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(7, 26, 53, 0.04);
}
.sector-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.sector-faq summary::-webkit-details-marker {
  display: none;
}
.sector-faq summary::after {
  content: "+";
  float: right;
  font-weight: 700;
}
.sector-faq details[open] summary::after {
  content: "–";
}
.sector-faq p {
  margin-top: 8px;
  font-size: 0.95rem;
}

/* -------------------------
   CTA blok onderaan
-------------------------- */
.sector-cta {
  text-align: center;
  padding: 56px 24px 40px;
  background: #051a5a;          /* koyu mavi */
  border-radius: 18px;
  max-width: 920px;
  margin: 0 auto 40px;
  color: #ffffff;
}
.sector-cta h2,
.sector-cta p {
  color: #ffffff;               /* metinleri zorla beyaz yap */
}
.sector-cta h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.sector-cta p {
  max-width: 620px;
  margin: 0 auto 22px;
}

.sector-cta .btn-primary-agenda {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 50px;
  border-radius: 999px;
  border: 0;
  background: #ff4c10;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease, box-shadow .15s ease;
}
.sector-cta .btn-primary-agenda:hover {
  background: #e2430d;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* -------------------------
   Responsive
-------------------------- */
@media (max-width: 991px) {
  .sector-cols-2 {
    grid-template-columns: 1fr;
  }
  .sector-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sector-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .sector-wrapper {
    padding: 80px 0 40px;
  }
  .sector-hero-bg {
    padding: 40px 0 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .sector-steps,
  .sector-features {
    grid-template-columns: 1fr;
  }
}
