/* ==========================================================================
   Atomix Creative — ana stil dosyası
   1. Tokenlar / reset      6. Bölümler (ana sayfa)
   2. Tipografi             7. Hizmet detay / SSS
   3. Butonlar & ikonlar    8. Blog
   4. Header & menü         9. İletişim
   5. Sayfa hero           10. Footer & responsive
   ========================================================================== */

/* ------------------------------------------------ 1. Tokenlar */
:root {
  --orange:      #F28C0F;
  --orange-soft: #FE8836;
  --orange-tint: #FDF1E1;
  --black:       #080808;
  --black-2:     #111111;
  --white:       #FFFFFF;
  --ink:         #0B0B0B;
  --muted:       #5A5A5A;
  --muted-light: #9A9A9A;
  --line:        #E6E6E6;
  --line-dark:   rgba(255,255,255,.14);

  --font-head: 'Gilroy', 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1320px;
  --gutter: 24px;
  --radius: 14px;
  --radius-lg: 28px;

  --sec-pad: 120px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 104px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sec-pad); position: relative; }
.section.is-dark { background: var(--black); color: rgba(255,255,255,.72); }

/* ------------------------------------------------ 2. Tipografi */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
.is-dark h1, .is-dark h2, .is-dark h3, .is-dark h4 { color: var(--white); }

.section-head { margin-bottom: 64px; }
.section-head--center { text-align: center; max-width: 900px; margin-inline: auto; }
.section-head--left   { text-align: left; }

.section-head__label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.section-head__title { font-size: clamp(30px, 3.4vw, 52px); margin: 0; }

.lead { font-size: 17px; }
.text-orange { color: var(--orange); }

/* Reveal animasyonu */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------ 3. Butonlar & ikonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px 14px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--orange); transform: translateY(-3px); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--black); transform: translateY(-3px); }

.section-cta { display: flex; justify-content: center; margin-top: 56px; }

/* + ikonu */
.ico-plus {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
  transition: background .3s var(--ease), transform .4s var(--ease);
}
.ico-plus::before, .ico-plus::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--white);
}
.ico-plus::before { width: 10px; height: 2px; }
.ico-plus::after  { width: 2px; height: 10px; }
.btn--dark:hover .ico-plus { background: var(--black); transform: rotate(90deg); }

/* Ok ikonu */
.ico-arrow {
  position: relative;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
  transition: transform .35s var(--ease);
}
.ico-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px; height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-2px) rotate(45deg);
}
.ico-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px; height: 2px;
  background: #fff;
  transform: translateX(-3px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 18px; }
.link-arrow:hover .ico-arrow { transform: translateX(2px); }

/* Chevron */
.ico-chev {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  display: block;
  transition: transform .3s var(--ease);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ------------------------------------------------ 4. Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding-block: 26px;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header.is-stuck {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(10px);
  padding-block: 16px;
  box-shadow: 0 10px 34px rgba(0,0,0,.28);
}
.site-header.is-hidden { transform: translateY(-100%); }

.brand { display: inline-flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.brand__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.brand__text i { color: var(--orange); font-style: normal; }
.brand__text small {
  display: block;
  font-size: 9px;
  letter-spacing: .34em;
  color: var(--orange);
  margin-left: 4px;
  align-self: flex-end;
}

.burger {
  width: 42px; height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-self: center;
  z-index: 2;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.burger span:nth-child(2) { width: 100%; }
.burger.is-open span:nth-child(1) { transform: translateY(12px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }

.showcase-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.showcase-link .ico-plus { width: 26px; height: 26px; }
.showcase-link:hover .ico-plus { transform: rotate(90deg); }

/* Açık zeminli sayfalarda header */
.site-header--solid:not(.is-stuck) .burger span { background: var(--ink); }
.site-header--solid:not(.is-stuck) .showcase-link,
.site-header--solid:not(.is-stuck) .brand__text { color: var(--ink); }

/* ---- Fullscreen menü ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--black);
  display: flex;
  /* safe center: içerik viewport'tan uzunsa üstten kesmek yerine yukarı hizalar */
  align-items: safe center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2%);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
  overflow-y: auto;
  padding-block: calc(var(--header-h) + 30px) 60px;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-overlay::before {
  content: '';
  position: absolute;
  right: -12%;
  top: 50%;
  width: 720px; height: 720px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(242,140,15,.20), transparent 62%);
  pointer-events: none;
}
.nav-overlay__inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
}

.nav-list__item { position: relative; border-bottom: 1px solid var(--line-dark); }
.nav-list__item > a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-head);
  font-weight: 800;
  /* vh'e de bağlı: alçak ekranlarda 8 menü öğesi taşmadan sığar */
  font-size: clamp(24px, min(3.2vw, 5.2vh), 42px);
  color: rgba(255,255,255,.62);
  line-height: 1.2;
  transition: color .35s var(--ease), padding-left .35s var(--ease);
}
.nav-list__item > a:hover,
.nav-list__item.is-active > a { color: var(--white); padding-left: 22px; }
.nav-list__item.is-active > a { color: var(--orange); }

