@import url("fonts.css");

/* ===== Header ===== */
:root {
  --primary: #0b1030;
  --header-bg: #0b1030;
  --header-text: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.88);
  --header-circle: #1a2147;
  --header-h: 78px;
  --header-pad-x: clamp(1rem, 3vw, 2.5rem);
  --page-max: 1440px;
}

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

html {
  overflow-x: clip;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  background: #ffffff;
  color: #0b1030;
  overflow-x: clip;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.is-inner {
  background: #f7f8f9;
}

body.is-inner .site-main {
  background: rgba(11, 16, 48, 0.018);
}

.site-main {
  flex: 1 0 auto;
  min-height: 40vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

/* ===== Anasayfa hero ===== */
.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 85% 70% at 100% -10%, rgba(90, 110, 180, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 60% 50% at -5% 110%, rgba(40, 58, 120, 0.45) 0%, transparent 58%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 42%),
    linear-gradient(155deg, #0a0e2a 0%, var(--primary) 38%, #16204a 68%, #1c2758 100%);
  border-bottom: none;
  color: #ffffff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.06) 49.5%, transparent 57%, transparent 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -22%;
  right: -22%;
  bottom: -1px;
  z-index: 1;
  height: clamp(3.75rem, 9vw, 5.75rem);
  pointer-events: none;
  background: #ffffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) var(--header-pad-x) clamp(7.85rem, 13vw, 10rem);
  display: block;
  box-sizing: border-box;
}

.home-hero__copy {
  min-width: 0;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.05rem;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.34rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  backdrop-filter: blur(6px);
}

.home-hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.85vw, 2.25rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.home-hero__desc {
  margin: 0;
  max-width: 32rem;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  font-weight: 450;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 26rem;
  margin: 0;
  padding: 0.18rem 0.18rem 0.18rem 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.1);
  border-radius: 999px;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.home-hero__search-wrap {
  position: relative;
  width: 100%;
  max-width: 26rem;
  z-index: 5;
}

.home-hero__search-wrap .home-hero__search {
  max-width: none;
}

.home-hero__search-wrap.is-open .home-hero__search {
  border-color: rgba(11, 16, 48, 0.28);
}

.home-hero__suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.4rem);
  max-height: min(22rem, 60vh);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(11, 16, 48, 0.12);
  scrollbar-width: none;
}

.home-hero__suggest::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.site-search-suggest__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 0.7rem;
  background: transparent;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.site-search-suggest__item:hover,
.site-search-suggest__item.is-active {
  background: rgba(11, 16, 48, 0.05);
}

.site-search-suggest__type {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #ffffff;
  background: #0b1030;
}

.site-search-suggest__type--service {
  background: #1a3a5c;
}

.site-search-suggest__type--region {
  background: #2f4a3a;
}

.site-search-suggest__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.site-search-suggest__label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-search-suggest__sub {
  font-size: 0.78rem;
  font-weight: 450;
  color: #6b7385;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header search suggest (dark) */
.header-search {
  overflow: hidden;
}

.site-header:has(.search-toggle:checked) .header-search {
  overflow: visible;
}

.header-search__suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 40;
  max-height: min(22rem, 60vh);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  background: #12183a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  scrollbar-width: none;
}

.header-search__suggest::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.header-search__suggest .site-search-suggest__item {
  color: #ffffff;
}

.header-search__suggest .site-search-suggest__item:hover,
.header-search__suggest .site-search-suggest__item.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.header-search__suggest .site-search-suggest__sub {
  color: rgba(255, 255, 255, 0.55);
}

.header-search__suggest .site-search-suggest__type {
  background: rgba(255, 255, 255, 0.16);
}

.header-search__suggest .site-search-suggest__type--service {
  background: rgba(120, 170, 220, 0.28);
}

.header-search__suggest .site-search-suggest__type--region {
  background: rgba(120, 190, 150, 0.28);
}

.search-results__form {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  flex-wrap: wrap;
}

.search-results__input {
  flex: 1 1 14rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(11, 16, 48, 0.14);
  border-radius: 0.7rem;
  font: inherit;
}

.search-results__btn {
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  border: 0;
  border-radius: 0.7rem;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.search-results__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.search-results__list a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(11, 16, 48, 0.1);
  border-radius: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.search-results__list a:hover {
  border-color: rgba(11, 16, 48, 0.22);
  background: rgba(11, 16, 48, 0.03);
}

.search-results__label {
  font-weight: 650;
}

.search-results__sub {
  font-size: 0.86rem;
  color: #6b7385;
}

.search-results__meta {
  margin: 0 0 1rem;
  color: #6b7385;
}

.home-hero__search:focus-within {
  border-color: rgba(11, 16, 48, 0.28);
  box-shadow: none;
}

.home-hero__search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
}

.home-hero__search-icon .fi {
  display: block;
  line-height: 1;
}

.home-hero__search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 2.55rem;
  padding: 0 0.9rem 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}

.home-hero__search-input::placeholder {
  color: #9aa3b5;
  font-weight: 450;
}

.home-hero__search-input::-webkit-search-decoration,
.home-hero__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  max-width: 100%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  animation: home-hero-cta-pulse 2.2s ease-in-out infinite;
}

.home-hero__cta:hover {
  color: var(--primary);
  background: #f3f5fa;
}

@keyframes home-hero-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  55% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__cta {
    animation: none;
  }
}

.home-hero__visual {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: stretch;
  width: 100%;
  max-width: none;
}

.home-hero__image,
.home-hero__image-placeholder {
  display: none;
}

/* ===== Hero UI mock (sağ panel) ===== */
.hero-ui {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: auto;
  padding: 0.35rem 0 1.35rem;
  box-sizing: border-box;
  user-select: none;
  pointer-events: none;
}

.hero-ui__filters {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.hero-ui__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  background: #fff;
  border: 1.5px solid rgba(11, 16, 48, 0.55);
  border-radius: 8px;
  box-sizing: border-box;
}

.hero-ui__field-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-ui__field-text strong {
  font-weight: 700;
}

.hero-ui__field-icon {
  display: inline-flex;
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-ui__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.hero-ui__card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 10px;
  box-sizing: border-box;
  min-height: 3.6rem;
}

.hero-ui__avatar {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #d8dde8;
}

.hero-ui__avatar--lg {
  width: 3.35rem;
  height: 3.35rem;
  border: 2px solid rgba(11, 16, 48, 0.12);
}

.hero-ui__meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.hero-ui__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.hero-ui__loc .fi {
  font-size: 0.72rem;
  line-height: 1;
  color: var(--primary);
}

.hero-ui__bar {
  display: block;
  height: 0.38rem;
  border-radius: 999px;
  background: #d8dde8;
}

.hero-ui__bar--lg { width: 88%; }
.hero-ui__bar--md { width: 68%; }
.hero-ui__bar--sm { width: 58%; }

.hero-ui__bar--featured {
  background: rgba(11, 16, 48, 0.22);
  height: 0.45rem;
}

.hero-ui__featured {
  position: absolute;
  right: 6%;
  top: 46%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(78%, 255px);
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(11, 16, 48, 0.16);
  box-sizing: border-box;
  transform: scale(1.04);
}

.hero-ui__featured-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.hero-ui__name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #12162a;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-ui__loc--featured {
  font-size: 0.74rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .home-hero::after {
    left: -28%;
    right: -28%;
    height: clamp(3.5rem, 12vw, 4.75rem);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding-top: clamp(1.85rem, 4vw, 2.25rem);
    padding-bottom: clamp(7.9rem, 18vw, 9.5rem);
    gap: 1.25rem;
  }

  .home-hero__visual {
    display: none;
  }

  .home-hero__copy {
    max-width: none;
  }

  .home-hero__search,
  .home-hero__search-wrap {
    max-width: none;
  }

  .hero-ui {
    max-width: 440px;
  }
}

@media (max-width: 640px) {
  .home-hero::after {
    left: -35%;
    right: -35%;
    height: clamp(3.25rem, 14vw, 4.25rem);
  }

  .home-hero__inner {
    padding-top: 1.85rem;
    padding-bottom: 8.5rem;
  }

  .home-hero__badge {
    margin-top: 0.15rem;
  }

  .home-hero__copy {
    gap: 0.9rem;
  }

  .home-hero__title {
    font-size: 1.35rem;
  }

  .home-hero__desc {
    font-size: 0.88rem;
  }

  .home-hero__search-input {
    height: 2.55rem;
    font-size: 16px;
  }

  .hero-ui {
    max-width: 100%;
    padding-bottom: 1rem;
  }

  .hero-ui__filters {
    gap: 0.4rem;
  }

  .hero-ui__field {
    min-height: 2.1rem;
    padding: 0.35rem 0.55rem;
    border-radius: 7px;
  }

  .hero-ui__field-text {
    font-size: 0.68rem;
  }

  .hero-ui__card {
    padding: 0.45rem 0.5rem;
    gap: 0.5rem;
    min-height: 3.2rem;
  }

  .hero-ui__avatar {
    width: 2rem;
    height: 2rem;
    font-size: 0.6rem;
  }

  .hero-ui__featured {
    width: min(86%, 240px);
    right: 4%;
    top: 48%;
    padding: 0.6rem 0.7rem;
    gap: 0.65rem;
  }

  .hero-ui__avatar--lg {
    width: 2.85rem;
    height: 2.85rem;
  }

  .hero-ui__name {
    font-size: 0.8rem;
  }
}

.home-below {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

/* ===== Anasayfa profil kartları ===== */
.home-profiles {
  width: 100%;
  padding: clamp(0.45rem, 1.1vw, 0.85rem) 0 clamp(3.25rem, 6vw, 5rem);
  background: transparent;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.home-profiles:has(.profile-empty) {
  padding-bottom: 2.25rem;
}

.home-profiles__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.profile-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.85rem 1.75rem 1.95rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 16, 48, 0.12);
  background: rgba(11, 16, 48, 0.06);
  box-sizing: border-box;
}

