/* =====================================================================
   Turuncu Temizlik — ana stil dosyası
   ===================================================================== */

:root {
  --orange: #f07c1f;
  --orange-dark: #d96a12;
  --orange-soft: rgba(240, 124, 31, 0.10);
  --green: #2e9e4f;
  --green-dark: #24803f;
  --green-soft: rgba(46, 158, 79, 0.10);

  --navy: #07131d;
  --navy-2: #0b1a24;
  --ink: #0f2231;
  --body: #43535f;
  --muted: #6b7c88;

  --surface: #ffffff;
  --bg: #f4f7f9;
  --line: #e6ebef;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 34, 49, 0.05);
  --shadow: 0 6px 24px rgba(15, 34, 49, 0.08);
  --shadow-lg: 0 18px 48px rgba(7, 19, 29, 0.16);

  --header-h: 76px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* --- Reset ----------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;   /* yatay taşmaya karşı güvenlik ağı — sticky header bozulmaz */
}

body {
  overflow-x: clip;     /* ek güvenlik ağı (clip: scroll kabı oluşturmaz, sticky bozulmaz) */
  max-width: 100%;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.25; }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 160ms ease;
}
.skip-link:focus { top: 0; }

/* --- Butonlar -------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease,
              color 160ms ease, transform 160ms ease;
}

.btn:active { transform: translateY(1px); }

.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-dark); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.5); }

.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* --- Header ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7, 19, 29, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-solid { background: rgba(7, 19, 29, 0.97); }

.site-header__inner {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand__mark { width: 52px; height: 52px; object-fit: contain; }

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

.brand__sub {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.58);
}

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: 26px; }

.site-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active { color: #fff; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header-phone { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }

.header-phone__icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.header-phone__text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone__text strong { font-size: 14px; color: #fff; }
.header-phone__text small { font-size: 11px; color: rgba(255, 255, 255, 0.5); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  padding: 12px 20px 20px;
}

.mobile-nav a {
  display: block;
  padding: 12px 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__cta {
  margin-top: 12px;
  text-align: center;
  background: var(--green);
  color: #fff !important;
  border-radius: 999px;
  border-bottom: 0 !important;
  font-weight: 600;
}

.mobile-nav__phone {
  text-align: center;
  color: var(--orange) !important;
  font-weight: 700;
  border-bottom: 0 !important;
}

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .header-phone__text { display: none; }
}

/* --- Hero ------------------------------------------------------------ */

.hero {
  position: relative;
  padding: 96px 0 0;
  background: var(--navy);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Metnin okunabilirliği + sağdaki form için kontrollü karartma */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(7, 19, 29, 0.94) 34%,
                    rgba(7, 19, 29, 0.68) 62%, rgba(7, 19, 29, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 19, 29, 0.40) 0%, rgba(7, 19, 29, 0.10) 40%,
                    rgba(7, 19, 29, 0.60) 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr minmax(340px, 400px);
  align-items: center;
  gap: 48px;
  padding-bottom: 78px;
}