.nav-overlay.is-open .nav-list__item {
  animation: navIn .5s var(--ease) both;
  animation-delay: calc(.08s * var(--i) + .12s);
}
@keyframes navIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.nav-list__expand {
  position: absolute;
  right: 4px; top: 14px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}
.nav-list__expand.is-open .ico-chev { transform: rotate(-135deg) translate(-3px,-3px); }

.nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.nav-sub li a {
  display: block;
  padding: 9px 0 9px 22px;
  font-size: 15px;
  color: rgba(255,255,255,.55);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.nav-sub li:last-child a { padding-bottom: 22px; }
.nav-sub li a:hover { color: var(--orange); padding-left: 32px; }

.nav-overlay__aside { color: rgba(255,255,255,.6); }
.nav-contact h4 { color: var(--white); font-size: 18px; margin-bottom: 16px; }
.nav-contact p { font-size: 15px; margin-bottom: 14px; max-width: 300px; }
.nav-contact a { display: block; font-size: 15px; transition: color .3s var(--ease); }
.nav-contact a:hover { color: var(--orange); }
.nav-social { display: flex; gap: 12px; margin-top: 30px; }
.nav-social a, .footer-social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.nav-social a svg, .footer-social a svg { width: 17px; height: 17px; }
.nav-social a:hover, .footer-social a:hover {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}

/* ------------------------------------------------ 5. Hero (ana sayfa) */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--black);
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
  text-align: left;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(0,0,0,.15), rgba(0,0,0,.72) 78%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
  display: flex;
  align-items: center;
  gap: 42px;
  justify-content: center;
}
.hero__title {
  font-size: clamp(42px, 6.6vw, 92px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 0;
  text-align: right;
}
.hero__title span { display: block; }
.hero__rule { width: 2px; align-self: stretch; background: rgba(255,255,255,.55); }
.hero__desc {
  max-width: 340px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  margin: 0;
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.6);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 42px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ------------------------------------------------ 5b. Sayfa hero (iç sayfalar) */
.page-hero {
  position: relative;
  background: var(--black);
  padding-top: calc(var(--header-h) + 78px);
  padding-bottom: 44px;
  overflow: hidden;
  color: rgba(255,255,255,.72);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  /* Banner-Arkaplan görseli sağda, sola doğru siyaha karışır (tasarımdaki gibi) */
  background:
    url('../img/page-hero-bg.jpg') right center / cover no-repeat,
    var(--black);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--black) 8%, rgba(8,8,8,.86) 34%, rgba(8,8,8,.42) 72%, rgba(8,8,8,.30));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 62px);
  margin: 0 0 18px;
}
.page-hero--wide .page-hero__title { max-width: 900px; }
.page-hero__desc {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.66;
  color: rgba(255,255,255,.68);
  margin: 0 0 42px;
}
.breadcrumb {
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-head);
}
.breadcrumb a { color: rgba(255,255,255,.78); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: rgba(255,255,255,.35); }

