/* ============================================================
   Öz Tekno Yangın — ana stil dosyası
   Koyu "yangın" teması: siyah / kırmızı / krom.
   Hero blokları sunucudan birebir kurtarılan kodla aynıdır
   (docs/recovery/main-css-fragments.css).
   ============================================================ */

/* ========== Reset & değişkenler ========== */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #0b0b0d;
  --bg-2: #101014;
  --panel: #15151a;
  --panel-2: #1b1b22;
  --line: #26262e;
  --text: #e8e6e3;
  --muted: #9a978f;
  --red: #e2231a;
  --red-2: #ff4a3d;
  --amber: #ff8c3c;
  --chrome-hi: #f2f2f4;
  --chrome-lo: #8e8e96;
  --radius: 4px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+011E-011F, U+0130-0131, U+015E-015F;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ========== Başlık tipografisi ========== */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--red-2);
}
.section-kicker {
  display: inline-block;
  color: var(--red-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.lede {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
}

/* ========== Butonlar ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 10px 26px rgba(226, 35, 26, 0.32);
}
.btn--primary:hover { background: linear-gradient(180deg, #ff5d51, var(--red-2)); }
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover { border-color: var(--chrome-lo); }
.btn svg { flex: 0 0 auto; }

/* ========== Site üstbilgi ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.site-logo img { width: min(180px, 60vw); height: auto; max-height: 48px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav ul { display: flex; gap: 1.3rem; }
.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--text); }
.site-nav a.is-active { color: var(--red-2); }
.site-nav__cta {
  padding: 0.55rem 1.15rem;
  gap: 0.45rem;
  color: #fff !important;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  border: 0;
  box-shadow: 0 8px 22px rgba(226, 35, 26, 0.35);
  white-space: nowrap;
}
.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  color: #fff !important;
  background: linear-gradient(180deg, #ff5d51, var(--red-2));
}
.site-nav__cta svg {
  flex: 0 0 auto;
  stroke: currentColor;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(1200px 520px at 50% -10%, rgba(226, 35, 26, 0.14), transparent 60%),
    radial-gradient(900px 420px at 85% 110%, rgba(255, 140, 60, 0.07), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; }

/* --- birebir kurtarılan blok (orijinal satır 269-295) --- */
.hero__logo-wrap {
  position: relative;
  width: min(520px, 88vw);
  margin: 0 auto 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.65));
}
.hero__smoke {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 150%;
  height: 210%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
/* --- /birebir blok --- */

.hero__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.hero__title-line { display: block; }
.hero__title-accent {
  display: block;
  color: var(--red-2);
}
.hero__title em { font-style: normal; color: var(--red-2); }
.hero .lede { margin-inline: auto; margin-bottom: 1.5rem; }
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.hero__focus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.hero__focus li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.hero__focus li svg { color: var(--red-2); width: 16px; height: 16px; }

/* ========== Bölümler ========== */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section--tight { padding: 0 0 clamp(1.5rem, 3vw, 2.5rem); }
.section__head { margin-bottom: 2.2rem; }
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-sub { color: var(--muted); margin: 0.4rem 0 0; max-width: 42rem; }
.section__head--center { text-align: center; }
.section__head--center .lede { margin-inline: auto; }

/* ========== Hizmet satırları (svc-row) ========== */
.svc-list { display: grid; gap: 0.8rem; }
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.svc-row:hover {
  border-color: rgba(226, 35, 26, 0.55);
  transform: translateX(4px);
}
.svc-row__index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--chrome-lo);
  min-width: 2.2rem;
}
.svc-row__body h3 {
  font-size: 1.12rem;
  margin-bottom: 0.15rem;
}
.svc-row__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.svc-row__thumb {
  width: 84px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.svc-row__arrow { color: var(--red-2); }

/* ========== Kart ızgaraları ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(226, 35, 26, 0.5); transform: translateY(-3px); }
.card__icon {
  display: inline-flex;
  padding: 0.7rem;
  border-radius: var(--radius);
  background: rgba(226, 35, 26, 0.12);
  color: var(--red-2);
  margin-bottom: 0.9rem;
}
.card h3 { font-size: 1.08rem; }
.card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ========== Sayısal vitrin ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--chrome-hi);
  line-height: 1;
}
.stats__label { color: var(--muted); font-size: 0.88rem; }

/* ========== Proje/Referans kartları ========== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}
.project-card img { width: 100%; height: 210px; object-fit: cover; }
.project-card__body { padding: 1rem 1.2rem 1.2rem; }
.project-card__body h3 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.project-card__body p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ========== Blog ========== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.post-card--media { padding: 0; overflow: hidden; }
.post-card__thumb {
  display: block;
  height: 170px;
  background: #0a0a0a;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.25rem 1.3rem;
  flex: 1;
}
.post-card:hover { border-color: rgba(226, 35, 26, 0.5); transform: translateY(-3px); }
.post-card__meta {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.post-card__cat { color: var(--red-2); font-weight: 700; }
.post-card h3 { font-size: 1.05rem; line-height: 1.35; }
.post-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.post-card__more {
  color: var(--red-2);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Görsel mozaik */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}
