

:root {
  --ink: #15263f;          
  --ink-2: #2a3f63;
  --muted: #687486;        
  --faint: #97a1b0;
  --line: #e4e7ec;         
  --paper: #ffffff;
  --paper-2: #f5f7fa;      
  --paper-3: #eceff4;
  --accent: #a67c43;       
  --container: 1200px;
  --t: .25s ease;
  --head: 'Sora', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, dl { list-style: none; }
svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 40px; }

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.18; color: var(--ink); font-weight: 600; letter-spacing: -.02em; }

.eyebrow { display: block; font-family: var(--body); font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.arr { display: inline-block; transition: transform var(--t); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  padding: 15px 28px; border: 1px solid transparent; border-radius: 2px; cursor: pointer;
  transition: var(--t); white-space: nowrap;
}
.btn:hover .arr { transform: translateX(4px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--paper-2); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost { background: transparent; color: #fff; padding-left: 8px; padding-right: 8px; }
.btn--ghost:hover { color: #fff; opacity: .8; }
.btn--block { width: 100%; }

.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header > .container { max-width: 100%; padding: 0 44px; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 2px; font-family: var(--head); font-weight: 700; font-size: .92rem; letter-spacing: .02em; color: var(--ink); }
.logo__name { font-family: var(--head); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; }
.logo__img { height: 44px; width: auto; max-width: 200px; display: block; object-fit: contain; }
.footer .logo__img { height: 48px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav__cta { display: none; }
.nav__link { position: relative; font-weight: 500; font-size: .92rem; color: var(--muted); transition: var(--t); padding: 4px 0; }
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--ink); }
.header__actions { display: flex; align-items: center; gap: 22px; }
.header__phone { font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.header__phone:hover { color: var(--accent); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); transition: var(--t); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; height: 70vh; min-height: 480px; max-height: 680px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.09); transition: opacity 1.2s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); transition: opacity 1.2s ease, transform 7.5s ease; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(15,28,50,.86) 0%, rgba(15,28,50,.58) 38%, rgba(15,28,50,.10) 72%, rgba(15,28,50,0) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 70px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero__content { max-width: 600px; text-align: left; }
@keyframes heroSwap { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__content--swap > * { animation: heroSwap .6s cubic-bezier(.16,.84,.28,1) both; }
.hero__content--swap > *:nth-child(2) { animation-delay: .06s; }
.hero__content--swap > *:nth-child(3) { animation-delay: .12s; }
.hero__content--swap > *:nth-child(4) { animation-delay: .18s; }
.hero__eyebrow { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.3rem); color: #fff; font-weight: 600; line-height: 1.05; margin-bottom: 24px; letter-spacing: -.025em; }
.hero__lead { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 480px; margin-bottom: 36px; }
.hero__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__controls { display: flex; align-items: center; gap: 18px; padding-bottom: 4px; }
.hero__ctrl { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; cursor: pointer; border-radius: 2px; font-size: 1.1rem; transition: var(--t); }
.hero__ctrl:hover { background: #fff; color: var(--ink); }
.hero__index { font-family: var(--head); color: rgba(255,255,255,.6); font-size: .9rem; letter-spacing: .08em; }
.hero__index b { color: #fff; font-weight: 600; }

.searchwrap { background: var(--ink); }
.searchbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; align-items: stretch; }
.searchbar__field { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.1); }
.searchbar__field:first-child { padding-left: 0; }
.searchbar__label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.searchbar__field select { border: none; background: transparent; font-family: var(--body); font-size: 1rem; font-weight: 500; color: #fff; cursor: pointer; outline: none; }
.searchbar__field select option { color: var(--ink); }
.searchbar__btn { align-self: stretch; border-radius: 0; padding: 0 46px; }

.stats {
  position: relative; background: var(--ink); color: #fff; margin: 60px 0;
  padding: 132px 0; overflow: hidden;
  clip-path: polygon(0 0, 100% 64px, 100% 100%, 0 calc(100% - 64px));
}
.stats::before {
  content: ''; position: absolute; top: 0; right: 0; width: 46%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1200&q=80');
  background-size: cover; background-position: center; opacity: .12;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000); mask-image: linear-gradient(90deg, transparent, #000);
}
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stat { text-align: center; position: relative; padding: 8px 16px; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: rgba(255,255,255,.12); }
.stat__num { display: inline-flex; align-items: baseline; }
.stat__num b { font-family: var(--head); font-size: 3.6rem; font-weight: 600; letter-spacing: -.03em; line-height: 1; color: #fff; }
.stat__num i { font-family: var(--head); font-style: normal; font-size: 1.8rem; font-weight: 600; color: var(--accent); margin-left: 2px; }
.stat span { display: block; margin-top: 14px; color: rgba(255,255,255,.62); font-size: .92rem; letter-spacing: .02em; }

.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(178px, auto); gap: 16px; }
.tile { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: #fff; padding: 32px; display: flex; flex-direction: column; justify-content: center; transition: var(--t); }
.tile--img { grid-column: span 2; grid-row: span 2; padding: 0; border: none; background: var(--paper-3); }
.tile--img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.tile--img:hover img { transform: scale(1.05); }
.tile--text { grid-column: span 2; }
.tile--text h3 { font-size: 1.45rem; margin-bottom: 12px; }
.tile--text p { color: var(--muted); font-size: 1rem; }
.tile--accent { background: var(--ink); color: #fff; align-items: flex-start; }
.tile--accent b, .tile--stat b { font-family: var(--head); font-size: 2.8rem; font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.tile--accent b span, .tile--stat b span { color: var(--accent); }
.tile--accent .tile__label { color: rgba(255,255,255,.6); margin-top: 12px; }
.tile--stat { align-items: flex-start; }
.tile--stat b { color: var(--ink); }
.tile__label { font-size: .9rem; }
.tile--stat .tile__label { color: var(--muted); margin-top: 12px; }
.tile--list { grid-column: span 2; }
.bento__list li { position: relative; padding: 9px 0 9px 26px; font-weight: 500; color: var(--ink-2); font-size: .95rem; }
.bento__list li + li { border-top: 1px solid var(--line); }
.bento__list li::before { content: ''; position: absolute; left: 0; top: 15px; width: 9px; height: 5px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); }
.tile--cta { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; background: var(--paper-3); }
.tile--cta h3 { font-size: 1.25rem; margin-bottom: 6px; }
.tile--cta p { color: var(--muted); font-size: .92rem; }
.tile--cta .btn { flex-shrink: 0; }

.section { padding: 110px 0; }
.section--alt { background: var(--paper-2); }
.section--slim { padding: 52px 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 16ch; }
.section__note { color: var(--muted); max-width: 380px; font-size: 1rem; }
.section__cta { margin-top: 56px; text-align: center; }

.filters { display: flex; gap: 4px; flex-wrap: wrap; }
.filter { background: transparent; border: 1px solid var(--line); font-family: var(--body); font-weight: 500; font-size: .85rem; color: var(--muted); padding: 9px 20px; border-radius: 2px; cursor: pointer; transition: var(--t); }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.sortbox { display: inline-flex; align-items: center; gap: 10px; }
.sortbox label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.sortsel { font-family: var(--body); font-size: .88rem; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px 38px 10px 14px; cursor: pointer; transition: var(--t); appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23687486' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.sortsel:hover { border-color: var(--ink); }
.sortsel:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21,38,63,.08); }

.catgrid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.catcard { position: relative; display: block; aspect-ratio: 5 / 4; border-radius: 12px; overflow: hidden;
  background: #0f1c32; transition: transform .4s cubic-bezier(.16,.8,.26,1); }
.catcard:hover { transform: translateY(-3px); }
.catcard__bg { position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.16,.8,.26,1); }
.catcard:hover .catcard__bg { transform: scale(1.06); }
.catcard__ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,28,50,0) 40%, rgba(15,28,50,.72) 100%); }
.catcard__txt { position: absolute; left: 13px; right: 13px; bottom: 12px; z-index: 2; color: #fff; }
.catcard__name { display: block; font-family: var(--head); font-weight: 500; font-size: .9rem; letter-spacing: -.005em; }
.catcard__count { display: flex; align-items: center; gap: 5px; margin-top: 2px; font-size: .72rem; opacity: .8; }
.catcard__arr { display: inline-block; transition: transform .35s ease; }
.catcard:hover .catcard__arr { transform: translateX(4px); }
@media (max-width: 900px) { .catgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 480px) { .catgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; } .catcard { aspect-ratio: 1 / 1; } .catcard__txt { left: 9px; right: 9px; bottom: 9px; } .catcard__name { font-size: .78rem; } .catcard__count { font-size: .65rem; } }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 12px; transition: transform .5s cubic-bezier(.16,.8,.26,1), box-shadow .5s ease, border-color .5s ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 56px -26px rgba(15,28,50,.34); border-color: transparent; }
.card.hide { display: none; }

.card__media { position: relative; display: block; aspect-ratio: 4/3.05; overflow: hidden; border-radius: 13px; background: var(--paper-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,.8,.26,1); }
.card:hover .card__media img { transform: scale(1.06); }
.card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: .72rem; font-weight: 700; letter-spacing: .01em; padding: 8px 14px; background: #fff; color: var(--accent); border-radius: 9px; box-shadow: 0 8px 20px rgba(15,28,50,.16); }
.card__badge--rent { color: #1f7a52; }

.card__body { padding: 18px 10px 8px; flex: 1; display: flex; flex-direction: column; }
.card__title { font-size: 1.12rem; font-weight: 600; line-height: 1.4; margin-bottom: 9px; min-height: 2.8em; }
.card__title a { transition: color .3s; }
.card__title a:hover { color: var(--accent); }
.card__code { font-size: .8rem; color: var(--muted); }
.card__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 12px; }
.card__loc { font-size: .85rem; color: var(--muted); font-weight: 500; }
.card__price-wrap { display: flex; flex-direction: column; align-items: flex-end; text-align: right; line-height: 1.2; }
.card__price { font-family: var(--head); font-size: 1.32rem; font-weight: 700; letter-spacing: -.025em; color: var(--accent); white-space: nowrap; }
.card__price small { font-size: .78rem; font-weight: 500; color: var(--muted); }
.card__price-sub { font-size: .7rem; color: var(--faint); margin-top: 2px; }
.card__specs { display: flex; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); }
.card__specs li { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.card__specs li + li { border-left: 1px solid var(--line); }
.card__specs li b { font-family: var(--head); font-size: .96rem; font-weight: 600; color: var(--ink); }
.card__specs li span { font-size: .72rem; color: var(--muted); letter-spacing: .03em; }

.card__agent { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); }
.card__agent img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.card__agent-txt { display: flex; flex-direction: column; line-height: 1.25; }
.card__agent-txt b { font-size: .85rem; font-weight: 600; color: var(--ink); }
.card__agent-txt small { font-size: .72rem; color: var(--muted); }

.lrow__agent { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: .82rem; color: var(--ink-2); font-weight: 500; }
.lrow__agent img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.lrow__agent small { color: var(--faint); font-weight: 400; }