/* ------------------------------------------------ 6. Ana sayfa bölümleri */
/* --- Hoşgeldiniz / intro --- */
.section--intro { padding-bottom: 60px; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro__title { font-size: clamp(30px, 3.4vw, 50px); margin-bottom: 24px; }
.intro__text { max-width: 560px; font-size: 15px; }
.intro__visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.intro__visual img { max-height: 460px; width: auto; object-fit: contain; }

/* --- Kuruculardan mesaj (ekibimiz) --- */
.section--founders { padding-bottom: 40px; }
.founders__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.founders__visual { display: grid; place-items: center; }
.founders__visual img { max-height: 520px; width: auto; object-fit: contain; }
@media (max-width: 900px) {
  .founders__grid { grid-template-columns: 1fr; }
  .founders__visual { order: -1; }
  .founders__visual img { max-height: 380px; }
}

/* Dönen rozet */
.badge-spin {
  position: absolute;
  left: -6%;
  bottom: 8%;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--black);
  display: grid;
  place-items: center;
  z-index: 2;
}
.badge-spin__ring { position: absolute; inset: 0; animation: spin 14s linear infinite; }
.badge-spin__ring text { font-family: var(--font-head); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; fill: #fff; }
.badge-spin .ico-plus { width: 30px; height: 30px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .badge-spin__ring { animation: none; } }

/* --- Video showcase --- */
.section--video { padding-top: 40px; }
.video-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1512 / 780;
  background: #222;
}
.video-box img, .video-box video { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.video-play:hover { transform: scale(1.07); background: var(--orange-soft); }
.video-play__ring { position: absolute; inset: 0; animation: spin 16s linear infinite; }
.video-play__ring text { font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; fill: var(--black); }
.video-play__tri {
  width: 0; height: 0;
  border-left: 20px solid var(--black);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

/* --- Hizmetler (koyu blok) --- */
.section--services { position: relative; overflow: hidden; }
.section--services.is-dark { background: var(--black); }
.services-bg {
  position: absolute;
  inset: 0;
  /* Koyu bölümlerde atom/molekül dokusu (5.webp), üstüne renk vurguları */
  background:
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.07), transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(242,140,15,.10), transparent 45%),
    url('../img/section-bg-dark.webp') center / cover no-repeat;
}
.services__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.62fr);
  gap: 50px;
  align-items: start;
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px 46px; }
.service-card__title { font-size: clamp(20px, 1.6vw, 26px); color: var(--orange); margin-bottom: 16px; }
.service-card__desc { font-size: 14.5px; color: rgba(255,255,255,.72); margin-bottom: 22px; }
.service-card__list { margin-bottom: 24px; }
.service-card__list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  color: rgba(255,255,255,.86);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.service-card__list li:first-child { border-top: 1px solid var(--line-dark); }
.service-card__list li:hover { color: var(--orange); padding-left: 8px; }
.services__visual { display: grid; place-items: center; }
.services__visual.is-empty { display: none; }
/* Görsel yüklenemediğinde sağ sütun yer kaplamasın */
.services__inner:has(.services__visual.is-empty) { grid-template-columns: 1fr; }
.services__visual img { max-height: 720px; width: auto; object-fit: contain; }

/* Hizmetler sayfasında görsel sağda sabit kalsın */
.page-hizmetlerimiz .services__visual { position: sticky; top: 140px; }