.profile-empty__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0.15rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 16, 48, 0.08);
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 0;
}

.profile-empty__icon .fi {
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.profile-empty__title {
  margin: 0;
  max-width: 34rem;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #0b1030;
}

.profile-empty__text {
  margin: 0;
  max-width: 34rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #5c6478;
}

.profile-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.58rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 16, 48, 0.16);
  background: #fff;
  color: #0b1030;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.profile-empty__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.profile-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.15rem 1.2rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 14px;
  box-sizing: border-box;
}

.profile-card__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.profile-card__photo {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(11, 16, 48, 0.08);
  background: #e8ebf0;
}

.profile-card__photo[src*="profile-placeholder"] {
  object-fit: contain;
  object-position: center;
  background: rgba(141, 148, 168, 0.22);
}

.profile-card__identity {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.profile-card__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.profile-card__loc {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a6478;
  line-height: 1.2;
}

.profile-card__loc .fi {
  color: var(--primary);
  font-size: 0.78rem;
  line-height: 1;
}

.profile-card__tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 0.4rem;
  margin-top: 0.15rem;
  padding: 0.2rem 0.28rem 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(11, 16, 48, 0.07);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  max-width: 100%;
}

.profile-card__tag-label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.profile-card__tag-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.2rem;
  min-width: 1.2rem;
  padding: 0 0.36rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  translate: 0 0;
}

.profile-card__desc {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5a6478;
}

.profile-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.profile-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2.5rem;
  padding: 0 0.7rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.profile-card__btn .fi {
  font-size: 0.95rem;
  line-height: 1;
}

.profile-card__btn--wa {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  padding: 0;
  background: #13603d;
  border-color: #13603d;
  color: #ffffff;
}

.profile-card__btn--wa .fi {
  font-size: 1.15rem;
}

.profile-card__btn--wa:hover {
  background: #0f4f32;
  border-color: #0f4f32;
}

.profile-card__btn--phone {
  flex: 1 1 0;
  min-width: 0;
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.profile-card__btn--phone:hover {
  background: #151b42;
  border-color: #151b42;
}

.profile-card__phone-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-card__btn--profile {
  flex: 1 1 0;
  min-width: 0;
  background: #ffffff;
  border-color: rgba(11, 16, 48, 0.18);
  color: var(--primary);
}

.profile-card__btn--profile:hover {
  border-color: var(--primary);
  background: rgba(11, 16, 48, 0.04);
}

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

@media (max-width: 640px) {
  .home-profiles {
    padding-top: 0.45rem;
    padding-bottom: 3rem;
  }

  .profile-grid {
    max-width: none;
    gap: 0.9rem;
  }

  .home-profiles:has(.profile-empty) {
    padding-bottom: 1.75rem;
  }

  .profile-empty {
    padding: 1.45rem 1.15rem 1.55rem;
    border-radius: 16px;
  }

  .profile-card {
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 12px;
  }

  .profile-card__photo {
    width: 4rem;
    height: 4rem;
  }

  .profile-card__name {
    font-size: 0.98rem;
  }

  .profile-card__actions {
    gap: 0.35rem;
  }

  .profile-card__btn {
    height: 2.4rem;
    font-size: 0.72rem;
    padding: 0 0.4rem;
  }

  .profile-card__btn--wa {
    flex-basis: 2.4rem;
    width: 2.4rem;
  }
}

/* ===== Avukat bulma adımları ===== */
.home-steps {
  width: 100%;
  padding: clamp(0.35rem, 1.2vw, 0.75rem) 0 clamp(3.25rem, 6vw, 5rem);
  background: #ffffff;
}

.home-steps__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.home-steps__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.home-steps__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.home-steps__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.5vw, 1.75rem);
}

.home-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  min-width: 0;
}

.home-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.55rem;
  border-radius: 14px;
  background: #eef0f5;
  color: var(--primary);
  line-height: 0;
}

.home-step__icon svg {
  display: block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  shape-rendering: geometricPrecision;
}

.home-step__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.home-step__text {
  margin: 0;
  max-width: 18rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5a6478;
}

@media (max-width: 980px) {
  .home-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }
}

@media (max-width: 640px) {
  .home-steps {
    padding: 2.75rem 0 3rem;
  }

  .home-steps__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .home-step__text {
    max-width: 22rem;
  }
}

/* ===== Adana Avukat Rehberi (görsel + metin) ===== */
.home-about {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(0.75rem, 2vw, 1.5rem);
  background: #ffffff;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
  box-sizing: border-box;
  overflow: visible;
}

.home-about__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--header-pad-x);
  box-sizing: border-box;
  min-height: 0;
}

.home-about__media {
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about__media .hero-ui {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.25rem 0 1rem;
}

.home-about__image {
  display: none;
}

.home-about__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2.5rem);
  box-sizing: border-box;
  background: #ffffff;
  overflow: hidden;
}

.home-about__inner {
  width: 100%;
  max-width: min(32rem, 100%);
  text-align: center;
  box-sizing: border-box;
}

.home-about__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.home-about__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.2;
  color: var(--primary);
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-text-stroke: 0.3px currentColor;
}

.home-about__lead,
.home-about__text {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 450;
  line-height: 1.7;
  color: #3d4558;
  text-align: center;
  overflow-wrap: anywhere;
}

.home-about__lead strong {
  font-weight: 700;
  color: var(--primary);
}

.home-about__quote {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 450;
  line-height: 1.6;
  color: #5a6478;
}

.home-about__highlight {
  margin: 1.15rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .home-about__shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  }

  .home-about__media {
    height: auto;
    max-height: none;
    border-radius: 0;
    order: -1;
  }

  .home-about__content {
    padding: 1.75rem 0 0.5rem;
  }
}

@media (max-width: 640px) {
  .home-about__media {
    height: auto;
    max-height: none;
  }

  .home-about__content {
    padding: 1.5rem 0 0.25rem;
  }

  .home-about__title {
    font-size: 1.7rem;
  }

  .home-about__lead,
  .home-about__text,
  .home-about__quote {
    font-size: 0.88rem;
  }
}

/* ===== Faaliyet Alanlarımız ===== */
.home-services {
  width: 100%;
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: #f7f8f9;
}

.home-services--no-bg {
  background: transparent;
}

.home-services__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
  overflow: hidden;
}

