/* ── Ana Sayfa — Sayfa Özel Stiller ── */

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  padding: 52px max(24px, calc((100% - 1280px) / 2 + 56px)) 48px;
  align-items: center;
  min-height: calc(100vh - 120px);
}
.hero-feats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.feat-item { font-size: 12.5px; color: var(--gray-600); }
.feat-sep  { color: var(--gray-200); }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.035em;
  margin-bottom: 36px;
}
.hero-headline em { font-style: normal; color: var(--blue); }

.hero-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.04em;
}
.stat-label { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* Hero görsel */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-img-wrap img { width: 100%; height: auto; max-height: 520px; display: block; object-fit: contain;}
.img-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255, 255, 255, .95);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
  min-width: 72px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.badge-txt { font-size: 9px; color: #888; text-transform: uppercase; letter-spacing: .1em; line-height: 1.6; }
.preview-sub   { font-size: 10.5px; color: rgba(255, 255, 255, .5); line-height: 1.4; }
.preview-title { font-size: 11px; color: rgba(255, 255, 255, .9); font-weight: 500; }

/* Stack Bar */
.stack-bar {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px max(24px, calc((100% - 1280px) / 2 + 56px));
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow-x: auto;
}
.stack-label {
  font-size: 10.5px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.stack-divider { width: 1px; height: 20px; background: var(--gray-100); flex-shrink: 0; }
.stack-logos   { display: flex; align-items: center; gap: 28px; }
.stack-logo {
  font-size: 12px;
  font-weight: 500;
  color: #c0c0c0;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
}
.stack-logo:hover { color: var(--gray-600); }

/* Hizmetler Grid */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 32px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 32px 36px;
  transition: background .2s;
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.service-card:hover { background: var(--gray-50); }
.service-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.service-num  { font-family: var(--font-mono); font-size: 11px; color: var(--gray-400); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue);
  transition: background .2s, color .2s, transform .2s;
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.service-body { min-width: 0; }
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.service-desc  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; font-weight: 300; }
.service-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag   { font-family: var(--font-mono); font-size: 10px; color: var(--gray-600); background: var(--gray-100); border-radius: 4px; padding: 3px 8px; }
.service-arrow { position: absolute; top: 32px; right: 36px; font-size: 14px; color: var(--gray-200); transition: color .2s, transform .2s; }
.service-card:hover .service-arrow { color: var(--blue); transform: translate(3px, -3px); }

/* Neden Biz */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--gray-200); }
.why-num   { font-family: var(--font-mono); font-size: 11px; color: var(--blue); margin-bottom: 16px; }
.why-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; margin-bottom: 10px; }
.why-desc  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; font-weight: 300; }


/* Fiyatlandırma teaser etiketleri */
.pricing-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 40px;
}
.pricing-teaser-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--gray-600);
  font-weight: 300;
}
.pricing-teaser-item i { color: var(--blue); font-size: 12.5px; }

/* Section dipnot linki (Süreç, SSS vb.) */
.section-more {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.section-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  transition: gap .2s;
}
.section-more a:hover { gap: 13px; }
.section-more a i { font-size: 12px; }

/* FAQ (Anasayfa) */
.home-faq { margin-top: 52px; max-width: 880px; }
.home-faq .faq-item { border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.home-faq .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.45;
  list-style: none;
}
.home-faq .faq-q::-webkit-details-marker { display: none; }
.home-faq .faq-q i { font-size: 13px; color: var(--blue); transition: transform .2s; flex-shrink: 0; }
.home-faq .faq-item[open] .faq-q i { transform: rotate(45deg); }
.home-faq .faq-a { margin-top: 14px; font-size: 14px; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px; min-height: auto; gap: 32px; }
  .hero-visual { order: -1; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .service-card { padding: 28px 24px; gap: 18px; grid-template-columns: 48px 1fr; }
  .service-arrow { top: 28px; right: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .stack-bar { padding: 16px 24px; }
}
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
}
