/* ABOUT HERO */
.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  color: var(--primary); /* senin mavi */
}

.hero-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =================      3lü değer kartları      =========================     */

.section-values{
  padding: 3.5rem 0 5rem;
}

.values-grid{
  display: grid;
  gap: 3rem;
  text-align: center;
  align-items: start;
}

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

.value-card{
  max-width: 360px;
  margin: 0 auto;
}

.value-icon{
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 1rem;
  background: #eef2ff;
  color: var(--primary);
  display: grid;
  place-items: center;
}

.value-icon svg{
  width: 32px;
  height: 32px;
  display: block;
}

.value-title{
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.value-text{
  margin: 0 auto;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(17,24,39,.62);
}



/*  ================================          APPROACH      */

.approach{
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding: 5rem 0;
  background: var(--bg);
}

.approach-grid{
  display:grid;
  gap: 2.5rem;
  align-items:start;
}

@media (min-width: 900px){
  .approach-grid{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.approach-left h2{
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 10px 0;
  
}

.approach-right {
    margin-top: 0.5rem;
}

.approach-left .muted{
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 60ch;
}

.approach-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.approach-list li{
  position:relative;
  padding-left: 34px;
  color: rgba(17,24,39,.82);
  line-height: 1.6;
}

.approach-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.15em;
  width:22px;
  height:22px;
  background-color: var(--primary);
  mask: url("/static/icons/check_circle.svg") no-repeat center / contain;
  -webkit-mask: url("/static/icons/check_circle.svg") no-repeat center / contain;
}

.stack-card{
  background: var(--surface);
  border: 1px solid var(--tw-gray-200);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--tw-shadow-elevated);
 
  display: flex;
  flex-direction: column;
  align-items: stretch;

}

.stack-grid{
  display:grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;

  margin-bottom: 1.5rem;
}

.stack-item{
  background: rgba(249,250,251,1);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align:center;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  
}

.stack-title{
  display:block;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 6px;
  
}

.stack-sub{
  display:block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.stack-quote{
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--tw-gray-200);
  text-align:center;
  color: rgba(17,24,39,.55);
  font-style: italic;
}


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


/*================= Servicez çalışma süreci    =========================*/

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

.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;
}



/* ================= FEATURED CASE ================= */

.featured-case {
  padding: 6rem 0;
}

.case-card {
  display: grid;
  position: relative;
  overflow: hidden;
  gap: 3rem;

  border: 1px solid var(--tw-gray-200);
  border-radius: 1.5rem;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.05);
}

.case-content,
.case-visual{
  position: relative;
  z-index: 1;
}

/* bloblar arkada */
.blob{
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.blob--tr{
  top: -140px;
  right: -140px;
  background: rgba(37,99,235,0.18);
}

.blob--bl{
  bottom: -160px;
  left: -160px;
  background: rgba(99,102,241,0.16);
}


@media (min-width: 900px) {
  .case-card {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }
}

.case-content {
  max-width: 520px;
}

.case-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.case-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.case-metrics {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
  padding: 0;
  list-style: none;
}

.case-metrics strong {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
}

.case-metrics span {
  font-size: 0.9rem;
  color: var(--muted);
}

.case-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.case-link:hover {
  text-decoration: underline;
}

/* Visual */

.case-visual {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  border-radius: 1.25rem;
  padding: 2rem;
}

.case-placeholder {
  aspect-ratio: 4 / 2;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-weight: 600;
}


/* ================= PACKAGES ================= */

.packages{
  padding: 5.5rem 0;
  background: #fff;
  position: relative;
}

/* soft geçiş */
.packages::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(15,23,42,0.04), rgba(255,255,255,0));
  pointer-events:none;
}

.packages-head{
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.packages-title{
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.packages-sub{
  margin: 0;
  color: rgba(17,24,39,.62);
  line-height: 1.7;
}

.packages-grid{
  display: grid;
  gap: 1.25rem;
}

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

.package-card{
  display: block;
  text-decoration: none;
  color: inherit;

  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 1.25rem;
  padding: 1.75rem;
  min-height: 170px;

  box-shadow: 0 4px 6px -1px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.package-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.06);
  border-color: rgba(37,99,235,.25);
}

.package-card.is-featured{
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 10px 15px -3px rgba(37,99,235,.10);
}

.package-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}

.package-name{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.package-arrow{
  opacity: .35;
  font-size: 1.2rem;
  transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

.package-card:hover .package-arrow{
  opacity: .9;
  transform: translate(2px, -2px);
  color: var(--primary);
}

.package-arrow.is-active{
  opacity: .9;
  color: var(--primary);
}

.package-desc{
  margin: 0 0 1.1rem;
  color: rgba(17,24,39,.62);
  line-height: 1.65;
  max-width: 34ch;
}

.package-price{
  margin: 0;
  font-weight: 800;
}

.price-accent{
  color: var(--primary);
}

.packages-cta{
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}


/* ================= FINAL CTA ================= */

.final-cta{
  padding: 5.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.final-cta-inner{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title{
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f172a;
}

.final-cta-sub{
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(17,24,39,.62);
  line-height: 1.7;
  font-size: 1.05rem;
}

.final-cta-actions{
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
