/* ============================================================
   ANAHTAR EMLAK — DEMO/MOCKUP
   Modern emlak stüdyosu tasarım sistemi
   ============================================================ */

:root {
  --bg: #fafaf8;
  --bg-soft: #f2f2ee;
  --ink: #202423;
  --ink-soft: #565c5a;
  --ink-faint: #8a908e;
  --em: #047857;
  --em-deep: #065f46;
  --em-ink: #03482f;
  --em-tint: #e7f3ee;
  --line: #e3e3dd;
  --card: #ffffff;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgba(23, 30, 28, .05), 0 10px 30px -12px rgba(23, 30, 28, .12);
  --shadow-lift: 0 2px 4px rgba(23, 30, 28, .06), 0 24px 48px -16px rgba(6, 95, 70, .22);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

[id] { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16.5px;
  overflow-x: clip;
}

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

a { color: inherit; }

::selection { background: var(--em); color: #fff; }

/* ---------- yardımcılar ---------- */
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--em-deep);
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--em);
  border-radius: 2px;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: .9rem;
}
.section-head p { margin-top: 1rem; color: var(--ink-soft); max-width: 60ch; }

.em { color: var(--em-deep); }

/* ---------- scroll progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--em), #10b981);
  z-index: 1200;
  pointer-events: none;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(23, 30, 28, .3);
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  min-height: 44px;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--em), var(--em-ink));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--em-deep);
}

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 .95rem;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  border-radius: 999px;
  position: relative;
  transition: color .25s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--em-ink); font-weight: 600; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: .95rem; right: .95rem; bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--em);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.3rem;
  margin-left: .6rem;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: .92rem;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--em-deep); transform: translateY(-1px); }
.main-nav a.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: .9rem 1.25rem 1.25rem;
    box-shadow: 0 30px 40px -30px rgba(23, 30, 28, .35);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { min-height: 48px; border-radius: 12px; }
  .main-nav a.active { background: var(--em-tint); }
  .main-nav a.active::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: .5rem; justify-content: center; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero (ana sayfa) ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 88% -10%, rgba(4, 120, 87, .12), transparent 65%),
    radial-gradient(560px 380px at -8% 30%, rgba(4, 120, 87, .07), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.035em;
  margin-top: 1.1rem;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--em-deep);
}
.hero-lede {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: 0 1.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, color .25s;
}
.btn-primary { background: var(--em-deep); color: #fff; }
.btn-primary:hover { background: var(--em-ink); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--em-ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .88rem;
}
.hero-trust b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

/* hero görsel katmanları (parallax) */
.hero-visual { position: relative; min-height: 460px; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  will-change: transform;
}
.hero-photo img { width: 100%; height: auto; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(3, 72, 47, .35));
}
.hero-chip {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(227, 227, 221, .8);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .8rem 1.1rem;
  font-size: .82rem;
  color: var(--ink-soft);
  will-change: transform;
}
.hero-chip b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--em-ink);
}
.chip-a { top: 8%; left: -9%; }
.chip-b { bottom: 12%; right: -6%; }
.hero-blob {
  position: absolute;
  z-index: -1;
  width: 300px; height: 300px;
  right: -70px; top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, .25), rgba(4, 120, 87, .05) 70%);
  will-change: transform;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; }
  .chip-a { left: 4%; top: 6%; }
  .chip-b { right: 4%; bottom: 8%; }
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #f4f4f0;
  overflow: clip;
  padding: .95rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .dot { color: #10b981; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- ilan kartları ---------- */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .listing-grid { grid-template-columns: 1fr; } }

.listing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.listing-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(4, 120, 87, .35);
}
.listing-media {
  position: relative;
  aspect-ratio: 31 / 18;
  overflow: hidden;
  background: var(--bg-soft);
}
.listing-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.listing-card:hover .listing-media img { transform: scale(1.07); }
.listing-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--em-deep);
  color: #fff;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem .75rem;
  border-radius: 999px;
}
.listing-tag.rent { background: var(--ink); }
.listing-body { padding: 1.2rem 1.3rem 1.35rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.listing-loc {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--em-deep);
}
.listing-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
}
.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .95rem;
  font-size: .84rem;
  color: var(--ink-faint);
}
.listing-foot {
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.listing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -.02em;
  color: var(--em-ink);
}
.listing-price small { font-size: .72rem; font-weight: 500; color: var(--ink-faint); }
.listing-go {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background .3s, color .3s, transform .3s;
  flex: 0 0 auto;
}
.listing-card:hover .listing-go {
  background: var(--em-deep);
  border-color: var(--em-deep);
  color: #fff;
  transform: rotate(-45deg);
}

/* tipografik (fotoğrafsız) kart */
.listing-media.tipo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  background:
    radial-gradient(340px 200px at 110% -20%, rgba(16, 185, 129, .28), transparent 70%),
    linear-gradient(135deg, var(--em-ink), var(--em-deep));
  color: #fff;
}
.listing-media.tipo .tipo-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.listing-media.tipo .tipo-note {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  padding: .3rem .7rem;
  color: rgba(255, 255, 255, .9);
}

