.sector-hero{
  height:420px;
  background:#0b1c2d;
  position:relative;
}
.sector-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.hero-inner{
  max-width:1200px;
  width:92%;
  margin:auto;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}
.hero-inner h1{font-size:42px;font-weight:900;}
.hero-inner p{font-size:18px;max-width:720px;margin-top:10px;}

.sector-intro,
.success-model,
.positions,
.sector-form{
  max-width:1100px;
  width:92%;
  margin:70px auto;
}

h2{
  font-size:30px;
  font-weight:800;
  margin-bottom:18px;
}

p{font-size:17px;line-height:1.7;margin-bottom:12px;}

.accordion-item{
  border:1px solid #e5e7eb;
  border-radius:10px;
  margin-bottom:12px;
  overflow:hidden;
}
.accordion-header{
  width:100%;
  background:#f6f8fb;
  padding:18px;
  font-size:17px;
  font-weight:700;
  border:none;
  cursor:pointer;
  text-align:left;
}
.accordion-body{
  display:none;
  padding:18px;
  background:#fff;
}
.accordion-item.active .accordion-body{display:block;}

.accordion-body ul{padding-left:18px;}
.accordion-body li{margin-bottom:6px;}

.sector-form form{
  display:grid;
  gap:12px;
}
.sector-form input,
.sector-form textarea{
  padding:14px;
  border:1px solid #d1d5db;
  border-radius:8px;
  font-size:15px;
}
.sector-form button{
  background:#f97316;
  color:#fff;
  border:none;
  padding:15px;
  font-size:16px;
  font-weight:700;
  border-radius:8px;
  cursor:pointer;
}
#thankYou{
  display:none;
  background:#ecfeff;
  padding:20px;
  border-radius:10px;
  font-weight:700;
  margin-top:20px;
}








/* =========================
   SUCCESS MODEL – PREMIUM
========================= */

.success-model{
  max-width:1100px;
  width:92%;
  margin:90px auto;
  padding:60px 70px;
  background:
    linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  border-radius:22px;
  position:relative;
  box-shadow:
    0 25px 50px rgba(0,0,0,.06),
    0 6px 18px rgba(0,0,0,.04);
  overflow:hidden;
}

/* Sol vurgu bar */
.success-model::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:7px;
  background:linear-gradient(
    180deg,
    #0b1c2d,
    #f97316
  );
}

/* Arka watermark efekti */
.success-model::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:420px;
  height:420px;
  background:radial-gradient(
    circle,
    rgba(249,115,22,.12),
    transparent 65%
  );
  pointer-events:none;
}

.success-model h2{
  font-size:34px;
  font-weight:900;
  letter-spacing:.2px;
  color:#0b1c2d;
  margin-bottom:26px;
  position:relative;
}

.success-model h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  margin-top:12px;
  background:#f97316;
  border-radius:4px;
}

.success-model p{
  font-size:17px;
  line-height:1.8;
  color:#2b3440;
  margin-bottom:16px;
  max-width:880px;
}

/* Son paragrafı biraz daha güçlü yap */
.success-model p:last-child{
  font-weight:600;
  color:#0b1c2d;
  margin-top:22px;
}

/* Hover mikro etki */
.success-model:hover{
  transform:translateY(-2px);
  transition:.35s ease;
  box-shadow:
    0 35px 70px rgba(0,0,0,.08),
    0 10px 26px rgba(0,0,0,.05);
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
  .success-model{
    padding:42px 26px;
    margin:70px auto;
  }

  .success-model h2{
    font-size:26px;
  }

  .success-model p{
    font-size:16px;
  }
}









/* =========================
   SUCCESS MODEL – ADVANCED
========================= */

.success-model-advanced{
  max-width:1200px;
  width:92%;
  margin:110px auto;
  padding:80px 90px;
  background:linear-gradient(180deg,#ffffff,#f7f9fc);
  border-radius:26px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.07),
    0 10px 25px rgba(0,0,0,.05);
  position:relative;
}

/* Header */
.sm-header{
  max-width:900px;
  margin-bottom:60px;
}

.sm-header h2{
  font-size:38px;
  font-weight:900;
  color:#0b1c2d;
  margin-bottom:18px;
}

.sm-header p{
  font-size:18px;
  line-height:1.8;
  color:#2b3440;
}

/* İç bloklar */
.sm-content{
  display:grid;
  gap:36px;
}

.sm-block{
  padding:36px 40px;
  background:#fff;
  border-radius:18px;
  border-left:6px solid #0b1c2d;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.sm-block h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:12px;
  color:#0b1c2d;
}

.sm-block p{
  font-size:16.5px;
  line-height:1.75;
  margin-bottom:14px;
  color:#333;
}

.sm-block ul{
  padding-left:18px;
}

.sm-block li{
  margin-bottom:8px;
  font-size:15.5px;
  line-height:1.6;
}