.mosaic img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

/* SEO / Gaziantep içerik bloğu */
.seo-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}
.seo-block__text p { color: var(--muted); }
.seo-block__list {
  margin: 1rem 0 1.4rem;
  padding-left: 1.2rem;
  color: var(--text);
}
.seo-block__list li { margin-bottom: 0.35rem; }
.seo-block__media img {
  width: 100%;
  height: min(420px, 55vw);
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

/* Ürün şeridi */
.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.product-strip__card {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-strip__card:hover { border-color: rgba(226, 35, 26, 0.5); transform: translateY(-3px); }
.product-strip__card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.product-strip__card h3 {
  font-size: 0.98rem;
  margin: 0.85rem 0.9rem 0.25rem;
  line-height: 1.3;
}
.product-strip__card p {
  margin: 0 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Blog carousel */
.carousel__nav { display: flex; gap: 0.4rem; }
.carousel__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.carousel__btn:hover { border-color: var(--red-2); color: var(--red-2); }
.blog-carousel {
  overflow: hidden;
  margin-inline: -0.25rem;
}
.blog-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-carousel__track::-webkit-scrollbar { display: none; }
.blog-slide {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-slide:hover { border-color: rgba(226, 35, 26, 0.5); transform: translateY(-3px); }
.blog-slide__media {
  display: block;
  height: 170px;
  background: #0a0a0a;
  overflow: hidden;
}
.blog-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-slide__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
}
.blog-slide__body h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0;
}
.blog-slide__body p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
}

.article { max-width: 760px; margin-inline: auto; }
.article__meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.6rem; }
.article h2 { font-size: 1.5rem; margin-top: 2rem; }
.article h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.article ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1em; }
.article ol { padding-left: 1.4rem; margin-bottom: 1em; }
.article img,
.article-body img,
.article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.article table,
.article-body table,
.article__body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.3rem;
  border-left: 3px solid var(--red);
  background: var(--panel);
  color: var(--muted);
}
.feature-split .article { max-width: none; margin-inline: 0; }

body.nav-open { overflow: hidden; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.2rem;
}
.pagination a, .pagination span {
  min-width: 2.4rem;
  padding: 0.5rem 0.7rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}