.home-services__head {
  padding-right: 0;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.home-services__title {
  margin: 0;
  padding-right: 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.home-services__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  padding-bottom: 0.35rem;
  padding-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-services__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.home-services__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.home-services__track.is-dragging .home-services__card {
  pointer-events: none;
}

.home-services__track.is-dragging .service-card__title,
.home-services__track.is-dragging .service-card__more {
  pointer-events: none;
}

.home-services__card .service-card__body {
  pointer-events: none;
}

.home-services__card .service-card__title,
.home-services__card .service-card__more {
  pointer-events: auto;
}

.home-services__card {
  flex: 0 0 calc((100% - 3rem) / 4);
  width: calc((100% - 3rem) / 4);
  max-width: none;
  min-width: 0;
  min-height: 250px;
  aspect-ratio: 1 / 1.05;
  box-sizing: border-box;
}

@media (max-width: 980px) {
  .home-services__card {
    flex-basis: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 768px) {
  .home-services {
    padding: 2.5rem 0 2.75rem;
  }

  .home-services__inner {
    overflow: visible;
  }

  .home-services .home-services__card.service-card,
  .home-services__card.service-card,
  .home-services__card {
    flex-basis: 82%;
    width: 82%;
    max-width: 320px;
    min-width: 0;
    min-height: 290px;
    height: auto;
    aspect-ratio: 3 / 3.5;
  }
}

/* ===== Bilgi blogu ===== */
.home-info {
  width: 100%;
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.home-info__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
  text-align: center;
}

.home-info__block {
  max-width: 100%;
  width: 100%;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}

.home-info__block:last-child {
  margin-bottom: 0;
}

.home-info .prose h2,
.home-info .prose h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  text-align: center;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(11, 16, 48, 0.1);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.3;
  color: var(--primary);
}

.home-info .prose p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 15.7px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .home-info .prose p {
    font-size: 15px;
  }
}

/* ===== Home CTA ===== */
.home-cta {
  position: relative;
  width: 100%;
  min-height: clamp(180px, 22vw, 240px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.home-cta__bg,
.home-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-cta__bg {
  background-image: url("../img/page-hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-cta__bg--regions {
  background-image:
    url("../img/bolgelerimiz/Bolge%20(18).png"),
    url("../img/page-hero.webp");
}

.home-cta__overlay {
  background: linear-gradient(
    105deg,
    rgba(11, 16, 48, 0.78) 0%,
    rgba(11, 16, 48, 0.62) 45%,
    rgba(11, 16, 48, 0.72) 100%
  );
}

.home-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) var(--header-pad-x);
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

.home-cta__corner {
  position: absolute;
  width: clamp(28px, 4vw, 48px);
  height: clamp(28px, 4vw, 48px);
  border-color: rgba(255, 255, 255, 0.88);
  border-style: solid;
  pointer-events: none;
}

.home-cta__corner--tl {
  top: clamp(1rem, 2vw, 1.5rem);
  left: var(--header-pad-x);
  border-width: 2px 0 0 2px;
}

.home-cta__corner--tr {
  top: clamp(1rem, 2vw, 1.5rem);
  right: var(--header-pad-x);
  border-width: 2px 2px 0 0;
}

.home-cta__corner--bl {
  bottom: clamp(1rem, 2vw, 1.5rem);
  left: var(--header-pad-x);
  border-width: 0 0 2px 2px;
}

.home-cta__corner--br {
  bottom: clamp(1rem, 2vw, 1.5rem);
  right: var(--header-pad-x);
  border-width: 0 2px 2px 0;
}

.home-cta__frame {
  width: fit-content;
  max-width: min(100%, 52rem);
  margin: 0;
  padding: clamp(0.95rem, 2vw, 1.35rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
  box-sizing: border-box;
  justify-self: center;
  align-self: center;
}

.home-cta__title {
  margin: 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.25;
  color: #ffffff;
  -webkit-text-stroke: 0.3px currentColor;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .home-cta {
    min-height: 200px;
  }

  .home-cta__frame {
    padding: 1.15rem 1rem;
  }

  .home-cta__title {
    font-size: 1.4rem;
  }
}

/* ===== Müvekkil Yorumları ===== */
.home-reviews {
  width: 100%;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.home-reviews__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.home-reviews__heading {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  color: var(--primary);
  text-align: center;
}

.home-reviews__head {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.home-reviews__head .home-reviews__heading {
  margin-bottom: 0;
}

.home-section-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.65rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.home-section-badge--italic {
  background: transparent;
  color: var(--primary);
  padding: 0;
  border-radius: 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.home-reviews__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
}

.home-reviews__media {
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #e8ebf2;
}

.home-reviews__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.home-reviews__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(0.35rem, 1.5vw, 0.75rem) 0;
}

.home-reviews__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.home-reviews__nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.home-reviews__nav-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.home-reviews__nav-btn:hover {
  background: #1a2147;
}

.home-reviews__nav-btn:active {
  transform: scale(0.96);
}

.home-reviews__nav-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.home-reviews__quote {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(11, 16, 48, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-reviews__quote i {
  font-size: 1.15rem;
  line-height: 1;
}

.home-reviews__viewport {
  position: relative;
  min-height: 11.5rem;
}

.home-reviews__item {
  display: none;
  animation: homeReviewsIn 0.35s ease;
}

.home-reviews__item.is-active {
  display: block;
}

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

.home-reviews__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.home-reviews__avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(11, 16, 48, 0.12);
  background: #e8ebf2;
}

.home-reviews__meta {
  min-width: 0;
}

.home-reviews__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1.25;
}

.home-reviews__role {
  margin: 0.2rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 550;
  color: #3d5a80;
  line-height: 1.3;
}

.home-reviews__stars {
  display: flex;
  gap: 0.12rem;
  margin-top: 0.35rem;
  line-height: 1;
}

.home-reviews__star {
  font-size: 0.95rem;
  color: rgba(11, 16, 48, 0.18);
}

.home-reviews__star.is-on {
  color: #c9a227;
}

.home-reviews__text {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 450;
  line-height: 1.7;
  color: #2a3148;
}

.home-reviews__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.home-reviews__more:hover {
  background: #1a2147;
}

.home-reviews__more i {
  font-size: 0.95rem;
  line-height: 1;
}

.home-reviews__form-wrap {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(11, 16, 48, 0.1);
}

.home-reviews__form-title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.home-reviews__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0 0 0.95rem;
  border: 0;
  padding: 0;
  min-width: 0;
}

.home-reviews__field > span,
.home-reviews__field legend {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #3d4558;
  padding: 0;
}

.home-reviews__field input,
.home-reviews__field textarea {
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(11, 16, 48, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.45;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  -webkit-text-size-adjust: 100%;
}

.home-reviews__field input:focus,
.home-reviews__field textarea:focus {
  border-color: rgba(11, 16, 48, 0.45);
}

.home-reviews__field--stars {
  margin-bottom: 1rem;
}

.home-reviews__rate {
  display: flex;
  gap: 0.2rem;
}

.home-reviews__rate-btn {
  border: 0;
  background: transparent;
  padding: 0.15rem;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(11, 16, 48, 0.18);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.home-reviews__rate-btn.is-on {
  color: #c9a227;
}

.home-reviews__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.home-reviews__cancel,
.home-reviews__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.home-reviews__cancel {
  background: transparent;
  border-color: rgba(11, 16, 48, 0.18);
  color: var(--primary);
}

.home-reviews__submit {
  background: var(--primary);
  color: #ffffff;
}

.home-reviews__submit:hover {
  background: #1a2147;
}

.home-reviews__form-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #6a7388;
}

.home-reviews__form-error {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #b42318;
}

.home-reviews__success {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 12px;
  background: rgba(11, 16, 48, 0.04);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.home-reviews__panel.is-form-open .home-reviews__viewport,
.home-reviews__panel.is-form-open .home-reviews__more,
.home-reviews__panel.is-form-open .home-reviews__toolbar {
  display: none;
}

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

  .home-reviews__media img {
    min-height: 220px;
    max-height: 280px;
  }
}

@media (max-width: 640px) {
  .home-reviews {
    padding: 2rem 0;
  }

  .home-reviews__head {
    margin-bottom: 1.25rem;
  }

  .home-reviews__text {
    font-size: 0.95rem;
  }

  .home-reviews__more {
    width: 100%;
    justify-content: center;
  }

  .home-reviews__form-actions {
    flex-direction: column;
  }

  .home-reviews__cancel,
  .home-reviews__submit {
    width: 100%;
  }
}

/* ===== Home SSS ===== */
.home-faq {
  width: 100%;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #f7f8f9;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.home-faq__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.home-faq__head {
  margin: 0 0 clamp(1.35rem, 2.5vw, 1.85rem);
  text-align: center;
}

.home-faq__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.home-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  align-items: start;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0;
}

.home-faq .faq-item {
  border-top: 0;
  border-bottom: 0;
}

@media (max-width: 900px) {
  .home-faq__grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

/* ===== Home Hesaplama Araçları ===== */
.home-calc {
  width: 100%;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #f7f8f9;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.home-calc__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.home-calc__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 clamp(1.35rem, 2.5vw, 1.85rem);
  padding: 0;
  text-align: center;
}

.home-calc__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  text-align: center;
}

.home-calc__grid {
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
}

/* ===== Home konu blokları ===== */
.home-topics {
  width: 100%;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.home-topics__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.home-topic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.home-topic--reverse .home-topic__media {
  order: 2;
}

.home-topic--reverse .home-topic__content {
  order: 1;
}

.home-topic__media {
  min-width: 0;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  background: #e8ebf2;
  line-height: 0;
}

.home-topic__media img {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center;
  vertical-align: top;
}

.home-topic__content {
  min-width: 0;
}

.home-topic__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.home-topic__title a {
  color: inherit;
  text-decoration: none;
}

.home-topic__title a:hover {
  text-decoration: underline;
}

.home-topic__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 450;
  line-height: 1.7;
  color: #3d4558;
}

@media (max-width: 900px) {
  .home-topic,
  .home-topic--reverse {
    grid-template-columns: 1fr;
  }

  .home-topic--reverse .home-topic__media,
  .home-topic--reverse .home-topic__content {
    order: initial;
  }

  .home-topic__media {
    order: -1;
  }

  .home-topic__media img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
  }

  .home-topic__text {
    font-size: 15px;
  }
}

/* ===== Home iletişim ===== */
.home-contact {
  width: 100%;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #f7f8f9;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.home-contact__head {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto clamp(1.35rem, 2.5vw, 1.85rem);
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-contact__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.home-contact__body.page--contact {
  padding-top: 0;
  padding-bottom: 0;
}

.home-contact .contact-map {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  height: var(--header-h);
  overflow: visible;
}

/* Anasayfa: üstte şeffaf overlay, kaydırınca birincil renk */
body.is-home .site-header {
  background: transparent;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

body.is-home .home-hero {
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

body.is-home.is-header-scrolled .site-header,
body.is-home:has(.nav-toggle:checked) .site-header,
body.is-home:has(.search-toggle:checked) .site-header {
  background: var(--primary);
}

body.is-home.is-header-scrolled .site-header {
  box-shadow: 0 10px 28px rgba(11, 16, 48, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  body.is-home .site-header {
    transition: none;
  }
}

.site-header__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  overflow: visible;
}

/* Logo */
.logo-heading {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  line-height: 1;
  color: var(--header-text);
  text-align: left;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.logo__mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--primary);
}

.logo__mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.logo__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
  text-align: center;
}

.logo__name {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo__name strong {
  font-weight: 800;
}

.logo__tagline {
  margin-top: 0;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  text-transform: uppercase;
}

.logo__sub {
  margin-top: 0.28rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav */
.site-nav {
  margin-left: auto;
  margin-right: 0.35rem;
  overflow: visible;
  position: relative;
  z-index: 120;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow: visible;
}

.site-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--header-text);
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.site-nav__list > li > a:hover {
  opacity: 0.8;
}

.nav-item-row {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item-row > a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.35rem 0.55rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--header-text);
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.nav-item-row > a:hover {
  opacity: 0.8;
}

.nav-parent-label {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.35rem 0.55rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--header-text);
  white-space: nowrap;
  cursor: pointer;
}

.nav-caret-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.55rem 0.55rem 0.2rem;
  color: var(--header-text);
  cursor: pointer;
}

.nav-caret {
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.dropdown-toggle:checked ~ .nav-item-row .nav-caret {
  transform: rotate(180deg);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 0;
  min-width: 200px;
  background: #12183a;
  border: 0;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 200;
  pointer-events: none;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.dropdown-toggle:checked ~ .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  color: var(--header-text);
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Masaüstü: header altından +10px, üstte çentik */
@media (min-width: 993px) {
  .site-nav {
    display: flex;
    align-items: center;
    height: var(--header-h);
  }

  .site-nav__list {
    align-items: center;
    height: 100%;
  }

  .site-nav__list > li {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .has-dropdown {
    position: relative;
  }

  .dropdown {
    top: calc(100% + 10px);
    transform: translateY(6px);
  }

  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown,
  .dropdown-toggle:checked ~ .dropdown {
    transform: translateY(0);
  }

  /* Hover köprüsü: 10px boşlukta menü kapanmasın */
  .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
  }

  /* Üst çentik — menüyü işaret eder */
  .dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 1.35rem;
    width: 12px;
    height: 12px;
    background: #12183a;
    border: 0;
    transform: rotate(45deg);
    z-index: 2;
  }
}

.dropdown--services {
  min-width: 480px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  columns: 2;
  column-gap: 0.35rem;
  padding: 0.5rem;
}

.dropdown--services li {
  break-inside: avoid;
}

.dropdown--services a {
  padding: 0.45rem 0.65rem;
  font-size: 0.84rem;
  white-space: normal;
  line-height: 1.35;
}

/* Masaüstü: Hizmetlerimiz düz link (dropdown yok) */
@media (min-width: 993px) {
  .has-dropdown--mobile-only > .nav-caret-btn,
  .has-dropdown--mobile-only .nav-caret-btn {
    display: none;
  }

  .has-dropdown--mobile-only > .dropdown,
  .has-dropdown--mobile-only:hover > .dropdown,
  .has-dropdown--mobile-only:focus-within > .dropdown,
  .has-dropdown--mobile-only .dropdown-toggle:checked ~ .dropdown {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .has-dropdown--mobile-only .nav-item-row > a {
    padding: 0.55rem 0.7rem;
  }
}

/* Tools */
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: 0.25rem;
  position: relative;
  z-index: 9;
}

.tool-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--header-text);
  cursor: pointer;
}

.tool-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Search expand */
.header-search {
  position: absolute;
  top: 50%;
  right: 13.5rem;
  left: auto;
  width: 0;
  transform: translateY(-50%);
  z-index: 8;
  height: 44px;
  display: flex;
  align-items: center;
  background: #151b3d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: left 0.28s ease, right 0.28s ease, width 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.header-search__form {
  display: flex;
  width: 100%;
  height: 100%;
}

.header-search__input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  padding: 0 2.75rem 0 1.15rem;
}

.header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.header-search__input::-webkit-search-decoration,
.header-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search-btn .icon-close {
  display: none;
}

.site-header:has(.search-toggle:checked) .search-btn .icon-search {
  display: none;
}

.site-header:has(.search-toggle:checked) .search-btn .icon-close {
  display: block;
}

.site-header:has(.search-toggle:checked) .header-search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Masaüstü: logo ile boşluk; X çubuğun içinde; çizgi dışarıda */
@media (min-width: 993px) {
  .site-header:has(.search-toggle:checked) .header-search {
    left: 20.5rem;
    right: 13.5rem;
    width: auto;
  }

  .site-header:has(.search-toggle:checked) .search-btn {
    position: relative;
    z-index: 10;
    margin-right: -0.15rem;
  }

  .site-header:has(.search-toggle:checked) .tool-divider--after-search {
    margin-left: 0.35rem;
  }

  .site-header:has(.search-toggle:checked) .site-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.nav-text-full {
  display: none;
}

.nav-text-short {
  display: inline;
}

.tool-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.tool-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tool-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-bg);
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.tool-circle i {
  font-size: 14px;
  line-height: 1;
  color: inherit;
  display: block;
  opacity: 0;
}

html.icons-ready .tool-circle i {
  opacity: 1;
}

.tool-circle:hover {
  background: var(--header-bg);
  color: #ffffff;
  opacity: 1;
}

.tool-langs {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  border: 0;
}

.lang img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hamburger (CSS only) */
.nav-toggle-btn {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  order: 5;
}

.nav-toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle-btn span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Desktop compact / tablet ===== */
@media (max-width: 1180px) {
  .site-nav__list > li > a {
    padding: 0.5rem 0.45rem;
    font-size: 0.84rem;
  }

  .logo__name {
    font-size: 1.12rem;
  }

  .logo__tagline {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }

  .logo__mark {
    width: 42px;
    height: 42px;
  }

  .footer-logo__name {
    font-size: 1.12rem;
  }

  .footer-logo__tagline {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }

  .footer-logo__mark {
    width: 42px;
    height: 42px;
  }
}

/* ===== Mobile (screenshot) ===== */
@media (max-width: 992px) {
  :root {
    --header-h: 70px;
  }

  .site-header__inner {
    gap: 0.5rem;
    padding: 0 0.85rem;
  }

  .logo {
    gap: 0.45rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo__mark {
    width: 40px;
    height: 40px;
  }

  .logo__divider {
    height: 32px;
  }

  .logo__text {
    min-width: 0;
    overflow: hidden;
  }

  .logo__name {
    font-size: 1.1rem;
  }

  .logo__tagline {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .footer-logo {
    gap: 0.45rem;
  }

  .footer-logo__mark {
    width: 40px;
    height: 40px;
  }

  .footer-logo__name {
    font-size: 1.1rem;
  }

  .footer-logo__tagline {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .header-tools {
    flex-shrink: 0;
  }

  .nav-text-short {
    display: none;
  }

  .nav-text-full {
    display: inline;
  }

  /* Mobil: solda hafif boşluk, logo üstüne biner */
  .site-header:has(.search-toggle:checked) .header-search {
    left: 0.75rem;
    right: 6.5rem;
    width: auto;
  }

  .site-header:has(.search-toggle:checked) .logo {
    opacity: 0;
    pointer-events: none;
  }

  .site-header:has(.search-toggle:checked) .search-btn {
    position: relative;
    z-index: 10;
  }

  .site-header:has(.search-toggle:checked) .site-nav {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header-search {
    right: 6.5rem;
  }

  .header-search__input {
    padding: 0 2.5rem 0 1rem;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin: 0;
    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
    z-index: 90;
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: min(85vh, 640px);
    overflow: auto;
    opacity: 1;
    visibility: visible;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0.75rem 1rem;
  }

  .site-nav__list > li > a {
    padding: 0.85rem 0.6rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .site-nav__list > li:last-child > a {
    border-bottom: 0;
  }

  .nav-item-row {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-item-row > a,
  .nav-parent-label {
    flex: 1;
    padding: 0.85rem 0.6rem;
    font-size: 0.95rem;
    min-width: 0;
  }

  .nav-parent-label {
    cursor: pointer;
  }

  .nav-caret-btn {
    flex-shrink: 0;
    width: 44px;
    height: 100%;
    min-height: 48px;
    padding: 0;
    margin-left: auto;
    justify-content: center;
  }

  /* Mobil: sadece oka basınca aç */
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
  }

  .dropdown {
    position: static;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0.15rem 0 0.45rem 0.85rem;
    min-width: 0;
    z-index: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown::before,
  .dropdown::after {
    display: none;
  }

  .dropdown-toggle:checked ~ .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown--services {
    columns: 1;
    min-width: 0;
    max-height: none;
    overflow: visible;
    padding: 0.15rem 0 0.45rem 0.85rem;
  }

  .dropdown a {
    padding: 0.7rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0;
  }

  .dropdown li:last-child a {
    border-bottom: 0;
  }

  .header-tools {
    margin-left: auto;
    gap: 0.55rem;
  }

  .tool-social,
  .tool-divider--desk {
    display: none;
  }

  .tool-divider--after-search {
    display: block;
  }

  .nav-toggle-btn {
    display: inline-flex;
  }

  .tool-btn {
    width: 34px;
    height: 34px;
  }

  .tool-btn svg {
    width: 22px;
    height: 22px;
  }

  .lang {
    width: 26px;
    height: 26px;
  }
}

/* ===== Page hero (iç sayfalar) ===== */
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 20vw, 200px);
  padding: 1.6rem var(--header-pad-x) 1.45rem;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/page-hero.jpg") center / cover no-repeat;
  background: image-set(
      url("../img/page-hero.webp") type("image/webp"),
      url("../img/page-hero.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 16, 48, 0.78);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.page-hero__desc {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.3vw, 0.96rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero__crumb {
  margin-top: 0.2rem;
}

.page-hero__crumb-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(11, 16, 48, 0.12);
  color: var(--primary);
}

.page-hero__crumb-list > li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-hero__home,
.page-hero__sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: inherit;
}

.page-hero__home {
  color: var(--primary);
  transition: opacity 0.15s ease;
}

.page-hero__home:hover {
  opacity: 0.7;
}

.page-hero__sep {
  color: rgba(11, 16, 48, 0.45);
}

.page-hero__home svg,
.page-hero__sep svg {
  display: block;
  flex-shrink: 0;
}

.page-hero__current {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
  white-space: nowrap;
  max-width: min(52vw, 280px);
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
  margin: 0;
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 180px;
    padding: 1.75rem 1.15rem 1.6rem;
  }

  .page-hero__inner {
    gap: 0.55rem;
  }

  .page-hero__crumb-list {
    padding: 0.45rem 1rem;
    gap: 0.35rem;
  }

  .page-hero__current {
    font-size: 0.82rem;
    max-width: 48vw;
  }
}

/* ===== Page stubs ===== */
.page {
  padding: 2.5rem var(--header-pad-x) 3rem;
}

.page__inner {
  max-width: 900px;
  margin: 0 auto;
}

.page h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

/* ===== Kurumsal 70/30 layout ===== */
.page--with-sidebar {
  padding: 2rem 0 2.75rem;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

.page-layout {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  display: grid;
  grid-template-columns: minmax(0, 75fr) minmax(220px, 25fr);
  gap: 1.5rem;
  align-items: start;
  box-sizing: border-box;
}

.page-layout__content {
  min-width: 0;
  max-width: 100%;
}

.page-content {
  background: #ffffff;
  padding: clamp(1.35rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2.25rem);
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  box-shadow: none !important;
  filter: none;
  box-sizing: border-box;
  max-width: 100%;
}

.page-content > :first-child {
  margin-top: 0;
}

.page-content > :last-child {
  margin-bottom: 0;
}

.prose {
  color: #2a3148;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.7;
}

.prose h2,
.prose h3,
.prose h4 {
  margin: 1.75rem 0 0.7rem;
  color: var(--primary);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.3;
}

.prose h2 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(11, 16, 48, 0.1);
}

.prose h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  margin-top: 1.35rem;
}

.prose h4 {
  font-size: 1rem;
  margin-top: 1.15rem;
}

.prose p {
  margin: 0 0 0.95rem;
}

.prose ul {
  margin: 0 0 0.95rem;
  padding-left: 1.25rem;
}

.prose li {
  margin: 0 0 0.4rem;
}

.prose strong {
  font-weight: 700;
  color: var(--primary);
}

.prose > :first-child {
  margin-top: 0;
}

.prose-table-wrap {
  margin: 0 0 1.15rem;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prose-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(11, 16, 48, 0.12);
  background: #ffffff;
  box-shadow: none;
  font-size: 0.92rem;
}

.prose-table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.prose-table th,
.prose-table td {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(11, 16, 48, 0.1);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.prose-table thead th {
  background: rgba(11, 16, 48, 0.04);
  color: var(--primary);
  font-weight: 700;
}

.prose-table tbody tr:nth-child(even) td {
  background: rgba(11, 16, 48, 0.015);
}

.prose-quote {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem 0.9rem 1.05rem;
  border: 0;
  border-left: 3px solid var(--primary);
  background: rgba(11, 16, 48, 0.03);
  border-radius: 0;
  box-shadow: none;
}

.prose-quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3a4258;
  font-style: italic;
}

/* ===== FAQ accordion ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  cursor: pointer;
  user-select: none;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2a3148;
}

.faq-item__icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item__icon svg {
  display: block;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 1.05rem 1.05rem;
  border-top: 0;
}

.faq-item__body p {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #3a4258;
}

.page-layout__aside {
  min-width: 0;
  max-width: 100%;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.side-menu {
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  box-shadow: none !important;
  filter: none;
  box-sizing: border-box;
  max-width: 100%;
}

.side-menu__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.15rem 1.1rem;
  background: var(--primary);
  color: #ffffff;
}

.side-menu__head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  line-height: 0;
}

.side-menu__head-icon .fi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
}

.side-menu__head-icon .fi::before {
  display: block;
  margin: 0 !important;
  line-height: 1;
  transform: none;
}

.side-menu__head-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.side-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu__list > li {
  border-bottom: 1px solid rgba(11, 16, 48, 0.08);
}

.side-menu__list > li:last-child {
  border-bottom: 0;
}

.side-menu__link,
.side-menu__sublink {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.05rem;
  color: #2a3148;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.side-menu__link:hover,
.side-menu__sublink:hover {
  color: var(--primary);
}

.side-menu__link.is-active,
.side-menu__sublink.is-active {
  color: var(--primary);
  font-weight: 600;
  background: transparent;
}

.side-menu__icon {
  width: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b647a;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.side-menu__icon .fi {
  display: block;
  line-height: 1;
}

.side-menu__label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.side-menu__row {
  display: flex;
  align-items: stretch;
}

.side-menu__row .side-menu__link {
  flex: 1;
  min-width: 0;
}

.side-menu__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  flex-shrink: 0;
  color: #8a93a8;
  cursor: pointer;
  border-left: 1px solid rgba(11, 16, 48, 0.06);
  transition: background 0.15s ease, transform 0.2s ease;
}

.side-menu__caret:hover {
  background: rgba(11, 16, 48, 0.03);
}

.side-menu__caret svg {
  display: block;
  transition: transform 0.2s ease;
}

.side-menu__toggle:checked ~ .side-menu__row .side-menu__caret svg {
  transform: rotate(180deg);
}

.side-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  background: #fafbfc;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.side-menu__toggle:checked ~ .side-menu__sub {
  display: block;
}

.side-menu__sub li {
  border-bottom: 1px solid rgba(11, 16, 48, 0.06);
}

.side-menu__sub li:last-child {
  border-bottom: 0;
}

.side-menu__sublink {
  padding-left: 2.85rem;
  font-size: 0.88rem;
  font-weight: 450;
}

.side-menu__sub--scroll {
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.side-cta {
  background: rgba(11, 16, 48, 0.04);
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.side-cta__media {
  display: block;
  line-height: 0;
}

.side-cta__media img {
  display: block;
  width: 100%;
  height: auto;
}

.side-cta__body {
  padding: 1.15rem 1.15rem 1.25rem;
}

.side-cta__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.side-cta__lead {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(11, 16, 48, 0.72);
}

.side-cta__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
}

.side-cta__list li {
  margin: 0 0 0.55rem;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #2f3648;
}

.side-cta__list li:last-child {
  margin-bottom: 0;
}

.side-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(11, 16, 48, 0.4);
  animation: side-cta-pulse 2.2s ease-in-out infinite;
  transition: background 0.15s ease, color 0.15s ease;
}

.side-cta__btn:hover {
  background: #151b45;
  color: #ffffff;
}

@keyframes side-cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(11, 16, 48, 0.4); }
  55% { box-shadow: 0 0 0 12px rgba(11, 16, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 16, 48, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .side-cta__btn {
    animation: none;
  }
}

@media (max-width: 980px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .page-layout__aside {
    position: static;
    order: 2;
    padding-left: var(--header-pad-x);
    padding-right: var(--header-pad-x);
    box-sizing: border-box;
  }

  .page-layout__content {
    order: 1;
  }

  .page-content {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .side-menu {
    display: none;
  }
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.35rem 1rem;
}

.services-list a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(11, 16, 48, 0.08);
  font-weight: 500;
}

.services-list a:hover {
  opacity: 0.75;
}

/* ===== Hizmetlerimiz kartları ===== */
.page--services {
  padding: 2rem 0 2.75rem;
  max-width: 100%;
  box-sizing: border-box;
}

.service-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  box-sizing: border-box;
}

.service-card {
  position: relative;
  display: block;
  min-height: 250px;
  aspect-ratio: 1 / 1.05;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  box-shadow: none;
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  z-index: 3;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-card:hover::after {
  height: 250%;
  background-color: transparent;
  transition: 600ms linear;
}

.service-card__media,
.service-card__overlay {
  position: absolute;
  inset: 0;
  display: block;
}

.service-card__media {
  background-color: #1a2038;
  background-image: var(--service-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.35s ease;
}

.service-card__overlay {
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(11, 16, 48, 0.92) 0%,
    rgba(11, 16, 48, 0.55) 42%,
    rgba(11, 16, 48, 0.12) 72%,
    rgba(11, 16, 48, 0.05) 100%
  );
}

.service-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.15rem 1.05rem;
  box-sizing: border-box;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-left: 0.15rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.service-card__title {
  display: block;
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

a.service-card__title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 2;
  margin-top: 0.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  cursor: pointer;
}

a.service-card__more:hover {
  color: #ffffff;
}

.service-card__more .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
  width: 0.9em;
  height: 0.9em;
  transition: transform 0.15s ease;
}

.service-card__more .fi::before {
  display: block;
  line-height: 1;
}

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

.service-card:hover .service-card__more .fi {
  transform: translateX(3px);
}

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

  .service-card {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .page--services {
    padding: 1.5rem 0 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-card {
    min-height: 230px;
    aspect-ratio: 5 / 4;
  }

  /* Anasayfa hizmet/bölge kartları — dikey daha uzun */
  .home-services .home-services__card.service-card,
  .home-services__card.service-card,
  .home-services__card {
    min-height: 300px !important;
    aspect-ratio: 3 / 3.55 !important;
  }
}

/* ===== Hesaplama araçları kartları ===== */
.page--calc {
  padding: 2rem 0 2.75rem;
  max-width: 100%;
  box-sizing: border-box;
}

.calc-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  box-sizing: border-box;
}

/* Anasayfa: dış shell zaten pad veriyor, çift boşluk olmasın */
.home-calc .calc-grid {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.calc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 5px;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  transition: none;
  box-sizing: border-box;
}

.calc-card:hover {
  border-color: rgba(11, 16, 48, 0.08);
  background: #ffffff;
  box-shadow: none;
}

.calc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 5px;
  background: rgba(11, 16, 48, 0.05);
  color: var(--primary);
  flex-shrink: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.calc-card:hover .calc-card__icon {
  background: var(--primary);
  color: #ffffff;
}

.calc-card:hover .calc-card__icon .fi,
.calc-card:hover .calc-card__icon .fi::before {
  color: #ffffff;
}

.calc-card__icon .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
}

.calc-card__icon .fi::before {
  line-height: 1;
}

.calc-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
}