/* --- Showcase / portfolyo grid --- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 232px;
  grid-auto-flow: row dense;
  gap: 4px;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  grid-row: span 1;
  display: block;
}
.showcase-card--tall   { grid-row: span 2; }
.showcase-card--normal { grid-row: span 1; }
.showcase-card--big    { grid-row: span 2; grid-column: span 2; }
.showcase-card__media { position: absolute; inset: 0; display: block; }
.showcase-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.showcase-card:hover .showcase-card__media img { transform: scale(1.06); }
.showcase-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 28px;
  display: grid;
  gap: 6px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.showcase-card:hover .showcase-card__body { opacity: 1; transform: none; }
.showcase-card__cat { font-size: 13px; color: var(--orange); }
.showcase-card__title { font-family: var(--font-head); font-weight: 700; font-size: 20px; }

/* Portfolyo sayfası: tam genişlik */
.showcase-full { background: var(--black); }
.showcase-full__head {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 82% 40%, rgba(242,140,15,.26), transparent 46%),
    var(--black);
}
.showcase-full__title { color: var(--white); font-size: clamp(34px, 4.6vw, 62px); margin-bottom: 26px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filter-chip:hover, .filter-chip.is-active {
  background: var(--orange); border-color: var(--orange); color: var(--white);
}
.showcase-grid--full { max-width: none; grid-auto-rows: 260px; gap: 4px; }

/* Açık zeminli hizmet kartları (hizmetlerimiz sayfası) */
.service-card--light .service-card__desc { color: var(--muted); }
.service-card--light .service-card__list li {
  color: var(--ink);
  border-color: var(--line);
}
.service-card--light .service-card__list li:first-child { border-top-color: var(--line); }
.service-card--light .service-card__list li:hover { color: var(--orange); }

/* Ofis fotoğraf kartları */
.photo-card figcaption { position: relative; z-index: 2; padding: 0 20px; }
.photo-card img + figcaption { display: none; }

/* --- Ekip --- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 470px;
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.team-card__top { padding: 30px 26px 0; position: relative; z-index: 2; }
.team-card__name { font-size: 24px; margin-bottom: 6px; line-height: 1.1; }
.team-card__role { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.team-card__links { display: flex; gap: 8px; }
.team-card__links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  overflow: hidden;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.team-card__links a span { display: block; }
.team-card__photo { align-self: end; }
.team-card__photo img {
  width: 100%;
  filter: grayscale(1);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.team-card:hover, .team-card.is-featured {
  background: var(--orange);
  border-color: var(--orange);
}
.team-card:hover { transform: translateY(-6px); }
.team-card:hover .team-card__role,
.team-card.is-featured .team-card__role { color: rgba(255,255,255,.9); }
.team-card:hover .team-card__name,
.team-card.is-featured .team-card__name { color: var(--ink); }
.team-card:hover .team-card__links a,
.team-card.is-featured .team-card__links a { border-color: rgba(255,255,255,.6); color: var(--white); }
.team-card:hover .team-card__links a:hover { background: var(--white); color: var(--orange); }
.team-card:hover .team-card__photo img,
.team-card.is-featured .team-card__photo img { filter: none; }

/* --- Sosyal medya --- */
.section--social {
  position: relative;
  background: var(--black);
  color: rgba(255,255,255,.72);
  padding-block: 130px;
  overflow: visible;
}
.social-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 45%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 8% 70%, rgba(242,140,15,.10), transparent 40%);
}
.social__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.social__title { color: var(--white); font-size: clamp(30px, 3.4vw, 50px); margin-bottom: 20px; }
.social__text p { max-width: 340px; font-size: 14.5px; }
.social__disc { position: relative; display: grid; place-items: center; min-height: 420px; }
/* Tasarımda büyük turuncu daire bölümün alt sınırından taşar */
.social__blob {
  position: absolute;
  width: 520px; height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
  border-radius: 50%;
  background: var(--orange-soft);
  z-index: 0;
}
.social__dot { position: absolute; border-radius: 50%; background: var(--orange-soft); z-index: 0; }
.social__dot--1 { width: 74px; height: 74px; top: 2%;  right: 22%; }
.social__dot--2 { width: 46px; height: 46px; top: 14%; right: 6%; }
.social__dot--3 { width: 28px; height: 28px; top: 30%; right: 18%; }
.social__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 14px 14px;
  background: var(--white);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.social-card:hover { transform: translateY(-4px); background: var(--black); color: var(--white); }