.card__actions { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; gap: 8px; }
.card__act { width: 38px; height: 38px; border-radius: 10px; border: none; background: rgba(255,255,255,.94); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 6px 16px rgba(15,28,50,.18); transition: var(--t); backdrop-filter: blur(4px); }
.card__act svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.card__act:hover { background: #fff; transform: translateY(-2px); color: var(--accent); }
.card__fav.is-fav { color: #e2384a; }
.card__fav.is-fav svg { fill: #e2384a; stroke: #e2384a; }
.card__photos { position: absolute; right: 12px; bottom: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 8px; background: rgba(15,28,50,.6); color: #fff; font-size: .74rem; font-weight: 600; backdrop-filter: blur(4px); }
.card__photos svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.card__ribbon { position: absolute; left: 12px; bottom: 12px; z-index: 3; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 7px 12px; border-radius: 8px; background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(166,124,67,.4); }

.services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.service { padding: 40px 36px; border-right: 1px solid var(--line); }
.service:first-child { padding-left: 0; }
.service:last-child { border-right: none; padding-right: 0; }
.service__no { display: block; font-family: var(--head); font-size: .92rem; font-weight: 600; color: var(--accent); letter-spacing: .1em; margin-bottom: 60px; }
.service h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service p { color: var(--muted); font-size: .94rem; }

.team { position: relative; }
.team__viewport { overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; margin: 0 -3px; padding: 0 3px; }
.team__viewport::-webkit-scrollbar { display: none; }
.team__track { display: flex; gap: 30px; padding: 3px; }
.member { flex: 0 0 calc((100% - 90px) / 4); scroll-snap-align: start; }
.team__nav { display: flex; gap: 10px; }
.team__nav button { width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 2px; cursor: pointer; font-size: 1.05rem; transition: var(--t); }
.team__nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.team__nav button:disabled { opacity: .3; cursor: default; }
.team__nav button:disabled:hover { background: #fff; color: var(--ink); border-color: var(--line); }
.member__photo { aspect-ratio: 3/3.4; overflow: hidden; border-radius: 3px; background: var(--paper-2); margin-bottom: 18px; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .4s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.member:hover .member__photo img { filter: grayscale(0); transform: scale(1.04); }
.member__name { font-family: var(--head); font-size: 1.1rem; font-weight: 600; }
.member__role { color: var(--accent); font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-top: 4px; }
.member__meta { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.member__meta a, .member__meta span { font-size: .85rem; color: var(--muted); }
.member__meta a:hover { color: var(--ink); }

.expertise__wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.expertise__list { border-top: 1px solid var(--line); }
.exp { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; padding: 28px 6px; border-bottom: 1px solid var(--line); cursor: pointer; position: relative; }
.exp::after { content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--accent); transition: width .5s cubic-bezier(.16,.8,.26,1); }
.exp:hover::after, .exp.is-active::after { width: 100%; }
.exp__no { font-family: var(--head); font-size: .8rem; font-weight: 600; color: var(--faint); transition: var(--t); }
.exp__main { min-width: 0; }
.exp__title { display: block; font-family: var(--head); font-size: 1.55rem; font-weight: 600; color: var(--ink); transition: transform .4s cubic-bezier(.16,.8,.26,1), color .3s; }
.exp__desc { display: block; color: var(--muted); font-size: .9rem; margin-top: 4px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s ease, opacity .45s ease, margin .45s ease; }
.exp__arrow { color: var(--accent); font-size: 1.2rem; opacity: 0; transform: translateX(-10px); transition: var(--t); }
.exp:hover .exp__no, .exp.is-active .exp__no { color: var(--accent); }
.exp:hover .exp__title, .exp.is-active .exp__title { transform: translateX(12px); color: var(--accent); }
.exp:hover .exp__desc, .exp.is-active .exp__desc { max-height: 50px; opacity: 1; margin-top: 6px; }
.exp:hover .exp__arrow, .exp.is-active .exp__arrow { opacity: 1; transform: none; }
.expertise__media { position: sticky; top: 104px; aspect-ratio: 4 / 3.6; border-radius: 5px; overflow: hidden; background: var(--paper-2); }
.expertise__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.07); transition: opacity .7s ease, transform 1.4s cubic-bezier(.16,.8,.26,1); }
.expertise__media img.is-active { opacity: 1; transform: scale(1); }
.expertise__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,28,50,.35)); pointer-events: none; }

.process__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px; position: relative; }
.process__grid::before { content: ''; position: absolute; top: 28px; left: 7%; right: 7%; height: 1px; background: var(--line); z-index: 0; }
.step { position: relative; z-index: 1; }
.step__no { width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; font-family: var(--head); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 24px; transition: var(--t); }
.step:hover .step__no { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-4px); }
.step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .92rem; }

.marquee { background: var(--ink); color: #fff; padding: 28px 0; overflow: hidden; }
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--head); font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; letter-spacing: -.01em; padding: 0 34px; display: inline-flex; align-items: center; gap: 34px; }
.marquee__track span::after { content: '◆'; font-size: .7em; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.about { padding: 110px 0; background: var(--paper-2); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__media { aspect-ratio: 4/3.4; overflow: hidden; border-radius: 3px; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__content p { color: var(--muted); margin: 6px 0 28px; font-size: 1.06rem; max-width: 46ch; }
.about__list { margin-bottom: 36px; border-top: 1px solid var(--line); }
.about__list li { padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink-2); position: relative; }
.about__list li::before { content: ''; position: absolute; left: 0; top: 22px; width: 10px; height: 6px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); }

.cta { background: var(--ink); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 84px 0; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(1.7rem, 2.8vw, 2.3rem); max-width: 20ch; }
.cta p { color: rgba(255,255,255,.7); margin-top: 14px; max-width: 46ch; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__list { margin-top: 36px; border-top: 1px solid var(--line); }
.contact__list div { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__list dt { font-family: var(--head); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.contact__list dd { font-weight: 500; }
.contact__list a:hover { color: var(--accent); }
.contact__form { background: var(--paper-2); border: 1px solid var(--line); border-radius: 3px; padding: 40px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field span { font-size: .8rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; font-family: var(--body); font-size: .95rem; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; transition: var(--t); resize: vertical; color: var(--ink); }
.field select { cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23687486' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21,38,63,.08); }

.formnote { padding: 13px 16px; border-radius: 9px; font-size: .9rem; font-weight: 500; margin-bottom: 18px; }
.formnote--ok { background: #eaf7ef; color: #1c7a42; border: 1px solid #bce4cb; }
.formnote--err { background: #fdecee; color: #c0394b; border: 1px solid #f3c2c9; }

.kvkk-text { border: 1px solid var(--line); border-radius: 9px; margin-bottom: 14px; background: var(--paper-2); }
.kvkk-text > summary { cursor: pointer; padding: 12px 15px; font-weight: 600; font-size: .85rem; list-style: none; color: var(--ink); }
.kvkk-text > summary::-webkit-details-marker { display: none; }
.kvkk-text > summary::after { content: ' ⌄'; color: var(--muted); }
.kvkk-text p { padding: 0 15px 15px; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.kvkk { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--ink-2); margin-bottom: 18px; cursor: pointer; }
.kvkk input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.kvkk b { color: var(--ink); }

.captcha { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.captcha__img { display: block; border: 1px solid var(--line); border-radius: 8px; }
.captcha__refresh { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; font-size: 1.2rem; color: var(--muted); transition: var(--t); }
.captcha__refresh:hover { border-color: var(--accent); color: var(--accent); }
.captcha__in { flex: 1; min-width: 160px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--body); font-size: .95rem; background: #fff; letter-spacing: .18em; text-transform: uppercase; }
.captcha__in:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21,38,63,.08); }
.captcha__lbl { display: block; font-size: .78rem; color: var(--muted); margin: 8px 0 20px; }

.footer { background: var(--ink); color: rgba(255,255,255,.6); padding-top: 80px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 60px; }
.footer__brand p { margin-top: 20px; font-size: .92rem; line-height: 1.7; max-width: 30ch; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); transition: var(--t); }
.footer__social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.logo--light .logo__name { color: #fff; }
.logo--light .logo__mark { border-color: rgba(255,255,255,.4); color: #fff; }
.footer__col h4 { color: #fff; font-family: var(--head); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.footer__col a { display: block; padding: 7px 0; font-size: .92rem; transition: var(--t); }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer__links { display: flex; gap: 26px; }
.footer__links a:hover { color: #fff; }

.hero__eyebrow { opacity: 0; transform: translateY(22px); animation: hUp .9s .25s cubic-bezier(.16,.8,.26,1) forwards; }
.hero__title   { opacity: 0; transform: translateY(30px); animation: hUp 1s .4s cubic-bezier(.16,.8,.26,1) forwards; }
.hero__lead    { opacity: 0; transform: translateY(24px); animation: hUp .9s .55s cubic-bezier(.16,.8,.26,1) forwards; }
.hero__actions { opacity: 0; transform: translateY(24px); animation: hUp .9s .7s cubic-bezier(.16,.8,.26,1) forwards; }
.hero__controls{ opacity: 0; animation: hFade 1s .9s ease forwards; }
@keyframes hUp { to { opacity: 1; transform: none; } }
@keyframes hFade { to { opacity: 1; } }

.r { opacity: 0; transform: translateY(38px); transition: opacity .9s cubic-bezier(.16,.8,.26,1), transform .9s cubic-bezier(.16,.8,.26,1); transition-delay: var(--rd, 0s); will-change: opacity, transform; }
.r.in { opacity: 1; transform: none; }
.r-clip { clip-path: inset(0 0 101% 0); transition: clip-path 1.15s cubic-bezier(.76,0,.24,1) var(--rd, 0s); }
.r-clip.in { clip-path: inset(0 0 0 0); }
.r-clip img { transform: scale(1.14); transition: transform 1.5s cubic-bezier(.16,.8,.26,1) var(--rd, 0s); }
.r-clip.in img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .r, .r-clip, .r-clip img, .hero__eyebrow, .hero__title, .hero__lead, .hero__actions, .hero__controls { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

.pagehero { position: relative; padding: 70px 0; overflow: hidden; isolation: isolate; background: var(--ink); }
.pagehero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--img) center/cover no-repeat; opacity: .45; transform: scale(1.05); }
.pagehero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,28,50,.72) 0%, rgba(15,28,50,.92) 100%); }
.pagehero__crumb { color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .06em; }
.pagehero__crumb a { color: rgba(255,255,255,.82); }
.pagehero__crumb a:hover { color: #fff; }
.pagehero__title { color: #fff; font-size: clamp(2rem, 4.2vw, 3.3rem); margin: 16px 0 14px; }
.pagehero__lead { color: rgba(255,255,255,.8); max-width: 580px; font-size: 1.08rem; }
.searchwrap--page { border-top: 1px solid rgba(255,255,255,.08); }

.team__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gcard { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--paper-2); aspect-ratio: 16 / 11; }
.gallery--home { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 200px; gap: 16px; }
.gallery--home .gcard { aspect-ratio: auto; height: 100%; }
.gallery--home .gcard--lg { grid-column: span 2; grid-row: span 2; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,.8,.26,1); }
.gcard:hover img { transform: scale(1.06); }
.gcard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,28,50,0) 45%, rgba(15,28,50,.62)); }
.gcard__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.gcard__play > span { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; transition: var(--t); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.gcard:hover .gcard__play > span { transform: scale(1.1); background: #fff; }
.gcard__play svg { width: 24px; height: 24px; fill: var(--ink); margin-left: 3px; }
.gcard__cap { position: absolute; left: 18px; bottom: 16px; z-index: 3; color: #fff; }
.gcard__cap b { display: block; font-family: var(--head); font-weight: 600; font-size: 1.04rem; }
.gcard__cap span { font-size: .8rem; color: rgba(255,255,255,.78); }

.photogrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.photogrid__item { aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--paper-3); }
.photogrid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,.8,.26,1); }
.photogrid__item:hover img { transform: scale(1.08); }

.pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 56px; }
.pager__btn { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--ink); transition: var(--t); }
.pager__btn:hover { border-color: var(--ink); }
.pager__btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.mapwrap { line-height: 0; }
.mapwrap iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.15); }

.maplibregl-map svg, .maplibregl-marker svg, .maplibregl-ctrl svg, .maplibregl-popup svg { width: auto; height: auto; }
.mapsection { position: relative; line-height: 0; border-top: 1px solid var(--line); }
.bigmap { width: 100%; height: 560px; }
.bigmap .maplibregl-popup-content { font-family: var(--body); border-radius: 12px; padding: 14px 18px; box-shadow: 0 14px 40px rgba(15,28,50,.22); }
.bigmap .maplibregl-popup-content strong { font-family: var(--head); }
.bigmap .maplibregl-popup-content a { color: var(--accent); font-weight: 600; }