.calc-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #5a6478;
}

.calc-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
}

.calc-card__action .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1;
  width: 0.9em;
  height: 0.9em;
  transition: transform 0.15s ease;
}

.calc-card__action .fi::before {
  display: block;
  line-height: 1;
}

.calc-card:hover .calc-card__action .fi {
  transform: translateX(3px);
}

/* ===== Hesaplama araç sayfası ===== */
.page--calc-tool,
.page--service-article {
  padding: 2rem 0 2.75rem;
  max-width: 100%;
  box-sizing: border-box;
}

.page--service-article .page-layout--calc {
  margin-top: 0;
}

.service-article__figure {
  position: relative;
  margin: 0 0 1.35rem;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(11, 16, 48, 0.04);
}

.service-article__figure::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-article__figure:hover::after {
  height: 250%;
  background-color: transparent;
  transition: 600ms linear;
}

.service-article__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ===== Yazı meta / TOC / etiket / paylaş ===== */
.article-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.1rem;
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.65rem;
  border: 0;
  border-radius: 5px;
  background: rgba(11, 16, 48, 0.06);
  box-sizing: border-box;
}

.article-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 0 1 auto;
}

.article-meta__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(1.55rem + 2px);
  height: calc(1.55rem + 2px);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
}

.article-meta__icon .fi {
  font-size: calc(0.78rem + 2px);
  line-height: 1;
}