.social-card__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.social-card__icon svg { width: 17px; height: 17px; }
.social-card:hover .social-card__icon { background: var(--orange); }

/* --- Blog kartları --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.post-card__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 6px;
  background: var(--orange-tint);
  margin-bottom: 20px;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.post-card__cat { font-size: 13px; color: var(--muted); }
.post-card__title { font-size: 20px; margin-bottom: 10px; }
.post-card__title a { transition: color .3s var(--ease); }
.post-card__title a:hover { color: var(--orange); }
.post-card__excerpt { font-size: 14.5px; }

/* --- Partnerler --- */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 26px;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.partner-card:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 34px rgba(0,0,0,.07);
  transform: translateY(-4px);
}
.partner-card img { max-height: 62px; width: auto; object-fit: contain; }
.partner-card__name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 17px; text-align: center; }

/* ------------------------------------------------ 7. Hakkımızda ek bölümler */
.vm-block { background: var(--black); position: relative; overflow: hidden; }
.vm-block .services-bg { position: absolute; inset: 0; }
.vm__inner { position: relative; z-index: 2; display: grid; gap: 74px; }
.vm-item { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center; }
.vm-item__icon { display: grid; place-items: center; }
.vm-item__icon img { max-height: 180px; width: auto; }
.vm-item__icon .fallback {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), #b45f00);
  display: grid;
  place-items: center;
  color: #fff;
}
.vm-item__icon .fallback svg { width: 58px; height: 58px; }
.vm-item h3 { color: var(--white); font-size: clamp(24px, 2.4vw, 36px); margin-bottom: 16px; }
.vm-item p { font-size: 14.5px; max-width: 760px; color: rgba(255,255,255,.7); }

