/* ==========================================================================
   Semtor Ambalaj — tasarım sistemi
   Bu dosya ileride WordPress temasının style.css'i olacak.
   ========================================================================== */

/* --- Tokenlar ------------------------------------------------------------ */
:root {
  --bg-dark: #0b0b0b;
  --bg-dark-2: #101010;
  --surface-dark: #181818;
  --surface-dark-2: #1f1f1f;

  --bg-light: #faf8f5;
  --surface: #ffffff;
  --surface-cream: #f4f0ea;

  --gold: #c9a15c;
  --gold-light: #e4c48c;
  --gold-dim: rgba(201, 161, 92, .35);
  --gold-grad: linear-gradient(135deg, #e9cd97 0%, #c49a57 100%);

  --ink: #1a1a1a;
  --ink-2: #3d3d3d;
  --muted: #71716e;
  --on-dark: #ffffff;
  --muted-dark: rgba(255, 255, 255, .62);

  --line-dark: rgba(255, 255, 255, .10);
  --line: #e8e2d9;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow: 0 18px 40px -24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 40px 80px -40px rgba(0, 0, 0, .55);

  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* --- Yardımcılar --------------------------------------------------------- */
.container { width: 100%; max-width: 1260px; margin-inline: auto; padding-inline: 24px; }
.container-sm { max-width: 900px; }
.gold { color: var(--gold-light); }
.only-desktop { display: block; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.icon { width: 22px; height: 22px; flex: none; }

/* --- Tipografi kalıpları -------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.h-display { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; }
.h-section { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
.h-card { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
.lead { font-size: 1.05rem; line-height: 1.75; color: var(--muted); }
.lead-dark { color: var(--muted-dark); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .h-section { margin: 18px 0 14px; }

/* --- Butonlar ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 8px; border: 1px solid transparent;
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold-grad); color: #2a1e0c; box-shadow: 0 12px 30px -14px rgba(201, 161, 92, .8); }
.btn-gold:hover { box-shadow: 0 18px 38px -14px rgba(201, 161, 92, .95); }

.btn-outline-light { border-color: rgba(255, 255, 255, .22); color: #fff; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline-dark { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #000; }

.btn-wa .icon-wa { color: #25d366; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: .88rem; font-weight: 600;
}
.link-more .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-more:hover .icon { transform: translateX(4px); }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h); display: flex; align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
    height .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  height: 70px; background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.site-header .container { display: flex; align-items: center; gap: 32px; }

/* Logo görsel olarak basılır; boyutları dosyanın sonundaki bölümde */
.logo { display: inline-flex; align-items: center; flex: none; }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative; font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .82);
  padding: 6px 0; transition: color .22s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transition: transform .28s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { flex: none; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; color: #fff;
  padding: 8px; cursor: pointer;
}

/* Mobil çekmece */
.drawer {
  position: fixed; inset: 0; z-index: 95; background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(8px); padding: 100px 28px 40px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer ul { display: flex; flex-direction: column; gap: 4px; }
.drawer a {
  display: block; padding: 16px 4px; font-size: 1.15rem; font-weight: 500; color: #fff;
  border-bottom: 1px solid var(--line-dark);
}
.drawer a[aria-current="page"] { color: var(--gold); }
.drawer .btn { width: 100%; margin-top: 28px; }
.drawer-close {
  position: absolute; top: 26px; right: 24px; background: none; border: 0;
  color: #fff; padding: 8px; cursor: pointer;
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; background: var(--bg-dark); color: var(--on-dark);
  padding-top: calc(var(--header-h) + 40px); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .5)); pointer-events: none;
}
.hero__media {
  position: absolute; top: 0; right: 0; bottom: 0; width: 56%;
  background-size: cover; background-position: center;
}
.hero__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-dark) 2%, rgba(11, 11, 11, .55) 32%, transparent 62%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: 72px; }
.hero__copy { max-width: 710px; }
.hero .h-display { margin: 22px 0 20px; }
.hero .lead { color: var(--muted-dark); max-width: 520px; }
.hero .btn-row { margin-top: 36px; }

/* Kompakt iç sayfa hero'su */
.hero--inner { padding-bottom: 0; }
.hero--inner .hero__inner { padding-bottom: 96px; }
.hero--inner .h-display { font-size: clamp(2rem, 4.2vw, 3.2rem); }