.article-meta__value {
  font-size: calc(0.78rem + 2px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-meta__link {
  text-decoration: none;
  color: var(--primary);
}

.article-meta__link:hover {
  text-decoration: underline;
}

.article-toc {
  margin: 0 0 1.15rem;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 5px;
  background: rgba(11, 16, 48, 0.02);
}

.article-toc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.72rem 0.75rem;
  cursor: pointer;
  list-style: none;
  font-size: calc(0.84rem + 2px);
  font-weight: 700;
  color: var(--primary);
  user-select: none;
}

.article-toc__summary::-webkit-details-marker {
  display: none;
}

.article-toc__title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}

.article-toc__title > span {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.article-toc__title .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  font-size: calc(0.9rem + 2px);
  line-height: 1;
  color: #6b7489;
}

.article-toc__title .fi::before {
  display: block;
  line-height: 1;
}

.article-toc__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: calc(0.95rem + 2px);
  line-height: 1;
  color: #6b7489;
  transition: transform 0.2s ease;
}

.article-toc[open] .article-toc__chevron {
  transform: rotate(180deg);
}

.article-toc__nav {
  padding: 0 0.75rem 0.65rem;
  border-top: 1px solid rgba(11, 16, 48, 0.06);
}

.article-toc__list {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.article-toc__item a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #3d465c;
  text-decoration: none;
}