.hero__copy { max-width: 560px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 7px 14px 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 124, 31, 0.28);
  animation: heroPulse 2.4s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 124, 31, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(240, 124, 31, 0.05); }
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__accent { color: #56c07a; }

.hero__lead {
  margin: 18px 0 0;
  max-width: 460px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__badges { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 0; }

.hero__badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.hero__badges svg {
  flex: 0 0 auto;
  padding: 5px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(240, 124, 31, 0.16);
  color: var(--orange);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.stats-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 -56px auto;
  width: min(640px, 100%);
  padding: 26px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.stats-wrap { position: relative; z-index: 4; }
.stats-card--float {
  width: 100%;
  margin: -46px auto 0;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 24px;
  border: 1px solid var(--line);
}

.stats-card--flat {
  margin: 0 0 44px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.stats-card__item { text-align: center; }

.stats-card__value {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stats-card__value--orange { color: var(--orange); }
.stats-card__value--green  { color: var(--green); }
.stats-card__value--ink    { color: var(--ink); }

.stats-card__label { margin: 4px 0 0; font-size: 12.5px; color: var(--muted); }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 56px; }
  /* Dikey dizilimde: teklif formu üstte, tanıtım metni altta */
  .hero-quote { order: -1; justify-self: stretch; max-width: 480px; margin-inline: auto; }
  .hero__copy { order: 1; max-width: none; }
}

@media (max-width: 860px) {
  .hero { padding-top: 66px; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(7, 19, 29, 0.90) 0%,
                rgba(7, 19, 29, 0.82) 55%, rgba(7, 19, 29, 0.94) 100%);
  }
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; margin-inline: auto; }
  .stats-card--float { margin-top: 28px; }
}

/* --- Bölüm iskeleti --------------------------------------------------- */

.section { padding: 88px 0; }
.section--services { padding-top: 116px; }
.section--tight { padding: 56px 0; }
.section--muted { background: var(--bg); }

.section__head { text-align: center; margin-bottom: 44px; }

.section__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section__title--left { text-align: left; }

.section__sub { margin: 10px 0 0; font-size: 15px; color: var(--muted); }

/* --- Hizmet kartları -------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-grid--compact { gap: 18px; }

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 124, 31, 0.35);
  box-shadow: var(--shadow);
}

.service-card__media {
  display: block;
  aspect-ratio: 3 / 4;   /* dikey (portre) fotoğraf alanı */
  overflow: hidden;
  background: var(--bg);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__media img { transform: scale(1.05); }

.service-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 26px 22px 22px;
}

.service-card__icon {
  position: absolute;
  top: -22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(240, 124, 31, 0.35);
}

.service-card__title { margin: 12px 0 0; font-size: 17px; font-weight: 600; }
.service-card__title a { text-decoration: none; }
.service-card__title a::after { content: ""; position: absolute; inset: 0; }

.service-card__text {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1 1 auto;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

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

/* --- Projeler --------------------------------------------------------- */

.section--projects { background: var(--bg); }

.projects-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.projects-split__copy { position: relative; padding-left: 18px; }

.projects-split__copy::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--orange), var(--green));
}

.projects-split__text { margin: 14px 0 22px; font-size: 14.5px; color: var(--muted); }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-grid--page { gap: 24px; }

.project-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;   /* dikey (portre) fotoğraf alanı */
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.project-tile:hover img { transform: scale(1.06); }

.project-tile__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 19, 29, 0) 0%, rgba(7, 19, 29, 0.86) 62%);
}

.project-tile__title { margin: 0; font-size: 14.5px; font-weight: 600; }

.project-tile__category {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.project-tile--lg .project-tile__meta { padding: 44px 20px 18px; }
.project-tile--lg .project-tile__title { font-size: 16px; }

@media (max-width: 960px) {
  .projects-split { grid-template-columns: 1fr; gap: 28px; }
  .project-grid, .project-grid--page { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .project-grid, .project-grid--page { grid-template-columns: 1fr; }
}

/* --- Yeşil vaat bandı -------------------------------------------------- */

.promise-band {
  position: relative;
  padding: 56px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(100deg, #2f8f4b 0%, #3aa85c 55%, #59b56f 100%);
}

.promise-band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.6);
}

.promise-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.promise-band__copy h2 {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 27px);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.promise-band__copy p { margin: 12px 0 0; font-size: 14.5px; color: rgba(255, 255, 255, 0.9); }

.promise-band__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.promise-band__list li { display: flex; gap: 10px; align-items: flex-start; }

.promise-band__icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.promise-band__list strong { display: block; font-size: 14px; }
.promise-band__list small { font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }

@media (max-width: 900px) {
  .promise-band__inner { grid-template-columns: 1fr; }
  .promise-band__list { grid-template-columns: 1fr; }
}

/* --- Neden biz (görselli) ---------------------------------------------- */

.section--why { background: var(--surface); }

.why-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.why-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-split__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.why-split__lead { margin: 10px 0 26px; font-size: 15px; color: var(--muted); }

.why-list { display: grid; gap: 18px; }

.why-item { display: flex; gap: 14px; align-items: flex-start; }

.why-item__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
}