/* ---------- portföy filtre ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.2rem;
}
.filter-bar .f-label {
  align-self: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: .3rem;
}
.chip {
  min-height: 44px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s;
}
.chip:hover { border-color: var(--em); color: var(--em-ink); }
.chip.active {
  background: var(--em-deep);
  border-color: var(--em-deep);
  color: #fff;
  font-weight: 600;
}
.filter-count { color: var(--ink-faint); font-size: .9rem; margin-bottom: 1.2rem; }
.listing-card.is-hidden { display: none; }

/* ---------- bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.bento-cell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.bento-cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.bento-cell h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -.01em;
  margin: .9rem 0 .5rem;
}
.bento-cell p { font-size: .93rem; color: var(--ink-soft); }
.bento-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--em-tint);
  color: var(--em-deep);
  display: grid;
  place-items: center;
}
.bento-a { grid-column: span 2; grid-row: span 2; background: linear-gradient(150deg, var(--em-ink), var(--em-deep)); border: none; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; min-height: 340px; }
.bento-a h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: #fff; }
.bento-a p { color: rgba(255, 255, 255, .78); max-width: 42ch; }
.bento-a .big-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, .18);
  position: absolute;
  top: 1.2rem; right: 1.4rem;
}
.bento-b { grid-column: span 2; }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-a { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento-a, .bento-b { grid-column: span 1; }
}

/* ---------- istatistikler ---------- */
.stats-band {
  background: var(--ink);
  color: #f4f4f0;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.6rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 260px at 85% 120%, rgba(16, 185, 129, .25), transparent 70%);
}
.stat { position: relative; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #34d399;
}
.stat > span { display: block; margin-top: .5rem; font-size: .9rem; color: rgba(244, 244, 240, .72); }
@media (max-width: 860px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- hizmet listesi ---------- */
.service-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1.6fr auto;
  gap: 1.4rem 2rem;
  align-items: start;
  padding: 2.1rem 0;
  border-top: 1px solid var(--line);
  transition: background .3s;
}
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-row:hover { background: linear-gradient(90deg, transparent, rgba(4, 120, 87, .05), transparent); }
.service-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--em);
}
.service-row h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: -.015em;
  line-height: 1.15;
}
.service-row p { color: var(--ink-soft); font-size: .97rem; max-width: 58ch; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.service-tags span {
  font-size: .74rem;
  font-weight: 600;
  color: var(--em-ink);
  background: var(--em-tint);
  border-radius: 999px;
  padding: .3rem .7rem;
}
@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: .7rem; }
}

/* ---------- süreç adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--em-deep);
  background: var(--em-tint);
  border-radius: 999px;
  padding: .3rem .75rem;
}
.step h4 { font-family: var(--font-display); margin: 1rem 0 .4rem; font-size: 1.05rem; }
.step p { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- alt sayfa hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(3.4rem, 7vw, 5.5rem) 0 clamp(2.6rem, 5vw, 4rem);
  overflow: clip;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 340px at 92% -30%, rgba(4, 120, 87, .12), transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-top: 1rem;
  max-width: 16ch;
}
.page-hero .lede {
  position: relative;
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 58ch;
}

/* ---------- görsel + metin blokları ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.split-media:hover img { transform: scale(1.05); }
.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-top: .9rem;
}
.split p { margin-top: 1rem; color: var(--ink-soft); }
.checklist { list-style: none; margin-top: 1.4rem; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; }
.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--em-tint) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23065f46" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-11"/></svg>') center / 11px no-repeat;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- parallax bandı ---------- */
.parallax-band {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  margin-block: clamp(3rem, 6vw, 4.5rem);
  color: #fff;
}
.pb-media {
  position: absolute;
  inset: -16% 0;
  z-index: -2;
  margin: 0;
  will-change: transform;
}
.pb-media img { width: 100%; height: 100%; object-fit: cover; }
.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(3, 72, 47, .88) 25%, rgba(3, 72, 47, .62) 60%, rgba(6, 95, 70, .45));
}
.pb-inner { max-width: 640px; }
.pb-inner .kicker { color: #a7f3d0; }
.pb-inner .kicker::before { background: #34d399; }
.pb-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: .9rem;
}
.pb-inner p { margin-top: 1rem; color: rgba(255, 255, 255, .85); max-width: 52ch; }
.pb-inner .btn { margin-top: 1.8rem; }

/* ---------- CTA bandı ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--em-ink), var(--em-deep) 70%);
  color: #fff;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, .07);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.08;
  max-width: 18ch;
}
.cta-band p { margin-top: .7rem; color: rgba(255, 255, 255, .78); max-width: 48ch; }

/* ---------- iletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.info-card .bento-ico { flex: 0 0 auto; }
.info-card b { font-family: var(--font-display); display: block; font-size: 1rem; }
.info-card span { color: var(--ink-soft); font-size: .92rem; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--em);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, .15);
}
.form-note { font-size: .8rem; color: var(--ink-faint); margin-top: .9rem; }
.form-ok {
  display: none;
  margin-top: 1rem;
  background: var(--em-tint);
  color: var(--em-ink);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  font-weight: 500;
  font-size: .95rem;
}
.form-ok.show { display: block; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ---------- footer ---------- */
.site-footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: var(--ink);
  color: #d8dad6;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; width: auto; background: #f4f4f0; border-radius: 10px; padding: 6px 12px; }
.footer-brand p { margin-top: 1.1rem; font-size: .9rem; color: #a4a8a2; max-width: 34ch; }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; display: grid; gap: .2rem; }
.site-footer ul a, .site-footer address a {
  color: #d8dad6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition: color .25s;
}
.site-footer ul a:hover, .site-footer address a:hover { color: #34d399; }
.site-footer address { font-style: normal; font-size: .93rem; color: #a4a8a2; display: grid; gap: .3rem; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  font-size: .8rem;
  color: #8b8f89;
}
.demo-pill {
  border: 1px solid rgba(52, 211, 153, .4);
  color: #34d399;
  border-radius: 999px;
  padding: .2rem .8rem;
  font-weight: 600;
  letter-spacing: .08em;
}

/* ---------- reveal animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- erişilebilirlik ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  z-index: 2000;
  background: var(--em-deep);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: 600;
  transition: top .3s;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--em); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-photo, .hero-chip, .hero-blob { transform: none !important; }
  [data-parallax] { transform: none !important; }
  .pb-media { inset: 0; }
}
