.hero.center{
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.pricing{
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.center .hero-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.center .hero-title{
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #111827;
}

.center .hero-lead{
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(17, 24, 39, .68);
}



.accent {
    color:#2563eb;
}


.process {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}


.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 600;
}

.process h2 {
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: left;
}

.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.process-mini-icon svg{
    width: 24px;
    height: 24px;
    color: #2563eb;
}

.process-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* paçkageeeee */
.section--muted{ background: var(--bg); }

.pricing-grid{
  display:grid;
  gap: 1.5rem;
}

@media (min-width: 900px){
  .pricing-grid{ grid-template-columns: repeat(3, 1fr); }
}

.price-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


.price-card--featured{
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  
}

.price-card:hover{
  transform: translateY(-6px);
}

.badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background: var(--primary);
  color:#fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.price-head h3{
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.muted{ color: var(--muted); }

.price{
  margin-top: 14px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.btn-block{ 
  width: 100%; 
  justify-content: center; 
  margin: 18px 0 10px; 
}

.price-body{
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.price-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(17,24,39,.55);
  margin-bottom: 10px;
}

.price-list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.price-list li{
  position:relative;
  padding-left:28px;
  font-size:0.95rem;
  line-height:1.45;
  color:rgba(17,24,39,.75);
}

.price-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.2em;
  width:20px;
  height:20px;
  background-color:var(--primary);

  /* SVG’yi burada TEK KEZ tanımlıyorsun */
  mask: url("/static/icons/check.svg") no-repeat center / contain;
  -webkit-mask: url("/static/icons/check.svg") no-repeat center / contain;
}

.mini-cta{
  margin-top: 45px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}

.link-accent{
  color: var(--primary);
  font-weight: 600;
}
.link-accent:hover{ 
  color: var(--primary-hover);
  text-decoration: underline; 
}


/* FAQ sorular bölümü */
.section-faq{
  padding: 5.5rem 0;
  border-top: 1px solid rgba(17,24,39,.06);
}

.faq-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.faq-head h2{
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-head .muted{
  margin: 0 auto;
  color: rgba(17,24,39,.65);
  line-height: 1.7;
  max-width: 620px;
}

.faq-grid{
  display:grid;
  gap: 2.5rem 4rem;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 900px){
  .faq-grid{ grid-template-columns: repeat(2, 1fr); }
}



.faq-item h3{
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 800;

}

.faq-item p{
  margin: 0;
  color: rgba(75,85,99,1);
  font-weight: 400;
  line-height: 1.7;
  font-size: .95rem;
}

/* CTA after FAQ*/
.section--cta{
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.section--cta .container{
  max-width: 600px;
}

.cta-panel{
  text-align: center;
  padding: 3.2rem 1.8rem;
}

.cta-title{
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--text);
}

.cta-lead{
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