.why-item strong { display: block; font-size: 15px; color: var(--ink); }
.why-item small { font-size: 13.5px; color: var(--muted); }

@media (max-width: 900px) {
  .why-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Kurumsal sayfasındaki kart görünümü */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.why-card {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-card h3 { margin: 14px 0 0; font-size: 15px; font-weight: 600; }
.why-card p  { margin: 6px 0 0; font-size: 13.5px; color: var(--muted); }

@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .why-grid { grid-template-columns: 1fr; } }

/* --- İç sayfa başlığı -------------------------------------------------- */

.page-hero {
  padding: 66px 0 54px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.page-hero--tight { padding-bottom: 44px; }

.page-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-hero__title { margin: 0; font-size: clamp(26px, 4vw, 38px); color: #fff; }

.page-hero__lead {
  margin: 14px 0 0;
  max-width: 620px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* Sayfa başlığının altına taşan geniş görsel */
.detail-banner {
  position: relative;
  z-index: 1;
  margin-top: 30px;   /* koyu hero'nun altında temiz boşluk — üstüne binmesin */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-banner img { width: 100%; }

.detail-banner figcaption {
  padding: 12px 18px;
  background: var(--surface);
  font-size: 12.5px;
  color: var(--muted);
}

/* --- Detay sayfası ----------------------------------------------------- */

.detail-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.detail-split__title { margin: 0 0 18px; font-size: 20px; }

.check-list { display: grid; gap: 12px; }

.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.check-list svg { flex: 0 0 auto; margin-top: 2px; color: var(--green); }

.detail-aside {
  padding: 26px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-aside h2 { margin: 0 0 10px; font-size: 17px; }
.detail-aside p  { margin: 0 0 18px; font-size: 14px; color: var(--muted); }

.detail-aside__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 900px) { .detail-split { grid-template-columns: 1fr; } }

/* --- Metin blokları ---------------------------------------------------- */

.prose { max-width: 640px; }
.prose h2 { margin: 0 0 8px; font-size: 20px; }
.prose h2 + p { margin: 0 0 26px; }
.prose p  { margin: 0; font-size: 15px; }

.notice {
  padding: 16px 18px;
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}

.empty-state { max-width: 520px; margin-inline: auto; padding: 56px 24px; text-align: center; }

.empty-state__code { margin: 0; font-size: 64px; font-weight: 700; color: var(--orange); }
.empty-state h1, .empty-state h2 { margin: 0 0 10px; font-size: 24px; }
.empty-state p { margin: 0 0 22px; color: var(--muted); }

/* --- CTA (her sayfanın altında) ------------------------------------ */

.cta {
  position: relative;
  padding: 84px 0 72px;
  background:
    radial-gradient(120% 90% at 15% 0%, #12293a 0%, transparent 55%),
    linear-gradient(180deg, #0b1a24 0%, #07131d 100%);
  color: #fff;
  overflow: hidden;
}

/* Üstte ince marka çizgisi */
.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, #f5a04a 40%, var(--green) 100%);
}

.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.cta__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 158, 79, 0.22);
}

.cta__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta__title span { color: var(--orange); }

.cta__text {
  margin: 18px 0 0;
  max-width: 460px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.68);
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 0;
  padding: 14px 24px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease;
}

.cta__phone:hover {
  border-color: rgba(240, 124, 31, 0.5);
  background: rgba(240, 124, 31, 0.08);
}

.cta__phone-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
}

.cta__phone-text { display: flex; flex-direction: column; line-height: 1.25; }
.cta__phone-text small { font-size: 11.5px; letter-spacing: 0.08em;
                         text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cta__phone-text strong { font-size: 22px; font-weight: 700; color: #fff; }

.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* CTA görseli: taşan değil, çerçeveli ve kontrollü */
.cta__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
}

.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.cta__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.cta__media figcaption { position: absolute; left: 16px; bottom: 16px; }

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(7, 19, 29, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.cta__badge svg { color: var(--green); }

/* Alt bilgi şeridi */
.cta__strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cta__strip li { display: flex; gap: 14px; align-items: flex-start; padding-right: 24px; }

.cta__strip-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--orange);
}

.cta__strip small {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.cta__strip strong {
  display: block;
  margin: 3px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}

.cta__strip a { text-decoration: none; }
.cta__strip a:hover strong { color: var(--orange); }

@media (max-width: 980px) {
  .cta { padding: 64px 0 56px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta__media { order: -1; }
  .cta__strip { grid-template-columns: 1fr; gap: 22px; }
  .cta__strip li { padding-right: 0; }
}

/* --- Footer ------------------------------------------------------------ */

.site-footer {
  position: relative;
  padding: 64px 0 0;
  background: #061019;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.site-footer__rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
  gap: 44px;
  padding-bottom: 48px;
}

.brand--light .brand__name { color: #fff; }
.brand--light .brand__mark { width: 44px; height: 44px; }

.site-footer__about {
  margin: 20px 0 22px;
  max-width: 340px;
  font-size: 13.5px;
  line-height: 1.7;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 200ms ease;
}

.site-footer__phone:hover { border-color: rgba(240, 124, 31, 0.5); }
.site-footer__phone svg { color: var(--orange); }
.site-footer__phone strong { display: block; font-size: 16px; color: #fff; }
.site-footer__phone small { font-size: 11.5px; color: rgba(255, 255, 255, 0.45); }

.site-footer__social { display: flex; gap: 10px; margin-top: 22px; }

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer__social a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__col h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.site-footer__col h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.site-footer__col li { margin-bottom: 11px; }

.site-footer__col a {
  position: relative;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.site-footer__col a:hover { color: var(--orange); padding-left: 5px; }

.site-footer__address {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
}

.site-footer__address-icon { flex: 0 0 auto; color: var(--orange); margin-top: 2px; }
.site-footer__address a { text-decoration: none; }
.site-footer__address a:hover { color: var(--orange); }

.site-footer__cta { margin-top: 6px; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.site-footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__bottom p { margin: 0; font-size: 12.5px; }
.site-footer__credit { margin-left: 4px; opacity: 0.85; }
.site-footer__credit::before { content: "·"; margin: 0 8px; opacity: 0.5; }
.site-footer__credit a { font-weight: 600; color: var(--orange); }
.site-footer__credit a:hover { text-decoration: underline; }
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__bottom a { font-size: 12.5px; text-decoration: none; }
.site-footer__bottom a:hover { color: var(--orange); }

@media (max-width: 980px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* --- Sabit butonlar ---------------------------------------------------- */

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.whatsapp-fab:hover { transform: scale(1.06); }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 78px;
  z-index: 800;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.to-top[hidden] { display: none; }

/* --- Hareket azaltma ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .service-card:hover .service-card__media img,
  .project-tile:hover img { transform: none; }
}


/* --- Ortak küçük parçalar --------------------------------------------- */

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow--light { color: rgba(255, 255, 255, 0.6); }

.lead { font-size: 16px; line-height: 1.7; color: var(--body); }

.section__head--row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
  justify-content: space-between;
  text-align: left;
}

.section__head--light .section__title,
.section__title--light { color: #fff; }

.section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

/* --- Zengin iç sayfa başlığı ------------------------------------------ */

.page-hero--rich { padding-bottom: 72px; }

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 56px;
  align-items: center;
}

.page-hero__narrow { max-width: 760px; }

.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.page-hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero__facts li {
  padding: 22px 18px;
  background: #0b1a24;
  text-align: center;
}

.page-hero__facts strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-hero__facts span { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }

@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 34px; }
}

/* --- Kurumsal: tanıtım bloğu ------------------------------------------ */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-intro__copy .lead { margin: 0 0 30px; max-width: 560px; }

.about-intro__pillars { display: grid; gap: 26px; }

.about-intro__pillars > div {
  position: relative;
  padding-left: 20px;
}

.about-intro__pillars > div::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--orange), var(--green));
}

.about-intro__pillars h3 { margin: 0 0 6px; font-size: 16px; }
.about-intro__pillars p  { margin: 0; font-size: 14.5px; color: var(--muted); }

.about-intro__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.about-intro__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-intro__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about-intro__photo--tall { margin-top: 36px; }

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 34px; }
  .about-intro__photo--tall { margin-top: 0; }
}

/* --- Süreç (koyu bant) ------------------------------------------------- */

.process {
  padding: 84px 0;
  background:
    radial-gradient(90% 80% at 80% 0%, #12293a 0%, transparent 60%),
    var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.process .section__head { margin-bottom: 48px; }

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  counter-reset: none;
}

.process__step {
  position: relative;
  padding: 34px 26px 30px;
  background: #0b1a24;
  transition: background 200ms ease;
}

.process__step:hover { background: #102532; }

.process__no {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.process__step h3 { margin: 0 0 8px; font-size: 16px; color: #fff; }
.process__step p  { margin: 0; font-size: 13.5px; line-height: 1.65; }

@media (max-width: 1000px) { .process__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .process__list { grid-template-columns: 1fr; } }

/* --- Ekipman ve filo --------------------------------------------------- */

.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.equipment-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.equipment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.equipment-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.equipment-card__body { padding: 18px 20px 20px; }
.equipment-card__body h3 { margin: 0; font-size: 15px; font-weight: 600; }
.equipment-card__body p  { margin: 6px 0 0; font-size: 13.5px; color: var(--muted); }

.fleet { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.fleet__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.fleet__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.fleet__copy p { margin: 14px 0 22px; font-size: 15px; color: var(--muted); }

@media (max-width: 900px) {
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) { .equipment-grid { grid-template-columns: 1fr; } }

/* --- İletişim kanalları ------------------------------------------------ */

.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.channel-card {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 124, 31, 0.4);
  box-shadow: var(--shadow);
}

.channel-card--accent { border-color: rgba(46, 158, 79, 0.35); background: #f7fcf8; }
.channel-card--accent .channel-card__icon { background: var(--green-soft); color: var(--green); }

.channel-card__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--orange-soft);
  color: var(--orange);
}

.channel-card h2 {
  margin: 18px 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.channel-card__value {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.channel-card__value:hover { color: var(--orange); }
.channel-card p { margin: 8px 0 0; font-size: 13.5px; color: var(--muted); }

@media (max-width: 860px) { .channel-grid { grid-template-columns: 1fr; } }

/* --- Teklif formu ------------------------------------------------------ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.quote-form {
  padding: 36px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-form__head { margin-bottom: 26px; }
.quote-form__title { margin: 0; font-size: 24px; }
.quote-form__lead { margin: 8px 0 0; font-size: 14.5px; color: var(--muted); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field label span { color: var(--orange); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input::placeholder,
.field textarea::placeholder { color: #9aa8b2; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.field textarea { resize: vertical; }
.field--hp { position: absolute; left: -9999px; }

.quote-form__note { margin: 16px 0 0; font-size: 12.5px; color: var(--muted); text-align: center; }

@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

/* --- İletişim yan panel ------------------------------------------------ */

.contact-aside {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-aside__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.contact-aside__body { padding: 26px 26px 28px; }
.contact-aside__body h2 { margin: 0 0 18px; font-size: 18px; }

.contact-aside__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-aside__icon {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
}

.contact-aside__row strong { display: block; font-size: 14px; color: var(--ink); }
.contact-aside__row small { font-size: 12.5px; color: var(--muted); }

.btn--outline-dark {
  margin-top: 20px;
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--outline-dark:hover { border-color: var(--orange); color: var(--orange); }

.contact-aside__note {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-aside__note code {
  padding: 1px 5px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11.5px;
}

.flash-wrap { width: min(1180px, 100% - 40px); margin: 20px auto 0; }
.flash { margin: 0 0 10px; padding: 13px 18px; border-radius: var(--radius-sm); font-size: 14px; }
.flash--success { background: var(--green-soft); color: var(--green-dark); }
.flash--error   { background: rgba(214, 60, 60, 0.10); color: #b23434; }

@media (max-width: 960px) { .contact-split { grid-template-columns: 1fr; } }

/* --- Blog -------------------------------------------------------------- */

.post-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.post-feature__media { display: block; overflow: hidden; background: var(--bg); }
.post-feature__media img { width: 100%; height: 100%; min-height: 320px;
                           object-fit: cover; transition: transform 600ms ease; }
.post-feature:hover .post-feature__media img { transform: scale(1.04); }

.post-feature__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 42px;
}

.post-feature__title { margin: 0; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.3; }
.post-feature__title a { text-decoration: none; }
.post-feature__title a::after { content: ""; position: absolute; inset: 0; }

.post-feature__summary { margin: 14px 0 0; font-size: 15px; color: var(--muted); }

.post-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}

@media (max-width: 900px) {
  .post-feature { grid-template-columns: 1fr; }
  .post-feature__body { padding: 30px 26px 32px; }
  .post-feature__media img { min-height: 220px; }
}

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-grid--compact { grid-template-columns: repeat(2, 1fr); }

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 124, 31, 0.35);
  box-shadow: var(--shadow);
}

.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }

.post-card__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 22px 24px 24px; }

.post-card__meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--muted);
}

.post-meta { margin: 22px 0 0; color: rgba(255, 255, 255, 0.55); }

.post-card__tag {
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.post-card__title { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.35; }
.post-card__title a { text-decoration: none; }
.post-card__title a::after { content: ""; position: absolute; inset: 0; }

.post-card__summary { margin: 9px 0 0; font-size: 13.5px; color: var(--muted); flex: 1 1 auto; }

@media (max-width: 900px) { .post-grid, .post-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid, .post-grid--compact { grid-template-columns: 1fr; } }

/* --- Yazı gövdesi ------------------------------------------------------- */

.detail-banner--narrow { max-width: 860px; margin-inline: auto; }

.article-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.article { max-width: 700px; font-size: 16px; line-height: 1.78; color: #3d4c58; }
.article h2 { margin: 38px 0 12px; font-size: 21px; }
.article h2:first-child { margin-top: 0; }
.article p { margin: 0 0 18px; }
.article .notice { margin: 26px 0; }

.article__list { display: grid; gap: 9px; margin: 0 0 20px; }

.article__list li { position: relative; padding-left: 24px; font-size: 15.5px; }

.article__list li::before {
  content: "";
  position: absolute;
  left: 3px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.article__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.article-aside { position: sticky; top: 96px; display: grid; gap: 20px; }

.article-aside__card {
  padding: 28px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-aside__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--orange-soft);
  color: var(--orange);
}

.article-aside__card h2 { margin: 16px 0 8px; font-size: 18px; }
.article-aside__card p  { margin: 0 0 20px; font-size: 14px; color: var(--muted); }

.article-aside__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.article-aside__links {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-aside__links h3 { margin: 0 0 14px; font-size: 15px; }
.article-aside__links li { margin-bottom: 10px; }
.article-aside__links a { font-size: 14px; color: var(--body); text-decoration: none; }
.article-aside__links a:hover { color: var(--orange); }

.empty-state__phone { margin-top: 18px; font-size: 15px; font-weight: 700; }
.empty-state__phone a { color: var(--ink); text-decoration: none; }

@media (max-width: 960px) {
  .article-split { grid-template-columns: 1fr; gap: 36px; }
  .article-aside { position: static; }
}


/* =====================================================================
   Teklif formu — çok adımlı wizard (.qf)
   ===================================================================== */

.quote-panel {
  padding: 34px 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-panel__head { margin-bottom: 22px; }
.quote-panel__title { margin: 6px 0 0; font-size: clamp(20px, 2.4vw, 25px); letter-spacing: -0.01em; }
.quote-panel__lead { margin: 8px 0 0; font-size: 14.5px; color: var(--muted); }

/* Adım göstergesi */
.qf__progress { margin-bottom: 26px; }

.qf__progress-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.qf__progress-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffa451);
  transition: width 380ms cubic-bezier(.4, 0, .2, 1);
}

.qf__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.qf__steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 200ms ease;
}
.qf__steps li span {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 12px;
  transition: all 200ms ease;
}
.qf__steps li.is-active { color: var(--ink); }
.qf__steps li.is-active span { background: var(--orange); border-color: var(--orange); color: #fff; }
.qf__steps li.is-done span { background: var(--green); border-color: var(--green); color: #fff; }

/* Adımlar — JS aktifleşince yalnız aktif adım görünür */
.qf__step { border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.qf--enhanced .qf__step { display: none; }
.qf--enhanced .qf__step.is-active { display: block; animation: qfStepIn 340ms ease both; }
.qf__step + .qf__step { margin-top: 34px; }
.qf--enhanced .qf__step + .qf__step { margin-top: 0; }

@keyframes qfStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qf__legend { padding: 0; font-size: 17px; font-weight: 700; color: var(--ink); }
.qf__hint { margin: 4px 0 18px; font-size: 13.5px; color: var(--muted); }

/* Hizmet kartları (radio) */
.qf__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.qf-card {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--surface);
  padding: 16px 16px 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.qf-card:hover { border-color: #d7dee3; box-shadow: var(--shadow-sm); }
.qf-card input { position: absolute; opacity: 0; pointer-events: none; }
.qf-card__body { display: block; }
.qf-card__icon {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--orange-soft);
  color: var(--orange);
  margin-bottom: 10px;
  transition: background 160ms ease, color 160ms ease;
}
.qf-card__title { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.qf-card__note { display: block; margin-top: 3px; font-size: 12px; color: var(--muted); }
.qf-card__tick {
  position: absolute;
  top: 12px; right: 12px;
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  opacity: 0;
  transform: scale(.6);
  transition: all 180ms ease;
}
.qf-card:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.qf-card:has(input:checked) .qf-card__icon { background: var(--orange); color: #fff; }
.qf-card:has(input:checked) .qf-card__tick { opacity: 1; transform: scale(1); }
.qf-card input:focus-visible ~ .qf-card__tick { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Alanlar */
.qf-field { margin-bottom: 16px; }
.qf-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.qf-field > label,
.qf-field__label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.qf-field label span { color: var(--orange); }
.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.qf-field textarea { resize: vertical; }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: #9aa8b2; }
.qf-field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Chip seçiciler (evcil hayvan) */
.qf-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.qf-chip { position: relative; cursor: pointer; }
.qf-chip input { position: absolute; opacity: 0; }
.qf-chip span {
  display: inline-flex;
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: all 150ms ease;
}
.qf-chip:hover span { border-color: #d7dee3; }
.qf-chip input:checked + span {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--orange-dark);
}
.qf-chip input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

/* KVKK onayı */
.qf-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 6px 0 4px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}
.qf-consent input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--orange); flex: 0 0 auto; }
.qf-consent a { color: var(--orange-dark); font-weight: 600; }

/* Adım navigasyonu */
.qf__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.qf__nav .btn--lg { margin-left: auto; }

.btn--ghost-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--body);
}
.btn--ghost-dark:hover { border-color: var(--ink); color: var(--ink); }

.qf-field.qf-error input,
.qf-field.qf-error select { border-color: #d63c3c; box-shadow: 0 0 0 3px rgba(214,60,60,.12); }

@media (max-width: 620px) {
  .quote-panel { padding: 24px 20px 22px; }
  .qf__cards { grid-template-columns: 1fr; }
  .qf-field-row { grid-template-columns: 1fr; }
  .qf__steps li { font-size: 0; gap: 0; justify-content: center; }
  .qf__steps li span { font-size: 12px; }
  .qf__nav .btn { padding-inline: 16px; }
}

.contact-aside__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.contact-aside__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
}
.contact-aside__trust svg { color: var(--green); }


/* =====================================================================
   Hero hızlı teklif kartı + hizmet bölgeleri şeridi
   ===================================================================== */

.hero-quote {
  position: relative;
  width: 100%;
  justify-self: end;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.hero-quote::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #ffb066, var(--green));
}
.hero-quote__form { padding: 24px 24px 22px; }

.hero-quote__head { margin-bottom: 16px; }
.hero-quote__eyebrow {
  display: inline-block;
  margin: 0 0 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 999px;
}
.hero-quote__title { margin: 0; font-size: 22px; letter-spacing: -0.01em; }
.hero-quote__lead { margin: 5px 0 0; font-size: 13px; color: var(--muted); }

.hero-quote__field { margin-bottom: 12px; }
.hero-quote__field label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.hero-quote__field input,
.hero-quote__field select {
  width: 100%;
  padding: 11px 13px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.hero-quote__field input:focus,
.hero-quote__field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.hero-quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }

.hero-quote .btn--block { margin-top: 6px; }
.hero-quote__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--muted);
}
.hero-quote__note svg { color: var(--green); }

@media (max-width: 420px) {
  .hero-quote__row { grid-template-columns: 1fr; }
}

/* Hizmet bölgeleri kayan şerit */
.area-strip {
  overflow: hidden;
  background: var(--ink);
  border-top: 3px solid var(--orange);
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.area-strip__track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: areaScroll 42s linear infinite;
}
.area-strip:hover .area-strip__track { animation-play-state: paused; }
.area-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.area-strip__item svg { color: var(--orange); }
@keyframes areaScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =====================================================================
   Scroll reveal — hafif giriş animasyonu
   ===================================================================== */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms cubic-bezier(.2, .7, .2, 1),
              transform 620ms cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}


/* =====================================================================
   SSS (FAQ) bölümü
   ===================================================================== */

.faq { background: var(--bg); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  align-items: start;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: #dbe2e7; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px; height: 11px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body { padding: 0 20px 20px; margin: 0; font-size: 14px; color: var(--body); }

@media (max-width: 760px) {
  .faq__grid { grid-template-columns: 1fr; }
}


/* Sticky header altında bağlantı hedefleri gizlenmesin */
:target { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Çok küçük ekranlarda yatay taşmaya karşı güvenlik ağı */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(30px, 9vw, 40px); }
  .section { padding: 60px 0; }
  .section--services { padding-top: 72px; }
}


/* =====================================================================
   Hukuki metin sayfaları (KVKK, Gizlilik, Kullanım Şartları)
   ===================================================================== */

.legal-doc { max-width: 760px; }
.legal-doc__intro {
  margin: 0 0 30px;
  padding: 18px 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.legal-doc__h2 {
  margin: 34px 0 12px;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-doc > p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
}
.legal-doc__list {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.legal-doc__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--body);
}
.legal-doc__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}