/* Hero özellik satırı */
.hero-features {
  display: flex; flex-wrap: nowrap; gap: 0; margin-top: 40px;
}
.hero-features li {
  display: flex; align-items: center; gap: 12px; padding: 0 22px;
  border-left: 1px solid var(--line-dark);
}
.hero-features li:first-child { padding-left: 0; border-left: 0; }
.hero-features .icon { width: 28px; height: 28px; color: var(--gold); stroke-width: 1.3; }
.hero-features b { display: block; font-size: .92rem; font-weight: 600; }
.hero-features span { font-size: .8rem; color: var(--muted-dark); }

/* --- İstatistik şeridi ---------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface-dark); border: 1px solid var(--line-dark);
  border-radius: var(--r); overflow: hidden;
}
.stats--5 { grid-template-columns: repeat(5, 1fr); }
.stats li {
  display: flex; align-items: center; gap: 16px; padding: 26px 28px;
  border-left: 1px solid var(--line-dark);
}
.stats li:first-child { border-left: 0; }
.stats .icon { width: 30px; height: 30px; color: var(--gold); stroke-width: 1.2; }
.stats b { display: block; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.1; }
.stats span { font-size: .82rem; color: var(--muted-dark); }
.stats--floating { position: relative; z-index: 3; margin-bottom: -1px; }

/* --- Bölümler ------------------------------------------------------------ */
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section-light { background: var(--bg-light); color: var(--ink); }
.section-cream { background: var(--surface-cream); color: var(--ink); }
.section-dark { background: var(--bg-dark-2); color: var(--on-dark); }
.section-dark .lead, .section-dark .muted { color: var(--muted-dark); }

/* Koyu hero'nun üstüne binen yuvarlak köşeli açık alan */
.rounded-top {
  border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: -48px; position: relative; z-index: 4;
}

/* --- Kart ızgarası -------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-dim); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #efeae2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
/* Rozet akış içinde duruyor ve negatif marjla görselin üstüne biniyor;
   böylece kartın overflow:hidden kuralı tarafından kırpılmıyor. */
.card__badge {
  position: relative; z-index: 2; align-self: flex-start;
  margin: -23px 0 0 20px; width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: 50%;
  background: #111; color: var(--gold); border: 1px solid var(--gold-dim);
}
.card__badge .icon { width: 20px; height: 20px; stroke-width: 1.4; }
.card__body { padding: 16px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.card__body .link-more { margin-top: auto; padding-top: 8px; }

/* --- Süreç adımları ------------------------------------------------------- */
.steps-wrap {
  background: var(--surface-cream); border-radius: var(--r-lg); padding: 44px 32px;
}
.steps { display: flex; align-items: flex-start; gap: 8px; }
.step { flex: 1; text-align: center; }
.step__icon {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--line);
  color: var(--gold);
}
.step__icon .icon { width: 26px; height: 26px; stroke-width: 1.2; }
.step__no { font-size: .8rem; font-weight: 700; color: var(--gold); }
.step h3 { font-size: .98rem; margin: 2px 0 6px; }
.step p { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.step-sep { color: var(--gold); opacity: .5; padding-top: 24px; flex: none; }

/* --- CTA bandı ------------------------------------------------------------ */
.cta-band {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: #0d0d0d; color: #fff; padding: 54px 48px; min-height: 260px;
  display: flex; align-items: center;
}
.cta-band__media {
  position: absolute; inset: 0 0 0 42%; background-size: cover; background-position: center;
}
.cta-band__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, #0d0d0d 6%, rgba(13, 13, 13, .6) 40%, transparent 75%);
}
.cta-band__copy { position: relative; z-index: 2; max-width: 560px; }
.cta-band .h-section { margin: 16px 0 14px; }
.cta-band .btn-row { margin-top: 26px; }