.article-toc__item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.article-toc__item--h3 {
  padding-left: 0.85rem;
}

.article-toc__item--h3 a {
  font-size: 0.78rem;
  color: #5a6478;
}

.article-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin: 2rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(11, 16, 48, 0.08);
}

.article-foot__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a93a6;
}

.article-foot__label .fi {
  font-size: 0.85rem;
  line-height: 1;
}

.article-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

.article-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(11, 16, 48, 0.1);
  border-radius: 4px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3d465c;
  line-height: 1.35;
}

.article-tags__empty {
  font-size: 0.9rem;
  color: #8a93a6;
}

.article-share {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
}

.article-share__list {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(11, 16, 48, 0.1);
  border-radius: 5px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.article-share__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.article-share__btn .fi {
  font-size: 0.95rem;
  line-height: 1;
}

.article-share__btn.is-copied {
  background: #1a7f4b;
  border-color: #1a7f4b;
  color: #fff;
}

@media (max-width: 640px) {
  .article-meta {
    gap: 0.4rem 0.55rem;
    padding: 0.45rem 0.5rem;
    justify-content: flex-start;
  }

  .article-meta__icon {
    width: calc(1.4rem + 2px);
    height: calc(1.4rem + 2px);
  }

  .article-meta__icon .fi {
    font-size: calc(0.7rem + 2px);
  }

  .article-meta__value {
    font-size: calc(0.68rem + 2px);
  }

  .article-foot {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .article-share__btn {
    width: 1.85rem;
    height: 1.85rem;
  }
}

.calc-panel {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 1.5rem;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.calc-panel__inner {
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.85rem);
  box-shadow: none;
  box-sizing: border-box;
}

.calc-panel__head {
  margin-bottom: 1.25rem;
}

.calc-panel__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.calc-panel__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a6478;
  max-width: 52rem;
}

.calc-form__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.calc-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.calc-form__field--wide {
  grid-column: span 1;
}

.calc-form__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.calc-form input[type="text"],
.calc-form input[type="date"],
.calc-form input[type="number"],
.calc-form select {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 4px;
  background: #ffffff;
  color: #3a4258;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.15s ease;
}

.calc-form input:focus,
.calc-form select:focus {
  border-color: var(--primary);
}

.calc-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.calc-form__submit,
.calc-form__reset {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 0.72rem 1.35rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
}

.calc-form__submit {
  background: var(--primary);
  color: #ffffff;
}

.calc-form__submit:hover {
  opacity: 0.92;
}

.calc-form__reset {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(11, 16, 48, 0.14);
}

.calc-form__reset:hover {
  border-color: rgba(11, 16, 48, 0.28);
}

.calc-result {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 5px;
  background: rgba(11, 16, 48, 0.03);
}

.calc-result__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a849c;
}

.calc-result__value {
  display: block;
  font-size: clamp(calc(1.35rem - 5px), calc(2.4vw - 5px), calc(1.7rem - 5px));
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.calc-result__details {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #3a4258;
}

.calc-result__details ul {
  margin: 0;
  padding-left: 1.1rem;
}

.calc-result__details li {
  margin: 0.2rem 0;
}

.calc-result__details[hidden] {
  display: none;
}

.calc-result__note {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6a7388;
}

.page-layout--calc {
  grid-template-columns: minmax(0, 70fr) minmax(220px, 25fr);
  margin-bottom: 1.5rem;
}

.calc-faq {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.calc-faq__inner {
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.85rem);
  box-shadow: none;
  box-sizing: border-box;
}

.calc-faq__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.calc-faq__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a6478;
}

.calc-faq .faq-list {
  margin-top: 1.15rem;
}