/* Hero hızlı form — ek alanlar (evcil hayvan chip'leri, hata, başarı) */
.hero-quote__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.hero-quote__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.hq-chip { position: relative; cursor: pointer; }
.hq-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.hq-chip span {
  display: inline-flex;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: all 150ms ease;
}
.hq-chip:hover span { border-color: #d7dee3; }
.hq-chip input:checked + span {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--orange-dark);
}
.hq-chip input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

.hero-quote__error {
  margin: 0 0 12px;
  padding: 10px 13px;
  font-size: 12.5px;
  font-weight: 500;
  color: #b23434;
  background: rgba(214, 60, 60, 0.09);
  border: 1px solid rgba(214, 60, 60, 0.25);
  border-radius: var(--radius-sm);
}

.hero-quote__done {
  padding: 34px 26px 30px;
  text-align: center;
  animation: qfStepIn 380ms ease both;
}
.hero-quote__done:focus { outline: none; }
.hero-quote__done-icon {
  display: inline-grid;
  place-items: center;
  width: 62px; height: 62px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 22px rgba(46, 158, 79, 0.34);
}
.hero-quote__done h3 { margin: 0 0 8px; font-size: 21px; color: var(--ink); }
.hero-quote__done p { margin: 0 0 20px; font-size: 14px; color: var(--muted); }
.hero-quote__again {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
}
.hero-quote__again:hover { color: var(--orange); }
