/* =====================================================================
   PEK TEMİZLİK — KURUMSAL TASARIM SİSTEMİ
   Marka renkleri logodan alınmıştır:
   #005CAA (koyu mavi) · #009FE3 (açık mavi) · #BBD0DD (gri mavi)
   ===================================================================== */

/* ------------------------------- 1. Değişkenler --------------------- */
:root {
  --navy:        #005CAA;
  --navy-dark:   #00417A;
  --navy-deep:   #002F58;
  --cyan:        #009FE3;
  --cyan-soft:   #E6F5FD;
  --steel:       #BBD0DD;

  --ink:         #10263A;
  --ink-soft:    #2C4257;
  --text:        #3E5266;
  --text-mute:   #6B7F92;

  --line:        #E1EAF1;
  --line-soft:   #EFF4F8;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F9FC;
  --bg-tint:     #EDF4F9;

  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 2px rgba(16, 38, 58, .05);
  --shadow:      0 4px 16px rgba(16, 38, 58, .07);
  --shadow-lg:   0 12px 40px rgba(16, 38, 58, .10);

  --wrap:        1200px;
  --header-h:    78px;

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

/* ------------------------------- 2. Temel --------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--cyan); }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.1em; }

ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* İkon taşıyıcıları (site.js bu kutulara SVG yerleştirir) */
[data-icon] { display: inline-flex; align-items: center; flex: none; }

.section      { padding: 84px 0; }
.section--soft{ background: var(--bg-soft); }
.section--tight { padding: 56px 0; }

/* ------------------------------- 3. Bölüm başlıkları ---------------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-mute); font-size: 1.05rem; margin-bottom: 0; }

.lead { font-size: 1.12rem; color: var(--text-mute); }

/* ------------------------------- 4. Butonlar ------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--cyan { background: var(--cyan); color: #fff; }
.btn--cyan:hover { background: #0090cd; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--cyan-soft); }

.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--light:hover { background: #fff; color: var(--navy); }

.btn--sm { padding: 9px 16px; font-size: .87rem; }
.btn--block { width: 100%; }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1eb855; color: #fff; }

.btn svg { width: 17px; height: 17px; flex: none; }

/* ------------------------------- 5. Üst bar ------------------------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.82);
  font-size: .84rem;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar-list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; opacity: .8; }

/* ------------------------------- 6. Header -------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a {
  position: relative;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav > a:hover { color: var(--navy); background: var(--bg-soft); }
.nav > a.is-active { color: var(--navy); font-weight: 600; }
.nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

/* Mobil menü içindeki teklif butonu — geniş ekranda gizli */
.nav-cta { display: none; }

.quote-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--cyan);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
}
.quote-btn[data-count="0"] .quote-count { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block; position: relative;
  width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* ------------------------------- 7. Hero ---------------------------- */
.hero {
  position: relative;
  background: var(--bg-tint);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 62%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(0,159,227,.14), transparent 72%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--navy); }
.hero-lead { font-size: 1.12rem; color: var(--text); max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--steel);
  list-style: none;
  padding-left: 0;
}
.hero-points li {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  margin: 0;
}
.hero-points svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 13px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.35rem; color: var(--navy); line-height: 1.1; }
.hero-badge small  { font-size: .8rem; color: var(--text-mute); }

/* ------------------------------- 8. Sayfa başlığı ------------------- */
.page-head {
  background: var(--navy-deep);
  color: #fff;
  padding: 60px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 88% 0%, rgba(0,159,227,.38), transparent 62%);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: 12px; }
.page-head p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0; font-size: 1.05rem; }

/* Varsayılan (açık zemin) */
.crumbs {
  display: flex; align-items: center; gap: 9px;
  font-size: .85rem; color: var(--text-mute);
  margin-bottom: 18px; flex-wrap: wrap;
}
.crumbs a { color: var(--navy); }
.crumbs a:hover { color: var(--cyan); }
.crumbs .sep { opacity: .45; }