.mappin { position: relative; width: 66px; height: 66px; cursor: pointer; }
.mappin svg { position: relative; z-index: 2; filter: drop-shadow(0 9px 12px rgba(0,0,0,.45)); }
.mappin__pulse { position: absolute; left: 50%; top: 60px; width: 22px; height: 22px; transform: translate(-50%,-50%); border-radius: 50%; background: currentColor; opacity: .5; animation: pinpulse 1.9s ease-out infinite; }
@keyframes pinpulse { 0% { transform: translate(-50%,-50%) scale(.45); opacity: .6; } 100% { transform: translate(-50%,-50%) scale(3); opacity: 0; } }

.maplayers { position: absolute; top: 18px; left: 18px; z-index: 5; display: flex; gap: 2px; background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 4px; box-shadow: 0 8px 24px rgba(15,28,50,.16); }
.maplayer { border: none; background: none; font-family: var(--head); font-weight: 600; font-size: .82rem; color: var(--muted); padding: 8px 17px; border-radius: 50px; cursor: pointer; transition: var(--t); line-height: 1; }
.maplayer:hover { color: var(--ink); }
.maplayer.is-active { background: var(--ink); color: #fff; }

.map-home { position: absolute; left: 18px; bottom: 30px; z-index: 5; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 50px; padding: 11px 18px; font-family: var(--head); font-weight: 600; font-size: .85rem; line-height: 1; cursor: pointer; box-shadow: 0 8px 24px rgba(15,28,50,.18); transition: var(--t); }
.map-home:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.map-home svg { color: var(--accent); }
.map-home:hover svg { color: #fff; }
@media (max-width: 700px) { .bigmap { height: 440px; } }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(8,14,26,.92); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox__inner { display: flex; align-items: center; justify-content: center; max-width: 94vw; max-height: 88vh; }
.lightbox video { max-width: 94vw; max-height: 88vh; width: auto; height: auto; border-radius: 10px; display: block; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: var(--t); }
.lightbox__close:hover { background: #fff; color: var(--ink); }

:root { --lblue: var(--ink); --lblue-d: #0e1b2e; --lgreen: #1aa35c; --lgreen-d: #16894d; }
.container--wide { max-width: 1440px; }
.container--full { max-width: none; padding-left: 48px; padding-right: 48px; }
.container--detail { max-width: 1320px; }
.lcrumb { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.lcrumb .container { padding-top: 13px; padding-bottom: 13px; font-size: .85rem; color: var(--muted); }
.lcrumb a { color: var(--lblue); }
.lcrumb a:hover { text-decoration: underline; }
.lcrumb span { margin: 0 7px; color: var(--faint); }
.lcrumb strong { color: var(--ink); font-weight: 600; }
.section--tight { padding: 26px 0 70px; }
.listpage { display: grid; grid-template-columns: 270px 1fr; gap: 26px; align-items: start; }

.lside { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; position: sticky; top: 100px; }
.lside__head { padding: 15px 18px; font-family: var(--head); font-weight: 700; font-size: .98rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.lcat { display: flex; flex-direction: column; padding: 6px 0; border-bottom: 1px solid var(--line); }
.lcat a { display: flex; justify-content: space-between; align-items: center; padding: 9px 18px; font-size: .92rem; font-weight: 500; color: var(--ink-2); transition: var(--t); }
.lcat a:hover { color: var(--lblue); }
.lcat__parent { font-weight: 700; color: var(--lblue); }
.lcat__sub { padding-left: 30px; }
.lcat__sub.is-active { color: var(--lblue); font-weight: 600; }
.lfilter { border-bottom: 1px solid var(--line); }
.lfilter > summary { list-style: none; cursor: pointer; padding: 13px 18px; font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.lfilter > summary::-webkit-details-marker { display: none; }
.lfilter > summary::after { content: '\25BE'; color: var(--muted); font-size: .7rem; transition: transform .2s; }
.lfilter[open] > summary::after { transform: rotate(180deg); }
.lfilter__body { padding: 2px 18px 16px; display: flex; flex-direction: column; gap: 9px; }
.lsel { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 6px; font-family: var(--body); font-size: .85rem; background: #fff; color: var(--ink); cursor: pointer; }
.lclear { color: #e23744; font-size: .82rem; font-weight: 600; align-self: flex-start; }
.lchk { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--ink-2); cursor: pointer; }
.lchk input { accent-color: var(--lblue); width: 15px; height: 15px; }
.lrange { display: flex; gap: 8px; }
.lrange input { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 6px; font-family: var(--body); font-size: .84rem; }
.lside__apply { display: block; width: calc(100% - 32px); margin: 16px; background: var(--lblue); color: #fff; border: none; border-radius: 8px; padding: 13px; font-family: var(--head); font-weight: 600; font-size: .92rem; cursor: pointer; transition: var(--t); }
.lside__apply:hover { background: var(--lblue-d); }

.lmain { min-width: 0; }
.lresultbar { border: 1px solid var(--line); border-radius: 10px; padding: 15px 18px; margin-bottom: 16px; font-size: .95rem; color: var(--ink-2); }
.lresultbar b { color: var(--ink); }
.lresultbar__count { color: var(--accent); }
.ltoolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.ltabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ltabs .filter { font-size: .84rem; padding: 9px 16px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); font-weight: 600; }
.ltabs .filter:hover { border-color: var(--lblue); color: var(--lblue); }
.ltabs .filter.active { background: var(--lblue); border-color: var(--lblue); color: #fff; }
.ltools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lsort { border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; font-family: var(--body); font-size: .85rem; color: var(--ink); background: #fff; cursor: pointer; }
.lview { display: flex; gap: 4px; }
.lview button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); cursor: pointer; display: grid; place-items: center; transition: var(--t); }
.lview button.is-active { background: var(--lblue); color: #fff; border-color: var(--lblue); }
.lview svg { width: 17px; height: 17px; fill: currentColor; }
.lfilters-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 9px 16px; font-family: var(--head); font-weight: 600; font-size: .84rem; color: var(--ink); cursor: pointer; transition: var(--t); }
.lfilters-toggle:active { background: var(--paper-2); border-color: var(--ink); }
.lfbadge { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; margin-left: 3px; border-radius: 50px; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; line-height: 1; }
.lside-close { display: none; }
.lside-overlay { position: fixed; inset: 0; z-index: 190; background: rgba(15,28,50,.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s ease; }

.ltable { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.lhead { display: grid; grid-template-columns: minmax(0,1fr) 96px 96px 140px 184px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.lhead > div { padding: 13px 12px; font-size: .78rem; font-weight: 600; color: var(--muted); text-align: center; border-left: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.lhead > div:first-child { text-align: left; align-items: flex-start; border-left: none; }
.lhead small { color: var(--lblue); font-weight: 600; }
.lresults { display: flex; flex-direction: column; }
.lrow { display: grid; grid-template-columns: minmax(0,1fr) 96px 96px 140px 184px; border-bottom: 1px solid var(--line); transition: background .2s; }
.lrow:last-child { border-bottom: none; }
.lrow:hover { background: var(--paper-2); }
.lrow.hide { display: none; }
.lrow__detay { display: flex; gap: 20px; align-items: center; padding: 16px 18px; min-width: 0; }
.lrow__img { position: relative; flex-shrink: 0; width: 180px; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; background: var(--paper-2); }
.lrow__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,.8,.26,1); }
.lrow:hover .lrow__img img { transform: scale(1.05); }
.lrow__badge { position: absolute; top: 8px; left: 8px; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 9px; border-radius: 5px; background: var(--lblue); color: #fff; }
.lrow__badge--rent { background: var(--lgreen); }
.lrow__fav { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--muted); display: grid; place-items: center; cursor: pointer; transition: var(--t); }
.lrow__fav svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.lrow__fav.is-fav { color: #e2384a; }
.lrow__fav.is-fav svg { fill: #e2384a; stroke: #e2384a; }
.lrow__info { min-width: 0; }
.lrow__title { font-size: 1.08rem; font-weight: 600; line-height: 1.4; margin-bottom: 9px; }
.lrow__title a:hover { color: var(--lblue); }
.lrow__meta { display: flex; flex-direction: column; gap: 5px; }
.lrow__loc { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.lrow__loc svg { color: var(--lblue); }
.lrow__date { font-size: .78rem; color: var(--faint); }
.lcell { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 12px; border-left: 1px solid var(--line); font-size: .9rem; color: var(--ink-2); gap: 7px; }
.lcell__lbl { display: none; }
.lcell--price b { font-family: var(--head); font-size: 1.04rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.lcell--price small { color: var(--muted); font-weight: 500; }
.lrow__kapora { font-family: var(--head); font-size: 1.02rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.lrow__code { font-family: var(--head); font-size: .92rem; font-weight: 700; color: var(--ink-2); letter-spacing: .02em; white-space: nowrap; }
.lrow__btn { display: inline-flex; align-items: center; background: transparent; color: var(--accent); border: 1px solid var(--accent);
  font-family: var(--head); font-weight: 600; font-size: .74rem; letter-spacing: .04em; padding: 6px 16px; border-radius: 30px;
  white-space: nowrap; transition: background .2s, color .2s; }
.lrow__btn:hover { background: var(--accent); color: #fff; }

.ltable.is-grid { border: none; background: transparent; overflow: visible; }
.ltable.is-grid .lhead { display: none; }
.ltable.is-grid .lresults { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ltable.is-grid .lrow { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.ltable.is-grid .lrow:hover { background: #fff; box-shadow: 0 16px 36px -22px rgba(15,28,50,.3); }
.ltable.is-grid .lrow__detay { flex-direction: column; align-items: stretch; gap: 12px; }
.ltable.is-grid .lrow__img { width: 100%; aspect-ratio: 16/11; }
.ltable.is-grid .lcell { flex-direction: row; justify-content: space-between; border-left: none; border-top: 1px solid var(--line); padding: 10px 14px; }
.ltable.is-grid .lcell__lbl { display: inline; color: var(--muted); font-size: .8rem; }
.ltable.is-grid .lcell--pay { flex-wrap: wrap; gap: 10px; }
.ltable.is-grid .lrow__btn { margin-left: auto; }

.dhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px 24px; flex-wrap: wrap; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.dhead__title { flex: 1 1 240px; min-width: 0; font-size: 1.18rem; font-weight: 600; color: #3f4654; max-width: none; letter-spacing: -.01em; }
.dactions { display: flex; align-items: center; gap: 14px 18px; flex-shrink: 0; flex-wrap: wrap; }
.dfav { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); cursor: pointer; background: none; border: none; font-family: var(--body); }
.dfav svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.dfav:hover { color: var(--ink); }
.dfav.is-fav { color: #e2384a; }
.dfav.is-fav svg { fill: #e2384a; stroke: #e2384a; }
.dshare { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); }
.dshare a { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: var(--t); }
.dshare a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.dshare svg { width: 15px; height: 15px; }

.dhead, .dhead *, .detail, .detail *, .dtabs, .dtabs * { font-family: 'Inter', 'Segoe UI', sans-serif; }
.dhead__title { font-weight: 600; }
.dprice__val, .dpay__val, .dtable__more, .dside__btn, .dgal__count, .dtag, .dtabs__tab { font-family: 'Inter', 'Segoe UI', sans-serif !important; }

.detail { display: grid; grid-template-columns: minmax(0, 1fr) 278px 268px; gap: 26px; align-items: stretch; }
.detail__main { min-width: 0; }

.cards--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.cards--5 .card { padding: 8px; }
.cards--5 .card__title { font-size: 1rem; }
.cards--5 .card__price { font-size: 1.18rem; }
.cards--5 .card__specs li b { font-size: .88rem; }

.cards--min { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 34px 24px; }
.cards--min .card { height: 100%; background: none; border: none; padding: 0; border-radius: 0; overflow: visible; transition: none; }
.cards--min .card:hover { transform: none; box-shadow: none; }

.cards--min .card__media { aspect-ratio: 4 / 3.2; border-radius: 6px; background: var(--paper-2); }
.cards--min .card__media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(21,38,63,0) 52%, rgba(21,38,63,.34) 100%); opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.cards--min .card:hover .card__media::after { opacity: 1; }
.cards--min .card__media img { transition: transform 1.15s cubic-bezier(.16,.8,.26,1); }
.cards--min .card:hover .card__media img { transform: scale(1.055); }

.cards--min .card__badge { top: 14px; left: 14px; font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 7px 12px; border-radius: 2px; background: rgba(255,255,255,.92); color: var(--ink); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); box-shadow: none; }
.cards--min .card__badge--rent { color: #1f7a52; }
.cards--min .card__ribbon { display: none; }

.cards--min .card__body { padding: 14px 1px 0; }
.cards--min .card__code,
.cards--min .card__specs,
.cards--min .card__agent { display: none; }

.cards--min .card__title { font-family: var(--head); font-size: .92rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.35; height: 2.7em; min-height: 2.7em; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: none; }
.cards--min .card__title a { background-image: linear-gradient(var(--accent), var(--accent)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1px; padding-bottom: 2px; transition: background-size .55s cubic-bezier(.16,.8,.26,1), color .35s ease; }
.cards--min .card:hover .card__title a { background-size: 100% 1px; color: var(--accent); }

.cards--min .card__row { margin-top: 10px; padding-top: 11px; border-top: 1px solid var(--line); align-items: baseline; gap: 10px; }
.cards--min .card__loc { flex: 1; min-width: 0; font-size: .6rem; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cards--min .card__price-wrap { align-items: baseline; }
.cards--min .card__price { font-family: var(--head); font-size: .95rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.cards--min .card__price-sub { display: none; }
@media (max-width: 960px)  { .cards--min { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 20px; } }
@media (max-width: 640px)  { .cards--min { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; } }
@media (max-width: 400px)  { .cards--min { grid-template-columns: 1fr; gap: 30px; } }

.lmq { display: flex; flex-direction: column; gap: 26px; overflow: hidden; background: transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); }
.lmq__row { overflow: visible; cursor: grab; touch-action: pan-y; }
.lmq__row.is-grab { cursor: grabbing; }
.lmq__track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.lmq__track img { -webkit-user-drag: none; user-select: none; }
.lmq__row--rtl .lmq__track { animation: lmqRTL 60s linear infinite; }
.lmq__row--ltr .lmq__track { animation: lmqLTR 60s linear infinite; }
.lmq:hover .lmq__track { animation-play-state: paused; }
@keyframes lmqRTL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lmqLTR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .lmq__track { animation: none !important; } }

.lmq .card { flex: 0 0 296px; width: 296px; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow .35s ease, transform .35s ease; }
.lmq .card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(15,28,50,.4); }
.lmq .card__media { position: relative; aspect-ratio: 4 / 3; border-radius: 0; overflow: hidden; }
.lmq .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.16,.8,.26,1); }
.lmq .card:hover .card__media img { transform: scale(1.06); }
.lmq .card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 11px; border-radius: 3px; background: rgba(255,255,255,.94); color: var(--ink); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); box-shadow: 0 6px 16px rgba(15,28,50,.12); }
.lmq .card__badge--rent { color: #1f7a52; }
.lmq .card__ribbon { display: none; }
.lmq .card__body { padding: 14px 16px 16px; }
.lmq .card__code, .lmq .card__specs, .lmq .card__agent, .lmq .card__price-sub { display: none; }
.lmq .card__title { font-family: var(--head); font-size: .98rem; font-weight: 600; line-height: 1.35; letter-spacing: -.01em; margin: 0; height: 2.7em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lmq .card__title a { color: var(--ink); }
.lmq .card:hover .card__title a { color: var(--accent); }
.lmq .card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--line); }
.lmq .card__loc { flex: 1; min-width: 0; font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lmq .card__price { font-family: var(--head); font-size: 1rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
@media (max-width: 640px) { .lmq .card { flex: 0 0 240px; width: 240px; } .lmq { gap: 18px; } .lmq__track { gap: 16px; } }

/* Son yüklenen gayrimenkuller — CRM tarzı ilan kartı */
.lmq .pcard { flex: 0 0 300px; width: 300px; }
.pcard { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: box-shadow .35s ease, transform .35s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -28px rgba(15,28,50,.42); }
.pcard__media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--paper-2); overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.05s cubic-bezier(.16,.8,.26,1); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__count { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 9px; background: rgba(15,28,50,.6); color: #fff; font-size: .72rem; font-weight: 600; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.pcard__count svg { width: 13px; height: 13px; }
.pcard__kind { position: absolute; top: 12px; right: 12px; padding: 5px 11px; border-radius: 9px; background: rgba(15,28,50,.82); color: #fff; font-size: .64rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.pcard__body { display: flex; flex-direction: column; gap: 9px; padding: 14px 16px 16px; flex: 1; }
.pcard__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 18px; }
.pcard__code { font-size: .72rem; color: var(--faint); letter-spacing: .02em; }
.pcard__cond { font-size: .63rem; font-weight: 600; color: #1f7a52; background: #e8f6ee; border-radius: 20px; padding: 3px 9px; white-space: nowrap; }
.pcard__title { font-family: var(--head); font-size: .92rem; font-weight: 600; line-height: 1.4; letter-spacing: -.01em; margin: 0; height: 2.55em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard__title a { color: var(--ink); transition: color .3s ease; }
.pcard:hover .pcard__title a { color: var(--accent); }
.pcard__loc { display: flex; align-items: center; gap: 5px; font-size: .77rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard__loc svg { color: var(--accent); flex-shrink: 0; }
.pcard__specs { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .74rem; color: var(--muted); }
.pcard__specs span { display: inline-flex; align-items: center; gap: 5px; }
.pcard__specs svg { width: 14px; height: 14px; color: var(--faint); flex-shrink: 0; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.pcard__price { font-family: var(--head); font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.pcard__type { font-size: .67rem; font-weight: 600; color: #fff; background: var(--accent); border-radius: 7px; padding: 5px 11px; white-space: nowrap; }
.pcard__type.is-rent { background: #1f7a52; }
.pcard__agent { display: flex; align-items: center; gap: 9px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.pcard__agent img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--paper-2); flex-shrink: 0; border: 1px solid var(--line); }
.pcard__agent-txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.pcard__agent-txt b { font-size: .8rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard__agent-txt small { font-size: .68rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 640px) { .lmq .pcard { flex: 0 0 250px; width: 250px; } }

/* İlanlar sayfası — pcard ızgarası */
.cards--grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 1100px) { .cards--grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .cards--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (max-width: 460px)  { .cards--grid { grid-template-columns: 1fr; } }

.dgal__main { position: relative; aspect-ratio: 3/2; border-radius: 8px; overflow: hidden; background: var(--paper-2); cursor: zoom-in; }
.dgal__main img { width: 100%; height: 100%; object-fit: cover; }
.dgal__expand { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border: none; border-radius: 9px; background: rgba(15,28,50,.5); color: #fff; display: grid; place-items: center; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .25s; }
.dgal__expand:hover { background: rgba(15,28,50,.82); }
.dgal__expand svg { width: 18px; height: 18px; }
.dgal__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.22); transition: background .25s, transform .25s; }
.dgal__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.dgal__arrow--prev { left: 12px; }
.dgal__arrow--next { right: 12px; }
.dgal__arrow svg { width: 20px; height: 20px; }
.dgal__main .dgal__count { position: absolute; bottom: 12px; right: 12px; z-index: 3; background: rgba(15,28,50,.6); color: #fff; border: none; font-size: .78rem; padding: 5px 12px; border-radius: 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
/* Küçük resimler — tek sırada 5 görünür, altta ortalı ileri/geri */
#dgalThumbs.dgal__thumbs--row { margin-top: 10px; display: grid; grid-template-columns: none; grid-template-rows: 1fr; grid-auto-flow: column; grid-auto-columns: calc((100% - 4 * 8px) / 5); gap: 8px; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
#dgalThumbs.dgal__thumbs--row::-webkit-scrollbar { display: none; width: 0; height: 0; }
.dgal__thumbs--row .dgal__thumb { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; border: 0; outline: 2px solid transparent; outline-offset: -2px; cursor: pointer; padding: 0; background: var(--paper-2); opacity: .6; transition: opacity .25s ease, outline-color .25s ease; }
.dgal__thumbs--row .dgal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.dgal__thumbs--row .dgal__thumb:hover { opacity: 1; }
.dgal__thumbs--row .dgal__thumb.is-active { opacity: 1; outline-color: var(--accent); }
.dgal__thumbnav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 12px; }
.dgal__thumbnav .dgal__tnav { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink-2); cursor: pointer; display: grid; place-items: center; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.dgal__thumbnav .dgal__tnav:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.dgal__thumbnav .dgal__tnav svg { width: 17px; height: 17px; }
@media (max-width: 520px) { #dgalThumbs.dgal__thumbs--row { grid-auto-columns: calc((100% - 3 * 8px) / 4); } }
.dgal__badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: 6px; }
.dgal__badge--rent { background: var(--lgreen); }
.dgal__thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.dgal__thumb { aspect-ratio: 4/3; border-radius: 5px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: var(--paper-2); transition: var(--t); }
.dgal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.dgal__thumb.is-active { border-color: var(--accent); }
.dgal__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.dgal__zoom { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 8px 13px; background: #fff; cursor: pointer; }
.dgal__zoom svg { width: 15px; height: 15px; }
.dgal__nav { display: flex; align-items: center; gap: 12px; }
.dgal__nav button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--ink-2); cursor: pointer; display: grid; place-items: center; transition: var(--t); }
.dgal__nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.dgal__nav svg { width: 16px; height: 16px; }
.dgal__dots { display: flex; gap: 6px; }
.dgal__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.dgal__dots i.is-active { background: var(--ink); }
.dgal__count { font-size: .82rem; color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 8px 13px; }

.detail__side { display: flex; flex-direction: column; }
.dtag { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; padding: 7px 13px; background: #1849A9; color: #fff; border-radius: 7px; font-size: .78rem; font-weight: 600; margin-bottom: 14px; }
.dprice__label { font-size: .78rem; color: var(--muted); }
.dprice__val { display: block; font-size: 1.55rem; font-weight: 700; color: #1849A9; letter-spacing: -.01em; margin: 1px 0 3px; }
.dprice__val small { font-size: .85rem; color: var(--muted); }
.dprice__sub { display: inline-block; font-size: .8rem; color: #1849A9; }
.dprice__sub:hover { text-decoration: underline; }
.dtable { margin-top: 14px; flex: 1 1 0; min-height: 180px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, #000 82%, transparent); mask-image: linear-gradient(180deg, #000 82%, transparent); }
.dtable.show-all { flex: 0 0 auto; overflow: visible; -webkit-mask-image: none; mask-image: none; }
.dtable > div { display: flex; justify-content: space-between; gap: 12px; padding: 6.5px 2px; border-bottom: 1px solid var(--line); font-size: .81rem; }
.dtable > div:first-child { border-top: 1px solid var(--line); }
.dtable dt { color: var(--ink); font-weight: 600; }
.dtable dd { color: #2c3542; text-align: right; font-weight: 500; }
.dtable__hl { color: #e2384a !important; font-weight: 700; }
.dd-hl { color: #1849A9 !important; font-weight: 600; }
.dtable__more { display: block; width: 100%; text-align: center; background: none; border: none; padding: 12px; font-weight: 600; font-size: .84rem; color: #1849A9; cursor: pointer; transition: var(--t); }
.dtable__more:hover { text-decoration: underline; }
.dpay { margin-bottom: 12px; }
.dpay__label { font-size: .8rem; color: var(--muted); }
.dpay__val { display: block; font-size: 1.3rem; font-weight: 700; color: #1849A9; margin-top: 2px; }
.dside__btn { display: block; text-align: center; background: var(--lgreen); color: #fff; font-weight: 600; font-size: .95rem; padding: 14px; border-radius: 8px; transition: var(--t); }
.dside__btn:hover { background: var(--lgreen-d); }

.dcons { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; }
.dcons__img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--paper-2); }
.dcons__info { flex: 1; min-width: 0; line-height: 1.3; }
.dcons__info b { display: block; font-size: .92rem; color: var(--ink); }
.dcons__info span { font-size: .78rem; color: var(--muted); }
.dcons__actions { display: flex; gap: 8px; }
.dcons__btn { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--ink); color: #fff; transition: var(--t); }
.dcons__btn:hover { background: var(--ink-2); }
.dcons__btn--wa { background: #25d366; }
.dcons__btn--wa:hover { background: #1eb858; }

.mobilebar { display: none; }
@media (max-width: 760px) {
  .mobilebar { display: flex; align-items: stretch; gap: 9px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; width: 100%; max-width: 100vw; box-sizing: border-box; padding: 9px 13px calc(9px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.9); -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px); border-top: 1px solid var(--line); box-shadow: 0 -10px 34px -14px rgba(15,28,50,.2); }
  .mobilebar__call { flex: 0 0 auto; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; padding: 0 20px; border: 1.5px solid var(--line); color: var(--ink); background: #fff; border-radius: 14px; font-family: var(--head); font-weight: 600; font-size: .92rem; letter-spacing: .01em; transition: var(--t); }
  .mobilebar__call svg { flex-shrink: 0; }
  .mobilebar__call:active { background: var(--paper-2); border-color: var(--ink); }
  .mobilebar__cta { flex: 1 1 auto; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 52px; padding: 0 16px; background: var(--ink); color: #fff; border-radius: 14px; font-family: var(--head); font-weight: 600; font-size: .95rem; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; box-shadow: 0 10px 24px -10px rgba(21,38,63,.55); transition: var(--t); }
  .mobilebar__cta svg { flex-shrink: 0; width: 19px; height: 19px; }
  .mobilebar__cta:active { transform: translateY(1px); }
  body { padding-bottom: 82px; }
}

.detail__extra { display: flex; flex-direction: column; gap: 14px; }
.deids { display: flex; gap: 14px; align-items: center; background: rgba(1,120,162,.1); border-radius: 10px; padding: 12px; }
.deids__icon { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; color: #1849A9; }
.deids__icon svg { width: 34px; height: 34px; }
.deids__title { font-weight: 700; color: #1849A9; font-size: .82rem; }
.deids__text { color: #101828; font-size: 9px; line-height: 1.45; margin-top: 4px; }
.dbtn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 13px; border: none; border-radius: 6px; font-family: var(--head); font-weight: 600; font-size: .92rem; cursor: pointer; transition: var(--t); }
.dbtn svg { width: 16px; height: 16px; }
.dbtn--compare { background: linear-gradient(90deg, #0E63E8, #005AA9); color: #fff; box-shadow: 0 6px 18px rgba(0,90,169,.28); }
.dbtn--compare:hover { background: linear-gradient(90deg, #0B57CD, #004D92); }
.dbtn--report { background: #fee2e2; color: #ee2c5a; font-weight: 500; }
.dbtn--report:hover { background: rgba(204,0,0,.18); }

.dtabs { margin-top: 36px; }
.dtabs__nav { display: flex; gap: 4px; }
.dtabs__tab { background: var(--paper-2); border: 1px solid var(--line); border-bottom: none; border-radius: 8px 8px 0 0; padding: 12px 24px; font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--muted); cursor: pointer; }
.dtabs__tab.is-active { background: #fff; color: #1849A9; margin-bottom: -1px; }
.dtabs__panel { display: none; border: 1px solid var(--line); border-radius: 0 10px 10px 10px; padding: 28px; }
.dtabs__panel.is-active { display: block; }
.dtabs__panel p { color: var(--ink-2); line-height: 1.85; }
.dfeatures { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 24px; }
.dfeatures li { position: relative; padding-left: 26px; font-size: .94rem; color: var(--ink-2); }
.dfeatures li::before { content: ''; position: absolute; left: 0; top: 8px; width: 10px; height: 6px; border-left: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent); transform: rotate(-45deg); }
.dmap { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.dmap iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(.15); }

.dshare a { width: 28px; height: 28px; border: none; border-radius: 6px; color: #fff; }
.dshare a:hover { filter: brightness(1.12); background-clip: padding-box; }
.dshare__x { background: #000; }
.dshare__fb { background: #1877F2; }
.dshare__mail { background: #8a94a6; }

.dstick { position: fixed; top: 84px; left: 0; right: 0; z-index: 95; background: var(--paper-2); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .35s ease; box-shadow: 0 6px 20px rgba(15,28,50,.07); }
.dstick.is-visible { transform: none; }
.dstick__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 11px; padding-bottom: 11px; }
.dstick__left { min-width: 0; }
.dstick__title { font-size: 1.02rem; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dstick__meta { display: flex; align-items: center; gap: 16px; margin-top: 6px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.dstick__meta span { display: inline-flex; align-items: center; gap: 6px; }
.dstick__meta svg { color: var(--muted); }
.dstick__badge { background: #1849A9; color: #fff !important; padding: 4px 10px; border-radius: 6px; font-weight: 600; }
.dstick__badge svg { color: #fff; }
.dstick__price { text-align: right; flex-shrink: 0; padding-left: 24px; border-left: 1px solid var(--line); }
.dstick__price span { font-size: .8rem; color: var(--muted); }
.dstick__price b { display: block; font-size: 1.35rem; font-weight: 700; color: #1849A9; }

.dnote { margin-top: 40px; background: var(--paper-2); border-radius: 12px; padding: 28px; }
.dnote__title { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.acc { background: #fff; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; }
.acc > summary { list-style: none; cursor: pointer; padding: 15px 18px; font-weight: 500; font-size: .94rem; color: var(--ink-2); display: flex; justify-content: space-between; align-items: center; }
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after { content: '+'; color: var(--muted); font-size: 1.3rem; line-height: 1; }
.acc[open] > summary::after { content: '\2013'; }
.acc__body { padding: 0 18px 16px; color: var(--muted); font-size: .9rem; line-height: 1.7; }

.dwarn { display: flex; gap: 16px; align-items: flex-start; margin-top: 24px; padding: 20px 22px; background: #fff5f6; border: 1px dashed #f1a9b4; border-radius: 12px; }
.dwarn svg { width: 30px; height: 30px; color: #e2384a; flex-shrink: 0; }
.dwarn p { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.dwarn b { color: #e2384a; font-weight: 600; }

@media (max-width: 1280px) { .header__phone { display: none; } }
@media (max-width: 1080px) {
  .detail { grid-template-columns: minmax(0,1fr) 300px; }
  .detail__extra { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: stretch; }
  .deids { flex: 1 1 100%; }
  .detail__extra .dbtn { flex: 1; }
}
@media (max-width: 760px) {
  .detail { grid-template-columns: 1fr; }
  .dtable { flex: none; max-height: 360px; }
  .dtable.show-all { max-height: none; }
  .dfeatures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dtabs__tab { flex: 1; text-align: center; padding: 12px 8px; }
  .dstick { display: none; }
  .dnote { padding: 20px; }
}
@media (max-width: 1280px) { .cards--5 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 980px)  { .cards--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 680px)  { .cards--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 440px)  { .cards--5 { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .dgal__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .dfeatures { grid-template-columns: 1fr; }
  .dgal__bar { flex-wrap: wrap; }
}
@media (max-width: 1100px) {
  .listpage { grid-template-columns: 230px 1fr; gap: 18px; }
  .lhead, .lrow { grid-template-columns: minmax(0,1fr) 78px 78px 128px 168px; }
  .ltable.is-grid .lresults { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .listpage { grid-template-columns: 1fr; }
  .lfilters-toggle { display: inline-flex; align-items: center; gap: 7px; }
  /* Filtre paneli → TAM EKRAN, soldan açılır (açma/kapama JS inline stil ile) */
  .lside {
    position: fixed; inset: 0; z-index: 100000; width: 100%; max-width: none;
    margin: 0; border: 0; border-radius: 0; background: #fff;
    transform: translateX(-100%); transition: transform .3s ease;
    display: flex; flex-direction: column; max-height: none; overflow: hidden;
    pointer-events: none;
  }
  .lside__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 1.08rem; padding: 15px 18px; flex-shrink: 0; box-shadow: 0 1px 0 var(--line); }
  .lside-close { display: inline-grid; place-items: center; width: 42px; height: 42px; margin: -8px -8px -8px 0; flex-shrink: 0; border: none; background: var(--paper-2); color: var(--ink); font-size: 1.8rem; line-height: 1; cursor: pointer; border-radius: 50%; -webkit-tap-highlight-color: transparent; }
  .lside-close:active { background: var(--ink); color: #fff; }
  .lhead, .lrow { grid-template-columns: minmax(0,1fr) 90px 90px 140px 184px; }
}
@media (max-width: 760px) {
  .lhead { display: none; }
  .lrow { display: flex; flex-direction: column; }
  .lrow__detay { flex-direction: column; align-items: stretch; }
  .lrow__img { width: 100%; aspect-ratio: 16/10; }
  .lcell { flex-direction: row; justify-content: space-between; align-items: center; border-left: none; border-top: 1px solid var(--line); padding: 11px 16px; }
  .lcell__lbl { display: inline; color: var(--muted); font-size: .82rem; }
  .lcell--pay { flex-wrap: wrap; gap: 10px; }
  .lcell--pay .lrow__btn { margin-left: auto; }
  .ltable.is-grid .lresults { grid-template-columns: 1fr; }
  .ltabs { width: 100%; }
}
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service { border-bottom: 1px solid var(--line); padding: 36px 34px; }
  .service:nth-child(odd) { padding-left: 0; }
  .service:nth-child(2n) { border-right: none; padding-right: 0; }
  .member { flex-basis: calc((100% - 60px) / 3); }
  .process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 30px; }
  .process__grid::before { display: none; }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery--home { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .gallery--home .gcard { aspect-ratio: 16 / 11; height: auto; }
  .gallery--home .gcard--lg { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 8; height: auto; }
  .photogrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .member { flex-basis: calc((100% - 30px) / 2); }
}
@media (max-width: 1024px) {
  
  .header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  
  .nav { position: fixed; top: 84px; right: 0; bottom: 0; width: min(82%, 340px); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: #fff; padding: 24px 28px 32px; border-left: 1px solid var(--line); transform: translateX(110%); transition: transform var(--t); z-index: 99; overflow-y: auto; }
  .nav.open { transform: none; box-shadow: -24px 0 60px rgba(15,28,50,.14); }
  .nav__link { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; color: var(--ink); }
  .nav__link.active { color: var(--accent); }
  .nav__link.active::after { display: none; }
  .nav__cta { display: inline-flex; width: 100%; margin-top: 24px; }
  .nav__toggle { display: flex; }
  .header__phone { display: none; }
  .header__actions .btn--dark { display: none; }

  .hero { min-height: 540px; }
  .hero__lead { font-size: 1.06rem; }

  .about__inner, .contact { grid-template-columns: 1fr; gap: 48px; }
  .expertise__wrap { grid-template-columns: 1fr; gap: 30px; }
  .expertise__media { position: relative; top: 0; order: -1; aspect-ratio: 16 / 10; }
  .stats { padding: 96px 0; clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px)); margin: 40px 0; }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
  .stat:nth-child(3)::before { content: none; }
  .stats::before { width: 100%; opacity: .07; -webkit-mask-image: none; mask-image: none; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile--img { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .tile--text, .tile--list, .tile--cta { grid-column: span 2; }

  .searchbar { grid-template-columns: 1fr 1fr; }
  .searchbar__field { padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .searchbar__field:first-child { padding-left: 20px; }
  .searchbar__field:nth-child(2n) { border-right: none; }
  .searchbar__btn { grid-column: 1 / -1; padding: 17px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .header > .container { padding: 0 20px; }
  .stats { display: none; }

  .nav { width: 100%; border-left: none; padding: 20px 22px 32px; }

  .hero { min-height: 520px; }
  .hero::after { background: linear-gradient(180deg, rgba(15,28,50,.4) 0%, rgba(15,28,50,.6) 55%, rgba(15,28,50,.84) 100%); }
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 22px; padding-bottom: 32px; }
  .hero__content { max-width: 100%; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__lead { margin-bottom: 24px; }
  .hero__actions { width: 100%; }
  .hero__controls { width: 100%; }

  .searchbar { grid-template-columns: 1fr; }
  .searchbar__field { padding: 14px 6px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .searchbar__field:first-child { padding-left: 6px; }
  .searchbar__btn { padding: 16px; margin-top: 8px; }

  .section { padding: 64px 0; }
  .section__head { margin-bottom: 32px; gap: 14px; }
  .cards { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service { border-right: none; padding: 28px 0; }
  .service__no { margin-bottom: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .member { flex-basis: 84%; }
  .bento { grid-template-columns: 1fr; }
  .tile, .tile--img, .tile--text, .tile--accent, .tile--stat, .tile--list, .tile--cta { grid-column: span 1; }
  .tile--cta { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .exp__title { font-size: 1.3rem; }
  .contact__list div { grid-template-columns: 1fr; gap: 4px; }
  .pagehero { padding: 110px 0 56px; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery--home { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery--home .gcard { aspect-ratio: 16 / 10; height: auto; }
  .gallery--home .gcard--lg { grid-column: span 1; grid-row: auto; aspect-ratio: 16 / 10; height: auto; }
  .photogrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mapwrap iframe { height: 340px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 2.1rem; }
  .logo__name { font-size: 1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 30px; }
  .stat + .stat::before { content: none; }
  .filter { padding: 8px 15px; font-size: .82rem; }
  .card__price { font-size: 1.22rem; }
}

.ltabs a.filter { text-decoration: none; display: inline-block; }
.pager__dots { padding: 0 6px; color: var(--faint); align-self: center; }

.dprose { font-size: .96rem; line-height: 1.8; color: var(--ink-2); word-break: break-word; }
.dprose b, .dprose strong { color: var(--ink); }
.dprose div { margin: 2px 0; }
.dprose img { max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0; }
.dprose a { color: var(--accent); text-decoration: underline; }

.dcons__brand { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-family: var(--head); font-weight: 700; font-size: 1rem; letter-spacing: .02em; }
.dprice__sub { font-size: .82rem; color: var(--muted); margin-top: 4px; display: block; }

.lcrumb__nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .84rem; }
.lcrumb__nav a { color: var(--muted); transition: color .2s; }
.lcrumb__nav a:hover { color: var(--accent); }
.lcrumb__nav strong { color: var(--ink); font-weight: 600; }
.lcrumb__sep { color: var(--faint); }

.lsortcol { display: inline-flex; align-items: center; gap: 5px; color: inherit; cursor: pointer; user-select: none; transition: color .18s; }
.lsortcol:hover { color: var(--accent); }
.lsortcol__ar { font-size: .82em; opacity: .45; transition: opacity .18s, color .18s; }
.lsortcol.is-on { color: var(--accent); }
.lsortcol.is-on .lsortcol__ar { opacity: 1; }
.lsortcol:hover .lsortcol__ar { opacity: .9; }

.lempty { display: flex; flex-direction: column; align-items: center; text-align: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 60px 32px; background:
  radial-gradient(120% 120% at 50% 0%, #fafbfd 0%, #fff 60%); box-shadow: 0 24px 60px -40px rgba(15,28,50,.45); }
.lempty__ic { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  color: var(--accent); background: rgba(166,124,67,.1); border: 1px solid rgba(166,124,67,.22); }
.lempty__ic svg { width: 34px; height: 34px; }
.lempty__title { font-size: 1.32rem; margin-bottom: 10px; letter-spacing: -.01em; }
.lempty__text { color: var(--muted); max-width: 440px; margin: 0 auto 26px; line-height: 1.65; font-size: .94rem; }
.lempty__acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.lempty__acts .btn--dark { color: #fff; }
.lempty__acts .btn--outline { color: var(--ink); }
.lempty__acts .btn--outline:hover { color: #fff; }
.lempty__sug { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; gap: 10px;
  justify-content: center; align-items: center; flex-wrap: wrap; font-size: .82rem; }
.lempty__sug span { color: var(--faint); font-weight: 600; }
.lempty__sug a { padding: 7px 16px; border: 1px solid var(--line); border-radius: 30px; color: var(--ink-2);
  font-weight: 600; transition: all .18s; }
.lempty__sug a:hover { border-color: var(--accent); color: var(--accent); background: rgba(166,124,67,.06); }
@media (max-width: 560px) { .lempty { padding: 44px 20px; } .lempty__acts .btn { width: 100%; } }

.lfield { padding: 14px 18px; border-bottom: 1px solid var(--line); }
.lfield__lbl { display: block; font-family: var(--head); font-weight: 600; font-size: .82rem; color: var(--ink); margin-bottom: 8px; }
.lprice { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 6px; font-family: var(--body); font-size: .85rem; }

.msel { position: relative; }
.msel__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 11px; border: 1px solid var(--line); border-radius: 6px; background: #fff; cursor: pointer;
  font-family: var(--body); font-size: .85rem; color: var(--ink); text-align: left; transition: border-color .15s, box-shadow .15s; }
.msel__btn:hover { border-color: #c7ccd6; }
.msel.is-open .msel__btn { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(166,124,67,.13); }
.msel__txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msel__txt.is-ph { color: var(--faint); }
.msel__chev { color: var(--muted); font-size: .7rem; transition: transform .2s; flex-shrink: 0; }
.msel.is-open .msel__chev { transform: rotate(180deg); }

.msel__pop { position: absolute; z-index: 40; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 18px 40px -18px rgba(15,28,50,.4);
  padding: 8px; display: none; }
.msel.is-open .msel__pop { display: block; }
.msel__search { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; font-family: var(--body);
  font-size: .82rem; margin-bottom: 8px; }
.msel__search:focus { outline: none; border-color: var(--accent); }

.lchkbox { max-height: 230px; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.lchkbox::-webkit-scrollbar { width: 7px; }
.lchkbox::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.lchkbox::-webkit-scrollbar-thumb:hover { background: #cfd4dc; }
.msel__opts .lchk { padding: 7px 8px; border-radius: 6px; transition: background .12s; }
.msel__opts .lchk:hover { background: var(--paper-2); }
.lchkbox__msg { font-size: .82rem; color: var(--faint); padding: 8px; }

.lside { overflow: visible; }
.lside__head { border-radius: 10px 10px 0 0; }

.lfield--step { animation: lstepIn .28s cubic-bezier(.16,.8,.26,1); }
@keyframes lstepIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.msel__done { width: 100%; margin-top: 8px; padding: 9px 12px; border: none; border-radius: 7px;
  background: var(--accent); color: #fff; font-family: var(--head); font-weight: 600; font-size: .82rem;
  cursor: pointer; transition: background .15s; }
.msel__done:hover { background: #8f6835; }

.lside__foot { position: sticky; bottom: 0; z-index: 20; background: #fff; padding: 14px 16px;
  border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; box-shadow: 0 -10px 22px -14px rgba(15,28,50,.4); }
.lside__foot .lside__apply { width: 100%; margin: 0; }
.lside__foot .lclear { display: block; text-align: center; margin-top: 10px; }

.lside { max-height: calc(100vh - 110px); display: flex; flex-direction: column; overflow: hidden; }
.lside__head { flex-shrink: 0; }
#filterForm { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
.lside__scroll { flex: 1 1 auto; overflow-y: auto; overflow-x: hidden; min-height: 0; }
.lside__scroll::-webkit-scrollbar { width: 8px; }
.lside__scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.lside__scroll::-webkit-scrollbar-thumb:hover { background: #cfd4dc; }
.lside__foot { position: static; flex-shrink: 0; }

.msel--up .msel__pop { top: auto; bottom: calc(100% + 6px); }
@media (max-width: 920px) { .lside { max-height: none; } }

.nsearch { display: flex; gap: 8px; flex-wrap: wrap; }
.nsearch input[type=text] { padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--body); font-size: .88rem; min-width: 200px; }
.nsearch select { padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--body); font-size: .85rem; background: #fff; cursor: pointer; }
.ngrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 26px; }
.ncard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .45s cubic-bezier(.16,.8,.26,1), box-shadow .45s ease; }
.ncard:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -28px rgba(15,28,50,.34); }
.ncard__media { position: relative; display: block; aspect-ratio: 16/10; background: var(--paper-2); overflow: hidden; }
.ncard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,.8,.26,1); }
.ncard:hover .ncard__media img { transform: scale(1.06); }
.ncard__ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--head); font-weight: 700; color: var(--faint); letter-spacing: .04em; }
.ncard__cat { position: absolute; top: 12px; left: 12px; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; background: rgba(255,255,255,.94); color: var(--accent); border-radius: 6px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ncard__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.ncard__meta { display: flex; gap: 12px; font-size: .74rem; color: var(--muted); margin-bottom: 10px; }
.ncard__title { font-size: 1.06rem; font-weight: 600; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ncard__title a:hover { color: var(--accent); }
.ncard__ozet { font-size: .86rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ncard__more { margin-top: auto; font-family: var(--head); font-weight: 600; font-size: .82rem; color: var(--accent); }
.ncard__more:hover .arr { transform: translateX(4px); }
@media (max-width: 1000px) { .ngrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .ngrid { grid-template-columns: 1fr; } }

.narticle { max-width: 820px; margin: 0 auto; }
.narticle__head { text-align: center; margin-bottom: 26px; }
.narticle__cat { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.narticle__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.2; margin-bottom: 16px; }
.narticle__meta { font-size: .82rem; color: var(--muted); display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; }
.narticle__cover { border-radius: 14px; overflow: hidden; margin-bottom: 30px; aspect-ratio: 16/9; background: var(--paper-2); }
.narticle__cover img { width: 100%; height: 100%; object-fit: cover; }
.narticle__lead { font-size: 1.1rem; font-weight: 500; color: var(--ink); line-height: 1.7; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.narticle__body h2 { font-size: 1.4rem; margin: 28px 0 12px; }
.narticle__body h3 { font-size: 1.18rem; margin: 22px 0 10px; }
.narticle__body p { margin-bottom: 16px; }
.narticle__body img { width: 100%; height: auto; border-radius: 10px; margin: 18px 0; }
.narticle__body ul, .narticle__body ol { margin: 0 0 16px 22px; }
.narticle__body li { margin-bottom: 7px; }
.narticle__foot { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }

.langsw { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.langsw__opt { padding: 7px 11px; font-family: var(--head); font-weight: 600; font-size: .76rem; letter-spacing: .03em; color: var(--muted); transition: background .15s, color .15s; }
.langsw__opt + .langsw__opt { border-left: 1px solid var(--line); }
.langsw__opt:hover { color: var(--ink); background: var(--paper-2); }
.langsw__opt.is-active { background: var(--ink); color: #fff; }
.langsw--mobile { display: none; }
@media (max-width: 980px) {
  .header__actions .langsw { display: none; }
  .langsw--mobile { display: inline-flex; margin: 16px 0 4px; }
}

.nd-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 9999; transition: width .1s linear; }

.nd-hero { padding: 34px 0 26px; }
.nd-crumb { margin-bottom: 18px; }
.nd-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.nd-title { font-size: clamp(1.7rem, 3.8vw, 2.8rem); line-height: 1.18; max-width: 20ch; margin-bottom: 18px; }
.nd-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }
.nd-meta__by { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink); }
.nd-meta__av { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 700; font-size: .72rem; }
.nd-meta__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

.nd-cover { width: 100%; height: clamp(220px, 38vw, 420px); border-radius: 16px; overflow: hidden; background: var(--paper-2); margin: 8px 0 0; box-shadow: 0 30px 60px -34px rgba(15,28,50,.4); }
.nd-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.nd-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.nd-main { min-width: 0; }
.nd-lead { font-size: 1.16rem; font-weight: 500; color: var(--ink); line-height: 1.7; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.nd-content { font-size: 1.02rem; line-height: 1.85; }
.nd-content h2 { font-size: 1.45rem; margin: 30px 0 12px; }
.nd-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.nd-content p { margin-bottom: 17px; }
.nd-content img { width: 100%; height: auto; border-radius: 12px; margin: 22px 0; }
.nd-content ul, .nd-content ol { margin: 0 0 17px 22px; }
.nd-content li { margin-bottom: 8px; }
.nd-content blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 20px; margin: 20px 0; color: var(--ink-2); font-style: italic; }

.nd-share { display: flex; align-items: center; gap: 10px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.nd-share__lbl { font-family: var(--head); font-weight: 600; font-size: .9rem; margin-right: 4px; }
.nd-sb { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); background: #fff; cursor: pointer; transition: all .18s; }
.nd-sb svg { width: 18px; height: 18px; }
.nd-sb:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.nd-sb--wa:hover { background: #25d366; border-color: #25d366; }
.nd-back { margin-top: 26px; }

.nd-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.nd-card { border: 1px solid var(--line); border-radius: 14px; padding: 18px 18px 8px; background: #fff; }
.nd-card__head { font-family: var(--head); font-size: 1.02rem; font-weight: 600; padding-bottom: 12px; margin-bottom: 6px; border-bottom: 2px solid var(--accent); display: inline-block; }

.nd-rank { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }
.nd-rank li { list-style: none; }
.nd-rank li { border-bottom: 1px solid var(--line); }
.nd-rank li:last-child { border-bottom: none; }
.nd-rank a { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; }
.nd-rank__no { font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: var(--accent); line-height: 1.3; flex-shrink: 0; width: 18px; }
.nd-rank__tx { font-size: .88rem; line-height: 1.45; color: var(--ink-2); transition: color .15s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nd-rank a:hover .nd-rank__tx { color: var(--accent); }

.nd-mini-list { display: flex; flex-direction: column; }
.nd-mini { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.nd-mini:last-child { border-bottom: none; }
.nd-mini__img { width: 74px; height: 58px; border-radius: 8px; background: var(--paper-2) center/cover no-repeat; flex-shrink: 0; }
.nd-mini__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.nd-mini__date { font-size: .72rem; color: var(--faint); }
.nd-mini__title { font-size: .86rem; line-height: 1.4; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s; }
.nd-mini:hover .nd-mini__title { color: var(--accent); }

.nd-cta { background: linear-gradient(150deg, var(--ink), var(--ink-2)); color: #fff; border-radius: 14px; padding: 24px; }
.nd-cta h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.nd-cta p { font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.6; margin-bottom: 16px; }
.nd-cta .btn { width: 100%; }
.nd-cta__link { display: block; text-align: center; margin-top: 12px; font-size: .84rem; font-weight: 600; color: #e9c98a; }

.nd-toast { position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 30px; font-size: .85rem; font-weight: 600; box-shadow: 0 14px 36px rgba(15,28,50,.4); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 9999; }
.nd-toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .nd-layout { grid-template-columns: 1fr; gap: 34px; }
  .nd-side { position: static; }
  .nd-cover { height: clamp(180px, 52vw, 300px); border-radius: 12px; }
}

.imgbox { position: fixed; inset: 0; z-index: 220; display: none; align-items: center; justify-content: center;
  background: rgba(8,14,26,.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.imgbox.open { display: flex; animation: ibFade .2s ease; }
@keyframes ibFade { from { opacity: 0; } to { opacity: 1; } }
.imgbox__stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 92vw; max-height: 90vh; }
.imgbox__img { max-width: 92vw; max-height: 84vh; width: auto; height: auto; border-radius: 10px; display: block;
  background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.imgbox__count { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
.imgbox__close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 1.7rem; line-height: 1;
  cursor: pointer; transition: var(--t); z-index: 2; }
.imgbox__close:hover { background: #fff; color: var(--ink); }
.imgbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: var(--t); z-index: 2; }
.imgbox__nav svg { width: 24px; height: 24px; }
.imgbox__nav:hover { background: #fff; color: var(--ink); }
.imgbox__prev { left: 20px; }
.imgbox__next { right: 20px; }
@media (max-width: 600px) { .imgbox__nav { width: 42px; height: 42px; } .imgbox__prev { left: 8px; } .imgbox__next { right: 8px; } .imgbox__close { top: 12px; right: 12px; } }

.vmgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.vmcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 38px 34px;
  transition: transform .4s cubic-bezier(.16,.8,.26,1), box-shadow .4s ease, border-color .4s ease; }
.vmcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(15,28,50,.34); border-color: transparent; }
.vmcard__ic { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  color: var(--accent); background: rgba(166,124,67,.1); border: 1px solid rgba(166,124,67,.22); }
.vmcard__ic svg { width: 30px; height: 30px; }
.vmcard__title { font-size: 1.35rem; margin-bottom: 12px; }
.vmcard p { color: var(--muted); line-height: 1.75; font-size: .98rem; }
.vmcard p b { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) { .vmgrid { grid-template-columns: 1fr; gap: 18px; } .vmcard { padding: 30px 24px; } }

.footer__belge { border-top: 1px solid rgba(255,255,255,.1); }
.footer__belge-box { display: flex; align-items: center; gap: 18px; padding: 20px 0; flex-wrap: wrap; }
.footer__belge-seal { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px;
  color: var(--accent); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.footer__belge-seal svg { width: 26px; height: 26px; }
.footer__belge-main { min-width: 0; }
.footer__belge-title { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
  color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer__belge-list { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__belge-no { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px; background: rgba(255,255,255,.03); color: #fff; font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; transition: border-color .2s, color .2s, background .2s; }
.footer__belge-no svg { width: 13px; height: 13px; opacity: .65; }
a.footer__belge-no:hover { border-color: var(--accent); color: var(--accent); background: rgba(166,124,67,.1); }
a.footer__belge-no:hover svg { opacity: 1; }

.seoaramalar { padding: 30px 0 6px; }
.seoaramalar__head { font-size: 1.05rem; font-family: var(--head); font-weight: 600; margin-bottom: 4px; }
.seoaramalar__sub { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.seoaramalar__cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.seoaramalar__tag { display: inline-flex; align-items: center; padding: 7px 14px; border: 1px solid var(--line); border-radius: 30px;
  font-size: .8rem; font-weight: 500; color: var(--ink-2); background: #fff; transition: all .18s; }
.seoaramalar__tag:hover { border-color: var(--accent); color: var(--accent); background: rgba(166,124,67,.06); }

.seoturkiye__block { margin-top: 8px; }
.seoturkiye__block + .seoturkiye__block { margin-top: 34px; }
.seoturkiye__bh { font-size: 1rem; font-family: var(--head); font-weight: 600; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.seoturkiye__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.seoturkiye__chip { display: inline-flex; padding: 6px 13px; border: 1px solid var(--line); border-radius: 30px; font-size: .78rem; font-weight: 500; color: var(--ink-2); background: #fff; transition: all .18s; }
.seoturkiye__chip:hover { border-color: var(--accent); color: var(--accent); }
.seoturkiye__cols { columns: 4; column-gap: 28px; }
.seoturkiye__il { break-inside: avoid; margin-bottom: 11px; font-size: .82rem; line-height: 1.4; color: var(--faint); }
.seoturkiye__name { font-weight: 700; color: var(--ink); margin-right: 4px; }
.seoturkiye__name:hover { color: var(--accent); }
.seoturkiye__il a { color: var(--muted); transition: color .15s; }
.seoturkiye__il a:hover { color: var(--accent); }
.seoturkiye__dot { color: var(--line); margin: 0 2px; }
@media (max-width: 900px) { .seoturkiye__cols { columns: 3; } }
@media (max-width: 620px) { .seoturkiye__cols { columns: 2; column-gap: 18px; } }

.arama-intro { color: var(--muted); line-height: 1.8; font-size: .95rem; max-width: 900px; margin-top: 4px; }

.nav__drop { position: relative; display: inline-flex; align-items: center; }
.nav__dropbtn { background: none; border: none; cursor: pointer; font-family: var(--body); display: inline-flex; align-items: center; gap: 5px; }
.nav__caret { font-size: 1rem; line-height: 1; margin-top: 1px; transition: transform .25s; }
.nav__drop:hover .nav__caret, .nav__drop.is-open .nav__caret { transform: rotate(180deg); }
.nav__menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 22px 48px -22px rgba(15,28,50,.4); padding: 8px; z-index: 130;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; }
.nav__menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; } 
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu, .nav__drop.is-open .nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(7px); }
.nav__menu-link { display: block; padding: 10px 14px; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: var(--ink-2); white-space: nowrap; transition: background .15s, color .15s; }
.nav__menu-link:hover { background: var(--paper-2); color: var(--accent); }
.nav__menu-link.active { color: var(--accent); }

@media (max-width: 1024px) {
  .nav__drop { display: block; }
  .nav__dropbtn { width: 100%; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line);
    font-size: 1.02rem; color: var(--ink); text-align: left; }
  .nav__dropbtn::after { display: none; }
  .nav__caret { font-size: 1.15rem; }
  .nav__menu { position: static; transform: none; opacity: 1; visibility: visible; display: none;
    box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 14px; min-width: 0; }
  .nav__menu::before { display: none; }
  .nav__drop.is-open .nav__menu { display: block; transform: none; }
  .nav__menu-link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
}

/* Hizmetler — tıklanabilir kart + detay sayfası */
.service--link { display: block; text-decoration: none; color: inherit; transition: background .3s ease, transform .3s ease; border-radius: 12px; }
.service--link:hover { background: var(--paper-2); transform: translateY(-3px); }
.service--link h3 { color: var(--ink); transition: color .3s ease; }
.service--link:hover h3 { color: var(--accent); }
.service__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .82rem; font-weight: 600; color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity .3s ease, transform .3s ease; }
.service--link:hover .service__more { opacity: 1; transform: translateX(0); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.svc { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.svc__main { min-width: 0; font-size: 1.02rem; line-height: 1.8; color: var(--ink-2); }
.svc__main h2, .svc__main h3 { font-family: var(--head); color: var(--ink); margin: 28px 0 12px; }
.svc__main p { margin: 0 0 16px; color: var(--muted); }
.svc__cta { margin-top: 28px; padding: 20px 0 0; border-top: 1px solid var(--line); }
.svc__cta h3 { margin: 0 0 6px; font-size: 1.05rem; }
.svc__cta p { margin: 0 0 14px; font-size: .9rem; color: var(--muted); }
/* Hizmet CTA butonu — şık, kurumsal, geniş (dprose dışında: içerik-link stili kapmaz, yazı beyaz) */
.svc__cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; background: var(--ink); color: #fff; font-family: var(--body); font-weight: 600; font-size: .85rem; letter-spacing: .02em; border-radius: 8px; text-decoration: none; transition: background .25s ease, color .25s ease; }
.svc__cta-btn:hover { background: var(--accent); color: #fff; }
.svc__cta-btn .arr { transition: transform .25s ease; }
.svc__cta-btn:hover .arr { transform: translateX(3px); }
.svc__rnd { width: 100%; }
.svc__side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 18px; }
.svc__sidebox { border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 24px; background: #fff; }
.svc__sidettl, .svc__sidebox h4 { font-family: var(--head); font-size: 1rem; margin: 0 0 14px; color: var(--ink); }
.svc__list { list-style: none; padding: 0; margin: 0; }
.svc__list li + li { border-top: 1px solid var(--line); }
.svc__list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; text-decoration: none; color: var(--muted); font-size: .9rem; font-weight: 500; transition: color .25s ease, padding .25s ease; }
.svc__list a:hover { color: var(--accent); padding-left: 6px; }
.svc__list .arr { color: var(--accent); }
.svc__sidebox--cta { background: var(--ink); color: #fff; text-align: center; }
.svc__sidebox--cta h4 { color: #fff; }
.svc__phone { display: block; font-family: var(--head); font-size: 1.25rem; font-weight: 700; color: #fff; text-decoration: none; margin-bottom: 16px; letter-spacing: -.01em; }
@media (max-width: 900px) { .svc { grid-template-columns: 1fr; gap: 32px; } .svc__side { position: static; } }

/* İlan detay — EİDS belge bloğu (sol görsel, sağ yazı) — minimalist */
.deidsb { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.deidsb__img { width: 46px; height: 46px; flex-shrink: 0; border-radius: 8px; object-fit: contain; }
.deidsb__txt { min-width: 0; }
.deidsb__title { font-weight: 600; font-size: .8rem; color: var(--ink); margin: 0; line-height: 1.35; }
.deidsb__sub { display: none; }
.deidsb__list { list-style: none; padding: 0; margin: 2px 0 0; display: flex; flex-wrap: wrap; gap: 2px 8px; }
.deidsb__list li { font-size: .72rem; font-weight: 500; color: var(--muted); letter-spacing: .01em; }

/* İlan şikayet modalı */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(15,28,50,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.modal__box { position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto; background: #fff; border-radius: 16px; padding: 28px 26px 26px; box-shadow: 0 30px 70px -20px rgba(15,28,50,.5); animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal__x { position: absolute; top: 14px; right: 16px; border: none; background: none; font-size: 1.7rem; line-height: 1; color: var(--muted); cursor: pointer; transition: color .2s; }
.modal__x:hover { color: var(--ink); }
.modal__ttl { font-family: var(--head); font-size: 1.2rem; margin: 0 0 4px; color: var(--ink); }
.modal__sub { font-size: .8rem; color: var(--muted); margin: 0 0 18px; }
.modal__form { display: flex; flex-direction: column; gap: 13px; }
.modal__f { display: flex; flex-direction: column; gap: 6px; }
.modal__f span { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.modal__f input, .modal__f textarea { width: 100%; font-family: var(--body); font-size: .92rem; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); resize: vertical; }
.modal__f input:focus, .modal__f textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(166,124,67,.14); }
.modal__cap { display: flex; align-items: center; gap: 10px; }
.modal__cap img { border-radius: 8px; border: 1px solid var(--line); flex-shrink: 0; }
.modal__cap #sikCapRefresh { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; font-size: 1.1rem; color: var(--ink-2); flex-shrink: 0; }
.modal__cap #sikCapRefresh:hover { background: var(--paper-2); }
.modal__cap input { flex: 1; min-width: 0; font-family: var(--body); font-size: .92rem; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; }
.modal__cap input:focus { outline: none; border-color: var(--accent); }
.modal__kvkk { display: flex; align-items: flex-start; gap: 9px; font-size: .78rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.modal__kvkk input { margin-top: 2px; flex-shrink: 0; }
.modal__msg { font-size: .84rem; padding: 0; }
.modal__msg.is-ok { color: #1c7a42; background: #eaf7ef; border: 1px solid #bce4cb; border-radius: 8px; padding: 10px 13px; }
.modal__msg.is-err { color: #c0392b; background: #fdecea; border: 1px solid #f5c6c0; border-radius: 8px; padding: 10px 13px; }
.modal__send { background: var(--ink); color: #fff; border: none; font-family: var(--body); font-weight: 600; font-size: .9rem; letter-spacing: .02em; padding: 13px 20px; border-radius: 10px; cursor: pointer; transition: background .25s; }
.modal__send:hover { background: var(--accent); }
.modal__send:disabled { opacity: .7; cursor: default; }

/* KVKK / yasal sayfa */
.legal h2 { font-family: var(--head); font-size: 1.35rem; color: var(--ink); margin: 34px 0 14px; padding-top: 6px; scroll-margin-top: 100px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--head); font-size: 1.05rem; color: var(--ink); margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-2); line-height: 1.85; }
.legal ul { margin: 10px 0 16px; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); }

/* Çerez onay bandı — küçük, köşede, minimalist */
.cookie { position: fixed; left: 18px; bottom: 18px; z-index: 300; width: calc(100% - 36px); max-width: 320px; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .3s ease, transform .3s cubic-bezier(.16,.8,.26,1); }
.cookie.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie__box { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 16px 40px -18px rgba(15,28,50,.4); padding: 14px 15px; }
.cookie__main { display: flex; align-items: flex-start; gap: 9px; }
.cookie__ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(166,124,67,.12); color: var(--accent); }
.cookie__ic svg { width: 15px; height: 15px; }
.cookie__ttl { font-family: var(--head); font-size: .88rem; font-weight: 600; color: var(--ink); margin: 0 0 2px; }
.cookie__txt { font-size: .76rem; color: var(--muted); line-height: 1.5; margin: 0; }
.cookie__txt a { color: var(--accent); font-weight: 600; }
.cookie__opts { display: grid; gap: 6px; margin: 0; padding: 0; border-top: 0 solid var(--line); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .25s ease, margin .3s ease, padding .3s ease; }
.cookie.prefs-open .cookie__opts { max-height: 260px; opacity: 1; margin: 11px 0 2px; padding: 11px 0 0; border-top-width: 1px; }
.cookie #ckReject, .cookie #ckSave { display: none; }
.cookie.prefs-open #ckReject, .cookie.prefs-open #ckSave { display: inline-block; }
.cookie.prefs-open #ckPrefs { display: none; }
.cookie__opt { display: flex; align-items: flex-start; gap: 8px; font-size: .76rem; cursor: pointer; }
.cookie__opt input { margin-top: 2px; flex-shrink: 0; width: 14px; height: 14px; accent-color: var(--accent); }
.cookie__opt span { display: flex; flex-direction: column; }
.cookie__opt b { color: var(--ink); font-weight: 600; font-size: .78rem; }
.cookie__opt small { color: var(--muted); font-size: .69rem; line-height: 1.35; }
.cookie__acts { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.cookie__btn { font-family: var(--body); font-weight: 600; font-size: .75rem; letter-spacing: .01em; padding: 8px 13px; border-radius: 8px; cursor: pointer; border: 1px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.cookie__btn--ghost { background: #fff; color: var(--muted); border-color: var(--line); }
.cookie__btn--ghost:hover { background: var(--paper-2); color: var(--ink); }
.cookie__btn--save { background: var(--paper-2); color: var(--ink); border-color: var(--line); }
.cookie__btn--save:hover { background: var(--paper-3); }
.cookie__btn--accept { background: var(--ink); color: #fff; margin-left: auto; }
.cookie__btn--accept:hover { background: var(--accent); }
@media (max-width: 420px) { .cookie { left: 10px; bottom: 10px; width: calc(100% - 20px); } .cookie__btn--accept { margin-left: 0; flex: 1; text-align: center; } }

/* Favori kalbi (pcard) + e-posta modalı */
.pcard__medialink { display: block; width: 100%; height: 100%; }
.pcard__kind { top: auto !important; bottom: 12px; left: 12px; right: auto !important; }
.pcard__fav { position: absolute; top: 11px; right: 11px; z-index: 4; width: 34px; height: 34px; border: none; border-radius: 50%; background: rgba(255,255,255,.92); color: #8a93a3; display: grid; place-items: center; cursor: pointer; box-shadow: 0 3px 10px rgba(15,28,50,.18); transition: background .2s ease, color .2s ease, transform .2s ease; }
.pcard__fav svg { width: 17px; height: 17px; fill: currentColor; }
.pcard__fav:hover { transform: scale(1.1); color: #e64571; }
.pcard__fav.is-fav { background: #e64571; color: #fff; }
.favm { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: 20px; }
.favm.open { display: flex; }
.favm__bg { position: absolute; inset: 0; background: rgba(15,28,50,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.favm__box { position: relative; z-index: 1; width: 100%; max-width: 400px; background: #fff; border-radius: 16px; padding: 28px 26px 24px; text-align: center; box-shadow: 0 30px 70px -20px rgba(15,28,50,.5); animation: modalIn .25s ease; }
.favm__x { position: absolute; top: 12px; right: 15px; border: none; background: none; font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer; }
.favm__ic { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(230,69,113,.1); color: #e64571; margin-bottom: 12px; }
.favm__ic svg { width: 26px; height: 26px; }
.favm__ttl { font-family: var(--head); font-size: 1.2rem; margin: 0 0 8px; color: var(--ink); }
.favm__sub { font-size: .86rem; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.favm__in { width: 100%; font-family: var(--body); font-size: .95rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px; text-align: center; }
.favm__in:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(166,124,67,.14); }
.favm__kvkk { display: flex; align-items: flex-start; gap: 8px; text-align: left; font-size: .76rem; color: var(--muted); line-height: 1.5; margin: 12px 0; cursor: pointer; }
.favm__kvkk input { margin-top: 2px; flex-shrink: 0; }
.favm__kvkk a { color: var(--accent); }
.favm__msg { font-size: .82rem; margin-bottom: 8px; }
.favm__msg.is-err { color: #c0392b; }
.favm__send { width: 100%; background: var(--ink); color: #fff; border: none; font-family: var(--body); font-weight: 600; font-size: .9rem; padding: 13px; border-radius: 10px; cursor: pointer; transition: background .25s; }
.favm__send:hover { background: var(--accent); }
.favm__send:disabled { opacity: .7; }
/* Header favori sayaç */
.favlink { position: relative; display: inline-grid; place-items: center; width: 40px; height: 40px; color: var(--ink); }
.favlink svg { width: 21px; height: 21px; }
.favlink__c { position: absolute; top: 2px; right: 2px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 9px; background: #e64571; color: #fff; font-size: .64rem; font-weight: 700; display: grid; place-items: center; }
.favlink__c.is-empty { display: none; }

/* Favorilerim sayfası notu */
.favnote { background: #eaf7ef; border: 1px solid #bce4cb; color: #1c7a42; border-radius: 12px; padding: 13px 18px; font-size: .9rem; font-weight: 500; margin-bottom: 24px; }
.favnote b { font-weight: 700; }

/* İlan paylaş — WhatsApp + kopyala/kısalt butonları + toast */
.dshare__wa { background: #25d366 !important; }
.dshare button { border: 1px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; border-radius: 7px; height: 30px; display: inline-flex; align-items: center; gap: 6px; padding: 0 11px; transition: var(--t); font-family: var(--body); }
.dshare button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.dshare button svg { width: 15px; height: 15px; }
.dshare__copy { width: 30px; padding: 0; justify-content: center; }
.dshare__short { font-size: .8rem; font-weight: 600; }
.ke-toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); z-index: 400; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 10px; font-size: .86rem; font-weight: 500; box-shadow: 0 16px 40px -16px rgba(0,0,0,.5); opacity: 0; transition: opacity .3s ease, transform .3s ease; max-width: 90vw; text-align: center; }
.ke-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Kart köşesi — link kısalt butonu */
.pcard__short { position: absolute; bottom: 11px; right: 11px; z-index: 4; width: 32px; height: 32px; border: none; border-radius: 9px; background: rgba(15,28,50,.55); color: #fff; display: grid; place-items: center; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease; }
.pcard__short svg { width: 15px; height: 15px; }
.pcard__short:hover { background: var(--accent); transform: scale(1.08); }
.pcard__short.is-loading { opacity: .6; pointer-events: none; }