/* --- Filtre çipleri ------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 38px; }
.chip {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface-cream); color: var(--ink-2); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip[aria-pressed="true"] { background: #111; border-color: #111; color: #fff; }

/* --- Deneyim kartları ----------------------------------------------------- */
.exp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.exp-card {
  position: relative; aspect-ratio: 1 / 1.02; border-radius: var(--r); overflow: hidden;
  padding: 20px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card__no { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; position: relative; z-index: 1; }
.exp-card__label {
  position: relative; z-index: 1; max-width: 78%;
  margin-top: auto; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.exp-card__desc { position: relative; z-index: 1; max-width: 78%; font-size: .72rem; line-height: 1.5; opacity: .72; margin-top: 6px; }
.exp-card__logo {
  position: relative; z-index: 1;
  margin-top: 14px; font-size: .62rem; letter-spacing: .3em; opacity: .55; text-transform: uppercase;
}
.exp-card__art {
  position: absolute; right: -6px; top: 46%; transform: translateY(-50%);
  width: 52%; opacity: .34; pointer-events: none;
}
/* Malzeme varyantları */
.exp--mat    { background: #131313; color: #f2f2f2; }
.exp--parlak { background: #f3f1ee; color: #1c1c1c; }
.exp--lak    { background: #16261d; color: #e9f0ea; }
.exp--kabart { background: #efe9df; color: #26211a; }
.exp--altin  { background: #121212; color: var(--gold-light); }
.exp--gumus  { background: #141414; color: #d8dadd; }
.exp--bordo  { background: #4a1220; color: #f0d9c8; }
.exp--kesim  { background: #f5f3ef; color: #23231f; }
.exp--kraft  { background: #c08a4e; color: #2b1c0c; }
.exp--kombin { background: #0d0d0d; color: var(--gold-light); border: 1px solid var(--gold-dim); }
.exp-card__no { color: var(--gold); }
.exp--parlak .exp-card__no, .exp--kabart .exp-card__no, .exp--kesim .exp-card__no { color: #b08541; }
.exp--kraft .exp-card__no { color: #3a2308; }

/* Küçük sektör örnekleri listesi */
.mini-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.mini {
  display: flex; align-items: center; gap: 12px; padding: 10px; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.mini img { width: 58px; height: 46px; object-fit: cover; border-radius: 8px; flex: none; }
.mini span:last-child { min-width: 0; overflow-wrap: anywhere; }
.mini__no {
  font-size: .68rem; font-weight: 700; color: #6b4c1c; background: var(--gold-light);
  border-radius: 5px; padding: 2px 6px; flex: none;
}
.mini span { font-size: .82rem; font-weight: 500; }

/* --- Referans logo ızgarası ----------------------------------------------- */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.logo-slot {
  aspect-ratio: 16 / 10; border-radius: 12px; background: #efece7;
  display: grid; place-items: center; color: #c7c2b9; border: 1px dashed #ddd7cd;
}
.logo-slot .icon { width: 40px; height: 40px; stroke-width: 1; }

/* --- Blog ---------------------------------------------------------------- */
.post { display: flex; flex-direction: column; }
.post .card__media { aspect-ratio: 16 / 10; }
.post--wide .card__media { aspect-ratio: 16 / 8; }
.post__tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 6px; font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
}
.post__tag--trend { background: #7a5a2a; }
.post__tag--surdur { background: #3f5c3a; }
.post__tag--uretim { background: #6b4630; }
.post__tag--sektor { background: #5a4632; }
.post__tag--kurumsal { background: #333; }
.post__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .74rem; color: var(--muted);
}
.post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post__meta .icon { width: 14px; height: 14px; }
.post h3 { font-size: 1.02rem; line-height: 1.35; }
.post--wide h3 { font-size: 1.3rem; }

.searchbar { display: flex; max-width: 420px; margin-top: 26px; }
.searchbar input {
  flex: 1; padding: 14px 16px; border-radius: 8px 0 0 8px;
  border: 1px solid rgba(255, 255, 255, .16); border-right: 0;
  background: rgba(255, 255, 255, .05); color: #fff;
}
.searchbar input::placeholder { color: rgba(255, 255, 255, .45); }
.searchbar button {
  border: 0; border-radius: 0 8px 8px 0; padding: 0 20px; cursor: pointer;
  background: var(--gold-grad); color: #2a1e0c; display: grid; place-items: center;
}

.blog-toolbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.blog-toolbar .chips { margin: 0; justify-content: flex-start; flex: 1; }
.blog-toolbar .select { width: auto; min-width: 150px; }

.blog-featured { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 22px; margin-bottom: 22px; }
@media (max-width: 1080px) { .blog-featured { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .blog-featured { grid-template-columns: 1fr; } }

.newsletter {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: var(--surface-cream); border-radius: var(--r); padding: 24px 28px; margin-top: 32px;
}
.newsletter__icon {
  width: 52px; height: 52px; border-radius: 50%; background: #111; color: var(--gold);
  display: grid; place-items: center; flex: none;
}
.newsletter form { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.newsletter input {
  min-width: 240px; padding: 13px 16px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff;
}

.pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  font-size: .88rem; color: var(--ink-2); transition: all .2s var(--ease);
}
.pagination a:hover { background: var(--surface-cream); }
.pagination .is-current { background: #111; color: #fff; font-weight: 600; }
.pagination .nav-arrow { color: var(--gold); border: 1px solid var(--gold-dim); }

/* --- Formlar ------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 500; color: var(--muted); }
.input, .select, .textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.textarea { min-height: 130px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 161, 92, .15);
}
.field-error { font-size: .76rem; color: #b3261e; display: none; }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: #b3261e; }
.field.has-error .field-error { display: block; }
.dropzone.has-error { border-color: #b3261e; }

.dropzone {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 18px 20px; border: 1px dashed var(--line); border-radius: 12px; background: #fff;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.dropzone:hover, .dropzone.is-over { border-color: var(--gold); background: #fffdf9; }
.dropzone .icon { width: 30px; height: 30px; color: var(--gold); stroke-width: 1.2; }
.dropzone b { display: block; font-size: .92rem; }
.dropzone span { font-size: .78rem; color: var(--muted); }

.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; }
.consent input { margin-top: 4px; accent-color: var(--gold); width: 16px; height: 16px; }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.form-status {
  grid-column: 1 / -1; display: none; padding: 14px 16px; border-radius: 10px;
  font-size: .88rem; background: #f0f7f0; border: 1px solid #cfe3cf; color: #24572b;
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fdecea; border-color: #f5c2bd; color: #8a1f17; }

/* Bal küpü alanı: botlar doldurur, insanlar görmez */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Koyu zeminli form (teklif sayfası) */
.form-dark {
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line-dark);
  border-radius: var(--r-lg); padding: 38px;
}
.form-dark .input, .form-dark .select, .form-dark .textarea, .form-dark .dropzone {
  background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .14); color: #fff;
}
.form-dark .input::placeholder, .form-dark .textarea::placeholder { color: rgba(255, 255, 255, .45); }
/* Açılır listenin seçenekleri tarayıcının kendi (beyaz) kutusunda açılır; koyu zemin + açık yazı */
.form-dark .select { color-scheme: dark; }
.form-dark .select option { background-color: #1f1f1f; color: #fff; }
.form-dark label, .form-dark .dropzone span { color: var(--muted-dark); }
.form-dark .consent { color: var(--muted-dark); }
.form-dark .form-status { background: rgba(90, 160, 100, .12); border-color: rgba(120, 190, 130, .3); color: #bfe6c5; }
.form-dark .form-status.is-error { background: rgba(200, 60, 50, .12); border-color: rgba(220, 90, 80, .35); color: #f3b8b1; }

/* --- İletişim ------------------------------------------------------------ */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 24px; align-items: start; }
.contact-card { background: var(--surface-cream); border-radius: var(--r-lg); padding: 34px; }
.contact-list li {
  display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic {
  width: 44px; height: 44px; border-radius: 12px; background: #111; color: var(--gold);
  display: grid; place-items: center; flex: none;
}
.contact-list b { display: block; font-size: .8rem; color: var(--muted); font-weight: 500; }
.contact-list a, .contact-list p { font-size: .95rem; font-weight: 500; color: var(--ink); }
.contact-note {
  background: #111; color: #fff; border-radius: var(--r); padding: 24px; margin-top: 24px;
}
.contact-note p { font-size: .84rem; color: var(--muted-dark); margin: 6px 0 18px; }
.map-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden; margin-top: 24px;
  border: 1px solid var(--line); background: #e9e5de; min-height: 340px;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.35); }
.map-card {
  position: absolute; left: 24px; top: 24px; background: #111; color: #fff;
  border-radius: var(--r); padding: 20px; max-width: 260px;
}
.map-card p { font-size: .84rem; color: var(--muted-dark); margin: 8px 0 16px; }

/* --- Değerler / özellik satırı -------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.values .icon { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.1; margin: 0 auto 14px; }
.values h3 { font-size: 1rem; margin-bottom: 8px; }
.values p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-row--5 { grid-template-columns: repeat(5, 1fr); }
.feature-row--2 { grid-template-columns: repeat(2, 1fr); gap: 22px 28px; }
.feature { display: flex; gap: 14px; }
.feature .icon { width: 30px; height: 30px; color: var(--gold); stroke-width: 1.2; flex: none; }
.feature b { display: block; font-size: .92rem; }
.feature p { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.section-dark .feature p { color: var(--muted-dark); }

/* --- Split içerik --------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-lg); }
.badge-float {
  position: absolute; left: -28px; bottom: 28px; background: #111; color: #fff;
  border-radius: var(--r); padding: 18px 22px; display: flex; gap: 14px; max-width: 300px;
  box-shadow: var(--shadow-lg);
}
.badge-float .icon { width: 28px; height: 28px; color: var(--gold); stroke-width: 1.2; flex: none; }
.badge-float b { font-size: .95rem; }
.badge-float p { font-size: .76rem; color: var(--muted-dark); line-height: 1.5; }

.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: .9rem; }
.check-list .icon { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 3px; }

.avatars { display: flex; gap: -8px; margin: 18px 0 22px; }
.avatars span {
  width: 52px; height: 52px; border-radius: 50%; background: #ddd6ca; border: 2px solid #fff;
  margin-right: -10px; display: grid; place-items: center; color: #a49a8b;
}

.signature {
  font-family: "Georgia", serif; font-style: italic; font-size: 1.3rem;
  color: var(--gold); margin: 18px 0 22px;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: #0a0a0a; color: #fff; padding: 68px 0 32px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-grid h4 {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; font-weight: 600;
}
.footer-grid li { margin-bottom: 10px; }
.footer-grid a, .footer-grid p { font-size: .85rem; color: var(--muted-dark); }
.footer-grid a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid ul a::before { content: "›"; color: var(--gold); opacity: .7; }
.footer-contact a::before, .footer-grid .logo::before { display: none; }
.footer-contact .icon { width: 16px; height: 16px; color: var(--gold); flex: none; }
.footer-about { font-size: .85rem; color: var(--muted-dark); line-height: 1.7; margin-top: 18px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-dark);
  display: grid; place-items: center; color: var(--gold);
}
.socials a::before { display: none; }
.socials a:hover { border-color: var(--gold); background: rgba(201, 161, 92, .08); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: .78rem; color: rgba(255, 255, 255, .45);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* --- Yüzen WhatsApp ------------------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .icon { width: 28px; height: 28px; }

/* --- Giriş animasyonu -----------------------------------------------------
   Gizleme sınıfı JS tarafından ekleniyor (.is-armed); böylece JS çalışmazsa
   içerik yine de görünür kalır.                                            */
.reveal.is-armed {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-armed.is-in { opacity: 1; transform: none; }

/* --- Uyarı kutusu (geçici içerik notu) ------------------------------------ */
.notice {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px;
  border-radius: 10px; background: #fff6e6; border: 1px solid #f0dcb4; color: #6b4e17;
  font-size: .84rem; line-height: 1.6;
}
.notice .icon { width: 18px; height: 18px; flex: none; margin-top: 3px; }

/* --- Duyarlı yerleşim ----------------------------------------------------- */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-grid, .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .feature-row, .feature-row--5 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats, .stats--5 { grid-template-columns: repeat(2, 1fr); }
  .stats li:nth-child(odd) { border-left: 0; }
  .steps { flex-wrap: wrap; gap: 28px; }
  .step { flex: 1 1 40%; }
  .step-sep { display: none; }
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero__media { width: 100%; opacity: .28; }
  .hero__media::before {
    background: linear-gradient(to bottom, rgba(11, 11, 11, .7), var(--bg-dark) 92%);
  }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .badge-float { left: 16px; }
  .cta-band { padding: 40px 28px; }
  .cta-band__media { inset: 0; opacity: .35; }
  .cta-band__media::before { background: linear-gradient(to right, #0d0d0d 10%, rgba(13, 13, 13, .7)); }
  .hero-features { flex-wrap: wrap; }
  .hero-features li { border-left: 0; padding: 8px 0; flex: 1 1 100%; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid-4, .grid-3, .grid-2, .grid-5 { grid-template-columns: 1fr; }
  .exp-grid, .mini-grid, .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row--5, .feature-row--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats, .stats--5 { grid-template-columns: 1fr; }
  .stats li { border-left: 0; border-top: 1px solid var(--line-dark); }
  .stats li:first-child { border-top: 0; }
  .newsletter form { margin-left: 0; width: 100%; }
  .newsletter input { min-width: 0; flex: 1; }
  .rounded-top { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .form-dark { padding: 24px; }
  .btn { padding: 14px 20px; font-size: .76rem; }
  .btn-row .btn { flex: 1 1 100%; }
}

@media (max-width: 520px) {
  .mini-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-armed { opacity: 1; transform: none; }
}

/* --- Logo görseli ---------------------------------------------------------- */
.logo img { height: 46px; width: auto; transition: height .35s var(--ease); }
.site-header.is-stuck .logo img { height: 40px; }
.site-footer .logo img { height: 54px; }
@media (max-width: 720px) { .logo img { height: 38px; } }