/* Koyu sayfa başlığı içinde */
.page-head .crumbs { color: rgba(255,255,255,.6); }
.page-head .crumbs a { color: rgba(255,255,255,.8); }
.page-head .crumbs a:hover { color: #fff; }

/* ------------------------------- 9. Kartlar ------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--steel); box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--text-mute); font-size: .95rem; margin-bottom: 0; }

.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--cyan-soft);
  color: var(--navy);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }

/* Kategori kartı */
.cat-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.cat-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-card-media {
  aspect-ratio: 16 / 10;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cat-card-media svg { width: 68px; height: 68px; color: var(--navy); opacity: .85; }
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.cat-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.cat-card-body p  { font-size: .92rem; color: var(--text-mute); flex: 1; margin-bottom: 16px; }
.cat-card-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .9rem; font-weight: 600; color: var(--navy);
}
.cat-card:hover .cat-card-more { color: var(--cyan); }
.cat-card-more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.cat-card:hover .cat-card-more svg { transform: translateX(3px); }

/* Ürün kartı */
.product-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.product-card:hover { border-color: var(--steel); box-shadow: var(--shadow); transform: translateY(-3px); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media svg.ph { width: 44%; height: 44%; color: var(--navy); opacity: .55; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem; font-weight: 600; color: var(--navy);
}
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.product-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
.product-body h3 a { color: var(--ink); }
.product-body h3 a:hover { color: var(--navy); }
.product-body p { font-size: .89rem; color: var(--text-mute); margin-bottom: 16px; flex: 1; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; }

/* ------------------------------- 10. Ürün detay --------------------- */
.product-detail { display: grid; grid-template-columns: 1fr 1.12fr; gap: 56px; align-items: start; }
.detail-media {
  position: sticky; top: calc(var(--header-h) + 24px);
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-media svg.ph { width: 46%; height: 46%; color: var(--navy); opacity: .5; }

.detail-title { margin-bottom: 14px; }
.detail-cat {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--navy);
  font-size: .8rem; font-weight: 600;
  margin-bottom: 16px;
}
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 34px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }

.spec-block { margin-bottom: 32px; }
.spec-block h2, .spec-block h3 { font-size: 1.02rem; margin-bottom: 14px; letter-spacing: 0; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: .95rem;
}
.spec-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--cyan);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: .87rem;
  color: var(--ink-soft);
}

.info-note {
  display: flex; gap: 13px;
  padding: 18px 20px;
  background: var(--cyan-soft);
  border: 1px solid #CCE9F8;
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--ink-soft);
}
.info-note svg { width: 20px; height: 20px; color: var(--navy); flex: none; margin-top: 2px; }
.info-note p { margin: 0; }