@media (max-width: 980px) {
  .page--calc-tool,
  .page--service-article {
    padding: 1.5rem 0 2rem;
  }

  .calc-panel,
  .calc-faq {
    padding-left: var(--header-pad-x);
    padding-right: var(--header-pad-x);
  }

  .page-layout--calc {
    grid-template-columns: 1fr;
    margin-bottom: 1.15rem;
  }

  .calc-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .calc-form__field--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .calc-panel,
  .calc-faq {
    padding-left: 0;
    padding-right: 0;
  }

  .calc-panel__inner,
  .calc-faq__inner {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .calc-form__grid {
    grid-template-columns: 1fr;
  }

  .calc-form__field--wide {
    grid-column: span 1;
  }

  .calc-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-form__submit,
  .calc-form__reset {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .calc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page--calc {
    padding: 1.5rem 0 2rem;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .calc-card {
    padding: 1.15rem 1.05rem 1.05rem;
  }
}

/* ===== Footer ===== */
.site-footer {
  --footer-overlay: rgba(11, 16, 48, 0.92);
  position: relative;
  margin-top: auto;
  color: #fff;
  background-color: var(--header-bg);
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem var(--header-pad-x) 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.1fr 1fr;
  gap: 2rem 1.75rem;
}

.footer-grid--with-regions {
  grid-template-columns: 1.2fr 0.75fr 0.95fr 0.95fr 0.95fr;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-logo__mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
}

.footer-logo__mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.footer-logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  line-height: 1;
  text-align: center;
}

.footer-logo__name {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-logo__name strong {
  font-weight: 800;
}

.footer-logo__tagline {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.footer-col--brand .footer-title {
  margin: 0 0 0.55rem;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-desc {
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.footer-desc__underline {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-bg);
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.footer-social__btn i {
  font-size: 14px;
  line-height: 1;
  color: inherit;
}

.footer-social__btn:hover {
  background: var(--header-bg);
  color: #ffffff;
  border-color: var(--header-bg);
  opacity: 1;
}

.footer-social__chatgpt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--header-bg);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-social__chatgpt:hover {
  background: var(--header-bg);
  color: #ffffff;
  border-color: var(--header-bg);
}

.footer-title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.4;
  padding: 0.12rem 0;
  transition: none;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.22s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-col--services,
.footer-col--regions {
  min-width: 0;
  min-height: 0;
  align-self: start;
}

.footer-scrollbox {
  max-height: 18.75rem; /* ~12 satır */
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0;
  margin: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.footer-scrollbox::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.footer-scrollbox .footer-links {
  gap: 0.4rem;
}

.footer-scrollbox .footer-links a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact li span {
  word-break: break-word;
}

.footer-contact i {
  margin-top: 0.12rem;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.footer-contact a {
  color: inherit;
  word-break: break-word;
}

.footer-contact a:hover {
  opacity: 0.75;
}

.footer-copy {
  background: #080b24;
}

.footer-copy__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.7rem var(--header-pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 0.82rem;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .footer-grid,
  .footer-grid--with-regions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    padding: 2.25rem 1rem 1.75rem;
  }

  .footer-grid,
  .footer-grid--with-regions {
    grid-template-columns: 1fr;
    gap: 3.1rem;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-desc {
    max-width: none;
  }

  .footer-scrollbox {
    max-height: 18.75rem;
  }

  .footer-copy__inner {
    padding: 1.55rem 1rem;
  }
}

/* ===== Contact page ===== */
.page--contact {
  padding: 2rem 0 2.75rem;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-layout {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.75rem;
  align-items: start;
  box-sizing: border-box;
}

.contact-info {
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: none;
}

.contact-info__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d4660;
}

.contact-info__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 22.4px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.contact-info__address,
.contact-info__hours {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3a4258;
}

.contact-info__hours strong {
  color: var(--primary);
  font-weight: 600;
}

.contact-info__divider {
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid rgba(11, 16, 48, 0.1);
}

.contact-info__section-title {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-info__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info__channel {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
}

.contact-info__channel-icon {
  width: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-info__channel-icon .fi {
  display: block;
  line-height: 1;
}

.contact-info__channel-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #3d4660;
  margin-bottom: 0.15rem;
}

.contact-info__channel a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  word-break: break-word;
}

.contact-info__channel a:hover {
  text-decoration: underline;
}

.contact-info__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5368;
}

.contact-info__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.contact-info__social a {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(11, 16, 48, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.contact-info__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.contact-info__social .fi {
  display: block;
  line-height: 1;
}

.contact-form-wrap {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  padding: 1.35rem 1.5rem 1.25rem;
  box-sizing: border-box;
}

.contact-form__lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3a4258;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 0.4rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 0.75rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-form__field--float {
  position: relative;
  overflow: visible;
}

.contact-form__label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #3d4660;
  line-height: 1.4;
}

.contact-form__field--float .contact-form__label {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 0.3rem;
  background: #ffffff;
  pointer-events: none;
  transition: top 0.16s ease, transform 0.16s ease, font-size 0.16s ease, color 0.16s ease;
  z-index: 2;
  white-space: nowrap;
  max-width: calc(100% - 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-form__field--textarea .contact-form__label {
  top: 1rem;
  transform: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 4px;
  background: #ffffff;
  color: #3a4258;
  font: inherit;
  font-size: 16px;
  line-height: 1.55;
  outline: none;
  transition: border-color 0.15s ease;
}

.contact-form__phone {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 4px;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.contact-form__phone:focus-within {
  border-color: var(--primary);
}

.contact-form__phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(11, 16, 48, 0.1);
  background: #f7f8fa;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px 0 0 4px;
}

.contact-form__phone-prefix img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.contact-form__field--phone {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.contact-form__phone .contact-form__field--phone input[type="tel"],
.contact-form__phone .contact-form__field--phone input[type="tel"]:focus {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.contact-form__field--phone .contact-form__label {
  left: 0.65rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1.05rem;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%230b1030' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-color: #ffffff;
  padding-right: 2rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form__field--float:focus-within .contact-form__label,
.contact-form__field--float input:not(:placeholder-shown) ~ .contact-form__label,
.contact-form__field--float textarea:not(:placeholder-shown) ~ .contact-form__label,
.contact-form__field--select select:valid ~ .contact-form__label {
  top: 0;
  left: 0.6rem;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: #ffffff;
  z-index: 3;
}

.contact-form__field--textarea:focus-within .contact-form__label,
.contact-form__field--textarea textarea:not(:placeholder-shown) ~ .contact-form__label {
  top: 0;
  transform: translateY(-50%);
}

.contact-form__field--phone:focus-within .contact-form__label,
.contact-form__field--phone input:not(:placeholder-shown) ~ .contact-form__label {
  left: 0.45rem;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3a4258;
}

.contact-form__check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-form__check a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.contact-form__submit {
  align-self: stretch;
  margin-top: 0.15rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 4px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.contact-form__submit:hover {
  opacity: 0.9;
}

/* ===== Avukat Kayıt Formu ===== */
.register-page {
  position: relative;
  isolation: isolate;
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: transparent;
}

.register-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(11, 16, 48, 0.08), transparent 60%),
    radial-gradient(700px 380px at 88% 110%, rgba(11, 16, 48, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(11, 16, 48, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.register-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.register-page__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 clamp(1.35rem, 2.5vw, 1.85rem);
}

.register-page__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.register-page__lead {
  margin: 0;
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a5368;
}

.register-page__lead a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.register-page__lead a:hover {
  text-decoration: underline;
}

.register-card {
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.1);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-sizing: border-box;
}

.register-form__section {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0 0 1.85rem;
  padding-bottom: 1.65rem;
  border-bottom: 1px solid rgba(11, 16, 48, 0.08);
}

.register-form__section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0.35rem;
}

.register-form__heading {
  margin: 0 0 0.15rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.register-form__sub {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3d4558;
}

.register-form__hint {
  margin: -0.55rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6a7388;
}

.register-form__areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.95rem;
}

.register-form__area {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #2a3148;
  cursor: pointer;
}

.register-form__area input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.register-form__check {
  margin-top: 0;
}

.register-form__file {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0;
}

.register-form__file-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3d4558;
}

.register-limit {
  padding: 1.8rem 1.2rem 1.5rem;
  text-align: center;
}

.register-limit h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1030;
}

.register-limit p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4a5168;
}

.register-form__photo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.register-form__photo-preview {
  flex-shrink: 0;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(141, 148, 168, 0.28);
  border: 1px solid rgba(11, 16, 48, 0.08);
}

.register-form__photo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.register-form__photo-preview img.is-real {
  object-fit: cover;
  object-position: center top;
}

.register-form__photo-pick {
  position: relative;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px dashed rgba(11, 16, 48, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a4258;
  cursor: pointer;
}

.register-form__photo-pick input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.register-form .contact-form__phone {
  margin: 0;
}

.register-form .contact-form__field--float:focus-within .contact-form__label,
.register-form .contact-form__field--float input:not(:placeholder-shown) ~ .contact-form__label,
.register-form .contact-form__field--float textarea:not(:placeholder-shown) ~ .contact-form__label {
  background: #ffffff;
}

.register-form__submit {
  width: 100%;
  margin-top: 0.75rem;
}

.register-pop[hidden] {
  display: none !important;
}
.register-pop {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.register-pop__dim {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 48, 0.38);
}
.register-pop__card {
  position: relative;
  width: min(22.5rem, 100%);
  padding: 2.1rem 1.55rem 1.45rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  text-align: center;
  box-shadow: none;
}
.register-pop__mark {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #13603d;
  color: #fff;
}
.register-pop__card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b1030;
}
.register-pop__card p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4a5168;
}
.register-pop__ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  min-height: 2.65rem;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 999px;
  background: #0b1030;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
}
body.has-register-pop {
  overflow: hidden;
}

@media (max-width: 700px) {
  .register-form__areas {
    grid-template-columns: 1fr;
  }

  .register-card {
    padding: 1.15rem 1rem 1.35rem;
    border-radius: 12px;
  }
}

.contact-map {
  margin-top: 2.75rem;
  width: 100%;
  position: relative;
}

.article-contact {
  width: 100%;
  max-width: 1440px;
  margin: 1.5rem auto 0;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

.article-contact__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.35fr);
  gap: 1.25rem;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.06);
  border-radius: 5px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.85rem);
  box-sizing: border-box;
}

.article-contact__copy {
  min-width: 0;
}

.article-contact__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.article-contact__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a6478;
}

.contact-info--article {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-info--article .contact-info__title {
  font-size: 1.15rem;
}

.contact-info--article .contact-info__note {
  margin-top: 1rem;
}

.contact-info--article .contact-info__note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-contact__map {
  min-width: 0;
  display: flex;
  min-height: 100%;
}

.article-contact__map .contact-map__frame {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 5px;
}

@media (max-width: 980px) {
  .article-contact {
    padding-left: var(--header-pad-x);
    padding-right: var(--header-pad-x);
  }

  .article-contact__inner {
    grid-template-columns: 1fr;
  }

  .article-contact__map .contact-map__frame {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .article-contact {
    padding-left: 0;
    padding-right: 0;
  }

  .article-contact__inner {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .article-contact__map .contact-map__frame {
    border-radius: 0;
    min-height: 260px;
  }
}

.contact-map__frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #e8ebf0;
  border: 0;
  border-radius: 0;
  z-index: 0;
}

.contact-map__frame .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  z-index: 0;
  background: #e8ebf0;
}

.contact-map-marker {
  background: transparent !important;
  border: 0 !important;
}

.contact-map-pin {
  position: relative;
  display: block;
  width: 28px;
  height: 40px;
}

.contact-map-pin__dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  border: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.contact-map-pin__dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #ffffff;
}

.leaflet-popup.contact-map-popup {
  margin-bottom: 0;
}

.leaflet-popup.contact-map-popup .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(11, 16, 48, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(11, 16, 48, 0.14);
  overflow: hidden;
}

.leaflet-popup.contact-map-popup .leaflet-popup-content {
  margin: 0;
  min-width: 0;
  width: auto !important;
  line-height: 1.2;
}

.leaflet-popup.contact-map-popup .leaflet-popup-tip-container {
  display: none;
}

.contact-map__card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  max-width: min(92vw, 380px);
  padding: 0.45rem 0.5rem 0.45rem 0.5rem;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.contact-map__card--popup {
  display: flex;
}

.contact-map__card-icon {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-map__card-icon .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.contact-map__card-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  overflow: hidden;
}

.contact-map__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-map__card-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-map__card-meta {
  font-size: 0.74rem;
  line-height: 1.25;
  color: #6a7388;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-map__card-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 16, 48, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  white-space: nowrap;
}

.contact-map__card-action .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1;
  transition: transform 0.15s ease;
}

.contact-map__card:hover .contact-map__card-action {
  background: var(--primary);
  color: #ffffff;
}

.contact-map__card:hover .contact-map__card-action .fi {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .page--contact {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-info {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .contact-form-wrap {
    margin-left: var(--header-pad-x);
    margin-right: var(--header-pad-x);
  }

  .contact-map {
    margin-top: 2rem;
  }

  .contact-map__frame {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .page--contact {
    padding: 1.5rem 0 2rem;
  }

  .contact-info__channels,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 1.35rem 1.15rem;
  }

  .contact-map {
    margin-top: 1.75rem;
  }

  .contact-map__frame {
    height: 320px;
  }

  .leaflet-popup.contact-map-popup .leaflet-popup-content {
    min-width: 0;
  }

  .leaflet-popup.contact-map-popup .leaflet-popup-content-wrapper {
    border-radius: 999px;
  }

  .contact-map__card {
    min-width: 0;
    max-width: min(94vw, 340px);
    gap: 0.5rem;
    padding: 0.38rem 0.4rem 0.38rem 0.4rem;
  }

  .contact-map__card-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .contact-map__card-icon .fi {
    font-size: 0.82rem;
  }

  .contact-map__card-title {
    font-size: 0.84rem;
  }

  .contact-map__card-meta {
    font-size: 0.68rem;
  }

  .contact-map__card-action {
    margin-top: 0;
    padding: 0.42rem 0.62rem;
    font-size: 0.72rem;
  }

  .contact-map__card-action .fi {
    font-size: 0.7rem;
  }
}

/* ===== Mobile fixed CTA bar ===== */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 992px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 0.5rem 0.8rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    box-shadow: 0 -3px 12px rgba(11, 16, 48, 0.07);
  }

  .mobile-cta-bar__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    width: 100%;
    min-height: 0;
    padding: 0.82rem 1.1rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    box-shadow: none;
  }

  .mobile-cta-bar__strong {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  body:has(.mobile-cta-bar) {
    padding-bottom: calc(3.9rem + env(safe-area-inset-bottom, 0px));
  }

  body:has(.register-page) .mobile-cta-bar {
    display: none !important;
  }

  body:has(.register-page) {
    padding-bottom: 0;
  }

  body:has(.lawyer-sticky-bar.is-visible) {
    padding-bottom: calc(6.6rem + env(safe-area-inset-bottom, 0px));
  }
}

/* ===== Avukat Profil Sayfas� ===== */
.lawyer-profile {
  position: relative;
  isolation: isolate;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.lawyer-profile__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1000px 480px at 8% -8%, rgba(11, 16, 48, 0.07), transparent 58%),
    radial-gradient(800px 420px at 96% 40%, rgba(11, 16, 48, 0.04), transparent 55%),
    linear-gradient(180deg, #f3f4f7 0%, #f7f8f9 28%, #ffffff 100%);
  pointer-events: none;
}

.lawyer-profile__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 1.5rem var(--header-pad-x) 0;
  box-sizing: border-box;
}

.lawyer-profile__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 1.35rem;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 16px;
  box-sizing: border-box;
}