.pagination a:hover { border-color: var(--red); color: var(--text); }
.pagination .is-current { background: var(--red); border-color: var(--red); color: #fff; }

/* ========== Formlar ========== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: 1rem; /* iOS zoom önleme */
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--red-2);
}
.form-note { color: var(--muted); font-size: 0.83rem; }
.alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.alert--ok { background: rgba(46, 160, 67, 0.14); border: 1px solid rgba(46, 160, 67, 0.5); color: #7ee2a0; }
.alert--err { background: rgba(226, 35, 26, 0.12); border: 1px solid rgba(226, 35, 26, 0.5); color: #ff8c85; }

/* ========== İletişim kartları ========== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}
.contact-card svg { color: var(--red-2); flex: 0 0 auto; margin-top: 2px; }
.contact-card h3 { font-size: 0.98rem; margin-bottom: 0.15rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.92rem; margin: 0; }
.contact-card a:hover { color: var(--text); }
.map-embed {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ========== CTA bandı ========== */
.cta-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(700px 260px at 15% 50%, rgba(226, 35, 26, 0.16), transparent 60%),
    var(--bg-2);
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band .section-title { margin-bottom: 0.6rem; }
.cta-band .lede { margin-inline: auto; margin-bottom: 1.4rem; }

/* ========== Site altbilgi ========== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-top: 2.8rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2.2rem 2rem;
  padding-bottom: 2.4rem;
}
.site-footer__brand { min-width: 0; }
.site-footer__logo-link { display: inline-block; }
.site-footer__logo {
  width: min(200px, 65vw);
  height: auto;
  margin-bottom: 0.95rem;
}
.site-footer__about {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 38ch;
  line-height: 1.65;
  margin: 0 0 1.1rem;
}
.site-footer__call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(226, 35, 26, 0.55);
  background: rgba(226, 35, 26, 0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.site-footer__call:hover {
  background: var(--red);
  border-color: var(--red);
}
.site-footer__call svg { color: #fff; }
.site-footer h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.site-footer__links { display: grid; gap: 0.5rem; }
.site-footer__links a {
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 0.15s ease;
}
.site-footer__links a:hover { color: var(--red-2); }
.site-footer__contact { display: grid; gap: 0.65rem; }
.site-footer__contact a,
.site-footer__addr {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 0.15s ease;
}
.site-footer__contact a:hover { color: var(--text); }
.site-footer__contact svg,
.site-footer__addr svg {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--red-2);
}
.site-footer__bottom-bar {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}
.site-footer__bottom {
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  align-items: center;
}
.site-footer__bottom p { margin: 0; }
.site-footer__credit a {
  color: var(--chrome-lo);
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.site-footer__credit a:hover { color: var(--red-2); }

/* ========== İç sayfa hero ========== */
.page-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 440px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__media,
.page-hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: page-hero-ken 18s ease-in-out infinite alternate;
}
.page-hero__fallback {
  background:
    radial-gradient(900px 420px at 20% 30%, rgba(226, 35, 26, 0.28), transparent 55%),
    radial-gradient(700px 380px at 85% 70%, rgba(255, 140, 60, 0.12), transparent 50%),
    linear-gradient(160deg, #121218, #0b0b0d 70%);
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.35) 0%, rgba(11, 11, 13, 0.82) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11, 11, 13, 0.55), transparent 55%);
}
.page-hero__ember {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: radial-gradient(ellipse at 30% 100%, rgba(226, 35, 26, 0.35), transparent 55%);
  animation: page-hero-glow 4.5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes page-hero-ken {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}
@keyframes page-hero-glow {
  from { opacity: 0.55; }
  to { opacity: 1; }
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(2.2rem, 4vw, 3rem);
  max-width: 820px;
}
.page-hero__kicker { margin-bottom: 0.75rem; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.page-hero__title em {
  font-style: normal;
  color: var(--red-2);
}
.page-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 54ch;
  color: #d6d3ce;
}
.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ========== SSS ========== */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.65rem;
}
.faq__item {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item[open] {
  border-color: rgba(226, 35, 26, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--red-2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after { width: 2px; height: 10px; transition: transform 0.2s ease, opacity 0.2s ease; }
.faq__item[open] .faq__icon::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq__a p { margin: 0; }

/* ========== Süreç / özellik şeritleri ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-card {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  padding: 1.25rem 1.1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 35, 26, 0.4);
}
.process-card__n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-2);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.process-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: center;
}
.feature-split__media {
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 8px;
  min-height: 260px;
}
.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s ease;
}
.feature-split:hover .feature-split__media img { transform: scale(1.04); }
.feature-split__list {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
}
.feature-split__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
}
.feature-split__list li svg { color: var(--red-2); margin-top: 0.15rem; }

.svc-detail-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 0 1.6rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}
.about-value {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.2rem;
  border-radius: 8px;
}
.about-value h3 { margin: 0.5rem 0 0.4rem; font-size: 1.05rem; }
.about-value p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.about-value .card__icon { margin-bottom: 0.2rem; }

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .process-grid,
  .about-values { grid-template-columns: 1fr; }
  .page-hero { min-height: 320px; }
}

/* ========== Reveal animasyonları ========== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ========== Hızlı iletişim FAB (sol) + yukarı çık (sağ) ========== */
.qc__scrim {
  position: fixed;
  inset: 0;
  z-index: 78;
  background: rgba(5, 5, 8, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.qc.is-open .qc__scrim {
  opacity: 1;
  pointer-events: auto;
}
.qc__scrim[hidden] { display: none !important; }

.qc__left {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.qc__panel {
  width: min(300px, calc(100vw - 2.4rem));
  background: linear-gradient(165deg, #1c1c24 0%, #121217 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform-origin: bottom left;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s;
}
.qc.is-open .qc__panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}

.qc__panel-head {
  padding: 0.95rem 1.05rem 0.75rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.qc__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.qc__panel-head strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.qc__list { display: flex; flex-direction: column; padding: 0.45rem; gap: 0.25rem; }
.qc__row {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.qc__row:hover { background: rgba(255, 255, 255, 0.05); }
.qc__row-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}
.qc__row-ico--phone { background: linear-gradient(180deg, var(--red-2), var(--red)); }
.qc__row-ico--wa { background: #25d366; }
.qc__row-ico--form { background: linear-gradient(180deg, #3a3a48, #25252e); border: 1px solid var(--line); }
.qc__row-copy { display: flex; flex-direction: column; min-width: 0; }
.qc__row-title { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.qc__row-meta { font-size: 0.78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qc__row-go { color: var(--muted); display: grid; place-items: center; }

.qc__trigger {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(226, 35, 26, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 1;
}
.qc__trigger:hover { transform: scale(1.06); }
.qc.is-open .qc__trigger {
  background: linear-gradient(180deg, #2a2a34, #1a1a20);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
.qc__trigger-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(226, 35, 26, 0.55);
  animation: qc-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.qc.is-open .qc__trigger-ring { animation: none; opacity: 0; }
@keyframes qc-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}
.qc__trigger-ico {
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  grid-area: 1 / 1;
}
.qc__trigger-ico--close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}
.qc.is-open .qc__trigger-ico--open {
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
}
.qc.is-open .qc__trigger-ico--close {
  opacity: 1;
  transform: none;
}

.qc__top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(21, 21, 26, 0.92);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.15s ease, color 0.15s ease;
}
.qc__top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.qc__top[hidden] { display: none !important; }
.qc__top.is-visible[hidden] { display: grid !important; }
.qc__top:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ========== Erişilebilirlik / hareket azaltma ========== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__ember, .hero__particles, .hero__smoke { animation: none !important; display: none; }
  .qc__trigger-ring { animation: none !important; }
  .qc__panel { transition: none; }
  .page-hero__media img,
  .page-hero__ember { animation: none !important; }
}

/* ========== 1024px ========== */
@media (max-width: 1024px) {
  .card-grid, .post-grid, .project-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .product-strip { grid-template-columns: repeat(2, 1fr); }
  .seo-block { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic img { height: 120px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* ========== 860px (mobil) — kurtarılan değerlerle ========== */
@media (max-width: 860px) {
  .wrap { width: min(1180px, calc(100% - 1.5rem)); }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.25rem 1.1rem;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    z-index: 40;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav.is-open { transform: none; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .site-nav__cta {
    margin-top: 0.9rem;
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.1rem;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }

  .hero__logo-wrap { width: min(92vw, 420px); margin-bottom: 0.65rem; }
  .hero__logo { width: 100%; margin-bottom: 0; }
  .hero__title { font-size: clamp(2rem, 10.5vw, 2.75rem); margin-bottom: 0.7rem; }
  .lede { font-size: 0.95rem; margin-bottom: 1rem; max-width: 32ch; }
  .hero .lede { margin-inline: auto; }
  .hero__cta {
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.95rem;
  }
  .btn--block-m { width: 100%; }
  .hero__focus { gap: 0.35rem; }
  .hero__focus li {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
    font-size: 0.8rem;
  }

  .page-hero { min-height: 300px; }
  .page-hero__inner { padding-top: 2.6rem; max-width: 100%; }
  .page-hero__title { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .page-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero__cta .btn { width: 100%; }

  .svc-row { grid-template-columns: auto 1fr auto; gap: 0.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .card-grid, .post-grid, .project-grid { grid-template-columns: 1fr; }
  .product-strip { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }

  .section { padding: 2.4rem 0; }
  .section__head--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .blog-slide { flex: 0 0 min(86vw, 320px); }
  .seo-block__list { padding-left: 0; }

  .qc__left {
    left: max(0.75rem, env(safe-area-inset-left));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .qc__top {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }
  .qc__trigger { width: 54px; height: 54px; }
  .qc__panel { width: min(290px, calc(100vw - 1.6rem)); }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* FAB / to-top alt içerik üstüne binmesin */
  main { padding-bottom: 5.5rem; }
}

/* ========== ~520px (en dar) — kurtarılan değerlerle ========== */
@media (max-width: 520px) {
  .hero__logo-wrap { width: 94vw; }
  .hero__logo { width: 100%; }
  .hero__focus li { flex-basis: 100%; }
  .svc-row { grid-template-columns: 1fr auto; }
  .svc-row__thumb { display: none; }
  .svc-row__index { display: none; }
  .site-logo img { width: min(150px, 55vw); max-height: 40px; }
  .contact-cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic img { height: 160px; }
  .page-hero__lead { font-size: 0.92rem; }
  .cta-band .hero__cta { flex-direction: column; }
  .cta-band .btn { width: 100%; }
  .pagination { flex-wrap: wrap; justify-content: center; gap: 0.35rem; }
}