.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.photo-card {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: var(--black);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Numaralı hizmet listesi */
.num-list { border-top: 1px solid var(--line); }
.num-row {
  display: grid;
  grid-template-columns: 54px 1fr 74px;
  gap: 18px;
  align-items: center;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.num-row:hover { background: #fafafa; padding-left: 14px; }
.num-row__no { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--muted-light); }
.num-row__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 4px; display: block; }
.num-row__desc { font-size: 13.5px; margin: 0; }
.num-row__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  justify-self: end;
  color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.num-row__icon svg { width: 22px; height: 22px; }
.num-row:hover .num-row__icon { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ------------------------------------------------ 7b. Hizmet detay */
.svc-detail__title {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 54px;
}
.svc-detail__title span { display: block; font-weight: 300; color: var(--ink); }
.svc-detail__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.svc-detail__lead {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.28;
  color: var(--orange);
  margin-bottom: 22px;
}
.svc-detail__lead b { font-weight: 800; }
.svc-detail__body { font-size: 14.5px; max-width: 460px; }

/* Akordiyon */
.accordion { display: grid; }
.acc-item { border-bottom: 1px solid var(--line); }
.accordion--faq { display: grid; gap: 14px; }
.accordion--faq .acc-item {
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-radius .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.accordion--faq .acc-item.is-open { border-radius: var(--radius-lg); border-color: var(--orange); }
.accordion--faq .acc-head { padding: 22px 30px; }

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.acc-head:hover { color: var(--orange); }
.acc-head__icon {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  flex: 0 0 auto;
  transition: background .3s var(--ease);
}
.acc-head__icon::before, .acc-head__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.acc-head__icon::before { width: 12px; height: 2px; }
.acc-head__icon::after  { width: 2px; height: 12px; }
.acc-item.is-open .acc-head__icon { background: var(--orange); }
.acc-item.is-open .acc-head__icon::before,
.acc-item.is-open .acc-head__icon::after { background: #fff; }
.acc-item.is-open .acc-head__icon::after { transform: rotate(90deg); }

.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-body__inner { padding: 0 4px 26px; font-size: 14.5px; }
.accordion--faq .acc-body__inner { padding: 0 30px 26px; }

/* ------------------------------------------------ 8. Blog sayfası */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.post-list { display: grid; gap: 54px; }
.post-list .post-card { padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.post-list .post-card:last-child { border-bottom: 0; padding-bottom: 0; }
.post-list .post-card__title { font-size: 24px; }
.post-list .post-card__media { aspect-ratio: 16 / 9; }
.post-list .btn { margin-top: 20px; }

.sidebar { display: grid; gap: 0; border: 1px solid var(--line); border-radius: 4px; }
.widget { padding: 30px 26px; border-bottom: 1px solid var(--line); }
.widget:last-child { border-bottom: 0; }
.widget__title {
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
}
.widget__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 2px;
  background: var(--ink);
}
.search-form { position: relative; }
.search-form input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
.search-form input:focus { border-color: var(--orange); }
.search-form button {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.search-form button svg { width: 17px; height: 17px; }

.mini-post { display: grid; grid-template-columns: 62px 1fr; gap: 14px; align-items: center; margin-bottom: 20px; }
.mini-post:last-child { margin-bottom: 0; }
.mini-post img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; }
.mini-post__ph { width: 62px; height: 62px; border-radius: 50%; background: var(--orange-tint); }
.mini-post h4 { font-size: 14px; margin-bottom: 8px; line-height: 1.35; }
.mini-post h4 a:hover { color: var(--orange); }
.mini-post .pill { font-size: 11px; padding: 4px 12px; }

.comment-item { font-size: 14px; margin-bottom: 16px; }
.comment-item:last-child { margin-bottom: 0; }
.comment-item strong { color: var(--ink); font-family: var(--font-head); }
.comment-item a { color: var(--ink); font-weight: 600; }
.comment-item a:hover { color: var(--orange); }

.cat-list li { border-bottom: 1px dashed var(--line); }
.cat-list li:last-child { border-bottom: 0; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 14.5px;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.cat-list a:hover { color: var(--orange); padding-left: 6px; }
.cat-list span { color: var(--muted-light); }

.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 60px; }
.pagination a, .pagination span {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.pagination a:hover, .pagination .is-current {
  background: var(--orange); border-color: var(--orange); color: #fff;
}

/* Blog detay */
.post-body { font-size: 16px; }
.post-body h2 { font-size: 30px; margin-top: 42px; }
.post-body h3 { font-size: 22px; margin-top: 32px; }
.post-body blockquote {
  margin: 34px 0;
  padding: 28px 34px;
  border-left: 3px solid var(--orange);
  background: #fafafa;
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--ink);
  font-style: italic;
}
.post-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; aspect-ratio: 16/8; background: var(--orange-tint); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------ 9. İletişim */
.contact-layout { display: grid; grid-template-columns: 1.25fr .8fr; gap: 60px; align-items: start; }
.contact-form__title { font-size: 26px; margin-bottom: 8px; }
.contact-form__sub { font-size: 14.5px; margin-bottom: 30px; }
.form-row { margin-bottom: 16px; }
.form-control {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
textarea.form-control { border-radius: var(--radius-lg); min-height: 130px; resize: vertical; }
.form-control::placeholder { color: #b3b3b3; }
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,140,15,.12); }
.form-control.is-invalid { border-color: #d94545; }
.form-error { display: none; color: #d94545; font-size: 12.5px; padding: 6px 24px 0; }
.form-control.is-invalid ~ .form-error { display: block; }

.form-note { margin-top: 18px; padding: 14px 22px; border-radius: var(--radius); font-size: 14px; }
.form-note--ok   { background: #eaf7ec; color: #256b32; }
.form-note--fail { background: #fdecec; color: #a12626; }

.contact-info {
  background: var(--black);
  color: rgba(255,255,255,.7);
  border-radius: 4px;
  padding: 34px 32px;
  outline: 6px solid var(--black);
  outline-offset: -14px;
}
.contact-info h3 { color: var(--white); font-size: 18px; margin-bottom: 14px; }
.contact-info h4 { color: var(--white); font-size: 16px; margin: 0 0 8px; }
.contact-info a { transition: color .3s var(--ease); }
.contact-info a:hover { color: var(--orange); }
.contact-info__block { padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--line-dark); font-size: 14px; }
.contact-info__social { display: flex; gap: 10px; margin-top: 18px; }
.contact-info__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .3s var(--ease);
}
.contact-info__social a svg { width: 16px; height: 16px; }
.contact-info__social a:hover { background: var(--orange); }

.map-embed { border-radius: var(--radius); overflow: hidden; height: 420px; background: #eee; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------------------------ 10. Footer */
.site-footer { background: var(--black); color: rgba(255,255,255,.62); padding-top: 90px; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 46px;
  padding-bottom: 60px;
}
.brand--footer { margin-bottom: 22px; }
.footer-about { font-size: 13.5px; line-height: 1.85; max-width: 330px; }
.footer-about strong { color: var(--white); font-family: var(--font-head); }
.footer-social { display: flex; gap: 10px; margin-top: 26px; }
.footer-col__title {
  color: var(--white);
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 13.5px;
  display: inline-flex;
  gap: 9px;
  line-height: 1.5;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.footer-links a::before { content: '\203A'; color: var(--orange); }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-contact { font-style: normal; font-size: 13.5px; line-height: 1.75; }
.footer-contact p { margin-bottom: 12px; }
.footer-contact a:hover { color: var(--orange); }

.site-footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: var(--orange); }
.footer-legal a { color: rgba(255,255,255,.62); }
.footer-legal a:hover { color: var(--orange); }

.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 80;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, background .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--black); }
.to-top .ico-chev { transform: rotate(-135deg) translate(-3px,-3px); }

/* ------------------------------------------------ Responsive */
@media (max-width: 1200px) {
  :root { --sec-pad: 90px; }
  .services__inner { grid-template-columns: 1fr; }
  .services__visual { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail__grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 992px) {
  :root { --header-h: 84px; --sec-pad: 74px; }
  .nav-overlay__inner { grid-template-columns: 1fr; gap: 40px; align-content: start; }
  .intro__grid, .social__inner, .contact-layout, .blog-layout { grid-template-columns: 1fr; }
  .intro__visual { order: -1; min-height: 300px; }
  .social__disc { min-height: 360px; }
  .social__blob { width: 400px; height: 400px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .vm-item { grid-template-columns: 1fr; gap: 20px; }
  .hero__grid { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero__title { text-align: left; }
  .hero__rule { width: 100%; height: 2px; align-self: auto; }
  .badge-spin { left: auto; right: 4%; bottom: 0; width: 104px; height: 104px; }
}

@media (max-width: 768px) {
  :root { --gutter: 18px; --sec-pad: 60px; }
  .site-header { padding-block: 16px; }
  .site-header__inner { grid-template-columns: auto auto; }
  .burger { order: 3; justify-self: end; }
  .showcase-link { display: none; }
  .brand img { height: 38px; }
  .services-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-grid, .blog-grid, .photo-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .showcase-card, .showcase-card--tall, .showcase-card--big { grid-row: span 1; grid-column: span 1; }
  .showcase-card__body { opacity: 1; transform: none; }
  .social__cards { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .num-row { grid-template-columns: 36px 1fr; }
  .num-row__icon { display: none; }
  .contact-info { outline-width: 4px; outline-offset: -10px; padding: 26px 24px; }
  .section-head { margin-bottom: 40px; }
  .video-play { width: 88px; height: 88px; }
  .video-play__ring { display: none; }
  .page-hero { padding-top: calc(var(--header-h) + 46px); }
}