/* ------------------------------- 11. Filtre çubuğu ------------------ */
.filter-bar {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 34px;
}
.filter-search {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.filter-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--text-mute);
}
.filter-search input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit; font-size: .93rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .18s ease, background .18s ease;
}
.filter-search input:focus { outline: none; border-color: var(--cyan); background: #fff; }

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: inherit; font-size: .87rem; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s ease;
}
.filter-chip:hover { border-color: var(--cyan); color: var(--navy); }
.filter-chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.result-count { font-size: .9rem; color: var(--text-mute); margin-bottom: 20px; }
.empty-state h2 { font-size: 1.3rem; }
.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-mute);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ------------------------------- 12. Formlar ------------------------ */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: #D64545; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit; font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,159,227,.13);
}
.field .hint { font-size: .8rem; color: var(--text-mute); }
.field input:invalid:not(:placeholder-shown) { border-color: #E9A1A1; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--text-mute); }
.form-consent input { width: 16px; height: 16px; margin-top: 3px; flex: none; }

/* ------------------------------- 13. Teklif listesi ----------------- */
.quote-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.quote-row {
  display: grid;
  grid-template-columns: 64px 1fr 130px 40px;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.quote-row:last-child { border-bottom: none; }
.quote-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.quote-thumb img { width: 100%; height: 100%; object-fit: cover; }
.quote-thumb svg { width: 55%; height: 55%; color: var(--navy); opacity: .5; }
.quote-info strong { display: block; font-size: .97rem; color: var(--ink); font-weight: 600; }
.quote-info span { font-size: .83rem; color: var(--text-mute); }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button {
  width: 34px; height: 36px;
  border: none; background: var(--bg-soft);
  color: var(--navy); font-size: 1.05rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.qty button:hover { background: var(--cyan-soft); }
.qty input {
  width: 56px; height: 36px;
  border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: center; font-family: inherit; font-size: .93rem; color: var(--ink);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.row-remove {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--text-mute); cursor: pointer;
  transition: all .18s ease;
}
.row-remove:hover { border-color: #E9A1A1; color: #D64545; background: #FDF3F3; }
.row-remove svg { width: 15px; height: 15px; }

/* ------------------------------- 14. Sektör kartı ------------------- */
.sector-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sector-card:nth-child(even) { background: linear-gradient(160deg, #0E7CC4 0%, var(--navy) 100%); }
.sector-card::after {
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.sector-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sector-card .sector-ico {
  display: block;
  width: 36px; height: 36px;
  margin-bottom: auto;
  color: rgba(255,255,255,.92);
  position: relative; z-index: 1;
}
.sector-card .sector-ico svg { width: 100%; height: 100%; }
.sector-card h3 { color: #fff; font-size: 1.12rem; margin: 18px 0 7px; position: relative; z-index: 1; }
.sector-card p { color: rgba(255,255,255,.78); font-size: .88rem; margin: 0; position: relative; z-index: 1; }

/* ------------------------------- 15. İstatistik / şerit ------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
}
.stat strong { display: block; font-size: 2.1rem; color: var(--navy); line-height: 1.1; letter-spacing: -.02em; }
.stat span { font-size: .9rem; color: var(--text-mute); }

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; bottom: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,159,227,.18);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p  { color: rgba(255,255,255,.8); margin: 0; max-width: 560px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------- 16. İçerik blokları ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tint);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media svg.ph { width: 42%; height: 42%; color: var(--navy); opacity: .35; }

.value-list { list-style: none; padding: 0; margin: 26px 0 0; }
.value-list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.value-list li:last-child { border-bottom: 1px solid var(--line); }
.value-list svg { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 3px; }
.value-list strong { display: block; color: var(--ink); font-size: .98rem; margin-bottom: 3px; }
.value-list span { font-size: .91rem; color: var(--text-mute); }

.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 26px 34px; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--cyan);
}
.timeline strong { display: block; color: var(--navy); font-size: 1rem; }
.timeline span { font-size: .93rem; color: var(--text-mute); }

/* İletişim kutuları */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.contact-card .card-icon { margin-bottom: 16px; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.contact-card p { font-size: .93rem; margin-bottom: 4px; color: var(--text-mute); }
.contact-card a { font-weight: 600; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--bg-soft);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------- 17. Footer ------------------------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.66);
  padding: 64px 0 0;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer h4 {
  color: #fff; font-size: .95rem; font-weight: 600;
  margin-bottom: 18px; letter-spacing: .01em;
}
.footer-logo { background: #fff; border-radius: var(--radius); padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 40px; width: auto; }
.footer p { color: rgba(255,255,255,.62); margin-bottom: 1em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 11px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--cyan); flex: none; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  transition: all .18s ease;
}
.footer-social a:hover { background: var(--cyan); border-color: var(--cyan); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ------------------------------- 18. WhatsApp / Yukarı -------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 22px rgba(37,211,102,.42);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 29px; height: 29px; }

/* Çerez bildirimi açıkken buton bandın üstüne çıkar. Bandın yüksekliği metin
   uzunluğuna ve ekran genişliğine göre değiştiği için site.js ölçüp
   --cerez-h değişkenine yazar; sabit bir değer mobilde yetmiyor. */
body.cerez-acik .wa-float {
  bottom: calc(var(--cerez-h, 100px) + 14px);
  transition: bottom .3s ease, transform .2s ease;
}

/* ------------------------------- 19. Bildirim ----------------------- */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 130%);
  z-index: 120;
  display: flex; align-items: center; gap: 11px;
  padding: 14px 22px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .93rem;
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
  max-width: calc(100vw - 40px);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { width: 19px; height: 19px; color: #4ADE80; flex: none; }

/* ------------------------------- 19b. Çerez bildirimi ---------------- */
/* Ziyaretçiye bir kez gösterilir; tercih kaydedilene kadar her sayfada çıkar. */
.cerez {
  position: fixed;
  left: 50%; bottom: 22px;
  transform: translate(-50%, calc(100% + 40px));
  z-index: 130;
  width: min(660px, calc(100vw - 36px));
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .34s cubic-bezier(.2,.8,.3,1), opacity .34s ease;
  opacity: 0;
}
.cerez.is-visible { transform: translate(-50%, 0); opacity: 1; }

.cerez-ikon {
  flex: none;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan-soft);
  color: var(--navy);
  border-radius: 50%;
}
.cerez-ikon svg { width: 22px; height: 22px; }

.cerez-govde { flex: 1; min-width: 0; }
.cerez-govde h4 { font-size: 1.02rem; margin: 0 0 5px; }
.cerez-govde p {
  margin: 0 0 14px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text);
}
.cerez-govde p a { text-decoration: underline; }

.cerez-butonlar { display: flex; gap: 10px; flex-wrap: wrap; }
.cerez-butonlar .btn { padding: 10px 20px; font-size: .88rem; }

.cerez-kapat {
  flex: none;
  width: 30px; height: 30px;
  margin: -4px -6px 0 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0;
  color: var(--text-mute);
  border-radius: 7px;
  cursor: pointer;
}
.cerez-kapat:hover { background: var(--bg-soft); color: var(--ink); }
.cerez-kapat svg { width: 16px; height: 16px; }

@media (max-width: 620px) {
  .cerez {
    left: 12px; right: 12px; bottom: 12px;
    width: auto;
    transform: translateY(calc(100% + 30px));
    padding: 18px;
    gap: 13px;
  }
  .cerez.is-visible { transform: none; }
  .cerez-ikon { width: 36px; height: 36px; }
  .cerez-ikon svg { width: 19px; height: 19px; }
  .cerez-govde p { font-size: .84rem; }
  .cerez-butonlar .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cerez { transition: opacity .2s ease; }
}

/* ------------------------------- 19c. Hukuki metin sayfaları --------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal p, .legal li { font-size: .95rem; }
.legal ul { padding-left: 1.3em; }
.legal .legal-tarih {
  font-size: .85rem;
  color: var(--text-mute);
  padding-bottom: 20px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.legal-tablo { width: 100%; overflow-x: auto; margin: 0 0 20px; }
.legal-tablo table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 520px; }
.legal-tablo th, .legal-tablo td {
  text-align: left;
  padding: 11px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.legal-tablo th { background: var(--bg-soft); color: var(--ink); font-weight: 600; }

/* Kart başlıkları — belge başlık düzeni için h2, görünüm olarak h3 */
.kart-baslik { font-size: 1.1rem; margin-bottom: 10px; }
.card .kart-baslik { font-size: 1.2rem; }
.cat-card-body .kart-baslik { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.sector-card .kart-baslik { font-size: 1.12rem; margin: 18px 0 7px; position: relative; z-index: 1; }
.contact-card .kart-baslik { font-size: 1.02rem; margin-bottom: 8px; }

/* Görsel/çizim yuvası — içindeki öge doğrudan kabın çocuğu gibi davranır */
.ph-yuva { display: contents; }

/* ------------------------------- 20. Yardımcılar -------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------- 21. Duyarlı ------------------------ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  /* Başlıktaki bulanık cam efekti, içindeki sabit konumlu menü panelini
     kendi boyutuna hapsediyordu; dar ekranda devre dışı bırakılır. */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }
  body.nav-open .header { z-index: 96; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    height: 100dvh;
    max-height: 100vh;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 88px 20px 28px;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -10px 0 40px rgba(16,38,58,.12);
    transform: translateX(105%);
    transition: transform .26s ease;
    overflow-y: auto;
    z-index: 95;
  }
  body.nav-open .nav { transform: none; }
  body.nav-open { overflow: hidden; }
  .nav > a {
    padding: 14px 14px;
    font-size: 1.02rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav > a:last-of-type { border-bottom: 0; }
  .nav > a.is-active {
    color: var(--navy);
    background: var(--cyan-soft);
    border-radius: 8px;
    border-bottom-color: transparent;
  }
  .nav > a.is-active::after { display: none; }
  .nav-toggle { display: flex; order: 3; z-index: 100; }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

  .nav-scrim {
    position: fixed; inset: 0; z-index: 94;
    background: rgba(16,38,58,.4);
    opacity: 0; pointer-events: none;
    transition: opacity .26s ease;
  }
  body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }

  /* Dar ekranda başlıkta yalnızca teklif listesi rozeti kalır;
     "Teklif Al" butonu menü içindeki belirgin butona taşınır. */
  .header-cta .quote-btn .cta-text { display: none; }
  .header-cta .quote-btn { padding: 11px 13px; }
  .header-cta .btn:not(.quote-btn) { display: none; }

  .nav-cta { display: block; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
  .nav-cta .btn {
    width: 100%;
    color: #fff;
    background: var(--navy);
    border-radius: var(--radius);
    border-bottom: 0;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .nav-cta .btn:hover,
  .nav-cta .btn:focus-visible { color: #fff; background: var(--navy-dark); }

  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; padding-bottom: 52px; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }

  .section { padding: 60px 0; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .product-detail { grid-template-columns: 1fr; gap: 34px; }
  .detail-media { position: static; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 38px 30px; }
  .topbar-list--left { display: none; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

  /* Ürün kartları dar ekranda yatay listeye dönüşür */
  .product-card { flex-direction: row; }
  .product-media {
    width: 118px; flex: none;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--line-soft);
  }
  .product-media svg.ph { width: 62%; height: 62%; }
  .product-tag { top: 8px; left: 8px; padding: 3px 8px; font-size: .66rem; }
  .product-body { padding: 16px; }
  .product-body h3 { font-size: .97rem; }
  .product-body p { font-size: .85rem; margin-bottom: 12px; }
  .product-actions { flex-direction: column; gap: 7px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-head { padding: 40px 0 44px; }
  .hero-actions .btn, .cta-band-actions .btn { flex: 1; }
  .quote-row {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas: "thumb info info" "qty qty remove";
    row-gap: 12px; column-gap: 12px;
  }
  .quote-thumb { grid-area: thumb; width: 56px; height: 56px; }
  .quote-info { grid-area: info; }
  .qty { grid-area: qty; justify-self: start; }
  .row-remove { grid-area: remove; justify-self: end; align-self: center; }
  .stat strong { font-size: 1.7rem; }
  .map-frame { height: 320px; }
}

@media print {
  .header, .topbar, .footer, .wa-float, .nav-toggle, .toast, .cerez { display: none !important; }
}