/* Highlight blok */
.sm-block.highlight{
  border-left-color:#f97316;
  background:linear-gradient(180deg,#fff,#fff7f0);
}

.sm-block.highlight h3{
  color:#c2410c;
}

/* Hover mikro etki */
.sm-block:hover{
  transform:translateY(-3px);
  transition:.35s ease;
}

/* Mobile */
@media(max-width:768px){
  .success-model-advanced{
    padding:50px 26px;
  }

  .sm-header h2{
    font-size:28px;
  }

  .sm-block{
    padding:26px;
  }
}



/* =========================
   SUCCESS CTA BUTTON
========================= */

.success-cta{
  margin-top:70px;
  display:flex;
  justify-content:center;
}

.success-cta a{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:22px 46px;
  border-radius:16px;
  text-decoration:none;
  background:linear-gradient(
    135deg,
    #0b1c2d,
    #112f4a
  );
  color:#fff;
  font-size:18px;
  font-weight:800;
  letter-spacing:.3px;
  text-align:center;
  position:relative;
  box-shadow:
    0 25px 55px rgba(11,28,45,.35),
    0 8px 18px rgba(0,0,0,.25);
  transition:.35s ease;
}

/* Alt açıklama */
.success-cta a span{
  font-size:14px;
  font-weight:500;
  opacity:.9;
  letter-spacing:.2px;
}

/* Turuncu vurgu çizgisi */
.success-cta a::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  border:2px solid transparent;
  background:
    linear-gradient(#0b1c2d,#0b1c2d) padding-box,
    linear-gradient(135deg,#f97316,#fb923c) border-box;
  pointer-events:none;
}

/* Hover */
.success-cta a:hover{
  transform:translateY(-4px);
  box-shadow:
    0 35px 70px rgba(11,28,45,.45),
    0 12px 28px rgba(0,0,0,.3);
}

/* Hover metin efekti */
.success-cta a:hover span{
  opacity:1;
}

/* Mobile */
@media(max-width:768px){
  .success-cta a{
    width:100%;
    padding:20px 22px;
    font-size:16px;
  }

  .success-cta a span{
    font-size:13px;
  }
}





/* =========================
   FAQ SECTION
========================= */

.faq-section{
  max-width:1100px;
  width:92%;
  margin:120px auto;
}

.faq-header{
  max-width:800px;
  margin-bottom:50px;
}

.faq-header h2{
  font-size:36px;
  font-weight:900;
  color:#0b1c2d;
  margin-bottom:14px;
}

.faq-header p{
  font-size:18px;
  line-height:1.75;
  color:#2b3440;
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.faq-question{
  width:100%;
  padding:20px 26px;
  background:#f6f8fb;
  border:none;
  font-size:17px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
  color:#0b1c2d;
}

.faq-answer{
  display:none;
  padding:22px 26px;
  background:#fff;
}

.faq-answer p{
  font-size:16px;
  line-height:1.7;
  color:#333;
}

/* Active */
.faq-item.active .faq-answer{
  display:block;
}

/* Hover */
.faq-question:hover{
  background:#eef2f7;
}

/* Mobile */
@media(max-width:768px){
  .faq-header h2{
    font-size:28px;
  }
  .faq-question{
    font-size:16px;
    padding:18px 20px;
  }
}



/* =========================
   TRUST SECTION
========================= */

.trust-section{
  max-width:1200px;
  width:92%;
  margin:120px auto;
  padding:90px 90px;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border-radius:28px;
  box-shadow:
    0 40px 90px rgba(0,0,0,.08),
    0 12px 28px rgba(0,0,0,.06);
}

.trust-header{
  max-width:900px;
  margin-bottom:60px;
}

.trust-header h2{
  font-size:38px;
  font-weight:900;
  color:#0b1c2d;
  margin-bottom:18px;
}

.trust-header p{
  font-size:18px;
  line-height:1.8;
  color:#2b3440;
}

/* Grid */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
  margin-bottom:50px;
}

.trust-box{
  background:#fff;
  padding:36px 40px;
  border-radius:20px;
  border-left:6px solid #0b1c2d;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.trust-box h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:12px;
  color:#0b1c2d;
}

.trust-box p{
  font-size:16.5px;
  line-height:1.75;
  margin-bottom:14px;
  color:#333;
}

.trust-box ul{
  padding-left:18px;
}

.trust-box li{
  margin-bottom:8px;
  font-size:15.5px;
  line-height:1.6;
}

/* Alt vurgu */
.trust-footer{
  max-width:900px;
  padding-top:30px;
  border-top:1px solid #e5e7eb;
}

.trust-footer p{
  font-size:17px;
  line-height:1.75;
  font-weight:600;
  color:#0b1c2d;
}

/* Hover mikro etki */
.trust-box:hover{
  transform:translateY(-3px);
  transition:.35s ease;
}

/* Mobile */
@media(max-width:900px){
  .trust-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .trust-section{
    padding:50px 26px;
  }

  .trust-header h2{
    font-size:28px;
  }
}


/* =========================
   SEO CONTENT
========================= */

.seo-content{
  max-width:1100px;
  width:92%;
  margin:120px auto 80px;
  padding-top:40px;
  border-top:1px solid #e5e7eb;
}

.seo-content h2{
  font-size:28px;
  font-weight:800;
  color:#0b1c2d;
  margin-bottom:18px;
}

.seo-content p{
  font-size:16.5px;
  line-height:1.8;
  color:#374151;
  margin-bottom:14px;
}

/* Mobile */
@media(max-width:768px){
  .seo-content h2{
    font-size:22px;
  }

  .seo-content p{
    font-size:15.5px;
  }
}