.lawyer-profile__photo-wrap {
  margin: 0;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #e8ebf0;
  border: 2px solid rgba(11, 16, 48, 0.08);
  flex-shrink: 0;
  align-self: center;
}

.lawyer-profile__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lawyer-profile__photo[src*="profile-placeholder"],
.lawyer-profile__photo-wrap:has(.lawyer-profile__photo[src*="profile-placeholder"]) {
  background: rgba(141, 148, 168, 0.22);
}

.lawyer-profile__photo[src*="profile-placeholder"] {
  object-fit: contain;
  object-position: center;
}

.lawyer-profile__intro {
  min-width: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lawyer-profile__name {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.lawyer-profile__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3d4558;
}

.lawyer-profile__loc .fi {
  color: var(--primary);
  font-size: 0.95rem;
}

.lawyer-profile__address {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a6478;
}

.lawyer-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}

.lawyer-profile__tags.is-dragging,
.lawyer-profile__areas.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.lawyer-profile__tag {
  display: inline-flex;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 16, 48, 0.06);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.lawyer-profile__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lawyer-profile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.lawyer-profile__btn .fi {
  font-size: 1.05rem;
  line-height: 1;
}

.lawyer-profile__btn--phone {
  background: var(--primary);
  color: #ffffff;
}

.lawyer-profile__btn--phone:hover {
  opacity: 0.9;
}

.lawyer-profile__btn--wa {
  background: #13603d;
  color: #ffffff;
}

.lawyer-profile__btn--wa:hover {
  background: #0f4f32;
}

.lawyer-profile__btn--msg {
  background: #ffffff;
  border-color: rgba(11, 16, 48, 0.18);
  color: var(--primary);
}

.lawyer-profile__btn--msg:hover {
  border-color: var(--primary);
  background: rgba(11, 16, 48, 0.03);
}

.lawyer-profile__map {
  margin: 0 0 1.35rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 48, 0.08);
  background: #ffffff;
}

.lawyer-profile__map-frame {
  width: 100%;
  height: clamp(220px, 28vw, 300px);
  min-height: 220px;
}

.lawyer-profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr);
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  align-items: start;
}

.lawyer-profile__main {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-sizing: border-box;
}

.lawyer-profile__section {
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(11, 16, 48, 0.08);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.lawyer-profile__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.lawyer-profile__heading {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.lawyer-profile__main p {
  margin: 0 0 0.95rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a4258;
}

.lawyer-profile__main p:last-child {
  margin-bottom: 0;
}

.lawyer-profile__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lawyer-profile__list li {
  position: relative;
  padding: 0.75rem 0.95rem 0.75rem 2.15rem;
  background: rgba(11, 16, 48, 0.03);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2a3148;
}

.lawyer-profile__list li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.05rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.lawyer-profile__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lawyer-profile__area {
  display: inline-flex;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(11, 16, 48, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.lawyer-profile__form-lead {
  margin: 0 0 1.15rem !important;
  color: #5a6478 !important;
}

.lawyer-profile__success {
  margin: 0.85rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: rgba(19, 96, 61, 0.08);
  border: 1px solid rgba(19, 96, 61, 0.22);
  color: #13603d;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.lawyer-profile__aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lawyer-profile__card {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid rgba(11, 16, 48, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.lawyer-profile__card-head {
  padding: 1.2rem 1.25rem 1.05rem;
  background:
    linear-gradient(135deg, rgba(11, 16, 48, 0.04), rgba(11, 16, 48, 0.01)),
    #ffffff;
  border-bottom: 1px solid rgba(11, 16, 48, 0.06);
}

.lawyer-profile__card-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a849c;
}

.lawyer-profile__card-name {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.lawyer-profile__card-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #5a6478;
}

.lawyer-profile__card-loc .fi {
  color: var(--primary);
  font-size: 0.82rem;
}

.lawyer-profile__card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 1rem 1.15rem 0.35rem;
}

.lawyer-profile__card .lawyer-profile__btn {
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.lawyer-profile__card .lawyer-profile__btn--phone {
  background: var(--primary);
  color: #ffffff;
}

.lawyer-profile__card .lawyer-profile__btn--phone:hover {
  opacity: 0.92;
}

.lawyer-profile__card .lawyer-profile__btn--wa {
  width: 100%;
}

.lawyer-profile__channels {
  margin: 0;
  padding: 0.65rem 1.15rem 0.35rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lawyer-profile__channels li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: rgba(11, 16, 48, 0.03);
}

.lawyer-profile__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 48, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
}

.lawyer-profile__channel-label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a849c;
}

.lawyer-profile__channels a,
.lawyer-profile__channels span:not(.lawyer-profile__channel-label):not(.lawyer-profile__channel-icon) {
  color: var(--primary);
  font-size: 0.86rem;
  line-height: 1.45;
  text-decoration: none;
  word-break: break-word;
  font-weight: 600;
}

.lawyer-profile__channels a:hover {
  text-decoration: underline;
}

.lawyer-profile__social {
  padding: 0.85rem 1.15rem 0.35rem;
}

.lawyer-profile__social-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a849c;
}

.lawyer-profile__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lawyer-profile__social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(11, 16, 48, 0.04);
  border: 1px solid rgba(11, 16, 48, 0.08);
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lawyer-profile__social-links a .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 1.05rem;
}

.lawyer-profile__social-links a .fi::before {
  display: block;
  line-height: 1;
  margin: 0;
}

.lawyer-profile__social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.lawyer-profile__disclaimer {
  margin: 0.75rem 1.15rem 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(11, 16, 48, 0.08);
  font-size: 0.74rem;
  line-height: 1.5;
  color: #7a849c;
}

@media (max-width: 992px) {
  .lawyer-profile__layout {
    grid-template-columns: 1fr;
  }

  .lawyer-profile__aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 700px) {
  .lawyer-profile__hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.1rem;
  }

  .lawyer-profile__photo-wrap {
    width: 6.25rem;
    height: 6.25rem;
  }

  .lawyer-profile__intro {
    text-align: center;
    width: 100%;
    min-width: 0;
  }

  .lawyer-profile__loc {
    justify-content: center;
  }

  .lawyer-profile__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.1rem 0 0.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
  }

  .lawyer-profile__tags:active {
    cursor: grabbing;
  }

  .lawyer-profile__tags::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .lawyer-profile__tag {
    flex: 0 0 auto;
    display: inline-flex;
    scroll-snap-align: start;
    padding: 0.42rem 0.88rem;
    font-size: 0.88rem;
    white-space: nowrap;
    user-select: none;
  }

  .lawyer-profile__areas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    cursor: default;
    touch-action: auto;
  }

  .lawyer-profile__area {
    flex: 0 1 auto;
    display: inline-flex;
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
    white-space: nowrap;
    user-select: auto;
  }

  .lawyer-profile__cta {
    justify-content: center;
  }

  .lawyer-profile__btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.35rem);
  }

  .lawyer-profile__btn--msg {
    flex-basis: 100%;
  }
}

/* ===== Profil mobil sticky bar ===== */
.lawyer-sticky-bar {
  display: none;
}

@media (max-width: 992px) {
  .lawyer-sticky-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .lawyer-sticky-bar[hidden] {
    display: none !important;
  }

  .lawyer-sticky-bar.is-visible,
  .lawyer-sticky-bar.is-visible[hidden] {
    display: block !important;
  }

  .lawyer-sticky-bar__inner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    min-height: 4.7rem;
    padding: 0.58rem 0.62rem 0.58rem 0.58rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(11, 16, 48, 0.1);
    box-shadow: 0 6px 22px rgba(11, 16, 48, 0.12);
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }

  .lawyer-sticky-bar__photo {
    flex-shrink: 0;
    width: 3.85rem;
    height: 3.85rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: #e8ebf0;
  }

  .lawyer-sticky-bar__meta {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
  }

  .lawyer-sticky-bar__name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lawyer-sticky-bar__addr {
    font-size: 0.84rem;
    font-weight: 500;
    color: #6a7388;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lawyer-sticky-bar__phone {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 1.05rem;
    border-radius: 999px;
    background: var(--primary);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .lawyer-sticky-bar__phone .fi {
    font-size: 1rem;
    line-height: 1;
  }
}

